@objectstack/service-ai 7.3.0 → 7.4.0
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/index.cjs +58 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +171 -258
- package/dist/index.d.ts +171 -258
- package/dist/index.js +58 -20
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
package/dist/index.d.cts
CHANGED
|
@@ -1826,44 +1826,6 @@ declare const METADATA_AUTHORING_SKILL: Skill;
|
|
|
1826
1826
|
*/
|
|
1827
1827
|
declare const ACTIONS_EXECUTOR_SKILL: Skill;
|
|
1828
1828
|
|
|
1829
|
-
declare const ActionRefSchema: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1830
|
-
type: z.ZodString;
|
|
1831
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1832
|
-
}, z.core.$strip>]>;
|
|
1833
|
-
/**
|
|
1834
|
-
* State Transition Definition
|
|
1835
|
-
* "When EVENT happens, if GUARD is true, go to TARGET and run ACTIONS"
|
|
1836
|
-
*/
|
|
1837
|
-
declare const TransitionSchema: z.ZodObject<{
|
|
1838
|
-
target: z.ZodOptional<z.ZodString>;
|
|
1839
|
-
cond: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1840
|
-
type: z.ZodString;
|
|
1841
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1842
|
-
}, z.core.$strip>]>>;
|
|
1843
|
-
actions: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
1844
|
-
type: z.ZodString;
|
|
1845
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1846
|
-
}, z.core.$strip>]>>>;
|
|
1847
|
-
description: z.ZodOptional<z.ZodString>;
|
|
1848
|
-
}, z.core.$strip>;
|
|
1849
|
-
type ActionRef = z.infer<typeof ActionRefSchema>;
|
|
1850
|
-
type Transition = z.infer<typeof TransitionSchema>;
|
|
1851
|
-
type StateNodeConfig = {
|
|
1852
|
-
type?: 'atomic' | 'compound' | 'parallel' | 'final' | 'history';
|
|
1853
|
-
entry?: ActionRef[];
|
|
1854
|
-
exit?: ActionRef[];
|
|
1855
|
-
on?: Record<string, string | Transition | Transition[]>;
|
|
1856
|
-
always?: Transition[];
|
|
1857
|
-
initial?: string;
|
|
1858
|
-
states?: Record<string, StateNodeConfig>;
|
|
1859
|
-
meta?: {
|
|
1860
|
-
label?: string;
|
|
1861
|
-
description?: string;
|
|
1862
|
-
color?: string;
|
|
1863
|
-
aiInstructions?: string;
|
|
1864
|
-
};
|
|
1865
|
-
};
|
|
1866
|
-
|
|
1867
1829
|
/**
|
|
1868
1830
|
* ai_conversations — AI Conversation Object
|
|
1869
1831
|
*
|
|
@@ -1880,7 +1842,7 @@ declare const AiConversationObject: Omit<{
|
|
|
1880
1842
|
abstract: boolean;
|
|
1881
1843
|
datasource: string;
|
|
1882
1844
|
fields: Record<string, {
|
|
1883
|
-
type: "number" | "boolean" | "file" | "text" | "json" | "tags" | "currency" | "code" | "date" | "record" | "avatar" | "vector" | "datetime" | "signature" | "progress" | "url" | "
|
|
1845
|
+
type: "number" | "boolean" | "file" | "text" | "json" | "tags" | "currency" | "code" | "date" | "record" | "avatar" | "vector" | "datetime" | "signature" | "progress" | "url" | "percent" | "password" | "secret" | "email" | "time" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "color" | "rating" | "slider" | "qrcode";
|
|
1884
1846
|
required: boolean;
|
|
1885
1847
|
searchable: boolean;
|
|
1886
1848
|
multiple: boolean;
|
|
@@ -2095,6 +2057,14 @@ declare const AiConversationObject: Omit<{
|
|
|
2095
2057
|
owner?: boolean | undefined;
|
|
2096
2058
|
audit?: boolean | undefined;
|
|
2097
2059
|
} | undefined;
|
|
2060
|
+
external?: {
|
|
2061
|
+
writable: boolean;
|
|
2062
|
+
remoteName?: string | undefined;
|
|
2063
|
+
remoteSchema?: string | undefined;
|
|
2064
|
+
columnMap?: Record<string, string> | undefined;
|
|
2065
|
+
introspectedAt?: string | undefined;
|
|
2066
|
+
ignoreColumns?: string[] | undefined;
|
|
2067
|
+
} | undefined;
|
|
2098
2068
|
indexes?: {
|
|
2099
2069
|
fields: string[];
|
|
2100
2070
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -2155,36 +2125,6 @@ declare const AiConversationObject: Omit<{
|
|
|
2155
2125
|
destination: string;
|
|
2156
2126
|
} | undefined;
|
|
2157
2127
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
2158
|
-
stateMachines?: Record<string, {
|
|
2159
|
-
id: string;
|
|
2160
|
-
initial: string;
|
|
2161
|
-
states: Record<string, StateNodeConfig>;
|
|
2162
|
-
description?: string | undefined;
|
|
2163
|
-
contextSchema?: Record<string, unknown> | undefined;
|
|
2164
|
-
on?: Record<string, string | {
|
|
2165
|
-
target?: string | undefined;
|
|
2166
|
-
cond?: string | {
|
|
2167
|
-
type: string;
|
|
2168
|
-
params?: Record<string, unknown> | undefined;
|
|
2169
|
-
} | undefined;
|
|
2170
|
-
actions?: (string | {
|
|
2171
|
-
type: string;
|
|
2172
|
-
params?: Record<string, unknown> | undefined;
|
|
2173
|
-
})[] | undefined;
|
|
2174
|
-
description?: string | undefined;
|
|
2175
|
-
} | {
|
|
2176
|
-
target?: string | undefined;
|
|
2177
|
-
cond?: string | {
|
|
2178
|
-
type: string;
|
|
2179
|
-
params?: Record<string, unknown> | undefined;
|
|
2180
|
-
} | undefined;
|
|
2181
|
-
actions?: (string | {
|
|
2182
|
-
type: string;
|
|
2183
|
-
params?: Record<string, unknown> | undefined;
|
|
2184
|
-
})[] | undefined;
|
|
2185
|
-
description?: string | undefined;
|
|
2186
|
-
}[]> | undefined;
|
|
2187
|
-
}> | undefined;
|
|
2188
2128
|
displayNameField?: string | undefined;
|
|
2189
2129
|
recordName?: {
|
|
2190
2130
|
type: "text" | "autonumber";
|
|
@@ -2274,7 +2214,7 @@ declare const AiConversationObject: Omit<{
|
|
|
2274
2214
|
type: "none" | "multiple" | "single";
|
|
2275
2215
|
} | undefined;
|
|
2276
2216
|
navigation?: {
|
|
2277
|
-
mode: "none" | "split" | "page" | "
|
|
2217
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
2278
2218
|
preventNavigation: boolean;
|
|
2279
2219
|
openNewTab: boolean;
|
|
2280
2220
|
view?: string | undefined;
|
|
@@ -2463,7 +2403,7 @@ declare const AiConversationObject: Omit<{
|
|
|
2463
2403
|
trash: boolean;
|
|
2464
2404
|
mru: boolean;
|
|
2465
2405
|
clone: boolean;
|
|
2466
|
-
apiMethods?: ("restore" | "export" | "import" | "delete" | "purge" | "upsert" | "search" | "create" | "list" | "get" | "update" | "
|
|
2406
|
+
apiMethods?: ("restore" | "export" | "import" | "delete" | "purge" | "upsert" | "search" | "create" | "list" | "get" | "update" | "bulk" | "aggregate" | "history")[] | undefined;
|
|
2467
2407
|
} | undefined;
|
|
2468
2408
|
recordTypes?: string[] | undefined;
|
|
2469
2409
|
sharingModel?: "full" | "private" | "read" | "read_write" | undefined;
|
|
@@ -2509,7 +2449,7 @@ declare const AiConversationObject: Omit<{
|
|
|
2509
2449
|
field?: string | undefined;
|
|
2510
2450
|
objectOverride?: string | undefined;
|
|
2511
2451
|
label?: string | undefined;
|
|
2512
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
2452
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
2513
2453
|
options?: {
|
|
2514
2454
|
label: string;
|
|
2515
2455
|
value: string;
|
|
@@ -2561,7 +2501,7 @@ declare const AiConversationObject: Omit<{
|
|
|
2561
2501
|
} | undefined;
|
|
2562
2502
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
2563
2503
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
2564
|
-
mode?: "custom" | "delete" | "
|
|
2504
|
+
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
2565
2505
|
timeout?: number | undefined;
|
|
2566
2506
|
aria?: {
|
|
2567
2507
|
ariaLabel?: string | undefined;
|
|
@@ -2607,10 +2547,12 @@ declare const AiConversationObject: Omit<{
|
|
|
2607
2547
|
readonly dependencies?: string[] | undefined;
|
|
2608
2548
|
readonly theme?: string | undefined;
|
|
2609
2549
|
readonly externalId?: boolean | undefined;
|
|
2550
|
+
readonly defaultValue?: unknown;
|
|
2551
|
+
readonly group?: string | undefined;
|
|
2552
|
+
readonly hidden?: boolean | undefined;
|
|
2610
2553
|
readonly system?: boolean | undefined;
|
|
2611
2554
|
readonly min?: number | undefined;
|
|
2612
2555
|
readonly max?: number | undefined;
|
|
2613
|
-
readonly group?: string | undefined;
|
|
2614
2556
|
readonly encryptionConfig?: {
|
|
2615
2557
|
enabled: boolean;
|
|
2616
2558
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2631,7 +2573,6 @@ declare const AiConversationObject: Omit<{
|
|
|
2631
2573
|
readonly columnName?: string | undefined;
|
|
2632
2574
|
readonly searchable?: boolean | undefined;
|
|
2633
2575
|
readonly unique?: boolean | undefined;
|
|
2634
|
-
readonly defaultValue?: unknown;
|
|
2635
2576
|
readonly maxLength?: number | undefined;
|
|
2636
2577
|
readonly minLength?: number | undefined;
|
|
2637
2578
|
readonly scale?: number | undefined;
|
|
@@ -2755,7 +2696,6 @@ declare const AiConversationObject: Omit<{
|
|
|
2755
2696
|
generatedBy?: string | undefined;
|
|
2756
2697
|
} | undefined;
|
|
2757
2698
|
} | undefined;
|
|
2758
|
-
readonly hidden?: boolean | undefined;
|
|
2759
2699
|
readonly sortable?: boolean | undefined;
|
|
2760
2700
|
readonly inlineHelpText?: string | undefined;
|
|
2761
2701
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2782,10 +2722,12 @@ declare const AiConversationObject: Omit<{
|
|
|
2782
2722
|
readonly dependencies?: string[] | undefined;
|
|
2783
2723
|
readonly theme?: string | undefined;
|
|
2784
2724
|
readonly externalId?: boolean | undefined;
|
|
2725
|
+
readonly defaultValue?: unknown;
|
|
2726
|
+
readonly group?: string | undefined;
|
|
2727
|
+
readonly hidden?: boolean | undefined;
|
|
2785
2728
|
readonly system?: boolean | undefined;
|
|
2786
2729
|
readonly min?: number | undefined;
|
|
2787
2730
|
readonly max?: number | undefined;
|
|
2788
|
-
readonly group?: string | undefined;
|
|
2789
2731
|
readonly encryptionConfig?: {
|
|
2790
2732
|
enabled: boolean;
|
|
2791
2733
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2806,7 +2748,6 @@ declare const AiConversationObject: Omit<{
|
|
|
2806
2748
|
readonly columnName?: string | undefined;
|
|
2807
2749
|
readonly searchable?: boolean | undefined;
|
|
2808
2750
|
readonly unique?: boolean | undefined;
|
|
2809
|
-
readonly defaultValue?: unknown;
|
|
2810
2751
|
readonly maxLength?: number | undefined;
|
|
2811
2752
|
readonly minLength?: number | undefined;
|
|
2812
2753
|
readonly scale?: number | undefined;
|
|
@@ -2930,7 +2871,6 @@ declare const AiConversationObject: Omit<{
|
|
|
2930
2871
|
generatedBy?: string | undefined;
|
|
2931
2872
|
} | undefined;
|
|
2932
2873
|
} | undefined;
|
|
2933
|
-
readonly hidden?: boolean | undefined;
|
|
2934
2874
|
readonly sortable?: boolean | undefined;
|
|
2935
2875
|
readonly inlineHelpText?: string | undefined;
|
|
2936
2876
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2957,10 +2897,12 @@ declare const AiConversationObject: Omit<{
|
|
|
2957
2897
|
readonly dependencies?: string[] | undefined;
|
|
2958
2898
|
readonly theme?: string | undefined;
|
|
2959
2899
|
readonly externalId?: boolean | undefined;
|
|
2900
|
+
readonly defaultValue?: unknown;
|
|
2901
|
+
readonly group?: string | undefined;
|
|
2902
|
+
readonly hidden?: boolean | undefined;
|
|
2960
2903
|
readonly system?: boolean | undefined;
|
|
2961
2904
|
readonly min?: number | undefined;
|
|
2962
2905
|
readonly max?: number | undefined;
|
|
2963
|
-
readonly group?: string | undefined;
|
|
2964
2906
|
readonly encryptionConfig?: {
|
|
2965
2907
|
enabled: boolean;
|
|
2966
2908
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2981,7 +2923,6 @@ declare const AiConversationObject: Omit<{
|
|
|
2981
2923
|
readonly columnName?: string | undefined;
|
|
2982
2924
|
readonly searchable?: boolean | undefined;
|
|
2983
2925
|
readonly unique?: boolean | undefined;
|
|
2984
|
-
readonly defaultValue?: unknown;
|
|
2985
2926
|
readonly maxLength?: number | undefined;
|
|
2986
2927
|
readonly minLength?: number | undefined;
|
|
2987
2928
|
readonly scale?: number | undefined;
|
|
@@ -3105,7 +3046,6 @@ declare const AiConversationObject: Omit<{
|
|
|
3105
3046
|
generatedBy?: string | undefined;
|
|
3106
3047
|
} | undefined;
|
|
3107
3048
|
} | undefined;
|
|
3108
|
-
readonly hidden?: boolean | undefined;
|
|
3109
3049
|
readonly sortable?: boolean | undefined;
|
|
3110
3050
|
readonly inlineHelpText?: string | undefined;
|
|
3111
3051
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -3132,10 +3072,12 @@ declare const AiConversationObject: Omit<{
|
|
|
3132
3072
|
readonly dependencies?: string[] | undefined;
|
|
3133
3073
|
readonly theme?: string | undefined;
|
|
3134
3074
|
readonly externalId?: boolean | undefined;
|
|
3075
|
+
readonly defaultValue?: unknown;
|
|
3076
|
+
readonly group?: string | undefined;
|
|
3077
|
+
readonly hidden?: boolean | undefined;
|
|
3135
3078
|
readonly system?: boolean | undefined;
|
|
3136
3079
|
readonly min?: number | undefined;
|
|
3137
3080
|
readonly max?: number | undefined;
|
|
3138
|
-
readonly group?: string | undefined;
|
|
3139
3081
|
readonly encryptionConfig?: {
|
|
3140
3082
|
enabled: boolean;
|
|
3141
3083
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -3156,7 +3098,6 @@ declare const AiConversationObject: Omit<{
|
|
|
3156
3098
|
readonly columnName?: string | undefined;
|
|
3157
3099
|
readonly searchable?: boolean | undefined;
|
|
3158
3100
|
readonly unique?: boolean | undefined;
|
|
3159
|
-
readonly defaultValue?: unknown;
|
|
3160
3101
|
readonly maxLength?: number | undefined;
|
|
3161
3102
|
readonly minLength?: number | undefined;
|
|
3162
3103
|
readonly scale?: number | undefined;
|
|
@@ -3280,7 +3221,6 @@ declare const AiConversationObject: Omit<{
|
|
|
3280
3221
|
generatedBy?: string | undefined;
|
|
3281
3222
|
} | undefined;
|
|
3282
3223
|
} | undefined;
|
|
3283
|
-
readonly hidden?: boolean | undefined;
|
|
3284
3224
|
readonly sortable?: boolean | undefined;
|
|
3285
3225
|
readonly inlineHelpText?: string | undefined;
|
|
3286
3226
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -3307,10 +3247,12 @@ declare const AiConversationObject: Omit<{
|
|
|
3307
3247
|
readonly dependencies?: string[] | undefined;
|
|
3308
3248
|
readonly theme?: string | undefined;
|
|
3309
3249
|
readonly externalId?: boolean | undefined;
|
|
3250
|
+
readonly defaultValue?: unknown;
|
|
3251
|
+
readonly group?: string | undefined;
|
|
3252
|
+
readonly hidden?: boolean | undefined;
|
|
3310
3253
|
readonly system?: boolean | undefined;
|
|
3311
3254
|
readonly min?: number | undefined;
|
|
3312
3255
|
readonly max?: number | undefined;
|
|
3313
|
-
readonly group?: string | undefined;
|
|
3314
3256
|
readonly encryptionConfig?: {
|
|
3315
3257
|
enabled: boolean;
|
|
3316
3258
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -3331,7 +3273,6 @@ declare const AiConversationObject: Omit<{
|
|
|
3331
3273
|
readonly columnName?: string | undefined;
|
|
3332
3274
|
readonly searchable?: boolean | undefined;
|
|
3333
3275
|
readonly unique?: boolean | undefined;
|
|
3334
|
-
readonly defaultValue?: unknown;
|
|
3335
3276
|
readonly maxLength?: number | undefined;
|
|
3336
3277
|
readonly minLength?: number | undefined;
|
|
3337
3278
|
readonly scale?: number | undefined;
|
|
@@ -3455,7 +3396,6 @@ declare const AiConversationObject: Omit<{
|
|
|
3455
3396
|
generatedBy?: string | undefined;
|
|
3456
3397
|
} | undefined;
|
|
3457
3398
|
} | undefined;
|
|
3458
|
-
readonly hidden?: boolean | undefined;
|
|
3459
3399
|
readonly sortable?: boolean | undefined;
|
|
3460
3400
|
readonly inlineHelpText?: string | undefined;
|
|
3461
3401
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -3482,10 +3422,12 @@ declare const AiConversationObject: Omit<{
|
|
|
3482
3422
|
readonly dependencies?: string[] | undefined;
|
|
3483
3423
|
readonly theme?: string | undefined;
|
|
3484
3424
|
readonly externalId?: boolean | undefined;
|
|
3425
|
+
readonly defaultValue?: unknown;
|
|
3426
|
+
readonly group?: string | undefined;
|
|
3427
|
+
readonly hidden?: boolean | undefined;
|
|
3485
3428
|
readonly system?: boolean | undefined;
|
|
3486
3429
|
readonly min?: number | undefined;
|
|
3487
3430
|
readonly max?: number | undefined;
|
|
3488
|
-
readonly group?: string | undefined;
|
|
3489
3431
|
readonly encryptionConfig?: {
|
|
3490
3432
|
enabled: boolean;
|
|
3491
3433
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -3506,7 +3448,6 @@ declare const AiConversationObject: Omit<{
|
|
|
3506
3448
|
readonly columnName?: string | undefined;
|
|
3507
3449
|
readonly searchable?: boolean | undefined;
|
|
3508
3450
|
readonly unique?: boolean | undefined;
|
|
3509
|
-
readonly defaultValue?: unknown;
|
|
3510
3451
|
readonly maxLength?: number | undefined;
|
|
3511
3452
|
readonly minLength?: number | undefined;
|
|
3512
3453
|
readonly scale?: number | undefined;
|
|
@@ -3630,7 +3571,6 @@ declare const AiConversationObject: Omit<{
|
|
|
3630
3571
|
generatedBy?: string | undefined;
|
|
3631
3572
|
} | undefined;
|
|
3632
3573
|
} | undefined;
|
|
3633
|
-
readonly hidden?: boolean | undefined;
|
|
3634
3574
|
readonly sortable?: boolean | undefined;
|
|
3635
3575
|
readonly inlineHelpText?: string | undefined;
|
|
3636
3576
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -3657,10 +3597,12 @@ declare const AiConversationObject: Omit<{
|
|
|
3657
3597
|
readonly dependencies?: string[] | undefined;
|
|
3658
3598
|
readonly theme?: string | undefined;
|
|
3659
3599
|
readonly externalId?: boolean | undefined;
|
|
3600
|
+
readonly defaultValue?: unknown;
|
|
3601
|
+
readonly group?: string | undefined;
|
|
3602
|
+
readonly hidden?: boolean | undefined;
|
|
3660
3603
|
readonly system?: boolean | undefined;
|
|
3661
3604
|
readonly min?: number | undefined;
|
|
3662
3605
|
readonly max?: number | undefined;
|
|
3663
|
-
readonly group?: string | undefined;
|
|
3664
3606
|
readonly encryptionConfig?: {
|
|
3665
3607
|
enabled: boolean;
|
|
3666
3608
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -3681,7 +3623,6 @@ declare const AiConversationObject: Omit<{
|
|
|
3681
3623
|
readonly columnName?: string | undefined;
|
|
3682
3624
|
readonly searchable?: boolean | undefined;
|
|
3683
3625
|
readonly unique?: boolean | undefined;
|
|
3684
|
-
readonly defaultValue?: unknown;
|
|
3685
3626
|
readonly maxLength?: number | undefined;
|
|
3686
3627
|
readonly minLength?: number | undefined;
|
|
3687
3628
|
readonly scale?: number | undefined;
|
|
@@ -3805,7 +3746,6 @@ declare const AiConversationObject: Omit<{
|
|
|
3805
3746
|
generatedBy?: string | undefined;
|
|
3806
3747
|
} | undefined;
|
|
3807
3748
|
} | undefined;
|
|
3808
|
-
readonly hidden?: boolean | undefined;
|
|
3809
3749
|
readonly sortable?: boolean | undefined;
|
|
3810
3750
|
readonly inlineHelpText?: string | undefined;
|
|
3811
3751
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -3847,7 +3787,7 @@ declare const AiMessageObject: Omit<{
|
|
|
3847
3787
|
abstract: boolean;
|
|
3848
3788
|
datasource: string;
|
|
3849
3789
|
fields: Record<string, {
|
|
3850
|
-
type: "number" | "boolean" | "file" | "text" | "json" | "tags" | "currency" | "code" | "date" | "record" | "avatar" | "vector" | "datetime" | "signature" | "progress" | "url" | "
|
|
3790
|
+
type: "number" | "boolean" | "file" | "text" | "json" | "tags" | "currency" | "code" | "date" | "record" | "avatar" | "vector" | "datetime" | "signature" | "progress" | "url" | "percent" | "password" | "secret" | "email" | "time" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "color" | "rating" | "slider" | "qrcode";
|
|
3851
3791
|
required: boolean;
|
|
3852
3792
|
searchable: boolean;
|
|
3853
3793
|
multiple: boolean;
|
|
@@ -4062,6 +4002,14 @@ declare const AiMessageObject: Omit<{
|
|
|
4062
4002
|
owner?: boolean | undefined;
|
|
4063
4003
|
audit?: boolean | undefined;
|
|
4064
4004
|
} | undefined;
|
|
4005
|
+
external?: {
|
|
4006
|
+
writable: boolean;
|
|
4007
|
+
remoteName?: string | undefined;
|
|
4008
|
+
remoteSchema?: string | undefined;
|
|
4009
|
+
columnMap?: Record<string, string> | undefined;
|
|
4010
|
+
introspectedAt?: string | undefined;
|
|
4011
|
+
ignoreColumns?: string[] | undefined;
|
|
4012
|
+
} | undefined;
|
|
4065
4013
|
indexes?: {
|
|
4066
4014
|
fields: string[];
|
|
4067
4015
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -4122,36 +4070,6 @@ declare const AiMessageObject: Omit<{
|
|
|
4122
4070
|
destination: string;
|
|
4123
4071
|
} | undefined;
|
|
4124
4072
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
4125
|
-
stateMachines?: Record<string, {
|
|
4126
|
-
id: string;
|
|
4127
|
-
initial: string;
|
|
4128
|
-
states: Record<string, StateNodeConfig>;
|
|
4129
|
-
description?: string | undefined;
|
|
4130
|
-
contextSchema?: Record<string, unknown> | undefined;
|
|
4131
|
-
on?: Record<string, string | {
|
|
4132
|
-
target?: string | undefined;
|
|
4133
|
-
cond?: string | {
|
|
4134
|
-
type: string;
|
|
4135
|
-
params?: Record<string, unknown> | undefined;
|
|
4136
|
-
} | undefined;
|
|
4137
|
-
actions?: (string | {
|
|
4138
|
-
type: string;
|
|
4139
|
-
params?: Record<string, unknown> | undefined;
|
|
4140
|
-
})[] | undefined;
|
|
4141
|
-
description?: string | undefined;
|
|
4142
|
-
} | {
|
|
4143
|
-
target?: string | undefined;
|
|
4144
|
-
cond?: string | {
|
|
4145
|
-
type: string;
|
|
4146
|
-
params?: Record<string, unknown> | undefined;
|
|
4147
|
-
} | undefined;
|
|
4148
|
-
actions?: (string | {
|
|
4149
|
-
type: string;
|
|
4150
|
-
params?: Record<string, unknown> | undefined;
|
|
4151
|
-
})[] | undefined;
|
|
4152
|
-
description?: string | undefined;
|
|
4153
|
-
}[]> | undefined;
|
|
4154
|
-
}> | undefined;
|
|
4155
4073
|
displayNameField?: string | undefined;
|
|
4156
4074
|
recordName?: {
|
|
4157
4075
|
type: "text" | "autonumber";
|
|
@@ -4241,7 +4159,7 @@ declare const AiMessageObject: Omit<{
|
|
|
4241
4159
|
type: "none" | "multiple" | "single";
|
|
4242
4160
|
} | undefined;
|
|
4243
4161
|
navigation?: {
|
|
4244
|
-
mode: "none" | "split" | "page" | "
|
|
4162
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
4245
4163
|
preventNavigation: boolean;
|
|
4246
4164
|
openNewTab: boolean;
|
|
4247
4165
|
view?: string | undefined;
|
|
@@ -4430,7 +4348,7 @@ declare const AiMessageObject: Omit<{
|
|
|
4430
4348
|
trash: boolean;
|
|
4431
4349
|
mru: boolean;
|
|
4432
4350
|
clone: boolean;
|
|
4433
|
-
apiMethods?: ("restore" | "export" | "import" | "delete" | "purge" | "upsert" | "search" | "create" | "list" | "get" | "update" | "
|
|
4351
|
+
apiMethods?: ("restore" | "export" | "import" | "delete" | "purge" | "upsert" | "search" | "create" | "list" | "get" | "update" | "bulk" | "aggregate" | "history")[] | undefined;
|
|
4434
4352
|
} | undefined;
|
|
4435
4353
|
recordTypes?: string[] | undefined;
|
|
4436
4354
|
sharingModel?: "full" | "private" | "read" | "read_write" | undefined;
|
|
@@ -4476,7 +4394,7 @@ declare const AiMessageObject: Omit<{
|
|
|
4476
4394
|
field?: string | undefined;
|
|
4477
4395
|
objectOverride?: string | undefined;
|
|
4478
4396
|
label?: string | undefined;
|
|
4479
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
4397
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
4480
4398
|
options?: {
|
|
4481
4399
|
label: string;
|
|
4482
4400
|
value: string;
|
|
@@ -4528,7 +4446,7 @@ declare const AiMessageObject: Omit<{
|
|
|
4528
4446
|
} | undefined;
|
|
4529
4447
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
4530
4448
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
4531
|
-
mode?: "custom" | "delete" | "
|
|
4449
|
+
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
4532
4450
|
timeout?: number | undefined;
|
|
4533
4451
|
aria?: {
|
|
4534
4452
|
ariaLabel?: string | undefined;
|
|
@@ -4567,10 +4485,12 @@ declare const AiMessageObject: Omit<{
|
|
|
4567
4485
|
readonly dependencies?: string[] | undefined;
|
|
4568
4486
|
readonly theme?: string | undefined;
|
|
4569
4487
|
readonly externalId?: boolean | undefined;
|
|
4488
|
+
readonly defaultValue?: unknown;
|
|
4489
|
+
readonly group?: string | undefined;
|
|
4490
|
+
readonly hidden?: boolean | undefined;
|
|
4570
4491
|
readonly system?: boolean | undefined;
|
|
4571
4492
|
readonly min?: number | undefined;
|
|
4572
4493
|
readonly max?: number | undefined;
|
|
4573
|
-
readonly group?: string | undefined;
|
|
4574
4494
|
readonly encryptionConfig?: {
|
|
4575
4495
|
enabled: boolean;
|
|
4576
4496
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4591,7 +4511,6 @@ declare const AiMessageObject: Omit<{
|
|
|
4591
4511
|
readonly columnName?: string | undefined;
|
|
4592
4512
|
readonly searchable?: boolean | undefined;
|
|
4593
4513
|
readonly unique?: boolean | undefined;
|
|
4594
|
-
readonly defaultValue?: unknown;
|
|
4595
4514
|
readonly maxLength?: number | undefined;
|
|
4596
4515
|
readonly minLength?: number | undefined;
|
|
4597
4516
|
readonly scale?: number | undefined;
|
|
@@ -4715,7 +4634,6 @@ declare const AiMessageObject: Omit<{
|
|
|
4715
4634
|
generatedBy?: string | undefined;
|
|
4716
4635
|
} | undefined;
|
|
4717
4636
|
} | undefined;
|
|
4718
|
-
readonly hidden?: boolean | undefined;
|
|
4719
4637
|
readonly sortable?: boolean | undefined;
|
|
4720
4638
|
readonly inlineHelpText?: string | undefined;
|
|
4721
4639
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4742,10 +4660,12 @@ declare const AiMessageObject: Omit<{
|
|
|
4742
4660
|
readonly dependencies?: string[] | undefined;
|
|
4743
4661
|
readonly theme?: string | undefined;
|
|
4744
4662
|
readonly externalId?: boolean | undefined;
|
|
4663
|
+
readonly defaultValue?: unknown;
|
|
4664
|
+
readonly group?: string | undefined;
|
|
4665
|
+
readonly hidden?: boolean | undefined;
|
|
4745
4666
|
readonly system?: boolean | undefined;
|
|
4746
4667
|
readonly min?: number | undefined;
|
|
4747
4668
|
readonly max?: number | undefined;
|
|
4748
|
-
readonly group?: string | undefined;
|
|
4749
4669
|
readonly encryptionConfig?: {
|
|
4750
4670
|
enabled: boolean;
|
|
4751
4671
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4766,7 +4686,6 @@ declare const AiMessageObject: Omit<{
|
|
|
4766
4686
|
readonly columnName?: string | undefined;
|
|
4767
4687
|
readonly searchable?: boolean | undefined;
|
|
4768
4688
|
readonly unique?: boolean | undefined;
|
|
4769
|
-
readonly defaultValue?: unknown;
|
|
4770
4689
|
readonly maxLength?: number | undefined;
|
|
4771
4690
|
readonly minLength?: number | undefined;
|
|
4772
4691
|
readonly scale?: number | undefined;
|
|
@@ -4890,7 +4809,6 @@ declare const AiMessageObject: Omit<{
|
|
|
4890
4809
|
generatedBy?: string | undefined;
|
|
4891
4810
|
} | undefined;
|
|
4892
4811
|
} | undefined;
|
|
4893
|
-
readonly hidden?: boolean | undefined;
|
|
4894
4812
|
readonly sortable?: boolean | undefined;
|
|
4895
4813
|
readonly inlineHelpText?: string | undefined;
|
|
4896
4814
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4917,10 +4835,12 @@ declare const AiMessageObject: Omit<{
|
|
|
4917
4835
|
readonly dependencies?: string[] | undefined;
|
|
4918
4836
|
readonly theme?: string | undefined;
|
|
4919
4837
|
readonly externalId?: boolean | undefined;
|
|
4838
|
+
readonly defaultValue?: unknown;
|
|
4839
|
+
readonly group?: string | undefined;
|
|
4840
|
+
readonly hidden?: boolean | undefined;
|
|
4920
4841
|
readonly system?: boolean | undefined;
|
|
4921
4842
|
readonly min?: number | undefined;
|
|
4922
4843
|
readonly max?: number | undefined;
|
|
4923
|
-
readonly group?: string | undefined;
|
|
4924
4844
|
readonly encryptionConfig?: {
|
|
4925
4845
|
enabled: boolean;
|
|
4926
4846
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4941,7 +4861,6 @@ declare const AiMessageObject: Omit<{
|
|
|
4941
4861
|
readonly columnName?: string | undefined;
|
|
4942
4862
|
readonly searchable?: boolean | undefined;
|
|
4943
4863
|
readonly unique?: boolean | undefined;
|
|
4944
|
-
readonly defaultValue?: unknown;
|
|
4945
4864
|
readonly maxLength?: number | undefined;
|
|
4946
4865
|
readonly minLength?: number | undefined;
|
|
4947
4866
|
readonly scale?: number | undefined;
|
|
@@ -5065,7 +4984,6 @@ declare const AiMessageObject: Omit<{
|
|
|
5065
4984
|
generatedBy?: string | undefined;
|
|
5066
4985
|
} | undefined;
|
|
5067
4986
|
} | undefined;
|
|
5068
|
-
readonly hidden?: boolean | undefined;
|
|
5069
4987
|
readonly sortable?: boolean | undefined;
|
|
5070
4988
|
readonly inlineHelpText?: string | undefined;
|
|
5071
4989
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5092,10 +5010,12 @@ declare const AiMessageObject: Omit<{
|
|
|
5092
5010
|
readonly dependencies?: string[] | undefined;
|
|
5093
5011
|
readonly theme?: string | undefined;
|
|
5094
5012
|
readonly externalId?: boolean | undefined;
|
|
5013
|
+
readonly defaultValue?: unknown;
|
|
5014
|
+
readonly group?: string | undefined;
|
|
5015
|
+
readonly hidden?: boolean | undefined;
|
|
5095
5016
|
readonly system?: boolean | undefined;
|
|
5096
5017
|
readonly min?: number | undefined;
|
|
5097
5018
|
readonly max?: number | undefined;
|
|
5098
|
-
readonly group?: string | undefined;
|
|
5099
5019
|
readonly encryptionConfig?: {
|
|
5100
5020
|
enabled: boolean;
|
|
5101
5021
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5116,7 +5036,6 @@ declare const AiMessageObject: Omit<{
|
|
|
5116
5036
|
readonly columnName?: string | undefined;
|
|
5117
5037
|
readonly searchable?: boolean | undefined;
|
|
5118
5038
|
readonly unique?: boolean | undefined;
|
|
5119
|
-
readonly defaultValue?: unknown;
|
|
5120
5039
|
readonly maxLength?: number | undefined;
|
|
5121
5040
|
readonly minLength?: number | undefined;
|
|
5122
5041
|
readonly scale?: number | undefined;
|
|
@@ -5240,7 +5159,6 @@ declare const AiMessageObject: Omit<{
|
|
|
5240
5159
|
generatedBy?: string | undefined;
|
|
5241
5160
|
} | undefined;
|
|
5242
5161
|
} | undefined;
|
|
5243
|
-
readonly hidden?: boolean | undefined;
|
|
5244
5162
|
readonly sortable?: boolean | undefined;
|
|
5245
5163
|
readonly inlineHelpText?: string | undefined;
|
|
5246
5164
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5267,10 +5185,12 @@ declare const AiMessageObject: Omit<{
|
|
|
5267
5185
|
readonly dependencies?: string[] | undefined;
|
|
5268
5186
|
readonly theme?: string | undefined;
|
|
5269
5187
|
readonly externalId?: boolean | undefined;
|
|
5188
|
+
readonly defaultValue?: unknown;
|
|
5189
|
+
readonly group?: string | undefined;
|
|
5190
|
+
readonly hidden?: boolean | undefined;
|
|
5270
5191
|
readonly system?: boolean | undefined;
|
|
5271
5192
|
readonly min?: number | undefined;
|
|
5272
5193
|
readonly max?: number | undefined;
|
|
5273
|
-
readonly group?: string | undefined;
|
|
5274
5194
|
readonly encryptionConfig?: {
|
|
5275
5195
|
enabled: boolean;
|
|
5276
5196
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5291,7 +5211,6 @@ declare const AiMessageObject: Omit<{
|
|
|
5291
5211
|
readonly columnName?: string | undefined;
|
|
5292
5212
|
readonly searchable?: boolean | undefined;
|
|
5293
5213
|
readonly unique?: boolean | undefined;
|
|
5294
|
-
readonly defaultValue?: unknown;
|
|
5295
5214
|
readonly maxLength?: number | undefined;
|
|
5296
5215
|
readonly minLength?: number | undefined;
|
|
5297
5216
|
readonly scale?: number | undefined;
|
|
@@ -5415,7 +5334,6 @@ declare const AiMessageObject: Omit<{
|
|
|
5415
5334
|
generatedBy?: string | undefined;
|
|
5416
5335
|
} | undefined;
|
|
5417
5336
|
} | undefined;
|
|
5418
|
-
readonly hidden?: boolean | undefined;
|
|
5419
5337
|
readonly sortable?: boolean | undefined;
|
|
5420
5338
|
readonly inlineHelpText?: string | undefined;
|
|
5421
5339
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5442,10 +5360,12 @@ declare const AiMessageObject: Omit<{
|
|
|
5442
5360
|
readonly dependencies?: string[] | undefined;
|
|
5443
5361
|
readonly theme?: string | undefined;
|
|
5444
5362
|
readonly externalId?: boolean | undefined;
|
|
5363
|
+
readonly defaultValue?: unknown;
|
|
5364
|
+
readonly group?: string | undefined;
|
|
5365
|
+
readonly hidden?: boolean | undefined;
|
|
5445
5366
|
readonly system?: boolean | undefined;
|
|
5446
5367
|
readonly min?: number | undefined;
|
|
5447
5368
|
readonly max?: number | undefined;
|
|
5448
|
-
readonly group?: string | undefined;
|
|
5449
5369
|
readonly encryptionConfig?: {
|
|
5450
5370
|
enabled: boolean;
|
|
5451
5371
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5466,7 +5386,6 @@ declare const AiMessageObject: Omit<{
|
|
|
5466
5386
|
readonly columnName?: string | undefined;
|
|
5467
5387
|
readonly searchable?: boolean | undefined;
|
|
5468
5388
|
readonly unique?: boolean | undefined;
|
|
5469
|
-
readonly defaultValue?: unknown;
|
|
5470
5389
|
readonly maxLength?: number | undefined;
|
|
5471
5390
|
readonly minLength?: number | undefined;
|
|
5472
5391
|
readonly scale?: number | undefined;
|
|
@@ -5590,7 +5509,6 @@ declare const AiMessageObject: Omit<{
|
|
|
5590
5509
|
generatedBy?: string | undefined;
|
|
5591
5510
|
} | undefined;
|
|
5592
5511
|
} | undefined;
|
|
5593
|
-
readonly hidden?: boolean | undefined;
|
|
5594
5512
|
readonly sortable?: boolean | undefined;
|
|
5595
5513
|
readonly inlineHelpText?: string | undefined;
|
|
5596
5514
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5617,10 +5535,12 @@ declare const AiMessageObject: Omit<{
|
|
|
5617
5535
|
readonly dependencies?: string[] | undefined;
|
|
5618
5536
|
readonly theme?: string | undefined;
|
|
5619
5537
|
readonly externalId?: boolean | undefined;
|
|
5538
|
+
readonly defaultValue?: unknown;
|
|
5539
|
+
readonly group?: string | undefined;
|
|
5540
|
+
readonly hidden?: boolean | undefined;
|
|
5620
5541
|
readonly system?: boolean | undefined;
|
|
5621
5542
|
readonly min?: number | undefined;
|
|
5622
5543
|
readonly max?: number | undefined;
|
|
5623
|
-
readonly group?: string | undefined;
|
|
5624
5544
|
readonly encryptionConfig?: {
|
|
5625
5545
|
enabled: boolean;
|
|
5626
5546
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5641,7 +5561,6 @@ declare const AiMessageObject: Omit<{
|
|
|
5641
5561
|
readonly columnName?: string | undefined;
|
|
5642
5562
|
readonly searchable?: boolean | undefined;
|
|
5643
5563
|
readonly unique?: boolean | undefined;
|
|
5644
|
-
readonly defaultValue?: unknown;
|
|
5645
5564
|
readonly maxLength?: number | undefined;
|
|
5646
5565
|
readonly minLength?: number | undefined;
|
|
5647
5566
|
readonly scale?: number | undefined;
|
|
@@ -5765,7 +5684,6 @@ declare const AiMessageObject: Omit<{
|
|
|
5765
5684
|
generatedBy?: string | undefined;
|
|
5766
5685
|
} | undefined;
|
|
5767
5686
|
} | undefined;
|
|
5768
|
-
readonly hidden?: boolean | undefined;
|
|
5769
5687
|
readonly sortable?: boolean | undefined;
|
|
5770
5688
|
readonly inlineHelpText?: string | undefined;
|
|
5771
5689
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5792,10 +5710,12 @@ declare const AiMessageObject: Omit<{
|
|
|
5792
5710
|
readonly dependencies?: string[] | undefined;
|
|
5793
5711
|
readonly theme?: string | undefined;
|
|
5794
5712
|
readonly externalId?: boolean | undefined;
|
|
5713
|
+
readonly defaultValue?: unknown;
|
|
5714
|
+
readonly group?: string | undefined;
|
|
5715
|
+
readonly hidden?: boolean | undefined;
|
|
5795
5716
|
readonly system?: boolean | undefined;
|
|
5796
5717
|
readonly min?: number | undefined;
|
|
5797
5718
|
readonly max?: number | undefined;
|
|
5798
|
-
readonly group?: string | undefined;
|
|
5799
5719
|
readonly encryptionConfig?: {
|
|
5800
5720
|
enabled: boolean;
|
|
5801
5721
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5816,7 +5736,6 @@ declare const AiMessageObject: Omit<{
|
|
|
5816
5736
|
readonly columnName?: string | undefined;
|
|
5817
5737
|
readonly searchable?: boolean | undefined;
|
|
5818
5738
|
readonly unique?: boolean | undefined;
|
|
5819
|
-
readonly defaultValue?: unknown;
|
|
5820
5739
|
readonly maxLength?: number | undefined;
|
|
5821
5740
|
readonly minLength?: number | undefined;
|
|
5822
5741
|
readonly scale?: number | undefined;
|
|
@@ -5940,7 +5859,6 @@ declare const AiMessageObject: Omit<{
|
|
|
5940
5859
|
generatedBy?: string | undefined;
|
|
5941
5860
|
} | undefined;
|
|
5942
5861
|
} | undefined;
|
|
5943
|
-
readonly hidden?: boolean | undefined;
|
|
5944
5862
|
readonly sortable?: boolean | undefined;
|
|
5945
5863
|
readonly inlineHelpText?: string | undefined;
|
|
5946
5864
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5967,10 +5885,12 @@ declare const AiMessageObject: Omit<{
|
|
|
5967
5885
|
readonly dependencies?: string[] | undefined;
|
|
5968
5886
|
readonly theme?: string | undefined;
|
|
5969
5887
|
readonly externalId?: boolean | undefined;
|
|
5888
|
+
readonly defaultValue?: unknown;
|
|
5889
|
+
readonly group?: string | undefined;
|
|
5890
|
+
readonly hidden?: boolean | undefined;
|
|
5970
5891
|
readonly system?: boolean | undefined;
|
|
5971
5892
|
readonly min?: number | undefined;
|
|
5972
5893
|
readonly max?: number | undefined;
|
|
5973
|
-
readonly group?: string | undefined;
|
|
5974
5894
|
readonly encryptionConfig?: {
|
|
5975
5895
|
enabled: boolean;
|
|
5976
5896
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5991,7 +5911,6 @@ declare const AiMessageObject: Omit<{
|
|
|
5991
5911
|
readonly columnName?: string | undefined;
|
|
5992
5912
|
readonly searchable?: boolean | undefined;
|
|
5993
5913
|
readonly unique?: boolean | undefined;
|
|
5994
|
-
readonly defaultValue?: unknown;
|
|
5995
5914
|
readonly maxLength?: number | undefined;
|
|
5996
5915
|
readonly minLength?: number | undefined;
|
|
5997
5916
|
readonly scale?: number | undefined;
|
|
@@ -6115,7 +6034,6 @@ declare const AiMessageObject: Omit<{
|
|
|
6115
6034
|
generatedBy?: string | undefined;
|
|
6116
6035
|
} | undefined;
|
|
6117
6036
|
} | undefined;
|
|
6118
|
-
readonly hidden?: boolean | undefined;
|
|
6119
6037
|
readonly sortable?: boolean | undefined;
|
|
6120
6038
|
readonly inlineHelpText?: string | undefined;
|
|
6121
6039
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6142,10 +6060,12 @@ declare const AiMessageObject: Omit<{
|
|
|
6142
6060
|
readonly dependencies?: string[] | undefined;
|
|
6143
6061
|
readonly theme?: string | undefined;
|
|
6144
6062
|
readonly externalId?: boolean | undefined;
|
|
6063
|
+
readonly defaultValue?: unknown;
|
|
6064
|
+
readonly group?: string | undefined;
|
|
6065
|
+
readonly hidden?: boolean | undefined;
|
|
6145
6066
|
readonly system?: boolean | undefined;
|
|
6146
6067
|
readonly min?: number | undefined;
|
|
6147
6068
|
readonly max?: number | undefined;
|
|
6148
|
-
readonly group?: string | undefined;
|
|
6149
6069
|
readonly encryptionConfig?: {
|
|
6150
6070
|
enabled: boolean;
|
|
6151
6071
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6166,7 +6086,6 @@ declare const AiMessageObject: Omit<{
|
|
|
6166
6086
|
readonly columnName?: string | undefined;
|
|
6167
6087
|
readonly searchable?: boolean | undefined;
|
|
6168
6088
|
readonly unique?: boolean | undefined;
|
|
6169
|
-
readonly defaultValue?: unknown;
|
|
6170
6089
|
readonly maxLength?: number | undefined;
|
|
6171
6090
|
readonly minLength?: number | undefined;
|
|
6172
6091
|
readonly scale?: number | undefined;
|
|
@@ -6290,7 +6209,6 @@ declare const AiMessageObject: Omit<{
|
|
|
6290
6209
|
generatedBy?: string | undefined;
|
|
6291
6210
|
} | undefined;
|
|
6292
6211
|
} | undefined;
|
|
6293
|
-
readonly hidden?: boolean | undefined;
|
|
6294
6212
|
readonly sortable?: boolean | undefined;
|
|
6295
6213
|
readonly inlineHelpText?: string | undefined;
|
|
6296
6214
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6317,10 +6235,12 @@ declare const AiMessageObject: Omit<{
|
|
|
6317
6235
|
readonly dependencies?: string[] | undefined;
|
|
6318
6236
|
readonly theme?: string | undefined;
|
|
6319
6237
|
readonly externalId?: boolean | undefined;
|
|
6238
|
+
readonly defaultValue?: unknown;
|
|
6239
|
+
readonly group?: string | undefined;
|
|
6240
|
+
readonly hidden?: boolean | undefined;
|
|
6320
6241
|
readonly system?: boolean | undefined;
|
|
6321
6242
|
readonly min?: number | undefined;
|
|
6322
6243
|
readonly max?: number | undefined;
|
|
6323
|
-
readonly group?: string | undefined;
|
|
6324
6244
|
readonly encryptionConfig?: {
|
|
6325
6245
|
enabled: boolean;
|
|
6326
6246
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6341,7 +6261,6 @@ declare const AiMessageObject: Omit<{
|
|
|
6341
6261
|
readonly columnName?: string | undefined;
|
|
6342
6262
|
readonly searchable?: boolean | undefined;
|
|
6343
6263
|
readonly unique?: boolean | undefined;
|
|
6344
|
-
readonly defaultValue?: unknown;
|
|
6345
6264
|
readonly maxLength?: number | undefined;
|
|
6346
6265
|
readonly minLength?: number | undefined;
|
|
6347
6266
|
readonly scale?: number | undefined;
|
|
@@ -6465,7 +6384,6 @@ declare const AiMessageObject: Omit<{
|
|
|
6465
6384
|
generatedBy?: string | undefined;
|
|
6466
6385
|
} | undefined;
|
|
6467
6386
|
} | undefined;
|
|
6468
|
-
readonly hidden?: boolean | undefined;
|
|
6469
6387
|
readonly sortable?: boolean | undefined;
|
|
6470
6388
|
readonly inlineHelpText?: string | undefined;
|
|
6471
6389
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6492,10 +6410,12 @@ declare const AiMessageObject: Omit<{
|
|
|
6492
6410
|
readonly dependencies?: string[] | undefined;
|
|
6493
6411
|
readonly theme?: string | undefined;
|
|
6494
6412
|
readonly externalId?: boolean | undefined;
|
|
6413
|
+
readonly defaultValue?: unknown;
|
|
6414
|
+
readonly group?: string | undefined;
|
|
6415
|
+
readonly hidden?: boolean | undefined;
|
|
6495
6416
|
readonly system?: boolean | undefined;
|
|
6496
6417
|
readonly min?: number | undefined;
|
|
6497
6418
|
readonly max?: number | undefined;
|
|
6498
|
-
readonly group?: string | undefined;
|
|
6499
6419
|
readonly encryptionConfig?: {
|
|
6500
6420
|
enabled: boolean;
|
|
6501
6421
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6516,7 +6436,6 @@ declare const AiMessageObject: Omit<{
|
|
|
6516
6436
|
readonly columnName?: string | undefined;
|
|
6517
6437
|
readonly searchable?: boolean | undefined;
|
|
6518
6438
|
readonly unique?: boolean | undefined;
|
|
6519
|
-
readonly defaultValue?: unknown;
|
|
6520
6439
|
readonly maxLength?: number | undefined;
|
|
6521
6440
|
readonly minLength?: number | undefined;
|
|
6522
6441
|
readonly scale?: number | undefined;
|
|
@@ -6640,7 +6559,6 @@ declare const AiMessageObject: Omit<{
|
|
|
6640
6559
|
generatedBy?: string | undefined;
|
|
6641
6560
|
} | undefined;
|
|
6642
6561
|
} | undefined;
|
|
6643
|
-
readonly hidden?: boolean | undefined;
|
|
6644
6562
|
readonly sortable?: boolean | undefined;
|
|
6645
6563
|
readonly inlineHelpText?: string | undefined;
|
|
6646
6564
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6686,7 +6604,7 @@ declare const AiTraceObject: Omit<{
|
|
|
6686
6604
|
abstract: boolean;
|
|
6687
6605
|
datasource: string;
|
|
6688
6606
|
fields: Record<string, {
|
|
6689
|
-
type: "number" | "boolean" | "file" | "text" | "json" | "tags" | "currency" | "code" | "date" | "record" | "avatar" | "vector" | "datetime" | "signature" | "progress" | "url" | "
|
|
6607
|
+
type: "number" | "boolean" | "file" | "text" | "json" | "tags" | "currency" | "code" | "date" | "record" | "avatar" | "vector" | "datetime" | "signature" | "progress" | "url" | "percent" | "password" | "secret" | "email" | "time" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "color" | "rating" | "slider" | "qrcode";
|
|
6690
6608
|
required: boolean;
|
|
6691
6609
|
searchable: boolean;
|
|
6692
6610
|
multiple: boolean;
|
|
@@ -6901,6 +6819,14 @@ declare const AiTraceObject: Omit<{
|
|
|
6901
6819
|
owner?: boolean | undefined;
|
|
6902
6820
|
audit?: boolean | undefined;
|
|
6903
6821
|
} | undefined;
|
|
6822
|
+
external?: {
|
|
6823
|
+
writable: boolean;
|
|
6824
|
+
remoteName?: string | undefined;
|
|
6825
|
+
remoteSchema?: string | undefined;
|
|
6826
|
+
columnMap?: Record<string, string> | undefined;
|
|
6827
|
+
introspectedAt?: string | undefined;
|
|
6828
|
+
ignoreColumns?: string[] | undefined;
|
|
6829
|
+
} | undefined;
|
|
6904
6830
|
indexes?: {
|
|
6905
6831
|
fields: string[];
|
|
6906
6832
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -6961,36 +6887,6 @@ declare const AiTraceObject: Omit<{
|
|
|
6961
6887
|
destination: string;
|
|
6962
6888
|
} | undefined;
|
|
6963
6889
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
6964
|
-
stateMachines?: Record<string, {
|
|
6965
|
-
id: string;
|
|
6966
|
-
initial: string;
|
|
6967
|
-
states: Record<string, StateNodeConfig>;
|
|
6968
|
-
description?: string | undefined;
|
|
6969
|
-
contextSchema?: Record<string, unknown> | undefined;
|
|
6970
|
-
on?: Record<string, string | {
|
|
6971
|
-
target?: string | undefined;
|
|
6972
|
-
cond?: string | {
|
|
6973
|
-
type: string;
|
|
6974
|
-
params?: Record<string, unknown> | undefined;
|
|
6975
|
-
} | undefined;
|
|
6976
|
-
actions?: (string | {
|
|
6977
|
-
type: string;
|
|
6978
|
-
params?: Record<string, unknown> | undefined;
|
|
6979
|
-
})[] | undefined;
|
|
6980
|
-
description?: string | undefined;
|
|
6981
|
-
} | {
|
|
6982
|
-
target?: string | undefined;
|
|
6983
|
-
cond?: string | {
|
|
6984
|
-
type: string;
|
|
6985
|
-
params?: Record<string, unknown> | undefined;
|
|
6986
|
-
} | undefined;
|
|
6987
|
-
actions?: (string | {
|
|
6988
|
-
type: string;
|
|
6989
|
-
params?: Record<string, unknown> | undefined;
|
|
6990
|
-
})[] | undefined;
|
|
6991
|
-
description?: string | undefined;
|
|
6992
|
-
}[]> | undefined;
|
|
6993
|
-
}> | undefined;
|
|
6994
6890
|
displayNameField?: string | undefined;
|
|
6995
6891
|
recordName?: {
|
|
6996
6892
|
type: "text" | "autonumber";
|
|
@@ -7080,7 +6976,7 @@ declare const AiTraceObject: Omit<{
|
|
|
7080
6976
|
type: "none" | "multiple" | "single";
|
|
7081
6977
|
} | undefined;
|
|
7082
6978
|
navigation?: {
|
|
7083
|
-
mode: "none" | "split" | "page" | "
|
|
6979
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
7084
6980
|
preventNavigation: boolean;
|
|
7085
6981
|
openNewTab: boolean;
|
|
7086
6982
|
view?: string | undefined;
|
|
@@ -7269,7 +7165,7 @@ declare const AiTraceObject: Omit<{
|
|
|
7269
7165
|
trash: boolean;
|
|
7270
7166
|
mru: boolean;
|
|
7271
7167
|
clone: boolean;
|
|
7272
|
-
apiMethods?: ("restore" | "export" | "import" | "delete" | "purge" | "upsert" | "search" | "create" | "list" | "get" | "update" | "
|
|
7168
|
+
apiMethods?: ("restore" | "export" | "import" | "delete" | "purge" | "upsert" | "search" | "create" | "list" | "get" | "update" | "bulk" | "aggregate" | "history")[] | undefined;
|
|
7273
7169
|
} | undefined;
|
|
7274
7170
|
recordTypes?: string[] | undefined;
|
|
7275
7171
|
sharingModel?: "full" | "private" | "read" | "read_write" | undefined;
|
|
@@ -7315,7 +7211,7 @@ declare const AiTraceObject: Omit<{
|
|
|
7315
7211
|
field?: string | undefined;
|
|
7316
7212
|
objectOverride?: string | undefined;
|
|
7317
7213
|
label?: string | undefined;
|
|
7318
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
7214
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
7319
7215
|
options?: {
|
|
7320
7216
|
label: string;
|
|
7321
7217
|
value: string;
|
|
@@ -7367,7 +7263,7 @@ declare const AiTraceObject: Omit<{
|
|
|
7367
7263
|
} | undefined;
|
|
7368
7264
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
7369
7265
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
7370
|
-
mode?: "custom" | "delete" | "
|
|
7266
|
+
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
7371
7267
|
timeout?: number | undefined;
|
|
7372
7268
|
aria?: {
|
|
7373
7269
|
ariaLabel?: string | undefined;
|
|
@@ -7406,10 +7302,12 @@ declare const AiTraceObject: Omit<{
|
|
|
7406
7302
|
readonly dependencies?: string[] | undefined;
|
|
7407
7303
|
readonly theme?: string | undefined;
|
|
7408
7304
|
readonly externalId?: boolean | undefined;
|
|
7305
|
+
readonly defaultValue?: unknown;
|
|
7306
|
+
readonly group?: string | undefined;
|
|
7307
|
+
readonly hidden?: boolean | undefined;
|
|
7409
7308
|
readonly system?: boolean | undefined;
|
|
7410
7309
|
readonly min?: number | undefined;
|
|
7411
7310
|
readonly max?: number | undefined;
|
|
7412
|
-
readonly group?: string | undefined;
|
|
7413
7311
|
readonly encryptionConfig?: {
|
|
7414
7312
|
enabled: boolean;
|
|
7415
7313
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7430,7 +7328,6 @@ declare const AiTraceObject: Omit<{
|
|
|
7430
7328
|
readonly columnName?: string | undefined;
|
|
7431
7329
|
readonly searchable?: boolean | undefined;
|
|
7432
7330
|
readonly unique?: boolean | undefined;
|
|
7433
|
-
readonly defaultValue?: unknown;
|
|
7434
7331
|
readonly maxLength?: number | undefined;
|
|
7435
7332
|
readonly minLength?: number | undefined;
|
|
7436
7333
|
readonly scale?: number | undefined;
|
|
@@ -7554,7 +7451,6 @@ declare const AiTraceObject: Omit<{
|
|
|
7554
7451
|
generatedBy?: string | undefined;
|
|
7555
7452
|
} | undefined;
|
|
7556
7453
|
} | undefined;
|
|
7557
|
-
readonly hidden?: boolean | undefined;
|
|
7558
7454
|
readonly sortable?: boolean | undefined;
|
|
7559
7455
|
readonly inlineHelpText?: string | undefined;
|
|
7560
7456
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7581,10 +7477,12 @@ declare const AiTraceObject: Omit<{
|
|
|
7581
7477
|
readonly dependencies?: string[] | undefined;
|
|
7582
7478
|
readonly theme?: string | undefined;
|
|
7583
7479
|
readonly externalId?: boolean | undefined;
|
|
7480
|
+
readonly defaultValue?: unknown;
|
|
7481
|
+
readonly group?: string | undefined;
|
|
7482
|
+
readonly hidden?: boolean | undefined;
|
|
7584
7483
|
readonly system?: boolean | undefined;
|
|
7585
7484
|
readonly min?: number | undefined;
|
|
7586
7485
|
readonly max?: number | undefined;
|
|
7587
|
-
readonly group?: string | undefined;
|
|
7588
7486
|
readonly encryptionConfig?: {
|
|
7589
7487
|
enabled: boolean;
|
|
7590
7488
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7605,7 +7503,6 @@ declare const AiTraceObject: Omit<{
|
|
|
7605
7503
|
readonly columnName?: string | undefined;
|
|
7606
7504
|
readonly searchable?: boolean | undefined;
|
|
7607
7505
|
readonly unique?: boolean | undefined;
|
|
7608
|
-
readonly defaultValue?: unknown;
|
|
7609
7506
|
readonly maxLength?: number | undefined;
|
|
7610
7507
|
readonly minLength?: number | undefined;
|
|
7611
7508
|
readonly scale?: number | undefined;
|
|
@@ -7729,7 +7626,6 @@ declare const AiTraceObject: Omit<{
|
|
|
7729
7626
|
generatedBy?: string | undefined;
|
|
7730
7627
|
} | undefined;
|
|
7731
7628
|
} | undefined;
|
|
7732
|
-
readonly hidden?: boolean | undefined;
|
|
7733
7629
|
readonly sortable?: boolean | undefined;
|
|
7734
7630
|
readonly inlineHelpText?: string | undefined;
|
|
7735
7631
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7756,10 +7652,12 @@ declare const AiTraceObject: Omit<{
|
|
|
7756
7652
|
readonly dependencies?: string[] | undefined;
|
|
7757
7653
|
readonly theme?: string | undefined;
|
|
7758
7654
|
readonly externalId?: boolean | undefined;
|
|
7655
|
+
readonly defaultValue?: unknown;
|
|
7656
|
+
readonly group?: string | undefined;
|
|
7657
|
+
readonly hidden?: boolean | undefined;
|
|
7759
7658
|
readonly system?: boolean | undefined;
|
|
7760
7659
|
readonly min?: number | undefined;
|
|
7761
7660
|
readonly max?: number | undefined;
|
|
7762
|
-
readonly group?: string | undefined;
|
|
7763
7661
|
readonly encryptionConfig?: {
|
|
7764
7662
|
enabled: boolean;
|
|
7765
7663
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7780,7 +7678,6 @@ declare const AiTraceObject: Omit<{
|
|
|
7780
7678
|
readonly columnName?: string | undefined;
|
|
7781
7679
|
readonly searchable?: boolean | undefined;
|
|
7782
7680
|
readonly unique?: boolean | undefined;
|
|
7783
|
-
readonly defaultValue?: unknown;
|
|
7784
7681
|
readonly maxLength?: number | undefined;
|
|
7785
7682
|
readonly minLength?: number | undefined;
|
|
7786
7683
|
readonly scale?: number | undefined;
|
|
@@ -7904,7 +7801,6 @@ declare const AiTraceObject: Omit<{
|
|
|
7904
7801
|
generatedBy?: string | undefined;
|
|
7905
7802
|
} | undefined;
|
|
7906
7803
|
} | undefined;
|
|
7907
|
-
readonly hidden?: boolean | undefined;
|
|
7908
7804
|
readonly sortable?: boolean | undefined;
|
|
7909
7805
|
readonly inlineHelpText?: string | undefined;
|
|
7910
7806
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7931,10 +7827,12 @@ declare const AiTraceObject: Omit<{
|
|
|
7931
7827
|
readonly dependencies?: string[] | undefined;
|
|
7932
7828
|
readonly theme?: string | undefined;
|
|
7933
7829
|
readonly externalId?: boolean | undefined;
|
|
7830
|
+
readonly defaultValue?: unknown;
|
|
7831
|
+
readonly group?: string | undefined;
|
|
7832
|
+
readonly hidden?: boolean | undefined;
|
|
7934
7833
|
readonly system?: boolean | undefined;
|
|
7935
7834
|
readonly min?: number | undefined;
|
|
7936
7835
|
readonly max?: number | undefined;
|
|
7937
|
-
readonly group?: string | undefined;
|
|
7938
7836
|
readonly encryptionConfig?: {
|
|
7939
7837
|
enabled: boolean;
|
|
7940
7838
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7955,7 +7853,6 @@ declare const AiTraceObject: Omit<{
|
|
|
7955
7853
|
readonly columnName?: string | undefined;
|
|
7956
7854
|
readonly searchable?: boolean | undefined;
|
|
7957
7855
|
readonly unique?: boolean | undefined;
|
|
7958
|
-
readonly defaultValue?: unknown;
|
|
7959
7856
|
readonly maxLength?: number | undefined;
|
|
7960
7857
|
readonly minLength?: number | undefined;
|
|
7961
7858
|
readonly scale?: number | undefined;
|
|
@@ -8079,7 +7976,6 @@ declare const AiTraceObject: Omit<{
|
|
|
8079
7976
|
generatedBy?: string | undefined;
|
|
8080
7977
|
} | undefined;
|
|
8081
7978
|
} | undefined;
|
|
8082
|
-
readonly hidden?: boolean | undefined;
|
|
8083
7979
|
readonly sortable?: boolean | undefined;
|
|
8084
7980
|
readonly inlineHelpText?: string | undefined;
|
|
8085
7981
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -8106,10 +8002,12 @@ declare const AiTraceObject: Omit<{
|
|
|
8106
8002
|
readonly dependencies?: string[] | undefined;
|
|
8107
8003
|
readonly theme?: string | undefined;
|
|
8108
8004
|
readonly externalId?: boolean | undefined;
|
|
8005
|
+
readonly defaultValue?: unknown;
|
|
8006
|
+
readonly group?: string | undefined;
|
|
8007
|
+
readonly hidden?: boolean | undefined;
|
|
8109
8008
|
readonly system?: boolean | undefined;
|
|
8110
8009
|
readonly min?: number | undefined;
|
|
8111
8010
|
readonly max?: number | undefined;
|
|
8112
|
-
readonly group?: string | undefined;
|
|
8113
8011
|
readonly encryptionConfig?: {
|
|
8114
8012
|
enabled: boolean;
|
|
8115
8013
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -8130,7 +8028,6 @@ declare const AiTraceObject: Omit<{
|
|
|
8130
8028
|
readonly columnName?: string | undefined;
|
|
8131
8029
|
readonly searchable?: boolean | undefined;
|
|
8132
8030
|
readonly unique?: boolean | undefined;
|
|
8133
|
-
readonly defaultValue?: unknown;
|
|
8134
8031
|
readonly maxLength?: number | undefined;
|
|
8135
8032
|
readonly minLength?: number | undefined;
|
|
8136
8033
|
readonly scale?: number | undefined;
|
|
@@ -8254,7 +8151,6 @@ declare const AiTraceObject: Omit<{
|
|
|
8254
8151
|
generatedBy?: string | undefined;
|
|
8255
8152
|
} | undefined;
|
|
8256
8153
|
} | undefined;
|
|
8257
|
-
readonly hidden?: boolean | undefined;
|
|
8258
8154
|
readonly sortable?: boolean | undefined;
|
|
8259
8155
|
readonly inlineHelpText?: string | undefined;
|
|
8260
8156
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -8281,10 +8177,12 @@ declare const AiTraceObject: Omit<{
|
|
|
8281
8177
|
readonly dependencies?: string[] | undefined;
|
|
8282
8178
|
readonly theme?: string | undefined;
|
|
8283
8179
|
readonly externalId?: boolean | undefined;
|
|
8180
|
+
readonly defaultValue?: unknown;
|
|
8181
|
+
readonly group?: string | undefined;
|
|
8182
|
+
readonly hidden?: boolean | undefined;
|
|
8284
8183
|
readonly system?: boolean | undefined;
|
|
8285
8184
|
readonly min?: number | undefined;
|
|
8286
8185
|
readonly max?: number | undefined;
|
|
8287
|
-
readonly group?: string | undefined;
|
|
8288
8186
|
readonly encryptionConfig?: {
|
|
8289
8187
|
enabled: boolean;
|
|
8290
8188
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -8305,7 +8203,6 @@ declare const AiTraceObject: Omit<{
|
|
|
8305
8203
|
readonly columnName?: string | undefined;
|
|
8306
8204
|
readonly searchable?: boolean | undefined;
|
|
8307
8205
|
readonly unique?: boolean | undefined;
|
|
8308
|
-
readonly defaultValue?: unknown;
|
|
8309
8206
|
readonly maxLength?: number | undefined;
|
|
8310
8207
|
readonly minLength?: number | undefined;
|
|
8311
8208
|
readonly scale?: number | undefined;
|
|
@@ -8429,7 +8326,6 @@ declare const AiTraceObject: Omit<{
|
|
|
8429
8326
|
generatedBy?: string | undefined;
|
|
8430
8327
|
} | undefined;
|
|
8431
8328
|
} | undefined;
|
|
8432
|
-
readonly hidden?: boolean | undefined;
|
|
8433
8329
|
readonly sortable?: boolean | undefined;
|
|
8434
8330
|
readonly inlineHelpText?: string | undefined;
|
|
8435
8331
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -8456,10 +8352,12 @@ declare const AiTraceObject: Omit<{
|
|
|
8456
8352
|
readonly dependencies?: string[] | undefined;
|
|
8457
8353
|
readonly theme?: string | undefined;
|
|
8458
8354
|
readonly externalId?: boolean | undefined;
|
|
8355
|
+
readonly defaultValue?: unknown;
|
|
8356
|
+
readonly group?: string | undefined;
|
|
8357
|
+
readonly hidden?: boolean | undefined;
|
|
8459
8358
|
readonly system?: boolean | undefined;
|
|
8460
8359
|
readonly min?: number | undefined;
|
|
8461
8360
|
readonly max?: number | undefined;
|
|
8462
|
-
readonly group?: string | undefined;
|
|
8463
8361
|
readonly encryptionConfig?: {
|
|
8464
8362
|
enabled: boolean;
|
|
8465
8363
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -8480,7 +8378,6 @@ declare const AiTraceObject: Omit<{
|
|
|
8480
8378
|
readonly columnName?: string | undefined;
|
|
8481
8379
|
readonly searchable?: boolean | undefined;
|
|
8482
8380
|
readonly unique?: boolean | undefined;
|
|
8483
|
-
readonly defaultValue?: unknown;
|
|
8484
8381
|
readonly maxLength?: number | undefined;
|
|
8485
8382
|
readonly minLength?: number | undefined;
|
|
8486
8383
|
readonly scale?: number | undefined;
|
|
@@ -8604,7 +8501,6 @@ declare const AiTraceObject: Omit<{
|
|
|
8604
8501
|
generatedBy?: string | undefined;
|
|
8605
8502
|
} | undefined;
|
|
8606
8503
|
} | undefined;
|
|
8607
|
-
readonly hidden?: boolean | undefined;
|
|
8608
8504
|
readonly sortable?: boolean | undefined;
|
|
8609
8505
|
readonly inlineHelpText?: string | undefined;
|
|
8610
8506
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -8631,10 +8527,12 @@ declare const AiTraceObject: Omit<{
|
|
|
8631
8527
|
readonly dependencies?: string[] | undefined;
|
|
8632
8528
|
readonly theme?: string | undefined;
|
|
8633
8529
|
readonly externalId?: boolean | undefined;
|
|
8530
|
+
readonly defaultValue?: unknown;
|
|
8531
|
+
readonly group?: string | undefined;
|
|
8532
|
+
readonly hidden?: boolean | undefined;
|
|
8634
8533
|
readonly system?: boolean | undefined;
|
|
8635
8534
|
readonly min?: number | undefined;
|
|
8636
8535
|
readonly max?: number | undefined;
|
|
8637
|
-
readonly group?: string | undefined;
|
|
8638
8536
|
readonly encryptionConfig?: {
|
|
8639
8537
|
enabled: boolean;
|
|
8640
8538
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -8655,7 +8553,6 @@ declare const AiTraceObject: Omit<{
|
|
|
8655
8553
|
readonly columnName?: string | undefined;
|
|
8656
8554
|
readonly searchable?: boolean | undefined;
|
|
8657
8555
|
readonly unique?: boolean | undefined;
|
|
8658
|
-
readonly defaultValue?: unknown;
|
|
8659
8556
|
readonly maxLength?: number | undefined;
|
|
8660
8557
|
readonly minLength?: number | undefined;
|
|
8661
8558
|
readonly scale?: number | undefined;
|
|
@@ -8779,7 +8676,6 @@ declare const AiTraceObject: Omit<{
|
|
|
8779
8676
|
generatedBy?: string | undefined;
|
|
8780
8677
|
} | undefined;
|
|
8781
8678
|
} | undefined;
|
|
8782
|
-
readonly hidden?: boolean | undefined;
|
|
8783
8679
|
readonly sortable?: boolean | undefined;
|
|
8784
8680
|
readonly inlineHelpText?: string | undefined;
|
|
8785
8681
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -8806,10 +8702,12 @@ declare const AiTraceObject: Omit<{
|
|
|
8806
8702
|
readonly dependencies?: string[] | undefined;
|
|
8807
8703
|
readonly theme?: string | undefined;
|
|
8808
8704
|
readonly externalId?: boolean | undefined;
|
|
8705
|
+
readonly defaultValue?: unknown;
|
|
8706
|
+
readonly group?: string | undefined;
|
|
8707
|
+
readonly hidden?: boolean | undefined;
|
|
8809
8708
|
readonly system?: boolean | undefined;
|
|
8810
8709
|
readonly min?: number | undefined;
|
|
8811
8710
|
readonly max?: number | undefined;
|
|
8812
|
-
readonly group?: string | undefined;
|
|
8813
8711
|
readonly encryptionConfig?: {
|
|
8814
8712
|
enabled: boolean;
|
|
8815
8713
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -8830,7 +8728,6 @@ declare const AiTraceObject: Omit<{
|
|
|
8830
8728
|
readonly columnName?: string | undefined;
|
|
8831
8729
|
readonly searchable?: boolean | undefined;
|
|
8832
8730
|
readonly unique?: boolean | undefined;
|
|
8833
|
-
readonly defaultValue?: unknown;
|
|
8834
8731
|
readonly maxLength?: number | undefined;
|
|
8835
8732
|
readonly minLength?: number | undefined;
|
|
8836
8733
|
readonly scale?: number | undefined;
|
|
@@ -8954,7 +8851,6 @@ declare const AiTraceObject: Omit<{
|
|
|
8954
8851
|
generatedBy?: string | undefined;
|
|
8955
8852
|
} | undefined;
|
|
8956
8853
|
} | undefined;
|
|
8957
|
-
readonly hidden?: boolean | undefined;
|
|
8958
8854
|
readonly sortable?: boolean | undefined;
|
|
8959
8855
|
readonly inlineHelpText?: string | undefined;
|
|
8960
8856
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -8981,10 +8877,12 @@ declare const AiTraceObject: Omit<{
|
|
|
8981
8877
|
readonly dependencies?: string[] | undefined;
|
|
8982
8878
|
readonly theme?: string | undefined;
|
|
8983
8879
|
readonly externalId?: boolean | undefined;
|
|
8880
|
+
readonly defaultValue?: unknown;
|
|
8881
|
+
readonly group?: string | undefined;
|
|
8882
|
+
readonly hidden?: boolean | undefined;
|
|
8984
8883
|
readonly system?: boolean | undefined;
|
|
8985
8884
|
readonly min?: number | undefined;
|
|
8986
8885
|
readonly max?: number | undefined;
|
|
8987
|
-
readonly group?: string | undefined;
|
|
8988
8886
|
readonly encryptionConfig?: {
|
|
8989
8887
|
enabled: boolean;
|
|
8990
8888
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -9005,7 +8903,6 @@ declare const AiTraceObject: Omit<{
|
|
|
9005
8903
|
readonly columnName?: string | undefined;
|
|
9006
8904
|
readonly searchable?: boolean | undefined;
|
|
9007
8905
|
readonly unique?: boolean | undefined;
|
|
9008
|
-
readonly defaultValue?: unknown;
|
|
9009
8906
|
readonly maxLength?: number | undefined;
|
|
9010
8907
|
readonly minLength?: number | undefined;
|
|
9011
8908
|
readonly scale?: number | undefined;
|
|
@@ -9129,7 +9026,6 @@ declare const AiTraceObject: Omit<{
|
|
|
9129
9026
|
generatedBy?: string | undefined;
|
|
9130
9027
|
} | undefined;
|
|
9131
9028
|
} | undefined;
|
|
9132
|
-
readonly hidden?: boolean | undefined;
|
|
9133
9029
|
readonly sortable?: boolean | undefined;
|
|
9134
9030
|
readonly inlineHelpText?: string | undefined;
|
|
9135
9031
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -9156,10 +9052,12 @@ declare const AiTraceObject: Omit<{
|
|
|
9156
9052
|
readonly dependencies?: string[] | undefined;
|
|
9157
9053
|
readonly theme?: string | undefined;
|
|
9158
9054
|
readonly externalId?: boolean | undefined;
|
|
9055
|
+
readonly defaultValue?: unknown;
|
|
9056
|
+
readonly group?: string | undefined;
|
|
9057
|
+
readonly hidden?: boolean | undefined;
|
|
9159
9058
|
readonly system?: boolean | undefined;
|
|
9160
9059
|
readonly min?: number | undefined;
|
|
9161
9060
|
readonly max?: number | undefined;
|
|
9162
|
-
readonly group?: string | undefined;
|
|
9163
9061
|
readonly encryptionConfig?: {
|
|
9164
9062
|
enabled: boolean;
|
|
9165
9063
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -9180,7 +9078,6 @@ declare const AiTraceObject: Omit<{
|
|
|
9180
9078
|
readonly columnName?: string | undefined;
|
|
9181
9079
|
readonly searchable?: boolean | undefined;
|
|
9182
9080
|
readonly unique?: boolean | undefined;
|
|
9183
|
-
readonly defaultValue?: unknown;
|
|
9184
9081
|
readonly maxLength?: number | undefined;
|
|
9185
9082
|
readonly minLength?: number | undefined;
|
|
9186
9083
|
readonly scale?: number | undefined;
|
|
@@ -9304,7 +9201,6 @@ declare const AiTraceObject: Omit<{
|
|
|
9304
9201
|
generatedBy?: string | undefined;
|
|
9305
9202
|
} | undefined;
|
|
9306
9203
|
} | undefined;
|
|
9307
|
-
readonly hidden?: boolean | undefined;
|
|
9308
9204
|
readonly sortable?: boolean | undefined;
|
|
9309
9205
|
readonly inlineHelpText?: string | undefined;
|
|
9310
9206
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -9331,10 +9227,12 @@ declare const AiTraceObject: Omit<{
|
|
|
9331
9227
|
readonly dependencies?: string[] | undefined;
|
|
9332
9228
|
readonly theme?: string | undefined;
|
|
9333
9229
|
readonly externalId?: boolean | undefined;
|
|
9230
|
+
readonly defaultValue?: unknown;
|
|
9231
|
+
readonly group?: string | undefined;
|
|
9232
|
+
readonly hidden?: boolean | undefined;
|
|
9334
9233
|
readonly system?: boolean | undefined;
|
|
9335
9234
|
readonly min?: number | undefined;
|
|
9336
9235
|
readonly max?: number | undefined;
|
|
9337
|
-
readonly group?: string | undefined;
|
|
9338
9236
|
readonly encryptionConfig?: {
|
|
9339
9237
|
enabled: boolean;
|
|
9340
9238
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -9355,7 +9253,6 @@ declare const AiTraceObject: Omit<{
|
|
|
9355
9253
|
readonly columnName?: string | undefined;
|
|
9356
9254
|
readonly searchable?: boolean | undefined;
|
|
9357
9255
|
readonly unique?: boolean | undefined;
|
|
9358
|
-
readonly defaultValue?: unknown;
|
|
9359
9256
|
readonly maxLength?: number | undefined;
|
|
9360
9257
|
readonly minLength?: number | undefined;
|
|
9361
9258
|
readonly scale?: number | undefined;
|
|
@@ -9479,7 +9376,6 @@ declare const AiTraceObject: Omit<{
|
|
|
9479
9376
|
generatedBy?: string | undefined;
|
|
9480
9377
|
} | undefined;
|
|
9481
9378
|
} | undefined;
|
|
9482
|
-
readonly hidden?: boolean | undefined;
|
|
9483
9379
|
readonly sortable?: boolean | undefined;
|
|
9484
9380
|
readonly inlineHelpText?: string | undefined;
|
|
9485
9381
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -9506,10 +9402,12 @@ declare const AiTraceObject: Omit<{
|
|
|
9506
9402
|
readonly dependencies?: string[] | undefined;
|
|
9507
9403
|
readonly theme?: string | undefined;
|
|
9508
9404
|
readonly externalId?: boolean | undefined;
|
|
9405
|
+
readonly defaultValue?: unknown;
|
|
9406
|
+
readonly group?: string | undefined;
|
|
9407
|
+
readonly hidden?: boolean | undefined;
|
|
9509
9408
|
readonly system?: boolean | undefined;
|
|
9510
9409
|
readonly min?: number | undefined;
|
|
9511
9410
|
readonly max?: number | undefined;
|
|
9512
|
-
readonly group?: string | undefined;
|
|
9513
9411
|
readonly encryptionConfig?: {
|
|
9514
9412
|
enabled: boolean;
|
|
9515
9413
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -9530,7 +9428,6 @@ declare const AiTraceObject: Omit<{
|
|
|
9530
9428
|
readonly columnName?: string | undefined;
|
|
9531
9429
|
readonly searchable?: boolean | undefined;
|
|
9532
9430
|
readonly unique?: boolean | undefined;
|
|
9533
|
-
readonly defaultValue?: unknown;
|
|
9534
9431
|
readonly maxLength?: number | undefined;
|
|
9535
9432
|
readonly minLength?: number | undefined;
|
|
9536
9433
|
readonly scale?: number | undefined;
|
|
@@ -9654,7 +9551,6 @@ declare const AiTraceObject: Omit<{
|
|
|
9654
9551
|
generatedBy?: string | undefined;
|
|
9655
9552
|
} | undefined;
|
|
9656
9553
|
} | undefined;
|
|
9657
|
-
readonly hidden?: boolean | undefined;
|
|
9658
9554
|
readonly sortable?: boolean | undefined;
|
|
9659
9555
|
readonly inlineHelpText?: string | undefined;
|
|
9660
9556
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -9681,10 +9577,12 @@ declare const AiTraceObject: Omit<{
|
|
|
9681
9577
|
readonly dependencies?: string[] | undefined;
|
|
9682
9578
|
readonly theme?: string | undefined;
|
|
9683
9579
|
readonly externalId?: boolean | undefined;
|
|
9580
|
+
readonly defaultValue?: unknown;
|
|
9581
|
+
readonly group?: string | undefined;
|
|
9582
|
+
readonly hidden?: boolean | undefined;
|
|
9684
9583
|
readonly system?: boolean | undefined;
|
|
9685
9584
|
readonly min?: number | undefined;
|
|
9686
9585
|
readonly max?: number | undefined;
|
|
9687
|
-
readonly group?: string | undefined;
|
|
9688
9586
|
readonly encryptionConfig?: {
|
|
9689
9587
|
enabled: boolean;
|
|
9690
9588
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -9705,7 +9603,6 @@ declare const AiTraceObject: Omit<{
|
|
|
9705
9603
|
readonly columnName?: string | undefined;
|
|
9706
9604
|
readonly searchable?: boolean | undefined;
|
|
9707
9605
|
readonly unique?: boolean | undefined;
|
|
9708
|
-
readonly defaultValue?: unknown;
|
|
9709
9606
|
readonly maxLength?: number | undefined;
|
|
9710
9607
|
readonly minLength?: number | undefined;
|
|
9711
9608
|
readonly scale?: number | undefined;
|
|
@@ -9829,7 +9726,6 @@ declare const AiTraceObject: Omit<{
|
|
|
9829
9726
|
generatedBy?: string | undefined;
|
|
9830
9727
|
} | undefined;
|
|
9831
9728
|
} | undefined;
|
|
9832
|
-
readonly hidden?: boolean | undefined;
|
|
9833
9729
|
readonly sortable?: boolean | undefined;
|
|
9834
9730
|
readonly inlineHelpText?: string | undefined;
|
|
9835
9731
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -9856,10 +9752,12 @@ declare const AiTraceObject: Omit<{
|
|
|
9856
9752
|
readonly dependencies?: string[] | undefined;
|
|
9857
9753
|
readonly theme?: string | undefined;
|
|
9858
9754
|
readonly externalId?: boolean | undefined;
|
|
9755
|
+
readonly defaultValue?: unknown;
|
|
9756
|
+
readonly group?: string | undefined;
|
|
9757
|
+
readonly hidden?: boolean | undefined;
|
|
9859
9758
|
readonly system?: boolean | undefined;
|
|
9860
9759
|
readonly min?: number | undefined;
|
|
9861
9760
|
readonly max?: number | undefined;
|
|
9862
|
-
readonly group?: string | undefined;
|
|
9863
9761
|
readonly encryptionConfig?: {
|
|
9864
9762
|
enabled: boolean;
|
|
9865
9763
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -9880,7 +9778,6 @@ declare const AiTraceObject: Omit<{
|
|
|
9880
9778
|
readonly columnName?: string | undefined;
|
|
9881
9779
|
readonly searchable?: boolean | undefined;
|
|
9882
9780
|
readonly unique?: boolean | undefined;
|
|
9883
|
-
readonly defaultValue?: unknown;
|
|
9884
9781
|
readonly maxLength?: number | undefined;
|
|
9885
9782
|
readonly minLength?: number | undefined;
|
|
9886
9783
|
readonly scale?: number | undefined;
|
|
@@ -10004,7 +9901,6 @@ declare const AiTraceObject: Omit<{
|
|
|
10004
9901
|
generatedBy?: string | undefined;
|
|
10005
9902
|
} | undefined;
|
|
10006
9903
|
} | undefined;
|
|
10007
|
-
readonly hidden?: boolean | undefined;
|
|
10008
9904
|
readonly sortable?: boolean | undefined;
|
|
10009
9905
|
readonly inlineHelpText?: string | undefined;
|
|
10010
9906
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -10031,10 +9927,12 @@ declare const AiTraceObject: Omit<{
|
|
|
10031
9927
|
readonly dependencies?: string[] | undefined;
|
|
10032
9928
|
readonly theme?: string | undefined;
|
|
10033
9929
|
readonly externalId?: boolean | undefined;
|
|
9930
|
+
readonly defaultValue?: unknown;
|
|
9931
|
+
readonly group?: string | undefined;
|
|
9932
|
+
readonly hidden?: boolean | undefined;
|
|
10034
9933
|
readonly system?: boolean | undefined;
|
|
10035
9934
|
readonly min?: number | undefined;
|
|
10036
9935
|
readonly max?: number | undefined;
|
|
10037
|
-
readonly group?: string | undefined;
|
|
10038
9936
|
readonly encryptionConfig?: {
|
|
10039
9937
|
enabled: boolean;
|
|
10040
9938
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -10055,7 +9953,6 @@ declare const AiTraceObject: Omit<{
|
|
|
10055
9953
|
readonly columnName?: string | undefined;
|
|
10056
9954
|
readonly searchable?: boolean | undefined;
|
|
10057
9955
|
readonly unique?: boolean | undefined;
|
|
10058
|
-
readonly defaultValue?: unknown;
|
|
10059
9956
|
readonly maxLength?: number | undefined;
|
|
10060
9957
|
readonly minLength?: number | undefined;
|
|
10061
9958
|
readonly scale?: number | undefined;
|
|
@@ -10179,7 +10076,6 @@ declare const AiTraceObject: Omit<{
|
|
|
10179
10076
|
generatedBy?: string | undefined;
|
|
10180
10077
|
} | undefined;
|
|
10181
10078
|
} | undefined;
|
|
10182
|
-
readonly hidden?: boolean | undefined;
|
|
10183
10079
|
readonly sortable?: boolean | undefined;
|
|
10184
10080
|
readonly inlineHelpText?: string | undefined;
|
|
10185
10081
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -10206,10 +10102,12 @@ declare const AiTraceObject: Omit<{
|
|
|
10206
10102
|
readonly dependencies?: string[] | undefined;
|
|
10207
10103
|
readonly theme?: string | undefined;
|
|
10208
10104
|
readonly externalId?: boolean | undefined;
|
|
10105
|
+
readonly defaultValue?: unknown;
|
|
10106
|
+
readonly group?: string | undefined;
|
|
10107
|
+
readonly hidden?: boolean | undefined;
|
|
10209
10108
|
readonly system?: boolean | undefined;
|
|
10210
10109
|
readonly min?: number | undefined;
|
|
10211
10110
|
readonly max?: number | undefined;
|
|
10212
|
-
readonly group?: string | undefined;
|
|
10213
10111
|
readonly encryptionConfig?: {
|
|
10214
10112
|
enabled: boolean;
|
|
10215
10113
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -10230,7 +10128,6 @@ declare const AiTraceObject: Omit<{
|
|
|
10230
10128
|
readonly columnName?: string | undefined;
|
|
10231
10129
|
readonly searchable?: boolean | undefined;
|
|
10232
10130
|
readonly unique?: boolean | undefined;
|
|
10233
|
-
readonly defaultValue?: unknown;
|
|
10234
10131
|
readonly maxLength?: number | undefined;
|
|
10235
10132
|
readonly minLength?: number | undefined;
|
|
10236
10133
|
readonly scale?: number | undefined;
|
|
@@ -10354,7 +10251,6 @@ declare const AiTraceObject: Omit<{
|
|
|
10354
10251
|
generatedBy?: string | undefined;
|
|
10355
10252
|
} | undefined;
|
|
10356
10253
|
} | undefined;
|
|
10357
|
-
readonly hidden?: boolean | undefined;
|
|
10358
10254
|
readonly sortable?: boolean | undefined;
|
|
10359
10255
|
readonly inlineHelpText?: string | undefined;
|
|
10360
10256
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -10381,10 +10277,12 @@ declare const AiTraceObject: Omit<{
|
|
|
10381
10277
|
readonly dependencies?: string[] | undefined;
|
|
10382
10278
|
readonly theme?: string | undefined;
|
|
10383
10279
|
readonly externalId?: boolean | undefined;
|
|
10280
|
+
readonly defaultValue?: unknown;
|
|
10281
|
+
readonly group?: string | undefined;
|
|
10282
|
+
readonly hidden?: boolean | undefined;
|
|
10384
10283
|
readonly system?: boolean | undefined;
|
|
10385
10284
|
readonly min?: number | undefined;
|
|
10386
10285
|
readonly max?: number | undefined;
|
|
10387
|
-
readonly group?: string | undefined;
|
|
10388
10286
|
readonly encryptionConfig?: {
|
|
10389
10287
|
enabled: boolean;
|
|
10390
10288
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -10405,7 +10303,6 @@ declare const AiTraceObject: Omit<{
|
|
|
10405
10303
|
readonly columnName?: string | undefined;
|
|
10406
10304
|
readonly searchable?: boolean | undefined;
|
|
10407
10305
|
readonly unique?: boolean | undefined;
|
|
10408
|
-
readonly defaultValue?: unknown;
|
|
10409
10306
|
readonly maxLength?: number | undefined;
|
|
10410
10307
|
readonly minLength?: number | undefined;
|
|
10411
10308
|
readonly scale?: number | undefined;
|
|
@@ -10529,7 +10426,6 @@ declare const AiTraceObject: Omit<{
|
|
|
10529
10426
|
generatedBy?: string | undefined;
|
|
10530
10427
|
} | undefined;
|
|
10531
10428
|
} | undefined;
|
|
10532
|
-
readonly hidden?: boolean | undefined;
|
|
10533
10429
|
readonly sortable?: boolean | undefined;
|
|
10534
10430
|
readonly inlineHelpText?: string | undefined;
|
|
10535
10431
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -10649,7 +10545,7 @@ declare const AiTraceView: {
|
|
|
10649
10545
|
type: "none" | "multiple" | "single";
|
|
10650
10546
|
} | undefined;
|
|
10651
10547
|
navigation?: {
|
|
10652
|
-
mode: "none" | "split" | "page" | "
|
|
10548
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
10653
10549
|
preventNavigation: boolean;
|
|
10654
10550
|
openNewTab: boolean;
|
|
10655
10551
|
view?: string | undefined;
|
|
@@ -10823,7 +10719,7 @@ declare const AiTraceView: {
|
|
|
10823
10719
|
} | undefined;
|
|
10824
10720
|
} | undefined;
|
|
10825
10721
|
form?: {
|
|
10826
|
-
type: "split" | "
|
|
10722
|
+
type: "split" | "drawer" | "modal" | "simple" | "tabbed" | "wizard";
|
|
10827
10723
|
data?: {
|
|
10828
10724
|
provider: "object";
|
|
10829
10725
|
object: string;
|
|
@@ -10999,7 +10895,7 @@ declare const AiTraceView: {
|
|
|
10999
10895
|
type: "none" | "multiple" | "single";
|
|
11000
10896
|
} | undefined;
|
|
11001
10897
|
navigation?: {
|
|
11002
|
-
mode: "none" | "split" | "page" | "
|
|
10898
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
11003
10899
|
preventNavigation: boolean;
|
|
11004
10900
|
openNewTab: boolean;
|
|
11005
10901
|
view?: string | undefined;
|
|
@@ -11173,7 +11069,7 @@ declare const AiTraceView: {
|
|
|
11173
11069
|
} | undefined;
|
|
11174
11070
|
}> | undefined;
|
|
11175
11071
|
formViews?: Record<string, {
|
|
11176
|
-
type: "split" | "
|
|
11072
|
+
type: "split" | "drawer" | "modal" | "simple" | "tabbed" | "wizard";
|
|
11177
11073
|
data?: {
|
|
11178
11074
|
provider: "object";
|
|
11179
11075
|
object: string;
|
|
@@ -11373,6 +11269,14 @@ interface ObjectShape {
|
|
|
11373
11269
|
pluralLabel?: string;
|
|
11374
11270
|
description?: string;
|
|
11375
11271
|
fields?: Record<string, FieldShape>;
|
|
11272
|
+
/** Datasource the object is routed to (ADR-0015). */
|
|
11273
|
+
datasource?: string;
|
|
11274
|
+
/** External-federation binding, when this is a federated object (ADR-0015). */
|
|
11275
|
+
external?: {
|
|
11276
|
+
writable?: boolean;
|
|
11277
|
+
remoteName?: string;
|
|
11278
|
+
remoteSchema?: string;
|
|
11279
|
+
};
|
|
11376
11280
|
}
|
|
11377
11281
|
/** Minimal shape of a field definition. */
|
|
11378
11282
|
interface FieldShape {
|
|
@@ -11396,6 +11300,15 @@ interface QueryDataToolContext {
|
|
|
11396
11300
|
dataEngine: IDataEngine;
|
|
11397
11301
|
/** Maximum number of records returned per call (default: 100). */
|
|
11398
11302
|
maxLimit?: number;
|
|
11303
|
+
/**
|
|
11304
|
+
* Fallback hard cap (ms) on a single query against a *federated* (external)
|
|
11305
|
+
* object, used when the datasource doesn't declare its own
|
|
11306
|
+
* `external.queryTimeoutMs`. A slow remote warehouse must never hang the AI
|
|
11307
|
+
* tool loop indefinitely (ADR-0015 §5.4 AI safety net). Default: 30_000.
|
|
11308
|
+
* Managed (local) objects are never timed out here — they're already bounded
|
|
11309
|
+
* by the injected `LIMIT`.
|
|
11310
|
+
*/
|
|
11311
|
+
externalQueryTimeoutMs?: number;
|
|
11399
11312
|
/**
|
|
11400
11313
|
* Optional protocol shim for cross-source object enumeration. Mirrors the
|
|
11401
11314
|
* fallback used by `list_objects`/`describe_object` — without it the
|