Updates
This commit is contained in:
Vendored
+2
@@ -91,6 +91,7 @@ export type DSQL_DATASQUIREL_USER_DATABASES = {
|
||||
db_full_name?: string;
|
||||
db_image?: string;
|
||||
db_description?: string;
|
||||
db_long_description?: string;
|
||||
remote_connected?: number;
|
||||
remote_connection_type?: string;
|
||||
remote_db_full_name?: string;
|
||||
@@ -118,6 +119,7 @@ export type DSQL_DATASQUIREL_USER_DATABASE_TABLES = {
|
||||
table_name?: string;
|
||||
table_slug?: string;
|
||||
table_description?: string;
|
||||
table_long_description?: string;
|
||||
child_table?: number;
|
||||
child_table_parent_database_schema_id?: number;
|
||||
child_table_parent_table_schema_id?: number;
|
||||
|
||||
Vendored
+31
-1
@@ -65,6 +65,9 @@ export declare const TextFieldTypesArray: readonly [{
|
||||
}, {
|
||||
readonly title: "Rich Text";
|
||||
readonly value: "richText";
|
||||
}, {
|
||||
readonly title: "Markdown";
|
||||
readonly value: "markdown";
|
||||
}, {
|
||||
readonly title: "JSON";
|
||||
readonly value: "json";
|
||||
@@ -90,6 +93,7 @@ export declare const TextFieldTypesArray: readonly [{
|
||||
export type DSQL_FieldSchemaType = {
|
||||
id?: number | string;
|
||||
fieldName?: string;
|
||||
fieldDescription?: string;
|
||||
originName?: string;
|
||||
updatedField?: boolean;
|
||||
dataType?: string;
|
||||
@@ -1259,6 +1263,7 @@ export type DsqlCrudParam<T extends {
|
||||
countOnly?: boolean;
|
||||
dbFullName?: string;
|
||||
dbName?: string;
|
||||
tableSchema?: DSQL_TableSchemaType;
|
||||
};
|
||||
export type ErrorCallback = (title: string, error: Error, data?: any) => void;
|
||||
export interface MariaDBUser {
|
||||
@@ -1707,6 +1712,17 @@ export type SiteConfigMain = {
|
||||
sharp_image_quality?: SiteConfigMainValue;
|
||||
max_backups?: SiteConfigMainValue;
|
||||
max_disk_usage?: SiteConfigMainValue;
|
||||
api_keys?: SiteConfigMainAPIKeysObject;
|
||||
target_ai?: AIOptionsObject;
|
||||
};
|
||||
export type SiteConfigMainAPIKeysObject = {
|
||||
[k: string]: SiteConfigMainAPIKeysObjectInfo;
|
||||
};
|
||||
export type SiteConfigMainAPIKeysObjectInfo = {
|
||||
key?: string;
|
||||
id?: string;
|
||||
model?: string;
|
||||
custom_model?: string;
|
||||
};
|
||||
export type SiteConfigMainValue = {
|
||||
value: number | null;
|
||||
@@ -2051,8 +2067,22 @@ export interface GiteaTreeResTree {
|
||||
sha: string;
|
||||
url: string;
|
||||
}
|
||||
export declare const OpsActions: readonly ["exit", "test", "restart-web-app", "restart-db", "restart-all", "clear"];
|
||||
export declare const OpsActions: readonly ["exit", "test", "restart-web-app", "restart-web-app-container", "restart-db", "restart-all", "clear"];
|
||||
export type OpsObject = {
|
||||
action: (typeof OpsActions)[number];
|
||||
};
|
||||
export declare const AIOptions: AIOptionsObject[];
|
||||
export type AIOptionsObject = {
|
||||
name?: string;
|
||||
title?: string;
|
||||
models?: string[];
|
||||
targetModel?: string;
|
||||
customModel?: string;
|
||||
apiKey?: string;
|
||||
baseUrl?: string;
|
||||
};
|
||||
export type AIComponentProps = {
|
||||
targetAI: AIOptionsObject;
|
||||
context: any[];
|
||||
};
|
||||
export {};
|
||||
|
||||
Vendored
+54
-1
@@ -1,6 +1,6 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OpsActions = exports.TimeParadigms = exports.UserAPIAuthActions = exports.UserAPIParadigms = exports.TargetMediaParadigms = exports.EnvKeys = exports.AppVersions = exports.APIParadigms = exports.UserSQLPermissions = exports.SQLPermissions = exports.InvitedUserSelectFields = exports.DelegatedUserSelectFields = exports.UserSelectFields = exports.IndexTypes = exports.DefaultSQLValuesLiteral = exports.CurrentlyEditedFieldActions = exports.VideoMimeTypes = exports.FileMimeTypes = exports.ImageMimeTypes = exports.MediaTypes = exports.DockerComposeServices = exports.DatasquirelWindowEvents = exports.WebSocketEvents = exports.QueueJobTypes = exports.SignUpParadigms = exports.UserTypes = exports.QueryFields = exports.DsqlCrudActions = exports.DataCrudRequestMethodsLowerCase = exports.DataCrudRequestMethods = exports.ServerQueryEqualities = exports.ServerQueryOperators = exports.TextFieldTypesArray = exports.UsersOmitedFields = void 0;
|
||||
exports.AIOptions = exports.OpsActions = exports.TimeParadigms = exports.UserAPIAuthActions = exports.UserAPIParadigms = exports.TargetMediaParadigms = exports.EnvKeys = exports.AppVersions = exports.APIParadigms = exports.UserSQLPermissions = exports.SQLPermissions = exports.InvitedUserSelectFields = exports.DelegatedUserSelectFields = exports.UserSelectFields = exports.IndexTypes = exports.DefaultSQLValuesLiteral = exports.CurrentlyEditedFieldActions = exports.VideoMimeTypes = exports.FileMimeTypes = exports.ImageMimeTypes = exports.MediaTypes = exports.DockerComposeServices = exports.DatasquirelWindowEvents = exports.WebSocketEvents = exports.QueueJobTypes = exports.SignUpParadigms = exports.UserTypes = exports.QueryFields = exports.DsqlCrudActions = exports.DataCrudRequestMethodsLowerCase = exports.DataCrudRequestMethods = exports.ServerQueryEqualities = exports.ServerQueryOperators = exports.TextFieldTypesArray = exports.UsersOmitedFields = void 0;
|
||||
exports.UsersOmitedFields = [
|
||||
"password",
|
||||
"social_id",
|
||||
@@ -15,6 +15,7 @@ exports.UsersOmitedFields = [
|
||||
exports.TextFieldTypesArray = [
|
||||
{ title: "Plain Text", value: "plain" },
|
||||
{ title: "Rich Text", value: "richText" },
|
||||
{ title: "Markdown", value: "markdown" },
|
||||
{ title: "JSON", value: "json" },
|
||||
{ title: "YAML", value: "yaml" },
|
||||
{ title: "HTML", value: "html" },
|
||||
@@ -447,7 +448,59 @@ exports.OpsActions = [
|
||||
"exit",
|
||||
"test",
|
||||
"restart-web-app",
|
||||
"restart-web-app-container",
|
||||
"restart-db",
|
||||
"restart-all",
|
||||
"clear",
|
||||
];
|
||||
exports.AIOptions = [
|
||||
{
|
||||
name: "openai",
|
||||
title: "Open AI",
|
||||
models: [
|
||||
"gpt-4.1",
|
||||
"gpt-4o",
|
||||
"gpt-4o-audio",
|
||||
"04-mini",
|
||||
"o3",
|
||||
"o3-pro",
|
||||
"o3-mini",
|
||||
"o1",
|
||||
"o1-mini",
|
||||
"o1-pro",
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "xai",
|
||||
title: "X-AI",
|
||||
baseUrl: "https://api.x.ai/v1",
|
||||
models: [
|
||||
"grok-4-0709",
|
||||
"grok-3",
|
||||
"grok-3-mini",
|
||||
"grok-3-fast",
|
||||
"grok-3-mini-fast",
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "anthropic",
|
||||
models: [
|
||||
"claude-opus-4-0",
|
||||
"claude-sonnet-4-0",
|
||||
"claude-3-7-sonnet-latest",
|
||||
"claude-3-5-sonnet-latest",
|
||||
"claude-3-5-haiku-latest",
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "gemini",
|
||||
models: [
|
||||
"gemini-2.5-pro",
|
||||
"gemini-2.5-flash",
|
||||
"gemini-2.5-flash-lite",
|
||||
"gemini-2.5-flash-preview-tts",
|
||||
"gemini-2.5-pro-preview-tts",
|
||||
"gemini-2.0-flash",
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user