@redonvn/redai-backend-api-sdk 0.5.65 → 0.5.66
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 +1 -2
- package/dist/cjs/generated/dynamic-table/index.js.map +1 -1
- package/dist/cjs/generated/dynamic-table/services/bases.service.js +9 -0
- package/dist/cjs/generated/dynamic-table/services/bases.service.js.map +1 -1
- package/dist/cjs/generated/dynamic-table/services/index.js +3 -1
- package/dist/cjs/generated/dynamic-table/services/index.js.map +1 -1
- package/dist/cjs/generated/dynamic-table/services/scripts.service.js +27 -0
- package/dist/cjs/generated/dynamic-table/services/scripts.service.js.map +1 -1
- package/dist/cjs/generated/dynamic-table/services/workspace-my-invites.service.js +46 -0
- package/dist/cjs/generated/dynamic-table/services/workspace-my-invites.service.js.map +1 -0
- package/dist/cjs/generated/dynamic-table/types.js +16 -4
- package/dist/cjs/generated/dynamic-table/types.js.map +1 -1
- package/dist/cjs/generated/index.js +50 -53
- package/dist/cjs/generated/index.js.map +1 -1
- package/dist/cjs/generated/shared-types.js +253 -16
- package/dist/cjs/generated/shared-types.js.map +1 -1
- package/dist/cjs/generated/workspace/types.js +1 -207
- package/dist/cjs/generated/workspace/types.js.map +1 -1
- package/dist/cjs/index.js +1 -0
- package/dist/cjs/index.js.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/services/bases.service.d.ts +2 -1
- package/dist/esm/generated/dynamic-table/services/bases.service.d.ts.map +1 -1
- package/dist/esm/generated/dynamic-table/services/bases.service.js +9 -0
- package/dist/esm/generated/dynamic-table/services/bases.service.js.map +1 -1
- package/dist/esm/generated/dynamic-table/services/index.d.ts +1 -0
- package/dist/esm/generated/dynamic-table/services/index.d.ts.map +1 -1
- package/dist/esm/generated/dynamic-table/services/index.js +1 -0
- package/dist/esm/generated/dynamic-table/services/index.js.map +1 -1
- package/dist/esm/generated/dynamic-table/services/scripts.service.d.ts +4 -1
- package/dist/esm/generated/dynamic-table/services/scripts.service.d.ts.map +1 -1
- package/dist/esm/generated/dynamic-table/services/scripts.service.js +27 -0
- package/dist/esm/generated/dynamic-table/services/scripts.service.js.map +1 -1
- package/dist/esm/generated/dynamic-table/services/workspace-my-invites.service.d.ts +11 -0
- package/dist/esm/generated/dynamic-table/services/workspace-my-invites.service.d.ts.map +1 -0
- package/dist/esm/generated/dynamic-table/services/workspace-my-invites.service.js +42 -0
- package/dist/esm/generated/dynamic-table/services/workspace-my-invites.service.js.map +1 -0
- package/dist/esm/generated/dynamic-table/types.d.ts +194 -58
- package/dist/esm/generated/dynamic-table/types.d.ts.map +1 -1
- package/dist/esm/generated/dynamic-table/types.js +15 -1
- package/dist/esm/generated/dynamic-table/types.js.map +1 -1
- package/dist/esm/generated/index.d.ts +2 -4
- package/dist/esm/generated/index.d.ts.map +1 -1
- package/dist/esm/generated/index.js +1 -3
- package/dist/esm/generated/index.js.map +1 -1
- package/dist/esm/generated/shared-types.d.ts +462 -27
- package/dist/esm/generated/shared-types.d.ts.map +1 -1
- package/dist/esm/generated/shared-types.js +252 -15
- package/dist/esm/generated/shared-types.js.map +1 -1
- package/dist/esm/generated/workspace/types.d.ts +5 -365
- package/dist/esm/generated/workspace/types.d.ts.map +1 -1
- package/dist/esm/generated/workspace/types.js +1 -208
- package/dist/esm/generated/workspace/types.js.map +1 -1
- package/dist/esm/index.d.ts +4 -2
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +2 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +2 -1
|
@@ -108,6 +108,10 @@ export type Acl = AclRoleAccessorMethods & {
|
|
|
108
108
|
request_: (reqOpts: DecorateRequestOptions, callback: BodyResponseCallback) => void;
|
|
109
109
|
};
|
|
110
110
|
export type ACL = unknown;
|
|
111
|
+
export type ACL_CREATE = unknown;
|
|
112
|
+
export type ACL_DELETE = unknown;
|
|
113
|
+
export type ACL_READ = unknown;
|
|
114
|
+
export type ACL_UPDATE = unknown;
|
|
111
115
|
export interface AclRoleAccessorMethods {
|
|
112
116
|
accessMethods: any;
|
|
113
117
|
entities: any;
|
|
@@ -142,9 +146,15 @@ export interface Agent {
|
|
|
142
146
|
agentSkills: AgentSkill[];
|
|
143
147
|
}
|
|
144
148
|
export type AGENT = unknown;
|
|
149
|
+
export type AGENT_ASSIGN = unknown;
|
|
145
150
|
export type AGENT_CREATE = unknown;
|
|
146
151
|
export type AGENT_DELETE = unknown;
|
|
147
152
|
export type AGENT_DESKTOP_SDK_EXE = unknown;
|
|
153
|
+
export type AGENT_EXECUTE = unknown;
|
|
154
|
+
export type AGENT_EXPORT = unknown;
|
|
155
|
+
export type AGENT_IMPORT = unknown;
|
|
156
|
+
export type AGENT_MANAGE = unknown;
|
|
157
|
+
export type AGENT_READ = unknown;
|
|
148
158
|
export type AGENT_UPDATE = unknown;
|
|
149
159
|
export interface AgentConfig {
|
|
150
160
|
profile?: Profile;
|
|
@@ -216,6 +226,8 @@ export type API = unknown;
|
|
|
216
226
|
export type API_TOKEN = unknown;
|
|
217
227
|
export type API_TOKEN_CREATE = unknown;
|
|
218
228
|
export type API_TOKEN_DELETE = unknown;
|
|
229
|
+
export type API_TOKEN_MANAGE = unknown;
|
|
230
|
+
export type API_TOKEN_READ = unknown;
|
|
219
231
|
export type API_TOKEN_UPDATE = unknown;
|
|
220
232
|
export type ApiError = Error & {
|
|
221
233
|
code?: number;
|
|
@@ -293,6 +305,9 @@ export type AreaChartWidgetConfigDto = GroupedChartWidgetConfigBaseDto & {
|
|
|
293
305
|
export type ARRAY = unknown;
|
|
294
306
|
export type ASC = unknown;
|
|
295
307
|
export type ASK_AI = unknown;
|
|
308
|
+
export type ASK_AI_EXECUTE = unknown;
|
|
309
|
+
export type ASK_AI_MANAGE = unknown;
|
|
310
|
+
export type ASK_AI_READ = unknown;
|
|
296
311
|
export type ASSIGN = unknown;
|
|
297
312
|
export type ATTACHMENT = unknown;
|
|
298
313
|
export type Attributes = Record<string, string>;
|
|
@@ -431,6 +446,13 @@ export type BarChartWidgetConfigDto = GroupedChartWidgetConfigBaseDto & {
|
|
|
431
446
|
};
|
|
432
447
|
export type BARCODE = unknown;
|
|
433
448
|
export type BASE = unknown;
|
|
449
|
+
export type BASE_CREATE = unknown;
|
|
450
|
+
export type BASE_DELETE = unknown;
|
|
451
|
+
export type BASE_DUPLICATE = unknown;
|
|
452
|
+
export type BASE_MANAGE = unknown;
|
|
453
|
+
export type BASE_READ = unknown;
|
|
454
|
+
export type BASE_SHARE = unknown;
|
|
455
|
+
export type BASE_UPDATE = unknown;
|
|
434
456
|
export type BASE64 = unknown;
|
|
435
457
|
export type BASE64_DECODE = unknown;
|
|
436
458
|
export type BASE64_ENCODE = unknown;
|
|
@@ -499,6 +521,9 @@ export type BLOB = unknown;
|
|
|
499
521
|
export type BLOG = unknown;
|
|
500
522
|
export type BLOG_CREATE = unknown;
|
|
501
523
|
export type BLOG_DELETE = unknown;
|
|
524
|
+
export type BLOG_EXECUTE = unknown;
|
|
525
|
+
export type BLOG_MANAGE = unknown;
|
|
526
|
+
export type BLOG_READ = unknown;
|
|
502
527
|
export type BLOG_UPDATE = unknown;
|
|
503
528
|
export type Body = unknown;
|
|
504
529
|
export interface BodyResponseCallback {
|
|
@@ -540,14 +565,23 @@ export type BulkGroupDto = BulkDataListDto & {
|
|
|
540
565
|
export type BUSINESS = unknown;
|
|
541
566
|
export type BUSINESS_CREATE = unknown;
|
|
542
567
|
export type BUSINESS_DELETE = unknown;
|
|
568
|
+
export type BUSINESS_EXECUTE = unknown;
|
|
569
|
+
export type BUSINESS_IMPORT = unknown;
|
|
570
|
+
export type BUSINESS_MANAGE = unknown;
|
|
571
|
+
export type BUSINESS_READ = unknown;
|
|
543
572
|
export type BUSINESS_UPDATE = unknown;
|
|
544
573
|
export type BUTTON = unknown;
|
|
545
574
|
export type BUTTON_GROUP = unknown;
|
|
546
575
|
export type BYTEA = unknown;
|
|
547
576
|
export type C = unknown;
|
|
548
577
|
export type CALENDAR = unknown;
|
|
578
|
+
export type CALENDAR_CONNECT = unknown;
|
|
549
579
|
export type CALENDAR_CREATE = unknown;
|
|
550
580
|
export type CALENDAR_DELETE = unknown;
|
|
581
|
+
export type CALENDAR_EXECUTE = unknown;
|
|
582
|
+
export type CALENDAR_MANAGE = unknown;
|
|
583
|
+
export type CALENDAR_READ = unknown;
|
|
584
|
+
export type CALENDAR_SYNC = unknown;
|
|
551
585
|
export type CALENDAR_UPDATE = unknown;
|
|
552
586
|
export type CalendarViewMeta = ViewMeta & {
|
|
553
587
|
timezone?: string;
|
|
@@ -840,6 +874,11 @@ export interface Chat {
|
|
|
840
874
|
username?: string;
|
|
841
875
|
}
|
|
842
876
|
export type CHAT = unknown;
|
|
877
|
+
export type CHAT_CREATE = unknown;
|
|
878
|
+
export type CHAT_EXECUTE = unknown;
|
|
879
|
+
export type CHAT_MANAGE = unknown;
|
|
880
|
+
export type CHAT_READ = unknown;
|
|
881
|
+
export type CHAT_UPDATE = unknown;
|
|
843
882
|
export interface ChatBackground {
|
|
844
883
|
type: BackgroundType;
|
|
845
884
|
}
|
|
@@ -960,6 +999,7 @@ export type COMBO = unknown;
|
|
|
960
999
|
export type COMMENT = unknown;
|
|
961
1000
|
export type COMMENT_CREATE = unknown;
|
|
962
1001
|
export type COMMENT_DELETE = unknown;
|
|
1002
|
+
export type COMMENT_READ = unknown;
|
|
963
1003
|
export type COMMENT_UPDATE = unknown;
|
|
964
1004
|
export type COMMUNITY = unknown;
|
|
965
1005
|
export type COMPARISON = unknown;
|
|
@@ -1133,6 +1173,9 @@ export type Danh = unknown;
|
|
|
1133
1173
|
export type DASHBOARD = unknown;
|
|
1134
1174
|
export type DASHBOARD_CREATE = unknown;
|
|
1135
1175
|
export type DASHBOARD_DELETE = unknown;
|
|
1176
|
+
export type DASHBOARD_MANAGE = unknown;
|
|
1177
|
+
export type DASHBOARD_READ = unknown;
|
|
1178
|
+
export type DASHBOARD_SHARE = unknown;
|
|
1136
1179
|
export type DASHBOARD_UPDATE = unknown;
|
|
1137
1180
|
export type DashboardMeta = {
|
|
1138
1181
|
icon?: string;
|
|
@@ -1174,6 +1217,8 @@ export type DATA_CREATE = unknown;
|
|
|
1174
1217
|
export type DATA_DELETE = unknown;
|
|
1175
1218
|
export type DATA_EXPORT = unknown;
|
|
1176
1219
|
export type DATA_IMPORT = unknown;
|
|
1220
|
+
export type DATA_MANAGE = unknown;
|
|
1221
|
+
export type DATA_READ = unknown;
|
|
1177
1222
|
export type DATA_UPDATE = unknown;
|
|
1178
1223
|
export type DATABASE_MARIADB = unknown;
|
|
1179
1224
|
export type DATABASE_MONGODB = unknown;
|
|
@@ -1289,6 +1334,8 @@ export interface Duration {
|
|
|
1289
1334
|
}
|
|
1290
1335
|
export type DURATION = unknown;
|
|
1291
1336
|
export type DYNAMIC_TABLE = unknown;
|
|
1337
|
+
export type DYNAMIC_TABLE_MANAGE = unknown;
|
|
1338
|
+
export type DYNAMIC_TABLE_READ = unknown;
|
|
1292
1339
|
export type EAV = unknown;
|
|
1293
1340
|
export declare enum ELanguage {
|
|
1294
1341
|
VIETNAMESE = "vn",
|
|
@@ -1631,6 +1678,11 @@ export interface FacebookPersonalMetadata {
|
|
|
1631
1678
|
}
|
|
1632
1679
|
export type FAILED = unknown;
|
|
1633
1680
|
export type FAQ = unknown;
|
|
1681
|
+
export type FAQ_CREATE = unknown;
|
|
1682
|
+
export type FAQ_DELETE = unknown;
|
|
1683
|
+
export type FAQ_MANAGE = unknown;
|
|
1684
|
+
export type FAQ_READ = unknown;
|
|
1685
|
+
export type FAQ_UPDATE = unknown;
|
|
1634
1686
|
export type FEMALE = unknown;
|
|
1635
1687
|
export interface FetchHeaders {
|
|
1636
1688
|
append(name: string, value: string): void;
|
|
@@ -1657,6 +1709,11 @@ export interface FetchResponse {
|
|
|
1657
1709
|
text(): Promise<string>;
|
|
1658
1710
|
}
|
|
1659
1711
|
export type FIELD = unknown;
|
|
1712
|
+
export type FIELD_CREATE = unknown;
|
|
1713
|
+
export type FIELD_DELETE = unknown;
|
|
1714
|
+
export type FIELD_MANAGE = unknown;
|
|
1715
|
+
export type FIELD_READ = unknown;
|
|
1716
|
+
export type FIELD_UPDATE = unknown;
|
|
1660
1717
|
export interface FieldConfig {
|
|
1661
1718
|
defaultValue?: unknown;
|
|
1662
1719
|
options?: {
|
|
@@ -1745,6 +1802,8 @@ export type FieldMeta = {
|
|
|
1745
1802
|
relationInverseType?: string;
|
|
1746
1803
|
relationPrimaryKeyName?: string;
|
|
1747
1804
|
systemKind?: string;
|
|
1805
|
+
conversionJobId?: string;
|
|
1806
|
+
conversionJobStatus?: 'pending' | 'running' | 'completed' | 'failed';
|
|
1748
1807
|
};
|
|
1749
1808
|
export interface FieldResponseMapping {
|
|
1750
1809
|
jsonPath: string;
|
|
@@ -1807,6 +1866,11 @@ export interface File {
|
|
|
1807
1866
|
file_unique_id: string;
|
|
1808
1867
|
}
|
|
1809
1868
|
export type FILE_SYSTEM = unknown;
|
|
1869
|
+
export type FILE_SYSTEM_CREATE = unknown;
|
|
1870
|
+
export type FILE_SYSTEM_DELETE = unknown;
|
|
1871
|
+
export type FILE_SYSTEM_MANAGE = unknown;
|
|
1872
|
+
export type FILE_SYSTEM_READ = unknown;
|
|
1873
|
+
export type FILE_SYSTEM_UPDATE = unknown;
|
|
1810
1874
|
export interface FileDescriptor {
|
|
1811
1875
|
source: FileSourceType;
|
|
1812
1876
|
value: string;
|
|
@@ -2364,6 +2428,13 @@ export type HmacKey = ServiceObject & {
|
|
|
2364
2428
|
instanceRetryValue?: any;
|
|
2365
2429
|
};
|
|
2366
2430
|
export type HOOK = unknown;
|
|
2431
|
+
export type HOOK_CREATE = unknown;
|
|
2432
|
+
export type HOOK_DELETE = unknown;
|
|
2433
|
+
export type HOOK_MANAGE = unknown;
|
|
2434
|
+
export type HOOK_READ = unknown;
|
|
2435
|
+
export type HOOK_TEST = unknown;
|
|
2436
|
+
export type HOOK_TRIGGER = unknown;
|
|
2437
|
+
export type HOOK_UPDATE = unknown;
|
|
2367
2438
|
export type Hosted = unknown;
|
|
2368
2439
|
export type HOURLY = unknown;
|
|
2369
2440
|
export interface HourlyScheduleConfig {
|
|
@@ -2633,8 +2704,15 @@ export interface Integration {
|
|
|
2633
2704
|
updateTimestamp: () => void;
|
|
2634
2705
|
}
|
|
2635
2706
|
export type INTEGRATION = unknown;
|
|
2707
|
+
export type INTEGRATION_CONNECT = unknown;
|
|
2636
2708
|
export type INTEGRATION_CREATE = unknown;
|
|
2637
2709
|
export type INTEGRATION_DELETE = unknown;
|
|
2710
|
+
export type INTEGRATION_DISCONNECT = unknown;
|
|
2711
|
+
export type INTEGRATION_EXECUTE = unknown;
|
|
2712
|
+
export type INTEGRATION_MANAGE = unknown;
|
|
2713
|
+
export type INTEGRATION_READ = unknown;
|
|
2714
|
+
export type INTEGRATION_SYNC = unknown;
|
|
2715
|
+
export type INTEGRATION_TEST = unknown;
|
|
2638
2716
|
export type INTEGRATION_UPDATE = unknown;
|
|
2639
2717
|
export declare enum IntegrationEntityStatus {
|
|
2640
2718
|
ACTIVE = "ACTIVE",
|
|
@@ -2797,13 +2875,15 @@ export interface IStateVariable {
|
|
|
2797
2875
|
export type JSON = unknown;
|
|
2798
2876
|
export type JSON_PARSE = unknown;
|
|
2799
2877
|
export type JSON_STRINGIFY = unknown;
|
|
2800
|
-
export
|
|
2878
|
+
export interface JsonArray extends Array<JsonValue> {
|
|
2879
|
+
__jsonArrayBrand?: 'JsonArray';
|
|
2880
|
+
}
|
|
2801
2881
|
export type JSONB = unknown;
|
|
2802
|
-
export
|
|
2882
|
+
export interface JsonObject {
|
|
2803
2883
|
[key: string]: JsonValue;
|
|
2804
|
-
}
|
|
2884
|
+
}
|
|
2805
2885
|
export type JsonPrimitive = string | number | boolean | null;
|
|
2806
|
-
export type JsonValue = JsonPrimitive |
|
|
2886
|
+
export type JsonValue = JsonPrimitive | JsonObject | JsonArray;
|
|
2807
2887
|
export interface JWTInput {
|
|
2808
2888
|
type?: string;
|
|
2809
2889
|
client_email?: string;
|
|
@@ -2949,10 +3029,25 @@ export interface MapWidgetConfigDto {
|
|
|
2949
3029
|
}
|
|
2950
3030
|
export type MARIADB = unknown;
|
|
2951
3031
|
export type MARKETING = unknown;
|
|
3032
|
+
export type MARKETING_ASSIGN = unknown;
|
|
3033
|
+
export type MARKETING_CONNECT = unknown;
|
|
2952
3034
|
export type MARKETING_CREATE = unknown;
|
|
2953
3035
|
export type MARKETING_DELETE = unknown;
|
|
3036
|
+
export type MARKETING_EXECUTE = unknown;
|
|
3037
|
+
export type MARKETING_EXPORT = unknown;
|
|
3038
|
+
export type MARKETING_MANAGE = unknown;
|
|
3039
|
+
export type MARKETING_READ = unknown;
|
|
3040
|
+
export type MARKETING_SYNC = unknown;
|
|
3041
|
+
export type MARKETING_TEST = unknown;
|
|
3042
|
+
export type MARKETING_TRIGGER = unknown;
|
|
2954
3043
|
export type MARKETING_UPDATE = unknown;
|
|
2955
3044
|
export type MARKETPLACE = unknown;
|
|
3045
|
+
export type MARKETPLACE_CREATE = unknown;
|
|
3046
|
+
export type MARKETPLACE_DELETE = unknown;
|
|
3047
|
+
export type MARKETPLACE_EXECUTE = unknown;
|
|
3048
|
+
export type MARKETPLACE_MANAGE = unknown;
|
|
3049
|
+
export type MARKETPLACE_READ = unknown;
|
|
3050
|
+
export type MARKETPLACE_UPDATE = unknown;
|
|
2956
3051
|
export interface MaskPosition {
|
|
2957
3052
|
point: string;
|
|
2958
3053
|
scale: number;
|
|
@@ -2979,6 +3074,12 @@ export interface Mcp {
|
|
|
2979
3074
|
mcpAgentContexts: McpAgentContext[];
|
|
2980
3075
|
}
|
|
2981
3076
|
export type MCP_DYNAMIC = unknown;
|
|
3077
|
+
export type MCP_DYNAMIC_CREATE = unknown;
|
|
3078
|
+
export type MCP_DYNAMIC_DELETE = unknown;
|
|
3079
|
+
export type MCP_DYNAMIC_EXECUTE = unknown;
|
|
3080
|
+
export type MCP_DYNAMIC_MANAGE = unknown;
|
|
3081
|
+
export type MCP_DYNAMIC_READ = unknown;
|
|
3082
|
+
export type MCP_DYNAMIC_UPDATE = unknown;
|
|
2982
3083
|
export interface McpAgentContext {
|
|
2983
3084
|
mcpId: string;
|
|
2984
3085
|
workspaceId: string;
|
|
@@ -3000,6 +3101,10 @@ export type MEDIUM = unknown;
|
|
|
3000
3101
|
export type MEDIUMINT = unknown;
|
|
3001
3102
|
export type MEDIUMTEXT = unknown;
|
|
3002
3103
|
export type MEMBER = unknown;
|
|
3104
|
+
export type MEMBER_ASSIGN = unknown;
|
|
3105
|
+
export type MEMBER_INVITE = unknown;
|
|
3106
|
+
export type MEMBER_MANAGE = unknown;
|
|
3107
|
+
export type MEMBER_READ = unknown;
|
|
3003
3108
|
export type MENU = unknown;
|
|
3004
3109
|
export type MERGE = unknown;
|
|
3005
3110
|
export declare enum MergeStrategy {
|
|
@@ -3179,6 +3284,10 @@ export interface MetricViewConfigDto {
|
|
|
3179
3284
|
}
|
|
3180
3285
|
export type MetricWidgetColor = 'gray' | 'red' | 'green' | 'yellow' | 'pink' | 'blue' | 'orange' | 'maroon' | 'purple';
|
|
3181
3286
|
export type MetricWidgetColorMode = 'default' | 'filled' | 'colored_text';
|
|
3287
|
+
export interface MetricWidgetComparisonDto {
|
|
3288
|
+
mode: 'previous_period' | 'fixed_target';
|
|
3289
|
+
value?: number;
|
|
3290
|
+
}
|
|
3182
3291
|
export type MetricWidgetConfig = {
|
|
3183
3292
|
query: WidgetQuerySpec;
|
|
3184
3293
|
mode: MetricWidgetMode;
|
|
@@ -3197,10 +3306,7 @@ export interface MetricWidgetConfigDto {
|
|
|
3197
3306
|
mode: MetricWidgetMode;
|
|
3198
3307
|
fieldId?: unknown;
|
|
3199
3308
|
summaryType?: MetricWidgetSummaryType;
|
|
3200
|
-
comparison?:
|
|
3201
|
-
mode?: 'previous_period' | 'fixed_target';
|
|
3202
|
-
value?: number;
|
|
3203
|
-
};
|
|
3309
|
+
comparison?: MetricWidgetComparisonDto;
|
|
3204
3310
|
format?: 'number' | 'currency' | 'percent';
|
|
3205
3311
|
colorMode?: MetricWidgetColorMode;
|
|
3206
3312
|
color?: MetricWidgetColor;
|
|
@@ -3224,6 +3330,12 @@ export type MetricWidgetSummaryType = 'count' | 'empty' | 'filled' | 'unique' |
|
|
|
3224
3330
|
export type MIN = unknown;
|
|
3225
3331
|
export type MODAL = unknown;
|
|
3226
3332
|
export type MODELS = unknown;
|
|
3333
|
+
export type MODELS_CREATE = unknown;
|
|
3334
|
+
export type MODELS_DELETE = unknown;
|
|
3335
|
+
export type MODELS_EXECUTE = unknown;
|
|
3336
|
+
export type MODELS_MANAGE = unknown;
|
|
3337
|
+
export type MODELS_READ = unknown;
|
|
3338
|
+
export type MODELS_UPDATE = unknown;
|
|
3227
3339
|
export declare enum ModelType {
|
|
3228
3340
|
TABLE = "table",
|
|
3229
3341
|
VIEW = "view",
|
|
@@ -3604,7 +3716,12 @@ export declare enum Permission {
|
|
|
3604
3716
|
export type PERMISSION = unknown;
|
|
3605
3717
|
export type PERMISSION_CREATE = unknown;
|
|
3606
3718
|
export type PERMISSION_DELETE = unknown;
|
|
3719
|
+
export type PERMISSION_READ = unknown;
|
|
3607
3720
|
export type PERMISSION_SUBJECT = unknown;
|
|
3721
|
+
export type PERMISSION_SUBJECT_CREATE = unknown;
|
|
3722
|
+
export type PERMISSION_SUBJECT_DELETE = unknown;
|
|
3723
|
+
export type PERMISSION_SUBJECT_READ = unknown;
|
|
3724
|
+
export type PERMISSION_SUBJECT_UPDATE = unknown;
|
|
3608
3725
|
export type PERMISSION_UPDATE = unknown;
|
|
3609
3726
|
export type PERPLEXITY_AI = unknown;
|
|
3610
3727
|
export interface PerRequestMetricRecorder {
|
|
@@ -3706,6 +3823,8 @@ export type PROGRESS = unknown;
|
|
|
3706
3823
|
export type PROJECT = unknown;
|
|
3707
3824
|
export type PROJECT_CREATE = unknown;
|
|
3708
3825
|
export type PROJECT_DELETE = unknown;
|
|
3826
|
+
export type PROJECT_MANAGE = unknown;
|
|
3827
|
+
export type PROJECT_READ = unknown;
|
|
3709
3828
|
export type PROJECT_UPDATE = unknown;
|
|
3710
3829
|
export type ProjectResourceSummary = {
|
|
3711
3830
|
projects: Array<{
|
|
@@ -3871,6 +3990,12 @@ export interface ProximityAlertTriggered {
|
|
|
3871
3990
|
watcher: User;
|
|
3872
3991
|
}
|
|
3873
3992
|
export type PROXY = unknown;
|
|
3993
|
+
export type PROXY_CREATE = unknown;
|
|
3994
|
+
export type PROXY_DELETE = unknown;
|
|
3995
|
+
export type PROXY_EXECUTE = unknown;
|
|
3996
|
+
export type PROXY_MANAGE = unknown;
|
|
3997
|
+
export type PROXY_READ = unknown;
|
|
3998
|
+
export type PROXY_UPDATE = unknown;
|
|
3874
3999
|
export type PublishCallback = RequestCallback<string>;
|
|
3875
4000
|
export interface Publisher {
|
|
3876
4001
|
topic: Topic;
|
|
@@ -4007,6 +4132,9 @@ export interface RadarRuntimeSeriesDto {
|
|
|
4007
4132
|
}
|
|
4008
4133
|
export type RADIO_GROUP = unknown;
|
|
4009
4134
|
export type RAG_SETTINGS = unknown;
|
|
4135
|
+
export type RAG_SETTINGS_MANAGE = unknown;
|
|
4136
|
+
export type RAG_SETTINGS_READ = unknown;
|
|
4137
|
+
export type RAG_SETTINGS_UPDATE = unknown;
|
|
4010
4138
|
export interface Range {
|
|
4011
4139
|
segmentId?: SegmentId;
|
|
4012
4140
|
startIndex: number;
|
|
@@ -4022,6 +4150,13 @@ export interface Reconnect {
|
|
|
4022
4150
|
maxAttempts: number;
|
|
4023
4151
|
}
|
|
4024
4152
|
export type RECORD = unknown;
|
|
4153
|
+
export type RECORD_CREATE = unknown;
|
|
4154
|
+
export type RECORD_DELETE = unknown;
|
|
4155
|
+
export type RECORD_EXPORT = unknown;
|
|
4156
|
+
export type RECORD_IMPORT = unknown;
|
|
4157
|
+
export type RECORD_MANAGE = unknown;
|
|
4158
|
+
export type RECORD_READ = unknown;
|
|
4159
|
+
export type RECORD_UPDATE = unknown;
|
|
4025
4160
|
export type RecordAggregateQueryDto = RecordListQueryDto & {
|
|
4026
4161
|
aggregations?: string;
|
|
4027
4162
|
};
|
|
@@ -4270,6 +4405,8 @@ export interface ScopeCapability {
|
|
|
4270
4405
|
id: string;
|
|
4271
4406
|
domain: WorkspaceCapabilityDomain;
|
|
4272
4407
|
action: WorkspaceCapabilityAction;
|
|
4408
|
+
capability: WorkspaceScopeCapability;
|
|
4409
|
+
scopeType: WorkspaceAuthScopeType;
|
|
4273
4410
|
name: string;
|
|
4274
4411
|
description: string | null;
|
|
4275
4412
|
isSystem: boolean;
|
|
@@ -4537,6 +4674,7 @@ export interface SkillDoc {
|
|
|
4537
4674
|
export interface SkillMcp {
|
|
4538
4675
|
skillId: string;
|
|
4539
4676
|
mcpId: string;
|
|
4677
|
+
connId: string;
|
|
4540
4678
|
skill: Skill;
|
|
4541
4679
|
mcp: Mcp;
|
|
4542
4680
|
}
|
|
@@ -4547,12 +4685,14 @@ export declare enum SkillOwnerTypeEnum {
|
|
|
4547
4685
|
export interface SkillTool {
|
|
4548
4686
|
skillId: string;
|
|
4549
4687
|
toolId: string;
|
|
4688
|
+
connId: string;
|
|
4550
4689
|
skill: Skill;
|
|
4551
4690
|
tool: UserToolsCustom;
|
|
4552
4691
|
}
|
|
4553
4692
|
export interface SkillWorkflow {
|
|
4554
4693
|
skillId: string;
|
|
4555
4694
|
workflowId: string;
|
|
4695
|
+
connId: string;
|
|
4556
4696
|
skill: Skill;
|
|
4557
4697
|
workflow: Workflow;
|
|
4558
4698
|
}
|
|
@@ -4585,14 +4725,15 @@ export interface Snapshot {
|
|
|
4585
4725
|
metadata?: google.pubsub.v1.ISnapshot;
|
|
4586
4726
|
}
|
|
4587
4727
|
export declare enum SortDirection {
|
|
4588
|
-
ASC = "
|
|
4589
|
-
DESC = "
|
|
4590
|
-
COUNT_ASC = "count-asc",
|
|
4591
|
-
COUNT_DESC = "count-desc"
|
|
4728
|
+
ASC = "ASC",
|
|
4729
|
+
DESC = "DESC"
|
|
4592
4730
|
}
|
|
4593
4731
|
export type SOURCE = unknown;
|
|
4594
4732
|
export type SOURCE_CREATE = unknown;
|
|
4595
4733
|
export type SOURCE_DELETE = unknown;
|
|
4734
|
+
export type SOURCE_MANAGE = unknown;
|
|
4735
|
+
export type SOURCE_READ = unknown;
|
|
4736
|
+
export type SOURCE_SYNC = unknown;
|
|
4596
4737
|
export type SOURCE_UPDATE = unknown;
|
|
4597
4738
|
export type SourceConfig = {
|
|
4598
4739
|
host?: string;
|
|
@@ -5413,6 +5554,8 @@ export declare const T: readonly unknown[];
|
|
|
5413
5554
|
export type TABLE = unknown;
|
|
5414
5555
|
export type TABLE_CREATE = unknown;
|
|
5415
5556
|
export type TABLE_DELETE = unknown;
|
|
5557
|
+
export type TABLE_MANAGE = unknown;
|
|
5558
|
+
export type TABLE_READ = unknown;
|
|
5416
5559
|
export type TABLE_UPDATE = unknown;
|
|
5417
5560
|
export type TableMeta = {
|
|
5418
5561
|
icon?: string;
|
|
@@ -5547,6 +5690,12 @@ export type TextWidgetAggregateBindingSource = {
|
|
|
5547
5690
|
fieldId?: string;
|
|
5548
5691
|
format?: 'auto' | 'number' | 'currency' | 'percent';
|
|
5549
5692
|
};
|
|
5693
|
+
export interface TextWidgetAggregateBindingSourceDto {
|
|
5694
|
+
kind: 'aggregate';
|
|
5695
|
+
aggregation: WidgetAggregationSpec['function'];
|
|
5696
|
+
fieldId?: unknown;
|
|
5697
|
+
format?: 'auto' | 'number' | 'currency' | 'percent';
|
|
5698
|
+
}
|
|
5550
5699
|
export type TextWidgetConfig = {
|
|
5551
5700
|
content: JsonValue;
|
|
5552
5701
|
format: 'plain' | 'markdown' | 'json';
|
|
@@ -5559,17 +5708,38 @@ export interface TextWidgetConfigDto {
|
|
|
5559
5708
|
format: 'plain' | 'markdown' | 'json';
|
|
5560
5709
|
variables?: (TextWidgetVariableBindingDto)[];
|
|
5561
5710
|
}
|
|
5711
|
+
export interface TextWidgetFirstRowSelectorDto {
|
|
5712
|
+
mode: 'first';
|
|
5713
|
+
}
|
|
5714
|
+
export interface TextWidgetIndexedRowSelectorDto {
|
|
5715
|
+
mode: 'index';
|
|
5716
|
+
index: number;
|
|
5717
|
+
}
|
|
5718
|
+
export interface TextWidgetLastRowSelectorDto {
|
|
5719
|
+
mode: 'last';
|
|
5720
|
+
}
|
|
5562
5721
|
export type TextWidgetRecordBindingSource = {
|
|
5563
5722
|
kind: 'record';
|
|
5564
5723
|
fieldIds: string[];
|
|
5565
5724
|
row: TextWidgetRowSelector;
|
|
5566
5725
|
};
|
|
5726
|
+
export interface TextWidgetRecordBindingSourceDto {
|
|
5727
|
+
kind: 'record';
|
|
5728
|
+
fieldIds: (string)[];
|
|
5729
|
+
row: TextWidgetFirstRowSelectorDto | TextWidgetLastRowSelectorDto | TextWidgetIndexedRowSelectorDto;
|
|
5730
|
+
}
|
|
5567
5731
|
export type TextWidgetRecordFieldBindingSource = {
|
|
5568
5732
|
kind: 'record_field';
|
|
5569
5733
|
fieldId: string;
|
|
5570
5734
|
row: TextWidgetRowSelector;
|
|
5571
5735
|
format?: 'auto' | 'string' | 'json';
|
|
5572
5736
|
};
|
|
5737
|
+
export interface TextWidgetRecordFieldBindingSourceDto {
|
|
5738
|
+
kind: 'record_field';
|
|
5739
|
+
fieldId: unknown;
|
|
5740
|
+
row: TextWidgetFirstRowSelectorDto | TextWidgetLastRowSelectorDto | TextWidgetIndexedRowSelectorDto;
|
|
5741
|
+
format?: 'auto' | 'string' | 'json';
|
|
5742
|
+
}
|
|
5573
5743
|
export type TextWidgetRecordsBindingSource = {
|
|
5574
5744
|
kind: 'records';
|
|
5575
5745
|
fieldIds?: string[];
|
|
@@ -5577,6 +5747,13 @@ export type TextWidgetRecordsBindingSource = {
|
|
|
5577
5747
|
format?: 'json' | 'join';
|
|
5578
5748
|
separator?: string;
|
|
5579
5749
|
};
|
|
5750
|
+
export interface TextWidgetRecordsBindingSourceDto {
|
|
5751
|
+
kind: 'records';
|
|
5752
|
+
fieldIds?: (string)[];
|
|
5753
|
+
limit?: number;
|
|
5754
|
+
format?: 'json' | 'join';
|
|
5755
|
+
separator?: string;
|
|
5756
|
+
}
|
|
5580
5757
|
export interface TextWidgetResolvedVariableDto {
|
|
5581
5758
|
key: string;
|
|
5582
5759
|
rawValue?: {
|
|
@@ -5613,9 +5790,7 @@ export type TextWidgetVariableBinding = {
|
|
|
5613
5790
|
export interface TextWidgetVariableBindingDto {
|
|
5614
5791
|
key: string;
|
|
5615
5792
|
query: WidgetQuerySpecDto;
|
|
5616
|
-
source:
|
|
5617
|
-
[key: string]: unknown;
|
|
5618
|
-
};
|
|
5793
|
+
source: TextWidgetAggregateBindingSourceDto | TextWidgetRecordFieldBindingSourceDto | TextWidgetRecordBindingSourceDto | TextWidgetRecordsBindingSourceDto;
|
|
5619
5794
|
output?: TextWidgetVariableOutputDto;
|
|
5620
5795
|
}
|
|
5621
5796
|
export interface TextWidgetVariableOutputDto {
|
|
@@ -5683,6 +5858,14 @@ export interface ToolRequestConfig {
|
|
|
5683
5858
|
maxRedirects?: number;
|
|
5684
5859
|
}
|
|
5685
5860
|
export type TOOLS = unknown;
|
|
5861
|
+
export type TOOLS_CREATE = unknown;
|
|
5862
|
+
export type TOOLS_DELETE = unknown;
|
|
5863
|
+
export type TOOLS_EXECUTE = unknown;
|
|
5864
|
+
export type TOOLS_IMPORT = unknown;
|
|
5865
|
+
export type TOOLS_MANAGE = unknown;
|
|
5866
|
+
export type TOOLS_READ = unknown;
|
|
5867
|
+
export type TOOLS_SYNC = unknown;
|
|
5868
|
+
export type TOOLS_UPDATE = unknown;
|
|
5686
5869
|
export declare enum ToolStatusEnum {
|
|
5687
5870
|
DRAFT = "DRAFT",
|
|
5688
5871
|
APPROVED = "APPROVED",
|
|
@@ -6110,6 +6293,9 @@ export interface VideoNote {
|
|
|
6110
6293
|
export type VIEW = unknown;
|
|
6111
6294
|
export type VIEW_CREATE = unknown;
|
|
6112
6295
|
export type VIEW_DELETE = unknown;
|
|
6296
|
+
export type VIEW_MANAGE = unknown;
|
|
6297
|
+
export type VIEW_READ = unknown;
|
|
6298
|
+
export type VIEW_SHARE = unknown;
|
|
6113
6299
|
export type VIEW_UPDATE = unknown;
|
|
6114
6300
|
export declare enum ViewLockType {
|
|
6115
6301
|
COLLABORATIVE = "collaborative",
|
|
@@ -6226,7 +6412,7 @@ export type WidgetAggregationSpec = {
|
|
|
6226
6412
|
distinct?: boolean;
|
|
6227
6413
|
};
|
|
6228
6414
|
export interface WidgetAggregationSpecDto {
|
|
6229
|
-
function: '
|
|
6415
|
+
function: WidgetAggregationSpec['function'];
|
|
6230
6416
|
fieldId?: unknown;
|
|
6231
6417
|
distinct?: boolean;
|
|
6232
6418
|
}
|
|
@@ -6333,16 +6519,49 @@ export interface WidgetSortSpecDto {
|
|
|
6333
6519
|
direction: 'asc' | 'desc';
|
|
6334
6520
|
}
|
|
6335
6521
|
export declare enum WidgetType {
|
|
6336
|
-
|
|
6337
|
-
|
|
6338
|
-
|
|
6339
|
-
|
|
6340
|
-
|
|
6341
|
-
|
|
6342
|
-
|
|
6343
|
-
|
|
6344
|
-
|
|
6345
|
-
|
|
6522
|
+
TABLE = "TABLE",
|
|
6523
|
+
CHART = "CHART",
|
|
6524
|
+
CARD = "CARD",
|
|
6525
|
+
METRIC = "METRIC",
|
|
6526
|
+
GAUGE = "GAUGE",
|
|
6527
|
+
PROGRESS = "PROGRESS",
|
|
6528
|
+
HEATMAP = "HEATMAP",
|
|
6529
|
+
FUNNEL = "FUNNEL",
|
|
6530
|
+
PIE_CHART = "PIE_CHART",
|
|
6531
|
+
FORM = "FORM",
|
|
6532
|
+
INPUT = "INPUT",
|
|
6533
|
+
SELECT = "SELECT",
|
|
6534
|
+
CHECKBOX_GROUP = "CHECKBOX_GROUP",
|
|
6535
|
+
RADIO_GROUP = "RADIO_GROUP",
|
|
6536
|
+
DATE_PICKER = "DATE_PICKER",
|
|
6537
|
+
SLIDER = "SLIDER",
|
|
6538
|
+
TEXT = "TEXT",
|
|
6539
|
+
IMAGE = "IMAGE",
|
|
6540
|
+
VIDEO = "VIDEO",
|
|
6541
|
+
IFRAME = "IFRAME",
|
|
6542
|
+
LIST = "LIST",
|
|
6543
|
+
TIMELINE = "TIMELINE",
|
|
6544
|
+
NOTIFICATION = "NOTIFICATION",
|
|
6545
|
+
CONTAINER = "CONTAINER",
|
|
6546
|
+
GRID = "GRID",
|
|
6547
|
+
TABS = "TABS",
|
|
6548
|
+
ACCORDION = "ACCORDION",
|
|
6549
|
+
DIVIDER = "DIVIDER",
|
|
6550
|
+
SPACER = "SPACER",
|
|
6551
|
+
BUTTON = "BUTTON",
|
|
6552
|
+
BUTTON_GROUP = "BUTTON_GROUP",
|
|
6553
|
+
FILTER = "FILTER",
|
|
6554
|
+
SEARCH = "SEARCH",
|
|
6555
|
+
PAGINATION = "PAGINATION",
|
|
6556
|
+
BREADCRUMB = "BREADCRUMB",
|
|
6557
|
+
MENU = "MENU",
|
|
6558
|
+
MODAL = "MODAL",
|
|
6559
|
+
KPI_GRID = "KPI_GRID",
|
|
6560
|
+
COMPARISON = "COMPARISON",
|
|
6561
|
+
MAP = "MAP",
|
|
6562
|
+
CALENDAR = "CALENDAR",
|
|
6563
|
+
TREE = "TREE",
|
|
6564
|
+
KANBAN = "KANBAN"
|
|
6346
6565
|
}
|
|
6347
6566
|
export interface Workflow {
|
|
6348
6567
|
id: string;
|
|
@@ -6366,8 +6585,18 @@ export interface Workflow {
|
|
|
6366
6585
|
states: IStateVariable[];
|
|
6367
6586
|
}
|
|
6368
6587
|
export type WORKFLOW = unknown;
|
|
6588
|
+
export type WORKFLOW_CREATE = unknown;
|
|
6589
|
+
export type WORKFLOW_DELETE = unknown;
|
|
6590
|
+
export type WORKFLOW_EXECUTE = unknown;
|
|
6591
|
+
export type WORKFLOW_EXPORT = unknown;
|
|
6592
|
+
export type WORKFLOW_IMPORT = unknown;
|
|
6593
|
+
export type WORKFLOW_MANAGE = unknown;
|
|
6594
|
+
export type WORKFLOW_READ = unknown;
|
|
6369
6595
|
export type WORKFLOW_TRIGGER = unknown;
|
|
6370
|
-
export
|
|
6596
|
+
export type WORKFLOW_UPDATE = unknown;
|
|
6597
|
+
export type WORKSPACE = unknown;
|
|
6598
|
+
export type WORKSPACE_MANAGE = unknown;
|
|
6599
|
+
export type WORKSPACE_READ = unknown;
|
|
6371
6600
|
export declare const WORKSPACE_SYSTEM_ROLE_CODE: readonly unknown[];
|
|
6372
6601
|
export declare enum WorkspaceAuthScopeType {
|
|
6373
6602
|
WORKSPACE = "workspace",
|
|
@@ -6433,6 +6662,212 @@ export declare enum WorkspaceCapabilityDomain {
|
|
|
6433
6662
|
RAG_SETTINGS = "rag_settings"
|
|
6434
6663
|
}
|
|
6435
6664
|
export type WorkspaceRoleCode = WorkspaceSystemRoleCode | (string & {});
|
|
6665
|
+
export declare enum WorkspaceScopeCapability {
|
|
6666
|
+
WORKSPACE_READ = "workspace.read",
|
|
6667
|
+
WORKSPACE_MANAGE = "workspace.manage",
|
|
6668
|
+
BASE_READ = "base.read",
|
|
6669
|
+
BASE_CREATE = "base.create",
|
|
6670
|
+
BASE_UPDATE = "base.update",
|
|
6671
|
+
BASE_DELETE = "base.delete",
|
|
6672
|
+
BASE_MANAGE = "base.manage",
|
|
6673
|
+
BASE_SHARE = "base.share",
|
|
6674
|
+
BASE_DUPLICATE = "base.duplicate",
|
|
6675
|
+
MEMBER_READ = "member.read",
|
|
6676
|
+
MEMBER_MANAGE = "member.manage",
|
|
6677
|
+
MEMBER_INVITE = "member.invite",
|
|
6678
|
+
MEMBER_ASSIGN = "member.assign",
|
|
6679
|
+
DYNAMIC_TABLE_READ = "dynamic_table.read",
|
|
6680
|
+
DYNAMIC_TABLE_MANAGE = "dynamic_table.manage",
|
|
6681
|
+
TABLE_READ = "table.read",
|
|
6682
|
+
TABLE_CREATE = "table.create",
|
|
6683
|
+
TABLE_UPDATE = "table.update",
|
|
6684
|
+
TABLE_DELETE = "table.delete",
|
|
6685
|
+
TABLE_MANAGE = "table.manage",
|
|
6686
|
+
VIEW_READ = "view.read",
|
|
6687
|
+
VIEW_CREATE = "view.create",
|
|
6688
|
+
VIEW_UPDATE = "view.update",
|
|
6689
|
+
VIEW_DELETE = "view.delete",
|
|
6690
|
+
VIEW_MANAGE = "view.manage",
|
|
6691
|
+
VIEW_SHARE = "view.share",
|
|
6692
|
+
FIELD_READ = "field.read",
|
|
6693
|
+
FIELD_CREATE = "field.create",
|
|
6694
|
+
FIELD_UPDATE = "field.update",
|
|
6695
|
+
FIELD_DELETE = "field.delete",
|
|
6696
|
+
FIELD_MANAGE = "field.manage",
|
|
6697
|
+
RECORD_READ = "record.read",
|
|
6698
|
+
RECORD_CREATE = "record.create",
|
|
6699
|
+
RECORD_UPDATE = "record.update",
|
|
6700
|
+
RECORD_DELETE = "record.delete",
|
|
6701
|
+
RECORD_MANAGE = "record.manage",
|
|
6702
|
+
RECORD_IMPORT = "record.import",
|
|
6703
|
+
RECORD_EXPORT = "record.export",
|
|
6704
|
+
SOURCE_READ = "source.read",
|
|
6705
|
+
SOURCE_CREATE = "source.create",
|
|
6706
|
+
SOURCE_UPDATE = "source.update",
|
|
6707
|
+
SOURCE_DELETE = "source.delete",
|
|
6708
|
+
SOURCE_MANAGE = "source.manage",
|
|
6709
|
+
SOURCE_SYNC = "source.sync",
|
|
6710
|
+
ACL_READ = "acl.read",
|
|
6711
|
+
ACL_CREATE = "acl.create",
|
|
6712
|
+
ACL_UPDATE = "acl.update",
|
|
6713
|
+
ACL_DELETE = "acl.delete",
|
|
6714
|
+
PERMISSION_SUBJECT_READ = "permission_subject.read",
|
|
6715
|
+
PERMISSION_SUBJECT_CREATE = "permission_subject.create",
|
|
6716
|
+
PERMISSION_SUBJECT_UPDATE = "permission_subject.update",
|
|
6717
|
+
PERMISSION_SUBJECT_DELETE = "permission_subject.delete",
|
|
6718
|
+
PERMISSION_READ = "permission.read",
|
|
6719
|
+
PERMISSION_CREATE = "permission.create",
|
|
6720
|
+
PERMISSION_UPDATE = "permission.update",
|
|
6721
|
+
PERMISSION_DELETE = "permission.delete",
|
|
6722
|
+
HOOK_READ = "hook.read",
|
|
6723
|
+
HOOK_CREATE = "hook.create",
|
|
6724
|
+
HOOK_UPDATE = "hook.update",
|
|
6725
|
+
HOOK_DELETE = "hook.delete",
|
|
6726
|
+
HOOK_MANAGE = "hook.manage",
|
|
6727
|
+
HOOK_TEST = "hook.test",
|
|
6728
|
+
HOOK_TRIGGER = "hook.trigger",
|
|
6729
|
+
API_TOKEN_READ = "api_token.read",
|
|
6730
|
+
API_TOKEN_CREATE = "api_token.create",
|
|
6731
|
+
API_TOKEN_UPDATE = "api_token.update",
|
|
6732
|
+
API_TOKEN_DELETE = "api_token.delete",
|
|
6733
|
+
API_TOKEN_MANAGE = "api_token.manage",
|
|
6734
|
+
COMMENT_READ = "comment.read",
|
|
6735
|
+
COMMENT_CREATE = "comment.create",
|
|
6736
|
+
COMMENT_UPDATE = "comment.update",
|
|
6737
|
+
COMMENT_DELETE = "comment.delete",
|
|
6738
|
+
INTEGRATION_READ = "integration.read",
|
|
6739
|
+
INTEGRATION_CREATE = "integration.create",
|
|
6740
|
+
INTEGRATION_UPDATE = "integration.update",
|
|
6741
|
+
INTEGRATION_DELETE = "integration.delete",
|
|
6742
|
+
INTEGRATION_MANAGE = "integration.manage",
|
|
6743
|
+
INTEGRATION_EXECUTE = "integration.execute",
|
|
6744
|
+
INTEGRATION_CONNECT = "integration.connect",
|
|
6745
|
+
INTEGRATION_DISCONNECT = "integration.disconnect",
|
|
6746
|
+
INTEGRATION_TEST = "integration.test",
|
|
6747
|
+
INTEGRATION_SYNC = "integration.sync",
|
|
6748
|
+
AGENT_READ = "agent.read",
|
|
6749
|
+
AGENT_CREATE = "agent.create",
|
|
6750
|
+
AGENT_UPDATE = "agent.update",
|
|
6751
|
+
AGENT_DELETE = "agent.delete",
|
|
6752
|
+
AGENT_MANAGE = "agent.manage",
|
|
6753
|
+
AGENT_EXECUTE = "agent.execute",
|
|
6754
|
+
AGENT_IMPORT = "agent.import",
|
|
6755
|
+
AGENT_EXPORT = "agent.export",
|
|
6756
|
+
AGENT_ASSIGN = "agent.assign",
|
|
6757
|
+
WORKFLOW_READ = "workflow.read",
|
|
6758
|
+
WORKFLOW_CREATE = "workflow.create",
|
|
6759
|
+
WORKFLOW_UPDATE = "workflow.update",
|
|
6760
|
+
WORKFLOW_DELETE = "workflow.delete",
|
|
6761
|
+
WORKFLOW_MANAGE = "workflow.manage",
|
|
6762
|
+
WORKFLOW_EXECUTE = "workflow.execute",
|
|
6763
|
+
WORKFLOW_IMPORT = "workflow.import",
|
|
6764
|
+
WORKFLOW_EXPORT = "workflow.export",
|
|
6765
|
+
WORKFLOW_TRIGGER = "workflow.trigger",
|
|
6766
|
+
MARKETING_READ = "marketing.read",
|
|
6767
|
+
MARKETING_CREATE = "marketing.create",
|
|
6768
|
+
MARKETING_UPDATE = "marketing.update",
|
|
6769
|
+
MARKETING_DELETE = "marketing.delete",
|
|
6770
|
+
MARKETING_MANAGE = "marketing.manage",
|
|
6771
|
+
MARKETING_EXECUTE = "marketing.execute",
|
|
6772
|
+
MARKETING_EXPORT = "marketing.export",
|
|
6773
|
+
MARKETING_ASSIGN = "marketing.assign",
|
|
6774
|
+
MARKETING_CONNECT = "marketing.connect",
|
|
6775
|
+
MARKETING_TEST = "marketing.test",
|
|
6776
|
+
MARKETING_TRIGGER = "marketing.trigger",
|
|
6777
|
+
MARKETING_SYNC = "marketing.sync",
|
|
6778
|
+
PROJECT_READ = "project.read",
|
|
6779
|
+
PROJECT_CREATE = "project.create",
|
|
6780
|
+
PROJECT_UPDATE = "project.update",
|
|
6781
|
+
PROJECT_DELETE = "project.delete",
|
|
6782
|
+
PROJECT_MANAGE = "project.manage",
|
|
6783
|
+
DATA_READ = "data.read",
|
|
6784
|
+
DATA_CREATE = "data.create",
|
|
6785
|
+
DATA_UPDATE = "data.update",
|
|
6786
|
+
DATA_DELETE = "data.delete",
|
|
6787
|
+
DATA_MANAGE = "data.manage",
|
|
6788
|
+
DATA_IMPORT = "data.import",
|
|
6789
|
+
DATA_EXPORT = "data.export",
|
|
6790
|
+
ASK_AI_READ = "ask_ai.read",
|
|
6791
|
+
ASK_AI_MANAGE = "ask_ai.manage",
|
|
6792
|
+
ASK_AI_EXECUTE = "ask_ai.execute",
|
|
6793
|
+
CHAT_READ = "chat.read",
|
|
6794
|
+
CHAT_CREATE = "chat.create",
|
|
6795
|
+
CHAT_UPDATE = "chat.update",
|
|
6796
|
+
CHAT_MANAGE = "chat.manage",
|
|
6797
|
+
CHAT_EXECUTE = "chat.execute",
|
|
6798
|
+
CALENDAR_READ = "calendar.read",
|
|
6799
|
+
CALENDAR_CREATE = "calendar.create",
|
|
6800
|
+
CALENDAR_UPDATE = "calendar.update",
|
|
6801
|
+
CALENDAR_DELETE = "calendar.delete",
|
|
6802
|
+
CALENDAR_MANAGE = "calendar.manage",
|
|
6803
|
+
CALENDAR_EXECUTE = "calendar.execute",
|
|
6804
|
+
CALENDAR_CONNECT = "calendar.connect",
|
|
6805
|
+
CALENDAR_SYNC = "calendar.sync",
|
|
6806
|
+
TOOLS_READ = "tools.read",
|
|
6807
|
+
TOOLS_CREATE = "tools.create",
|
|
6808
|
+
TOOLS_UPDATE = "tools.update",
|
|
6809
|
+
TOOLS_DELETE = "tools.delete",
|
|
6810
|
+
TOOLS_MANAGE = "tools.manage",
|
|
6811
|
+
TOOLS_EXECUTE = "tools.execute",
|
|
6812
|
+
TOOLS_IMPORT = "tools.import",
|
|
6813
|
+
TOOLS_SYNC = "tools.sync",
|
|
6814
|
+
FAQ_READ = "faq.read",
|
|
6815
|
+
FAQ_CREATE = "faq.create",
|
|
6816
|
+
FAQ_UPDATE = "faq.update",
|
|
6817
|
+
FAQ_DELETE = "faq.delete",
|
|
6818
|
+
FAQ_MANAGE = "faq.manage",
|
|
6819
|
+
MARKETPLACE_READ = "marketplace.read",
|
|
6820
|
+
MARKETPLACE_CREATE = "marketplace.create",
|
|
6821
|
+
MARKETPLACE_UPDATE = "marketplace.update",
|
|
6822
|
+
MARKETPLACE_DELETE = "marketplace.delete",
|
|
6823
|
+
MARKETPLACE_MANAGE = "marketplace.manage",
|
|
6824
|
+
MARKETPLACE_EXECUTE = "marketplace.execute",
|
|
6825
|
+
BUSINESS_READ = "business.read",
|
|
6826
|
+
BUSINESS_CREATE = "business.create",
|
|
6827
|
+
BUSINESS_UPDATE = "business.update",
|
|
6828
|
+
BUSINESS_DELETE = "business.delete",
|
|
6829
|
+
BUSINESS_MANAGE = "business.manage",
|
|
6830
|
+
BUSINESS_EXECUTE = "business.execute",
|
|
6831
|
+
BUSINESS_IMPORT = "business.import",
|
|
6832
|
+
MCP_DYNAMIC_READ = "mcp_dynamic.read",
|
|
6833
|
+
MCP_DYNAMIC_CREATE = "mcp_dynamic.create",
|
|
6834
|
+
MCP_DYNAMIC_UPDATE = "mcp_dynamic.update",
|
|
6835
|
+
MCP_DYNAMIC_DELETE = "mcp_dynamic.delete",
|
|
6836
|
+
MCP_DYNAMIC_MANAGE = "mcp_dynamic.manage",
|
|
6837
|
+
MCP_DYNAMIC_EXECUTE = "mcp_dynamic.execute",
|
|
6838
|
+
MODELS_READ = "models.read",
|
|
6839
|
+
MODELS_CREATE = "models.create",
|
|
6840
|
+
MODELS_UPDATE = "models.update",
|
|
6841
|
+
MODELS_DELETE = "models.delete",
|
|
6842
|
+
MODELS_MANAGE = "models.manage",
|
|
6843
|
+
MODELS_EXECUTE = "models.execute",
|
|
6844
|
+
BLOG_READ = "blog.read",
|
|
6845
|
+
BLOG_CREATE = "blog.create",
|
|
6846
|
+
BLOG_UPDATE = "blog.update",
|
|
6847
|
+
BLOG_DELETE = "blog.delete",
|
|
6848
|
+
BLOG_MANAGE = "blog.manage",
|
|
6849
|
+
BLOG_EXECUTE = "blog.execute",
|
|
6850
|
+
FILE_SYSTEM_READ = "file_system.read",
|
|
6851
|
+
FILE_SYSTEM_CREATE = "file_system.create",
|
|
6852
|
+
FILE_SYSTEM_UPDATE = "file_system.update",
|
|
6853
|
+
FILE_SYSTEM_DELETE = "file_system.delete",
|
|
6854
|
+
FILE_SYSTEM_MANAGE = "file_system.manage",
|
|
6855
|
+
DASHBOARD_READ = "dashboard.read",
|
|
6856
|
+
DASHBOARD_CREATE = "dashboard.create",
|
|
6857
|
+
DASHBOARD_UPDATE = "dashboard.update",
|
|
6858
|
+
DASHBOARD_DELETE = "dashboard.delete",
|
|
6859
|
+
DASHBOARD_MANAGE = "dashboard.manage",
|
|
6860
|
+
DASHBOARD_SHARE = "dashboard.share",
|
|
6861
|
+
RAG_SETTINGS_READ = "rag_settings.read",
|
|
6862
|
+
RAG_SETTINGS_UPDATE = "rag_settings.update",
|
|
6863
|
+
RAG_SETTINGS_MANAGE = "rag_settings.manage",
|
|
6864
|
+
PROXY_READ = "proxy.read",
|
|
6865
|
+
PROXY_CREATE = "proxy.create",
|
|
6866
|
+
PROXY_UPDATE = "proxy.update",
|
|
6867
|
+
PROXY_DELETE = "proxy.delete",
|
|
6868
|
+
PROXY_MANAGE = "proxy.manage",
|
|
6869
|
+
PROXY_EXECUTE = "proxy.execute"
|
|
6870
|
+
}
|
|
6436
6871
|
export interface WorkspaceSettings {
|
|
6437
6872
|
logo?: string;
|
|
6438
6873
|
favicon?: string;
|