@redonvn/redai-backend-api-sdk 0.5.2 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/generated/dynamic-table/index.js +2 -1
- package/dist/cjs/generated/dynamic-table/index.js.map +1 -1
- package/dist/cjs/generated/dynamic-table/types.js +232 -13
- package/dist/cjs/generated/dynamic-table/types.js.map +1 -1
- package/dist/cjs/generated/index.js +4 -3
- package/dist/cjs/generated/index.js.map +1 -1
- package/dist/cjs/index.js +3 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/generated/dynamic-table/index.d.ts +1 -1
- package/dist/esm/generated/dynamic-table/index.d.ts.map +1 -1
- package/dist/esm/generated/dynamic-table/index.js +1 -1
- package/dist/esm/generated/dynamic-table/index.js.map +1 -1
- package/dist/esm/generated/dynamic-table/types.d.ts +663 -4
- package/dist/esm/generated/dynamic-table/types.d.ts.map +1 -1
- package/dist/esm/generated/dynamic-table/types.js +231 -1
- package/dist/esm/generated/dynamic-table/types.js.map +1 -1
- package/dist/esm/generated/index.d.ts +2 -2
- package/dist/esm/generated/index.d.ts.map +1 -1
- package/dist/esm/generated/index.js +2 -2
- package/dist/esm/generated/index.js.map +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
import { ExternalDataType, FieldType, ModelType, ProviderEnum, ReferentialAction, RelationType, RollupFunction, RowColoringMode, StorageMode, ViewLockType, ViewType } from '../shared-types';
|
|
3
|
-
export type { ACB_BANK, ACTION, ACTIVE, ADMIN, AGENT_DESKTOP_SDK_EXE, AHAMOVE, AI, ALIBABA_CODING_PLAN, ANTHROPIC, ApiResponseDto, ARCHIVED, ARRAY, ASC, ATTACHMENT, AUTONUMBER, AVG, AVG_DISTINCT, AZURE_AI, BARCODE, BELONGS_TO, BIGINT, BIGSERIAL, BINARY, BIT, BLOB, BOOLEAN, BUTTON, BYTEA, CALENDAR, CASCADE, CENTER, CHAR, CIDR, CLOUD_AWS_S3, CLOUD_AZURE_BLOB, CLOUD_BACKBLAZE_B2, CLOUD_CLOUDFLARE_R2, CLOUD_GOOGLE_CLOUD_STORAGE, CLOUD_MINIO, CLOUD_WASABI, COLLABORATIVE, ColumnResponseDto, COUNT, COUNT_DISTINCT, CREATE, CREATED_BY, CREATED_TIME, CURRENCY, CUSTOM, DASHBOARD, DATABASE_MARIADB, DATABASE_MONGODB, DATABASE_MSSQL, DATABASE_MYSQL, DATABASE_ORACLE, DATABASE_POSTGRESQL, DATABASE_REDIS, DATABASE_SQLITE, DATE, DATETIME, DATETIME2, DECIMAL, DEEPSEEK, DEFAULT, DELETE, DESC, DISABLED, DOCUMENT, DOUBLE, DURATION, EAV, EMAIL, EMAIL_GMAIL, EMAIL_OUTLOOK, EMAIL_SMTP, EMAIL_TWILIO_SENDGRID, ENUM, ExternalSyncConfig, FACEBOOK_ADS, FACEBOOK_BUSINESS, FACEBOOK_PAGE, FACEBOOK_PERSONAL, FAILED, FieldConfig, FieldMeta, FILTER, FLOAT, FORM, FORMULA, GALLERY, GEOGRAPHY, GEOMETRY, GETFLY_CRM, GHN, GHTK, GOOGLE_ADS, GOOGLE_CALENDAR, GOOGLE_CLOUD_PROJECT, GOOGLE_DOCS, GOOGLE_DRIVE, GOOGLE_SHEETS, GRID, HAS_MANY, HSTORE, IMAGE, INET, INT, INTEGER, INTERVAL, JSON, JSONB, KANBAN, KL_BANK, LINK_TO_ANOTHER_RECORD, LINKS, LOCKED, LONG_TEXT, LONGTEXT, LOOKUP, LookupConfigResponseDto, MACADDR, MANY_TO_MANY, MAP, MAX, MB_BANK, MEDIUMINT, MEDIUMTEXT, MIN, MODIFIED_BY, MODIFIED_TIME, MONEY, MULTI_SELECT, NCHAR, NO, NO_ACTION, NONE, NULL, NUMBER, NUMERIC, NVARCHAR, OBJECT_ID, OCB_BANK, ONE_TO_ONE, OPENAI, OPENROUTER, ORDER, PENDING, PERCENT, PERPLEXITY_AI, PERSONAL, PHONE, PHYSICAL, POINT, PROXY, QR_CODE, RATING, REAL, REDAI, REDAI_EXTENSION, REDAI_LLM, RELATION, RelationConfigResponseDto, RESTRICT, ROLLUP, RollupConfigResponseDto, SELECT, SERIAL, SET, SET_DEFAULT, SET_NULL, SMALLDATETIME, SMALLINT, SMALLMONEY, SMS_ESMS, SMS_ESMS_ADVERTISING, SMS_ESMS_CUSTOMER_CARE, SMS_ESMS_VIBER, SMS_FPT, SMS_SPEED, SMS_TWILIO, SMS_VONAGE, SUM, SUM_DISTINCT, T, TABLE, TableMeta, TableResponseDto, TableSettings, TELEGRAM, TELEGRAM_BOT, TEXT, TIME, TIMESTAMP, TIMESTAMPTZ, TINYINT, TINYTEXT, UNIQUEIDENTIFIER, UPDATE, URL, USER, UUID, VARBINARY, VARCHAR, VIEW, ViewMeta, ViewResponseDto, WEBSITE, XAI, XML, YEAR, ZALO_BOT, ZALO_OA, ZALO_PERSONAL } from '../shared-types';
|
|
4
|
-
export { ExternalDataType, FieldType, ModelType, ProviderEnum, ReferentialAction, RelationType, RollupFunction, RowColoringMode, StorageMode, ViewLockType, ViewType } from '../shared-types';
|
|
1
|
+
export type ApiResponseDto<T = unknown> = import('../../core/types').ApiResponseDto<T>;
|
|
5
2
|
export interface AcceptWorkspaceInviteDto {
|
|
6
3
|
token: string;
|
|
7
4
|
}
|
|
@@ -307,6 +304,54 @@ export interface CalendarViewResponseDto {
|
|
|
307
304
|
createdAt: number;
|
|
308
305
|
updatedAt: number | null;
|
|
309
306
|
}
|
|
307
|
+
export interface ColumnResponseDto {
|
|
308
|
+
id: string;
|
|
309
|
+
tableId: string;
|
|
310
|
+
workspaceId: string | null;
|
|
311
|
+
baseId: string | null;
|
|
312
|
+
sourceId: string | null;
|
|
313
|
+
name: string;
|
|
314
|
+
keyName: string;
|
|
315
|
+
description: string | null;
|
|
316
|
+
columnName: string | null;
|
|
317
|
+
type: FieldType;
|
|
318
|
+
order: number | null;
|
|
319
|
+
isPrimary: boolean | null;
|
|
320
|
+
isPrimaryValue: boolean | null;
|
|
321
|
+
isRequired: boolean | null;
|
|
322
|
+
isUnique: boolean | null;
|
|
323
|
+
isAutoIncrement: boolean | null;
|
|
324
|
+
isUnsigned: boolean | null;
|
|
325
|
+
isSystem: boolean | null;
|
|
326
|
+
isReadonly: boolean | null;
|
|
327
|
+
isVirtual: boolean | null;
|
|
328
|
+
uiDataType: string | null;
|
|
329
|
+
dataType: string | null;
|
|
330
|
+
numericPrecision: string | null;
|
|
331
|
+
numericScale: string | null;
|
|
332
|
+
characterLength: string | null;
|
|
333
|
+
columnDefault: string | null;
|
|
334
|
+
columnType: string | null;
|
|
335
|
+
columnComment: string | null;
|
|
336
|
+
columnSequenceName: string | null;
|
|
337
|
+
dataTypeExtra: string | null;
|
|
338
|
+
dataTypeExtraPrecision: string | null;
|
|
339
|
+
dataTypeExtraScale: string | null;
|
|
340
|
+
autoUpdated: boolean | null;
|
|
341
|
+
config: FieldConfig | null;
|
|
342
|
+
meta: FieldMeta | null;
|
|
343
|
+
validation: string | null;
|
|
344
|
+
externalColumnName: string | null;
|
|
345
|
+
externalDataType: ExternalDataType | null;
|
|
346
|
+
createdAt: number | null;
|
|
347
|
+
updatedAt: number | null;
|
|
348
|
+
relationConfig?: RelationConfigResponseDto | null;
|
|
349
|
+
lookupConfig?: LookupConfigResponseDto | null;
|
|
350
|
+
rollupConfig?: RollupConfigResponseDto | null;
|
|
351
|
+
inverseFieldId?: string | null;
|
|
352
|
+
inverseFieldKey?: string | null;
|
|
353
|
+
inverseFieldName?: string | null;
|
|
354
|
+
}
|
|
310
355
|
export interface CommandPaletteSearchQueryDto {
|
|
311
356
|
q: string;
|
|
312
357
|
limit?: number;
|
|
@@ -424,6 +469,7 @@ export interface CreateHookDto {
|
|
|
424
469
|
async?: boolean;
|
|
425
470
|
payload?: JsonObject | JsonArray;
|
|
426
471
|
url?: string;
|
|
472
|
+
method?: HookHttpMethod;
|
|
427
473
|
headers?: Record<string, string>;
|
|
428
474
|
secret?: string;
|
|
429
475
|
condition?: boolean;
|
|
@@ -585,6 +631,177 @@ export interface ExportOptionsDto {
|
|
|
585
631
|
export interface ExportStartResponseDto {
|
|
586
632
|
jobId: string;
|
|
587
633
|
}
|
|
634
|
+
export declare enum ExternalDataType {
|
|
635
|
+
VARCHAR = "VARCHAR",
|
|
636
|
+
CHAR = "CHAR",
|
|
637
|
+
TEXT = "TEXT",
|
|
638
|
+
NVARCHAR = "NVARCHAR",
|
|
639
|
+
NCHAR = "NCHAR",
|
|
640
|
+
LONGTEXT = "LONGTEXT",
|
|
641
|
+
MEDIUMTEXT = "MEDIUMTEXT",
|
|
642
|
+
TINYTEXT = "TINYTEXT",
|
|
643
|
+
INTEGER = "INTEGER",
|
|
644
|
+
INT = "INT",
|
|
645
|
+
SMALLINT = "SMALLINT",
|
|
646
|
+
BIGINT = "BIGINT",
|
|
647
|
+
TINYINT = "TINYINT",
|
|
648
|
+
MEDIUMINT = "MEDIUMINT",
|
|
649
|
+
SERIAL = "SERIAL",
|
|
650
|
+
BIGSERIAL = "BIGSERIAL",
|
|
651
|
+
DECIMAL = "DECIMAL",
|
|
652
|
+
NUMERIC = "NUMERIC",
|
|
653
|
+
FLOAT = "FLOAT",
|
|
654
|
+
DOUBLE = "DOUBLE",
|
|
655
|
+
REAL = "REAL",
|
|
656
|
+
MONEY = "MONEY",
|
|
657
|
+
SMALLMONEY = "SMALLMONEY",
|
|
658
|
+
BOOLEAN = "BOOLEAN",
|
|
659
|
+
BIT = "BIT",
|
|
660
|
+
DATE = "DATE",
|
|
661
|
+
TIME = "TIME",
|
|
662
|
+
DATETIME = "DATETIME",
|
|
663
|
+
DATETIME2 = "DATETIME2",
|
|
664
|
+
SMALLDATETIME = "SMALLDATETIME",
|
|
665
|
+
TIMESTAMP = "TIMESTAMP",
|
|
666
|
+
TIMESTAMPTZ = "TIMESTAMPTZ",
|
|
667
|
+
YEAR = "YEAR",
|
|
668
|
+
BINARY = "BINARY",
|
|
669
|
+
VARBINARY = "VARBINARY",
|
|
670
|
+
BLOB = "BLOB",
|
|
671
|
+
BYTEA = "BYTEA",
|
|
672
|
+
IMAGE = "IMAGE",
|
|
673
|
+
JSON = "JSON",
|
|
674
|
+
JSONB = "JSONB",
|
|
675
|
+
ARRAY = "ARRAY",
|
|
676
|
+
UUID = "UUID",
|
|
677
|
+
UNIQUEIDENTIFIER = "UNIQUEIDENTIFIER",
|
|
678
|
+
GEOMETRY = "GEOMETRY",
|
|
679
|
+
GEOGRAPHY = "GEOGRAPHY",
|
|
680
|
+
POINT = "POINT",
|
|
681
|
+
XML = "XML",
|
|
682
|
+
ENUM = "ENUM",
|
|
683
|
+
SET = "SET",
|
|
684
|
+
OBJECT_ID = "OBJECT_ID",
|
|
685
|
+
DOCUMENT = "DOCUMENT",
|
|
686
|
+
INTERVAL = "INTERVAL",
|
|
687
|
+
CIDR = "CIDR",
|
|
688
|
+
INET = "INET",
|
|
689
|
+
MACADDR = "MACADDR",
|
|
690
|
+
HSTORE = "HSTORE",
|
|
691
|
+
CUSTOM = "CUSTOM"
|
|
692
|
+
}
|
|
693
|
+
export interface ExternalSyncConfig {
|
|
694
|
+
source: 'google_sheets' | 'airtable' | 'notion' | 'api';
|
|
695
|
+
sourceId?: string;
|
|
696
|
+
syncInterval?: number;
|
|
697
|
+
lastSyncAt?: Date;
|
|
698
|
+
}
|
|
699
|
+
export interface FieldConfig {
|
|
700
|
+
options?: {
|
|
701
|
+
id: string;
|
|
702
|
+
label: string;
|
|
703
|
+
color?: string;
|
|
704
|
+
}[];
|
|
705
|
+
precision?: number;
|
|
706
|
+
currencySymbol?: string;
|
|
707
|
+
currencyCode?: string;
|
|
708
|
+
percentFormat?: 'decimal' | 'whole';
|
|
709
|
+
maxRating?: number;
|
|
710
|
+
ratingIcon?: 'star' | 'heart' | 'thumb';
|
|
711
|
+
prefix?: string;
|
|
712
|
+
startNumber?: number;
|
|
713
|
+
digitCount?: number;
|
|
714
|
+
dateFormat?: string;
|
|
715
|
+
timeFormat?: '12h' | '24h';
|
|
716
|
+
includeTime?: boolean;
|
|
717
|
+
timezone?: string;
|
|
718
|
+
durationFormat?: 'h:mm' | 'h:mm:ss' | 'days';
|
|
719
|
+
targetTableId?: string;
|
|
720
|
+
allowMultiple?: boolean;
|
|
721
|
+
symmetricFieldId?: string;
|
|
722
|
+
relationFieldId?: string;
|
|
723
|
+
lookupFieldId?: string;
|
|
724
|
+
rollupRelationFieldId?: string;
|
|
725
|
+
rollupFieldId?: string;
|
|
726
|
+
rollupFunction?: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'counta' | 'countall';
|
|
727
|
+
formulaExpression?: string;
|
|
728
|
+
outputType?: 'number' | 'text' | 'date' | 'boolean';
|
|
729
|
+
enableRichText?: boolean;
|
|
730
|
+
maxLength?: number;
|
|
731
|
+
defaultCountryCode?: string;
|
|
732
|
+
urlType?: 'any' | 'image' | 'video';
|
|
733
|
+
allowMultipleUsers?: boolean;
|
|
734
|
+
notifyOnAssign?: boolean;
|
|
735
|
+
allowedFileTypes?: string[];
|
|
736
|
+
maxFileSize?: number;
|
|
737
|
+
maxFiles?: number;
|
|
738
|
+
qrValueFieldId?: string;
|
|
739
|
+
barcodeValueFieldId?: string;
|
|
740
|
+
barcodeFormat?: string;
|
|
741
|
+
buttonLabel?: string;
|
|
742
|
+
buttonType?: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info';
|
|
743
|
+
buttonActionType?: 'url' | 'api' | 'script' | 'email' | 'page';
|
|
744
|
+
buttonActionConfig?: Record<string, any>;
|
|
745
|
+
buttonIcon?: string;
|
|
746
|
+
buttonTooltip?: string;
|
|
747
|
+
buttonWidth?: number;
|
|
748
|
+
buttonConfirmation?: string;
|
|
749
|
+
aiPrompt?: string;
|
|
750
|
+
aiModel?: string;
|
|
751
|
+
aiConfig?: Record<string, any>;
|
|
752
|
+
}
|
|
753
|
+
export type FieldMeta = {
|
|
754
|
+
placeholder?: string;
|
|
755
|
+
helpText?: string;
|
|
756
|
+
icon?: string;
|
|
757
|
+
color?: string;
|
|
758
|
+
display?: {
|
|
759
|
+
width?: number;
|
|
760
|
+
hidden?: boolean;
|
|
761
|
+
order?: number;
|
|
762
|
+
};
|
|
763
|
+
validation?: {
|
|
764
|
+
min?: number;
|
|
765
|
+
max?: number;
|
|
766
|
+
pattern?: string;
|
|
767
|
+
message?: string;
|
|
768
|
+
};
|
|
769
|
+
};
|
|
770
|
+
export declare enum FieldType {
|
|
771
|
+
TEXT = "text",
|
|
772
|
+
LONG_TEXT = "long_text",
|
|
773
|
+
EMAIL = "email",
|
|
774
|
+
PHONE = "phone",
|
|
775
|
+
URL = "url",
|
|
776
|
+
NUMBER = "number",
|
|
777
|
+
CURRENCY = "currency",
|
|
778
|
+
PERCENT = "percent",
|
|
779
|
+
RATING = "rating",
|
|
780
|
+
AUTONUMBER = "autonumber",
|
|
781
|
+
ORDER = "order",
|
|
782
|
+
SELECT = "select",
|
|
783
|
+
MULTI_SELECT = "multi_select",
|
|
784
|
+
BOOLEAN = "boolean",
|
|
785
|
+
DATE = "date",
|
|
786
|
+
DATETIME = "datetime",
|
|
787
|
+
DURATION = "duration",
|
|
788
|
+
RELATION = "relation",
|
|
789
|
+
LINK_TO_ANOTHER_RECORD = "link_to_another_record",
|
|
790
|
+
LINKS = "links",
|
|
791
|
+
LOOKUP = "lookup",
|
|
792
|
+
ROLLUP = "rollup",
|
|
793
|
+
FORMULA = "formula",
|
|
794
|
+
CREATED_TIME = "created_time",
|
|
795
|
+
MODIFIED_TIME = "modified_time",
|
|
796
|
+
CREATED_BY = "created_by",
|
|
797
|
+
MODIFIED_BY = "modified_by",
|
|
798
|
+
ATTACHMENT = "attachment",
|
|
799
|
+
QR_CODE = "qrcode",
|
|
800
|
+
BARCODE = "barcode",
|
|
801
|
+
BUTTON = "button",
|
|
802
|
+
USER = "user",
|
|
803
|
+
AI = "ai"
|
|
804
|
+
}
|
|
588
805
|
export declare enum FilterComparisonOp {
|
|
589
806
|
EQ = "eq",
|
|
590
807
|
NEQ = "neq",
|
|
@@ -808,6 +1025,13 @@ export declare enum HookFullMutationMode {
|
|
|
808
1025
|
CREATE = "create",
|
|
809
1026
|
UPDATE = "update"
|
|
810
1027
|
}
|
|
1028
|
+
export declare enum HookHttpMethod {
|
|
1029
|
+
GET = "GET",
|
|
1030
|
+
POST = "POST",
|
|
1031
|
+
PUT = "PUT",
|
|
1032
|
+
PATCH = "PATCH",
|
|
1033
|
+
DELETE = "DELETE"
|
|
1034
|
+
}
|
|
811
1035
|
export interface HookLogResponseDto {
|
|
812
1036
|
id: string;
|
|
813
1037
|
hookId?: string | null;
|
|
@@ -854,6 +1078,7 @@ export interface HookResponseDto {
|
|
|
854
1078
|
async?: boolean | null;
|
|
855
1079
|
payload?: unknown;
|
|
856
1080
|
url?: string | null;
|
|
1081
|
+
method?: HookHttpMethod | null;
|
|
857
1082
|
headers?: unknown;
|
|
858
1083
|
hasSecret?: boolean | null;
|
|
859
1084
|
condition?: boolean | null;
|
|
@@ -1038,6 +1263,10 @@ export interface LookupConfigDto {
|
|
|
1038
1263
|
relationFieldRef: RelationFieldRefDto;
|
|
1039
1264
|
lookupFieldId: string;
|
|
1040
1265
|
}
|
|
1266
|
+
export interface LookupConfigResponseDto {
|
|
1267
|
+
relationFieldId: string | null;
|
|
1268
|
+
lookupFieldId: string | null;
|
|
1269
|
+
}
|
|
1041
1270
|
export declare enum MapProviderType {
|
|
1042
1271
|
OSM = "osm",
|
|
1043
1272
|
GOOGLE = "google",
|
|
@@ -1079,6 +1308,11 @@ export declare enum MembershipScope {
|
|
|
1079
1308
|
BASE = "base",
|
|
1080
1309
|
TEAM = "team"
|
|
1081
1310
|
}
|
|
1311
|
+
export declare enum ModelType {
|
|
1312
|
+
TABLE = "table",
|
|
1313
|
+
VIEW = "view",
|
|
1314
|
+
DASHBOARD = "dashboard"
|
|
1315
|
+
}
|
|
1082
1316
|
export interface PagedResponse<T> {
|
|
1083
1317
|
list: T[];
|
|
1084
1318
|
pageInfo: PageInfo;
|
|
@@ -1114,6 +1348,74 @@ export interface PreviewImportDto {
|
|
|
1114
1348
|
hasHeader?: boolean;
|
|
1115
1349
|
sampleSize?: number;
|
|
1116
1350
|
}
|
|
1351
|
+
export declare enum ProviderEnum {
|
|
1352
|
+
REDAI_LLM = "REDAI",
|
|
1353
|
+
OPENAI = "OPENAI",
|
|
1354
|
+
ALIBABA_CODING_PLAN = "ALIBABA_CODING_PLAN",
|
|
1355
|
+
XAI = "XAI",
|
|
1356
|
+
ANTHROPIC = "ANTHROPIC",
|
|
1357
|
+
DEEPSEEK = "DEEPSEEK",
|
|
1358
|
+
VERTEX_AI = "VERTEX_AI",
|
|
1359
|
+
OPENROUTER = "OPENROUTER",
|
|
1360
|
+
AZURE_AI = "AZURE_AI",
|
|
1361
|
+
PERPLEXITY_AI = "PERPLEXITY_AI",
|
|
1362
|
+
REDAI_EXTENSION = "REDAI_EXTENSION",
|
|
1363
|
+
AGENT_DESKTOP_SDK_EXE = "AGENT_DESKTOP_SDK_EXE",
|
|
1364
|
+
FACEBOOK_PAGE = "FACEBOOK_PAGE",
|
|
1365
|
+
FACEBOOK_PERSONAL = "FACEBOOK_PERSONAL",
|
|
1366
|
+
FACEBOOK_ADS = "FACEBOOK_ADS",
|
|
1367
|
+
FACEBOOK_BUSINESS = "FACEBOOK_BUSINESS",
|
|
1368
|
+
WEBSITE = "WEBSITE",
|
|
1369
|
+
ZALO_OA = "ZALO_OA",
|
|
1370
|
+
ZALO_PERSONAL = "ZALO_PERSONAL",
|
|
1371
|
+
ZALO_BOT = "ZALO_BOT",
|
|
1372
|
+
TELEGRAM_BOT = "TELEGRAM_BOT",
|
|
1373
|
+
TELEGRAM = "TELEGRAM",
|
|
1374
|
+
GHTK = "GHTK",
|
|
1375
|
+
GHN = "GHN",
|
|
1376
|
+
AHAMOVE = "AHAMOVE",
|
|
1377
|
+
MB_BANK = "MB_BANK",
|
|
1378
|
+
OCB_BANK = "OCB_BANK",
|
|
1379
|
+
KL_BANK = "KL_BANK",
|
|
1380
|
+
ACB_BANK = "ACB_BANK",
|
|
1381
|
+
NONE = "NONE",
|
|
1382
|
+
CUSTOM = "CUSTOM",
|
|
1383
|
+
EMAIL_SMTP = "EMAIL_SMTP",
|
|
1384
|
+
EMAIL_TWILIO_SENDGRID = "EMAIL_TWILIO_SENDGRID",
|
|
1385
|
+
EMAIL_GMAIL = "EMAIL_GMAIL",
|
|
1386
|
+
EMAIL_OUTLOOK = "EMAIL_OUTLOOK",
|
|
1387
|
+
SMS_FPT = "SMS_FPT",
|
|
1388
|
+
SMS_TWILIO = "SMS_TWILIO",
|
|
1389
|
+
SMS_VONAGE = "SMS_VONAGE",
|
|
1390
|
+
SMS_SPEED = "SMS_SPEED",
|
|
1391
|
+
SMS_ESMS = "SMS_ESMS",
|
|
1392
|
+
SMS_ESMS_ADVERTISING = "SMS_ESMS_ADVERTISING",
|
|
1393
|
+
SMS_ESMS_CUSTOMER_CARE = "SMS_ESMS_CUSTOMER_CARE",
|
|
1394
|
+
SMS_ESMS_VIBER = "SMS_ESMS_VIBER",
|
|
1395
|
+
GOOGLE_CALENDAR = "GOOGLE_CALENDAR",
|
|
1396
|
+
GOOGLE_SHEETS = "GOOGLE_SHEETS",
|
|
1397
|
+
GOOGLE_DOCS = "GOOGLE_DOCS",
|
|
1398
|
+
GOOGLE_DRIVE = "GOOGLE_DRIVE",
|
|
1399
|
+
GOOGLE_ADS = "GOOGLE_ADS",
|
|
1400
|
+
GETFLY_CRM = "GETFLY_CRM",
|
|
1401
|
+
GOOGLE_CLOUD_PROJECT = "GOOGLE_CLOUD_PROJECT",
|
|
1402
|
+
PROXY = "PROXY",
|
|
1403
|
+
DATABASE_POSTGRESQL = "DATABASE_POSTGRESQL",
|
|
1404
|
+
DATABASE_MYSQL = "DATABASE_MYSQL",
|
|
1405
|
+
DATABASE_MSSQL = "DATABASE_MSSQL",
|
|
1406
|
+
DATABASE_MONGODB = "DATABASE_MONGODB",
|
|
1407
|
+
DATABASE_REDIS = "DATABASE_REDIS",
|
|
1408
|
+
DATABASE_SQLITE = "DATABASE_SQLITE",
|
|
1409
|
+
DATABASE_ORACLE = "DATABASE_ORACLE",
|
|
1410
|
+
DATABASE_MARIADB = "DATABASE_MARIADB",
|
|
1411
|
+
CLOUD_AWS_S3 = "CLOUD_AWS_S3",
|
|
1412
|
+
CLOUD_GOOGLE_CLOUD_STORAGE = "CLOUD_GOOGLE_CLOUD_STORAGE",
|
|
1413
|
+
CLOUD_AZURE_BLOB = "CLOUD_AZURE_BLOB",
|
|
1414
|
+
CLOUD_MINIO = "CLOUD_MINIO",
|
|
1415
|
+
CLOUD_CLOUDFLARE_R2 = "CLOUD_CLOUDFLARE_R2",
|
|
1416
|
+
CLOUD_BACKBLAZE_B2 = "CLOUD_BACKBLAZE_B2",
|
|
1417
|
+
CLOUD_WASABI = "CLOUD_WASABI"
|
|
1418
|
+
}
|
|
1117
1419
|
export type RecordAggregateQueryDto = RecordListQueryDto & {
|
|
1118
1420
|
aggregations?: string;
|
|
1119
1421
|
};
|
|
@@ -1140,6 +1442,13 @@ export interface RecordMoveDto {
|
|
|
1140
1442
|
beforeRecordId?: string | null;
|
|
1141
1443
|
viewId?: string;
|
|
1142
1444
|
}
|
|
1445
|
+
export declare enum ReferentialAction {
|
|
1446
|
+
NO_ACTION = "NO ACTION",
|
|
1447
|
+
CASCADE = "CASCADE",
|
|
1448
|
+
RESTRICT = "RESTRICT",
|
|
1449
|
+
SET_NULL = "SET NULL",
|
|
1450
|
+
SET_DEFAULT = "SET DEFAULT"
|
|
1451
|
+
}
|
|
1143
1452
|
export interface RelationConfigDto {
|
|
1144
1453
|
relationType: RelationType;
|
|
1145
1454
|
relatedTableId: string;
|
|
@@ -1155,10 +1464,33 @@ export interface RelationConfigDto {
|
|
|
1155
1464
|
mmChildFieldId?: string | null;
|
|
1156
1465
|
mmParentFieldId?: string | null;
|
|
1157
1466
|
}
|
|
1467
|
+
export interface RelationConfigResponseDto {
|
|
1468
|
+
relationType: RelationType;
|
|
1469
|
+
relatedTableId: string | null;
|
|
1470
|
+
relatedBaseId: string | null;
|
|
1471
|
+
relatedSourceId: string | null;
|
|
1472
|
+
onUpdate: ReferentialAction | null;
|
|
1473
|
+
onDelete: ReferentialAction | null;
|
|
1474
|
+
isVirtual: boolean | null;
|
|
1475
|
+
targetViewId: string | null;
|
|
1476
|
+
parentFieldId: string | null;
|
|
1477
|
+
childFieldId: string | null;
|
|
1478
|
+
mmTableId: string | null;
|
|
1479
|
+
mmBaseId: string | null;
|
|
1480
|
+
mmSourceId: string | null;
|
|
1481
|
+
mmChildFieldId: string | null;
|
|
1482
|
+
mmParentFieldId: string | null;
|
|
1483
|
+
}
|
|
1158
1484
|
export interface RelationFieldRefDto {
|
|
1159
1485
|
fieldId?: string;
|
|
1160
1486
|
fieldKey?: string;
|
|
1161
1487
|
}
|
|
1488
|
+
export declare enum RelationType {
|
|
1489
|
+
HAS_MANY = "hm",
|
|
1490
|
+
BELONGS_TO = "bt",
|
|
1491
|
+
MANY_TO_MANY = "mm",
|
|
1492
|
+
ONE_TO_ONE = "oo"
|
|
1493
|
+
}
|
|
1162
1494
|
export interface RelationUpdateDto {
|
|
1163
1495
|
refRowIds: string[];
|
|
1164
1496
|
}
|
|
@@ -1187,6 +1519,21 @@ export interface RollupConfigDto {
|
|
|
1187
1519
|
rollupFieldId: string;
|
|
1188
1520
|
rollupFunction?: RollupFunction | null;
|
|
1189
1521
|
}
|
|
1522
|
+
export interface RollupConfigResponseDto {
|
|
1523
|
+
relationFieldId: string | null;
|
|
1524
|
+
rollupFieldId: string | null;
|
|
1525
|
+
rollupFunction: RollupFunction | null;
|
|
1526
|
+
}
|
|
1527
|
+
export declare enum RollupFunction {
|
|
1528
|
+
COUNT = "count",
|
|
1529
|
+
SUM = "sum",
|
|
1530
|
+
AVG = "avg",
|
|
1531
|
+
MIN = "min",
|
|
1532
|
+
MAX = "max",
|
|
1533
|
+
COUNT_DISTINCT = "countDistinct",
|
|
1534
|
+
SUM_DISTINCT = "sumDistinct",
|
|
1535
|
+
AVG_DISTINCT = "avgDistinct"
|
|
1536
|
+
}
|
|
1190
1537
|
export interface RowColorConditionResponseDto {
|
|
1191
1538
|
id: string;
|
|
1192
1539
|
viewId: string;
|
|
@@ -1203,6 +1550,10 @@ export interface RowColorConfigResponseDto {
|
|
|
1203
1550
|
mode: RowColoringMode | null;
|
|
1204
1551
|
conditions: RowColorConditionResponseDto[];
|
|
1205
1552
|
}
|
|
1553
|
+
export declare enum RowColoringMode {
|
|
1554
|
+
FILTER = "filter",
|
|
1555
|
+
SELECT = "select"
|
|
1556
|
+
}
|
|
1206
1557
|
export interface SecureAttachmentTokenDto {
|
|
1207
1558
|
ttlSeconds?: number;
|
|
1208
1559
|
}
|
|
@@ -1289,12 +1640,68 @@ export interface StartImportOptionsDto {
|
|
|
1289
1640
|
sheet?: string;
|
|
1290
1641
|
chunkSize?: number;
|
|
1291
1642
|
}
|
|
1643
|
+
export declare enum StorageMode {
|
|
1644
|
+
JSONB = "JSONB",
|
|
1645
|
+
EAV = "EAV",
|
|
1646
|
+
PHYSICAL = "PHYSICAL"
|
|
1647
|
+
}
|
|
1648
|
+
export type TableMeta = {
|
|
1649
|
+
icon?: string;
|
|
1650
|
+
color?: string;
|
|
1651
|
+
coverImage?: string;
|
|
1652
|
+
tags?: string[];
|
|
1653
|
+
primaryFieldId?: string;
|
|
1654
|
+
displayFieldId?: string;
|
|
1655
|
+
isTemplate?: boolean;
|
|
1656
|
+
};
|
|
1292
1657
|
export type TableRecord = Record<string, JsonValue> & {
|
|
1293
1658
|
id?: string | number;
|
|
1294
1659
|
};
|
|
1295
1660
|
export type TableRecordInput = TableRecord & {
|
|
1296
1661
|
recordId?: string | number;
|
|
1297
1662
|
};
|
|
1663
|
+
export interface TableResponseDto {
|
|
1664
|
+
id: string;
|
|
1665
|
+
workspaceId: string;
|
|
1666
|
+
name: string;
|
|
1667
|
+
slug: string;
|
|
1668
|
+
description: string | null;
|
|
1669
|
+
baseId: string | null;
|
|
1670
|
+
sourceId: string | null;
|
|
1671
|
+
tableName: string | null;
|
|
1672
|
+
type: ModelType | null;
|
|
1673
|
+
storageMode: StorageMode | null;
|
|
1674
|
+
order: number | null;
|
|
1675
|
+
meta: TableMeta;
|
|
1676
|
+
settings: TableSettings;
|
|
1677
|
+
isManyToMany: boolean | null;
|
|
1678
|
+
isSynced: boolean | null;
|
|
1679
|
+
isDeleted: boolean | null;
|
|
1680
|
+
externalSchemaName: string | null;
|
|
1681
|
+
externalTableName: string | null;
|
|
1682
|
+
createdAt: number;
|
|
1683
|
+
updatedAt: number | null;
|
|
1684
|
+
fields?: ColumnResponseDto[];
|
|
1685
|
+
views?: ViewResponseDto[];
|
|
1686
|
+
}
|
|
1687
|
+
export interface TableSettings {
|
|
1688
|
+
icon?: string;
|
|
1689
|
+
color?: string;
|
|
1690
|
+
coverImage?: string;
|
|
1691
|
+
defaultViewId?: string;
|
|
1692
|
+
allowPublicAccess?: boolean;
|
|
1693
|
+
allowAnonymousSubmit?: boolean;
|
|
1694
|
+
recordPrefix?: string;
|
|
1695
|
+
enableComments?: boolean;
|
|
1696
|
+
enableHistory?: boolean;
|
|
1697
|
+
enableAttachments?: boolean;
|
|
1698
|
+
enableWebhooks?: boolean;
|
|
1699
|
+
enableAutomations?: boolean;
|
|
1700
|
+
externalSyncEnabled?: boolean;
|
|
1701
|
+
externalSyncConfig?: ExternalSyncConfig;
|
|
1702
|
+
maxRecords?: number;
|
|
1703
|
+
maxAttachmentSize?: number;
|
|
1704
|
+
}
|
|
1298
1705
|
export interface TestHookDto {
|
|
1299
1706
|
hook: CreateHookDto;
|
|
1300
1707
|
rowId?: string;
|
|
@@ -1419,12 +1826,60 @@ export interface ViewColumnResponseDto {
|
|
|
1419
1826
|
updatedAt: number | null;
|
|
1420
1827
|
}
|
|
1421
1828
|
export type ViewDetailQueryDto = ListViewsQueryDto;
|
|
1829
|
+
export declare enum ViewLockType {
|
|
1830
|
+
COLLABORATIVE = "collaborative",
|
|
1831
|
+
LOCKED = "locked",
|
|
1832
|
+
PERSONAL = "personal"
|
|
1833
|
+
}
|
|
1834
|
+
export type ViewMeta = {
|
|
1835
|
+
icon?: string;
|
|
1836
|
+
color?: string;
|
|
1837
|
+
coverImage?: string;
|
|
1838
|
+
tags?: string[];
|
|
1839
|
+
isPinned?: boolean;
|
|
1840
|
+
layout?: {
|
|
1841
|
+
width?: number;
|
|
1842
|
+
height?: number;
|
|
1843
|
+
density?: 'compact' | 'normal' | 'comfortable';
|
|
1844
|
+
};
|
|
1845
|
+
};
|
|
1846
|
+
export interface ViewResponseDto {
|
|
1847
|
+
id: string;
|
|
1848
|
+
tableId: string;
|
|
1849
|
+
workspaceId: string | null;
|
|
1850
|
+
baseId: string | null;
|
|
1851
|
+
sourceId: string | null;
|
|
1852
|
+
name: string;
|
|
1853
|
+
description: string | null;
|
|
1854
|
+
type: ViewType;
|
|
1855
|
+
show: boolean;
|
|
1856
|
+
order: number | null;
|
|
1857
|
+
lockType: ViewLockType | null;
|
|
1858
|
+
uuid: string | null;
|
|
1859
|
+
showSystemFields: boolean;
|
|
1860
|
+
meta: ViewMeta;
|
|
1861
|
+
rowColoringMode: RowColoringMode | null;
|
|
1862
|
+
createdBy: number | null;
|
|
1863
|
+
ownedBy: number | null;
|
|
1864
|
+
customUrlId: string | null;
|
|
1865
|
+
isDefault: boolean;
|
|
1866
|
+
createdAt: number;
|
|
1867
|
+
updatedAt: number | null;
|
|
1868
|
+
}
|
|
1422
1869
|
export declare enum ViewSortDirection {
|
|
1423
1870
|
ASC = "asc",
|
|
1424
1871
|
DESC = "desc",
|
|
1425
1872
|
COUNT_ASC = "count-asc",
|
|
1426
1873
|
COUNT_DESC = "count-desc"
|
|
1427
1874
|
}
|
|
1875
|
+
export declare enum ViewType {
|
|
1876
|
+
FORM = "form",
|
|
1877
|
+
GALLERY = "gallery",
|
|
1878
|
+
GRID = "grid",
|
|
1879
|
+
KANBAN = "kanban",
|
|
1880
|
+
CALENDAR = "calendar",
|
|
1881
|
+
MAP = "map"
|
|
1882
|
+
}
|
|
1428
1883
|
export interface WarmupCacheDto {
|
|
1429
1884
|
tableIds?: string[];
|
|
1430
1885
|
ttlSeconds?: number;
|
|
@@ -1600,9 +2055,18 @@ export interface WorkspaceSettings {
|
|
|
1600
2055
|
customDomain?: string;
|
|
1601
2056
|
customDomainVerified?: boolean;
|
|
1602
2057
|
}
|
|
2058
|
+
export type ACB_BANK = unknown;
|
|
1603
2059
|
export type ACCEPTED = unknown;
|
|
2060
|
+
export type ACTION = unknown;
|
|
2061
|
+
export type ACTIVE = unknown;
|
|
2062
|
+
export type ADMIN = unknown;
|
|
2063
|
+
export type AGENT_DESKTOP_SDK_EXE = unknown;
|
|
2064
|
+
export type AHAMOVE = unknown;
|
|
2065
|
+
export type AI = unknown;
|
|
2066
|
+
export type ALIBABA_CODING_PLAN = unknown;
|
|
1604
2067
|
export type ALL_OF = unknown;
|
|
1605
2068
|
export type AND = unknown;
|
|
2069
|
+
export type ANTHROPIC = unknown;
|
|
1606
2070
|
export type ANY_OF = unknown;
|
|
1607
2071
|
export type API_TOKEN_CREATE = unknown;
|
|
1608
2072
|
export type API_TOKEN_DELETE = unknown;
|
|
@@ -1610,18 +2074,49 @@ export type API_TOKEN_UPDATE = unknown;
|
|
|
1610
2074
|
export type APIS_CREATED = unknown;
|
|
1611
2075
|
export type APPEND = unknown;
|
|
1612
2076
|
export type APPROVED = unknown;
|
|
2077
|
+
export type ARCHIVED = unknown;
|
|
2078
|
+
export type ARRAY = unknown;
|
|
2079
|
+
export type ASC = unknown;
|
|
2080
|
+
export type ATTACHMENT = unknown;
|
|
1613
2081
|
export type ATTACHMENT_UPLOAD = unknown;
|
|
2082
|
+
export type AUTONUMBER = unknown;
|
|
2083
|
+
export type AVG = unknown;
|
|
2084
|
+
export type AVG_DISTINCT = unknown;
|
|
2085
|
+
export type AZURE_AI = unknown;
|
|
2086
|
+
export type BARCODE = unknown;
|
|
1614
2087
|
export type BASE = unknown;
|
|
1615
2088
|
export type BASE_DUPLICATE_COMPLETE = unknown;
|
|
1616
2089
|
export type BASE_DUPLICATE_FAIL = unknown;
|
|
1617
2090
|
export type BASE_DUPLICATE_START = unknown;
|
|
2091
|
+
export type BELONGS_TO = unknown;
|
|
1618
2092
|
export type BETWEEN = unknown;
|
|
2093
|
+
export type BIGINT = unknown;
|
|
2094
|
+
export type BIGSERIAL = unknown;
|
|
2095
|
+
export type BINARY = unknown;
|
|
2096
|
+
export type BIT = unknown;
|
|
1619
2097
|
export type BLANK = unknown;
|
|
2098
|
+
export type BLOB = unknown;
|
|
2099
|
+
export type BOOLEAN = unknown;
|
|
2100
|
+
export type BUTTON = unknown;
|
|
2101
|
+
export type BYTEA = unknown;
|
|
2102
|
+
export type CALENDAR = unknown;
|
|
1620
2103
|
export type CALENDAR_CREATE = unknown;
|
|
1621
2104
|
export type CALENDAR_DELETE = unknown;
|
|
1622
2105
|
export type CALENDAR_UPDATE = unknown;
|
|
1623
2106
|
export type CANCELED = unknown;
|
|
2107
|
+
export type CASCADE = unknown;
|
|
2108
|
+
export type CENTER = unknown;
|
|
2109
|
+
export type CHAR = unknown;
|
|
1624
2110
|
export type CHECKED = unknown;
|
|
2111
|
+
export type CIDR = unknown;
|
|
2112
|
+
export type CLOUD_AWS_S3 = unknown;
|
|
2113
|
+
export type CLOUD_AZURE_BLOB = unknown;
|
|
2114
|
+
export type CLOUD_BACKBLAZE_B2 = unknown;
|
|
2115
|
+
export type CLOUD_CLOUDFLARE_R2 = unknown;
|
|
2116
|
+
export type CLOUD_GOOGLE_CLOUD_STORAGE = unknown;
|
|
2117
|
+
export type CLOUD_MINIO = unknown;
|
|
2118
|
+
export type CLOUD_WASABI = unknown;
|
|
2119
|
+
export type COLLABORATIVE = unknown;
|
|
1625
2120
|
export type COLUMN_CREATE = unknown;
|
|
1626
2121
|
export type COLUMN_DELETE = unknown;
|
|
1627
2122
|
export type COLUMN_DUPLICATE_COMPLETE = unknown;
|
|
@@ -1633,9 +2128,17 @@ export type COMMENT_DELETE = unknown;
|
|
|
1633
2128
|
export type COMMENT_UPDATE = unknown;
|
|
1634
2129
|
export type COMMENTER = unknown;
|
|
1635
2130
|
export type COMPLETED = unknown;
|
|
2131
|
+
export type COUNT = unknown;
|
|
1636
2132
|
export type COUNT_ASC = unknown;
|
|
1637
2133
|
export type COUNT_DESC = unknown;
|
|
2134
|
+
export type COUNT_DISTINCT = unknown;
|
|
2135
|
+
export type CREATE = unknown;
|
|
2136
|
+
export type CREATED_BY = unknown;
|
|
2137
|
+
export type CREATED_TIME = unknown;
|
|
1638
2138
|
export type CSV = unknown;
|
|
2139
|
+
export type CURRENCY = unknown;
|
|
2140
|
+
export type CUSTOM = unknown;
|
|
2141
|
+
export type DASHBOARD = unknown;
|
|
1639
2142
|
export type DASHBOARD_CREATE = unknown;
|
|
1640
2143
|
export type DASHBOARD_DELETE = unknown;
|
|
1641
2144
|
export type DASHBOARD_DUPLICATE_COMPLETE = unknown;
|
|
@@ -1647,11 +2150,38 @@ export type DATA_DELETE = unknown;
|
|
|
1647
2150
|
export type DATA_EXPORT = unknown;
|
|
1648
2151
|
export type DATA_IMPORT = unknown;
|
|
1649
2152
|
export type DATA_UPDATE = unknown;
|
|
2153
|
+
export type DATABASE_MARIADB = unknown;
|
|
2154
|
+
export type DATABASE_MONGODB = unknown;
|
|
2155
|
+
export type DATABASE_MSSQL = unknown;
|
|
2156
|
+
export type DATABASE_MYSQL = unknown;
|
|
2157
|
+
export type DATABASE_ORACLE = unknown;
|
|
2158
|
+
export type DATABASE_POSTGRESQL = unknown;
|
|
2159
|
+
export type DATABASE_REDIS = unknown;
|
|
2160
|
+
export type DATABASE_SQLITE = unknown;
|
|
2161
|
+
export type DATE = unknown;
|
|
2162
|
+
export type DATETIME = unknown;
|
|
2163
|
+
export type DATETIME2 = unknown;
|
|
1650
2164
|
export type DAYS_AGO = unknown;
|
|
1651
2165
|
export type DAYS_FROM_NOW = unknown;
|
|
2166
|
+
export type DECIMAL = unknown;
|
|
2167
|
+
export type DEEPSEEK = unknown;
|
|
2168
|
+
export type DEFAULT = unknown;
|
|
2169
|
+
export type DELETE = unknown;
|
|
2170
|
+
export type DESC = unknown;
|
|
1652
2171
|
export type DEV = unknown;
|
|
2172
|
+
export type DISABLED = unknown;
|
|
2173
|
+
export type DOCUMENT = unknown;
|
|
2174
|
+
export type DOUBLE = unknown;
|
|
2175
|
+
export type DURATION = unknown;
|
|
2176
|
+
export type EAV = unknown;
|
|
1653
2177
|
export type EDITOR = unknown;
|
|
2178
|
+
export type EMAIL = unknown;
|
|
2179
|
+
export type EMAIL_GMAIL = unknown;
|
|
2180
|
+
export type EMAIL_OUTLOOK = unknown;
|
|
2181
|
+
export type EMAIL_SMTP = unknown;
|
|
2182
|
+
export type EMAIL_TWILIO_SENDGRID = unknown;
|
|
1654
2183
|
export type EMPTY = unknown;
|
|
2184
|
+
export type ENUM = unknown;
|
|
1655
2185
|
export type EQ = unknown;
|
|
1656
2186
|
export type EXACT_DATE = unknown;
|
|
1657
2187
|
export type EXPIRED = unknown;
|
|
@@ -1659,19 +2189,42 @@ export type EXTENSION_CREATE = unknown;
|
|
|
1659
2189
|
export type EXTENSION_DELETE = unknown;
|
|
1660
2190
|
export type EXTENSION_UPDATE = unknown;
|
|
1661
2191
|
export type EXTRA = unknown;
|
|
2192
|
+
export type FACEBOOK_ADS = unknown;
|
|
2193
|
+
export type FACEBOOK_BUSINESS = unknown;
|
|
2194
|
+
export type FACEBOOK_PAGE = unknown;
|
|
2195
|
+
export type FACEBOOK_PERSONAL = unknown;
|
|
2196
|
+
export type FAILED = unknown;
|
|
2197
|
+
export type FILTER = unknown;
|
|
1662
2198
|
export type FILTER_CREATE = unknown;
|
|
1663
2199
|
export type FILTER_DELETE = unknown;
|
|
1664
2200
|
export type FILTER_UPDATE = unknown;
|
|
2201
|
+
export type FLOAT = unknown;
|
|
2202
|
+
export type FORM = unknown;
|
|
1665
2203
|
export type FORM_COLUMN_UPDATE = unknown;
|
|
1666
2204
|
export type FORM_CREATE = unknown;
|
|
1667
2205
|
export type FORM_DELETE = unknown;
|
|
1668
2206
|
export type FORM_DUPLICATE = unknown;
|
|
1669
2207
|
export type FORM_UPDATE = unknown;
|
|
2208
|
+
export type FORMULA = unknown;
|
|
2209
|
+
export type GALLERY = unknown;
|
|
1670
2210
|
export type GALLERY_CREATE = unknown;
|
|
1671
2211
|
export type GALLERY_DELETE = unknown;
|
|
1672
2212
|
export type GALLERY_DUPLICATE = unknown;
|
|
1673
2213
|
export type GALLERY_UPDATE = unknown;
|
|
2214
|
+
export type GEOGRAPHY = unknown;
|
|
2215
|
+
export type GEOMETRY = unknown;
|
|
2216
|
+
export type GET = unknown;
|
|
2217
|
+
export type GETFLY_CRM = unknown;
|
|
2218
|
+
export type GHN = unknown;
|
|
2219
|
+
export type GHTK = unknown;
|
|
1674
2220
|
export type GOOGLE = unknown;
|
|
2221
|
+
export type GOOGLE_ADS = unknown;
|
|
2222
|
+
export type GOOGLE_CALENDAR = unknown;
|
|
2223
|
+
export type GOOGLE_CLOUD_PROJECT = unknown;
|
|
2224
|
+
export type GOOGLE_DOCS = unknown;
|
|
2225
|
+
export type GOOGLE_DRIVE = unknown;
|
|
2226
|
+
export type GOOGLE_SHEETS = unknown;
|
|
2227
|
+
export type GRID = unknown;
|
|
1675
2228
|
export type GRID_COLUMN_UPDATE = unknown;
|
|
1676
2229
|
export type GRID_CREATE = unknown;
|
|
1677
2230
|
export type GRID_DELETE = unknown;
|
|
@@ -1681,39 +2234,72 @@ export type GROUP_BY_EQ = unknown;
|
|
|
1681
2234
|
export type GROUP_BY_NULL = unknown;
|
|
1682
2235
|
export type GT = unknown;
|
|
1683
2236
|
export type GTE = unknown;
|
|
2237
|
+
export type HAS_MANY = unknown;
|
|
2238
|
+
export type HSTORE = unknown;
|
|
2239
|
+
export type IMAGE = unknown;
|
|
1684
2240
|
export type IMAGE_UPLOAD = unknown;
|
|
2241
|
+
export type INET = unknown;
|
|
2242
|
+
export type INT = unknown;
|
|
2243
|
+
export type INTEGER = unknown;
|
|
1685
2244
|
export type INTEGRATION_CREATE = unknown;
|
|
1686
2245
|
export type INTEGRATION_DELETE = unknown;
|
|
1687
2246
|
export type INTEGRATION_UPDATE = unknown;
|
|
2247
|
+
export type INTERVAL = unknown;
|
|
1688
2248
|
export type IS = unknown;
|
|
1689
2249
|
export type IS_NOT = unknown;
|
|
1690
2250
|
export type IS_WITHIN = unknown;
|
|
2251
|
+
export type JSON = unknown;
|
|
2252
|
+
export type JSONB = unknown;
|
|
2253
|
+
export type KANBAN = unknown;
|
|
1691
2254
|
export type KANBAN_CREATE = unknown;
|
|
1692
2255
|
export type KANBAN_DELETE = unknown;
|
|
1693
2256
|
export type KANBAN_DUPLICATE = unknown;
|
|
1694
2257
|
export type KANBAN_UPDATE = unknown;
|
|
2258
|
+
export type KL_BANK = unknown;
|
|
1695
2259
|
export type KNOWLEDGE_FILE = unknown;
|
|
1696
2260
|
export type LEFT = unknown;
|
|
1697
2261
|
export type LIKE = unknown;
|
|
2262
|
+
export type LINK_TO_ANOTHER_RECORD = unknown;
|
|
2263
|
+
export type LINKS = unknown;
|
|
2264
|
+
export type LOCKED = unknown;
|
|
2265
|
+
export type LONG_TEXT = unknown;
|
|
2266
|
+
export type LONGTEXT = unknown;
|
|
2267
|
+
export type LOOKUP = unknown;
|
|
1698
2268
|
export type LT = unknown;
|
|
1699
2269
|
export type LTE = unknown;
|
|
2270
|
+
export type MACADDR = unknown;
|
|
2271
|
+
export type MANY_TO_MANY = unknown;
|
|
2272
|
+
export type MAP = unknown;
|
|
1700
2273
|
export type MAP_CREATE = unknown;
|
|
1701
2274
|
export type MAP_DELETE = unknown;
|
|
1702
2275
|
export type MAP_UPDATE = unknown;
|
|
1703
2276
|
export type MAPBOX = unknown;
|
|
1704
2277
|
export type MARIADB = unknown;
|
|
2278
|
+
export type MAX = unknown;
|
|
2279
|
+
export type MB_BANK = unknown;
|
|
1705
2280
|
export type MEDIA = unknown;
|
|
1706
2281
|
export type MEDIUM = unknown;
|
|
2282
|
+
export type MEDIUMINT = unknown;
|
|
2283
|
+
export type MEDIUMTEXT = unknown;
|
|
1707
2284
|
export type META_DIFF_SYNC = unknown;
|
|
2285
|
+
export type MIN = unknown;
|
|
2286
|
+
export type MODIFIED_BY = unknown;
|
|
2287
|
+
export type MODIFIED_TIME = unknown;
|
|
2288
|
+
export type MONEY = unknown;
|
|
1708
2289
|
export type MONGODB = unknown;
|
|
1709
2290
|
export type MSSQL = unknown;
|
|
2291
|
+
export type MULTI_SELECT = unknown;
|
|
1710
2292
|
export type MYSQL = unknown;
|
|
2293
|
+
export type NCHAR = unknown;
|
|
1711
2294
|
export type NEQ = unknown;
|
|
1712
2295
|
export type NEXT_MONTH = unknown;
|
|
1713
2296
|
export type NEXT_NUMBER_OF_DAYS = unknown;
|
|
1714
2297
|
export type NEXT_WEEK = unknown;
|
|
1715
2298
|
export type NEXT_YEAR = unknown;
|
|
1716
2299
|
export type NLIKE = unknown;
|
|
2300
|
+
export type NO = unknown;
|
|
2301
|
+
export type NO_ACTION = unknown;
|
|
2302
|
+
export type NONE = unknown;
|
|
1717
2303
|
export type NOT = unknown;
|
|
1718
2304
|
export type NOT_ALL_OF = unknown;
|
|
1719
2305
|
export type NOT_ANY_OF = unknown;
|
|
@@ -1722,12 +2308,22 @@ export type NOT_BLANK = unknown;
|
|
|
1722
2308
|
export type NOT_CHECKED = unknown;
|
|
1723
2309
|
export type NOT_EMPTY = unknown;
|
|
1724
2310
|
export type NOT_NULL = unknown;
|
|
2311
|
+
export type NULL = unknown;
|
|
2312
|
+
export type NUMBER = unknown;
|
|
2313
|
+
export type NUMERIC = unknown;
|
|
2314
|
+
export type NVARCHAR = unknown;
|
|
2315
|
+
export type OBJECT_ID = unknown;
|
|
2316
|
+
export type OCB_BANK = unknown;
|
|
1725
2317
|
export type ONE_MONTH_AGO = unknown;
|
|
1726
2318
|
export type ONE_MONTH_FROM_NOW = unknown;
|
|
2319
|
+
export type ONE_TO_ONE = unknown;
|
|
1727
2320
|
export type ONE_WEEK_AGO = unknown;
|
|
1728
2321
|
export type ONE_WEEK_FROM_NOW = unknown;
|
|
2322
|
+
export type OPENAI = unknown;
|
|
2323
|
+
export type OPENROUTER = unknown;
|
|
1729
2324
|
export type OR = unknown;
|
|
1730
2325
|
export type ORACLE = unknown;
|
|
2326
|
+
export type ORDER = unknown;
|
|
1731
2327
|
export type ORG_API_TOKEN_CREATE = unknown;
|
|
1732
2328
|
export type ORG_API_TOKEN_DELETE = unknown;
|
|
1733
2329
|
export type ORG_API_TOKEN_UPDATE = unknown;
|
|
@@ -1739,12 +2335,21 @@ export type PAST_MONTH = unknown;
|
|
|
1739
2335
|
export type PAST_NUMBER_OF_DAYS = unknown;
|
|
1740
2336
|
export type PAST_WEEK = unknown;
|
|
1741
2337
|
export type PAST_YEAR = unknown;
|
|
2338
|
+
export type PATCH = unknown;
|
|
2339
|
+
export type PENDING = unknown;
|
|
2340
|
+
export type PERCENT = unknown;
|
|
1742
2341
|
export type PERMISSION_CREATE = unknown;
|
|
1743
2342
|
export type PERMISSION_DELETE = unknown;
|
|
1744
2343
|
export type PERMISSION_UPDATE = unknown;
|
|
2344
|
+
export type PERPLEXITY_AI = unknown;
|
|
2345
|
+
export type PERSONAL = unknown;
|
|
2346
|
+
export type PHONE = unknown;
|
|
2347
|
+
export type PHYSICAL = unknown;
|
|
1745
2348
|
export type PLUGIN_INSTALL = unknown;
|
|
1746
2349
|
export type PLUGIN_TEST = unknown;
|
|
1747
2350
|
export type PLUGIN_UNINSTALL = unknown;
|
|
2351
|
+
export type POINT = unknown;
|
|
2352
|
+
export type POST = unknown;
|
|
1748
2353
|
export type POSTGRESQL = unknown;
|
|
1749
2354
|
export type PROD = unknown;
|
|
1750
2355
|
export type PROJECT_CLONE = unknown;
|
|
@@ -1755,12 +2360,23 @@ export type PROJECT_UPDATE = unknown;
|
|
|
1755
2360
|
export type PROJECT_USER_DELETE = unknown;
|
|
1756
2361
|
export type PROJECT_USER_RESEND_INVITE = unknown;
|
|
1757
2362
|
export type PROJECT_USER_UPDATE = unknown;
|
|
2363
|
+
export type PROXY = unknown;
|
|
2364
|
+
export type PUT = unknown;
|
|
2365
|
+
export type QR_CODE = unknown;
|
|
2366
|
+
export type RATING = unknown;
|
|
1758
2367
|
export type READ = unknown;
|
|
2368
|
+
export type REAL = unknown;
|
|
2369
|
+
export type REDAI = unknown;
|
|
2370
|
+
export type REDAI_EXTENSION = unknown;
|
|
2371
|
+
export type REDAI_LLM = unknown;
|
|
1759
2372
|
export type REJECTED = unknown;
|
|
2373
|
+
export type RELATION = unknown;
|
|
1760
2374
|
export type RELATION_CREATE = unknown;
|
|
1761
2375
|
export type RELATION_DELETE = unknown;
|
|
2376
|
+
export type RESTRICT = unknown;
|
|
1762
2377
|
export type REVOKED = unknown;
|
|
1763
2378
|
export type RIGHT = unknown;
|
|
2379
|
+
export type ROLLUP = unknown;
|
|
1764
2380
|
export type ROW_USER_MENTION = unknown;
|
|
1765
2381
|
export type RUNNING = unknown;
|
|
1766
2382
|
export type SCRIPT = unknown;
|
|
@@ -1768,6 +2384,11 @@ export type SCRIPT_CREATE = unknown;
|
|
|
1768
2384
|
export type SCRIPT_DELETE = unknown;
|
|
1769
2385
|
export type SCRIPT_DUPLICATE = unknown;
|
|
1770
2386
|
export type SCRIPT_UPDATE = unknown;
|
|
2387
|
+
export type SELECT = unknown;
|
|
2388
|
+
export type SERIAL = unknown;
|
|
2389
|
+
export type SET = unknown;
|
|
2390
|
+
export type SET_DEFAULT = unknown;
|
|
2391
|
+
export type SET_NULL = unknown;
|
|
1771
2392
|
export type SHARED_BASE_DELETE_LINK = unknown;
|
|
1772
2393
|
export type SHARED_BASE_GENERATE_LINK = unknown;
|
|
1773
2394
|
export type SHARED_BASE_REVOKE_LINK = unknown;
|
|
@@ -1778,6 +2399,17 @@ export type SHARED_VIEW_CREATE = unknown;
|
|
|
1778
2399
|
export type SHARED_VIEW_DELETE = unknown;
|
|
1779
2400
|
export type SHARED_VIEW_UPDATE = unknown;
|
|
1780
2401
|
export type SHORT = unknown;
|
|
2402
|
+
export type SMALLDATETIME = unknown;
|
|
2403
|
+
export type SMALLINT = unknown;
|
|
2404
|
+
export type SMALLMONEY = unknown;
|
|
2405
|
+
export type SMS_ESMS = unknown;
|
|
2406
|
+
export type SMS_ESMS_ADVERTISING = unknown;
|
|
2407
|
+
export type SMS_ESMS_CUSTOMER_CARE = unknown;
|
|
2408
|
+
export type SMS_ESMS_VIBER = unknown;
|
|
2409
|
+
export type SMS_FPT = unknown;
|
|
2410
|
+
export type SMS_SPEED = unknown;
|
|
2411
|
+
export type SMS_TWILIO = unknown;
|
|
2412
|
+
export type SMS_VONAGE = unknown;
|
|
1781
2413
|
export type SNAPSHOT_CREATE = unknown;
|
|
1782
2414
|
export type SNAPSHOT_DELETE = unknown;
|
|
1783
2415
|
export type SNAPSHOT_RESTORE = unknown;
|
|
@@ -1790,9 +2422,13 @@ export type SOURCE_UPDATE = unknown;
|
|
|
1790
2422
|
export type SQLITE = unknown;
|
|
1791
2423
|
export type STAGING = unknown;
|
|
1792
2424
|
export type SUCCESS = unknown;
|
|
2425
|
+
export type SUM = unknown;
|
|
2426
|
+
export type SUM_DISTINCT = unknown;
|
|
1793
2427
|
export type SYNC_SOURCE_CREATE = unknown;
|
|
1794
2428
|
export type SYNC_SOURCE_DELETE = unknown;
|
|
1795
2429
|
export type SYNC_SOURCE_UPDATE = unknown;
|
|
2430
|
+
export type T = unknown;
|
|
2431
|
+
export type TABLE = unknown;
|
|
1796
2432
|
export type TABLE_CREATE = unknown;
|
|
1797
2433
|
export type TABLE_DELETE = unknown;
|
|
1798
2434
|
export type TABLE_DUPLICATE_COMPLETE = unknown;
|
|
@@ -1801,11 +2437,23 @@ export type TABLE_DUPLICATE_START = unknown;
|
|
|
1801
2437
|
export type TABLE_UPDATE = unknown;
|
|
1802
2438
|
export type TALL = unknown;
|
|
1803
2439
|
export type TEAM = unknown;
|
|
2440
|
+
export type TELEGRAM = unknown;
|
|
2441
|
+
export type TELEGRAM_BOT = unknown;
|
|
1804
2442
|
export type TEST = unknown;
|
|
2443
|
+
export type TEXT = unknown;
|
|
2444
|
+
export type TIME = unknown;
|
|
2445
|
+
export type TIMESTAMP = unknown;
|
|
2446
|
+
export type TIMESTAMPTZ = unknown;
|
|
2447
|
+
export type TINYINT = unknown;
|
|
2448
|
+
export type TINYTEXT = unknown;
|
|
1805
2449
|
export type TODAY = unknown;
|
|
1806
2450
|
export type TOMORROW = unknown;
|
|
1807
2451
|
export type UI_ACL = unknown;
|
|
1808
2452
|
export type UI_ACL_UPDATE = unknown;
|
|
2453
|
+
export type UNIQUEIDENTIFIER = unknown;
|
|
2454
|
+
export type UPDATE = unknown;
|
|
2455
|
+
export type URL = unknown;
|
|
2456
|
+
export type USER = unknown;
|
|
1809
2457
|
export type USER_DELETE = unknown;
|
|
1810
2458
|
export type USER_EMAIL_VERIFICATION = unknown;
|
|
1811
2459
|
export type USER_INVITE = unknown;
|
|
@@ -1817,10 +2465,14 @@ export type USER_SIGNIN = unknown;
|
|
|
1817
2465
|
export type USER_SIGNOUT = unknown;
|
|
1818
2466
|
export type USER_SIGNUP = unknown;
|
|
1819
2467
|
export type USER_UPDATE = unknown;
|
|
2468
|
+
export type UUID = unknown;
|
|
1820
2469
|
export type V1 = unknown;
|
|
1821
2470
|
export type V2 = unknown;
|
|
1822
2471
|
export type V3 = unknown;
|
|
2472
|
+
export type VARBINARY = unknown;
|
|
2473
|
+
export type VARCHAR = unknown;
|
|
1823
2474
|
export type VERTEX_AI = unknown;
|
|
2475
|
+
export type VIEW = unknown;
|
|
1824
2476
|
export type VIEW_COLUMN_CREATE = unknown;
|
|
1825
2477
|
export type VIEW_COLUMN_UPDATE = unknown;
|
|
1826
2478
|
export type VIEW_CREATE = unknown;
|
|
@@ -1836,6 +2488,7 @@ export type WEBHOOK_DELETE = unknown;
|
|
|
1836
2488
|
export type WEBHOOK_TEST = unknown;
|
|
1837
2489
|
export type WEBHOOK_TRIGGER = unknown;
|
|
1838
2490
|
export type WEBHOOK_UPDATE = unknown;
|
|
2491
|
+
export type WEBSITE = unknown;
|
|
1839
2492
|
export type WELCOME = unknown;
|
|
1840
2493
|
export type WIDGET_CREATE = unknown;
|
|
1841
2494
|
export type WIDGET_DELETE = unknown;
|
|
@@ -1849,8 +2502,14 @@ export type WORKSPACE_UPGRADE_REQUEST = unknown;
|
|
|
1849
2502
|
export type WORKSPACE_USER_DELETE = unknown;
|
|
1850
2503
|
export type WORKSPACE_USER_INVITE = unknown;
|
|
1851
2504
|
export type WORKSPACE_USER_UPDATE = unknown;
|
|
2505
|
+
export type XAI = unknown;
|
|
1852
2506
|
export type XLSX = unknown;
|
|
2507
|
+
export type XML = unknown;
|
|
2508
|
+
export type YEAR = unknown;
|
|
1853
2509
|
export type YESTERDAY = unknown;
|
|
2510
|
+
export type ZALO_BOT = unknown;
|
|
2511
|
+
export type ZALO_OA = unknown;
|
|
2512
|
+
export type ZALO_PERSONAL = unknown;
|
|
1854
2513
|
export interface ApiDocsOpenApiJsonParams {
|
|
1855
2514
|
_?: never;
|
|
1856
2515
|
}
|