@objectstack/platform-objects 6.9.0 → 7.1.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/apps/index.d.mts +30 -1
- package/dist/apps/index.d.ts +30 -1
- package/dist/apps/index.js +987 -37
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +987 -38
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +240 -64
- package/dist/audit/index.d.ts +240 -64
- package/dist/identity/index.d.mts +900 -82
- package/dist/identity/index.d.ts +900 -82
- package/dist/identity/index.js +384 -8
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +384 -8
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +6823 -99
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6818 -100
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +15 -4
- package/dist/integration/index.d.ts +15 -4
- package/dist/metadata/index.d.mts +30 -8
- package/dist/metadata/index.d.ts +30 -8
- package/dist/metadata-translations/index.d.mts +20 -0
- package/dist/metadata-translations/index.d.ts +20 -0
- package/dist/metadata-translations/index.js +4777 -0
- package/dist/metadata-translations/index.js.map +1 -0
- package/dist/metadata-translations/index.mjs +4775 -0
- package/dist/metadata-translations/index.mjs.map +1 -0
- package/dist/pages/index.d.mts +73 -0
- package/dist/pages/index.d.ts +73 -0
- package/dist/pages/index.js +371 -0
- package/dist/pages/index.js.map +1 -0
- package/dist/pages/index.mjs +368 -0
- package/dist/pages/index.mjs.map +1 -0
- package/dist/plugin.d.mts +35 -0
- package/dist/plugin.d.ts +35 -0
- package/dist/plugin.js +17562 -0
- package/dist/plugin.js.map +1 -0
- package/dist/plugin.mjs +17559 -0
- package/dist/plugin.mjs.map +1 -0
- package/dist/security/index.d.mts +806 -204
- package/dist/security/index.d.ts +806 -204
- package/dist/security/index.js +208 -1
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +208 -1
- package/dist/security/index.mjs.map +1 -1
- package/dist/system/index.d.mts +45 -12
- package/dist/system/index.d.ts +45 -12
- package/package.json +17 -2
package/dist/security/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ declare const SysRole: Omit<{
|
|
|
18
18
|
abstract: boolean;
|
|
19
19
|
datasource: string;
|
|
20
20
|
fields: Record<string, {
|
|
21
|
-
type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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" | "vector";
|
|
21
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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" | "vector";
|
|
22
22
|
required: boolean;
|
|
23
23
|
searchable: boolean;
|
|
24
24
|
multiple: boolean;
|
|
@@ -157,7 +157,7 @@ declare const SysRole: Omit<{
|
|
|
157
157
|
autoRotate: boolean;
|
|
158
158
|
} | undefined;
|
|
159
159
|
};
|
|
160
|
-
scope: "
|
|
160
|
+
scope: "record" | "field" | "table" | "database";
|
|
161
161
|
deterministicEncryption: boolean;
|
|
162
162
|
searchableEncryption: boolean;
|
|
163
163
|
} | undefined;
|
|
@@ -620,7 +620,7 @@ declare const SysRole: Omit<{
|
|
|
620
620
|
refreshAfter: boolean;
|
|
621
621
|
objectName?: string | undefined;
|
|
622
622
|
icon?: string | undefined;
|
|
623
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
623
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
624
624
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
625
625
|
target?: string | undefined;
|
|
626
626
|
body?: {
|
|
@@ -640,7 +640,7 @@ declare const SysRole: Omit<{
|
|
|
640
640
|
field?: string | undefined;
|
|
641
641
|
objectOverride?: string | undefined;
|
|
642
642
|
label?: string | undefined;
|
|
643
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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;
|
|
643
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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;
|
|
644
644
|
options?: {
|
|
645
645
|
label: string;
|
|
646
646
|
value: string;
|
|
@@ -653,6 +653,17 @@ declare const SysRole: Omit<{
|
|
|
653
653
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
654
654
|
confirmText?: string | undefined;
|
|
655
655
|
successMessage?: string | undefined;
|
|
656
|
+
resultDialog?: {
|
|
657
|
+
title?: string | undefined;
|
|
658
|
+
description?: string | undefined;
|
|
659
|
+
acknowledge?: string | undefined;
|
|
660
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
661
|
+
fields?: {
|
|
662
|
+
path: string;
|
|
663
|
+
label?: string | undefined;
|
|
664
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
665
|
+
}[] | undefined;
|
|
666
|
+
} | undefined;
|
|
656
667
|
visible?: {
|
|
657
668
|
dialect: "cel" | "js" | "cron" | "template";
|
|
658
669
|
source?: string | undefined;
|
|
@@ -2476,7 +2487,7 @@ declare const SysPermissionSet: Omit<{
|
|
|
2476
2487
|
abstract: boolean;
|
|
2477
2488
|
datasource: string;
|
|
2478
2489
|
fields: Record<string, {
|
|
2479
|
-
type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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" | "vector";
|
|
2490
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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" | "vector";
|
|
2480
2491
|
required: boolean;
|
|
2481
2492
|
searchable: boolean;
|
|
2482
2493
|
multiple: boolean;
|
|
@@ -2615,7 +2626,7 @@ declare const SysPermissionSet: Omit<{
|
|
|
2615
2626
|
autoRotate: boolean;
|
|
2616
2627
|
} | undefined;
|
|
2617
2628
|
};
|
|
2618
|
-
scope: "
|
|
2629
|
+
scope: "record" | "field" | "table" | "database";
|
|
2619
2630
|
deterministicEncryption: boolean;
|
|
2620
2631
|
searchableEncryption: boolean;
|
|
2621
2632
|
} | undefined;
|
|
@@ -3078,7 +3089,7 @@ declare const SysPermissionSet: Omit<{
|
|
|
3078
3089
|
refreshAfter: boolean;
|
|
3079
3090
|
objectName?: string | undefined;
|
|
3080
3091
|
icon?: string | undefined;
|
|
3081
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
3092
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
3082
3093
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
3083
3094
|
target?: string | undefined;
|
|
3084
3095
|
body?: {
|
|
@@ -3098,7 +3109,7 @@ declare const SysPermissionSet: Omit<{
|
|
|
3098
3109
|
field?: string | undefined;
|
|
3099
3110
|
objectOverride?: string | undefined;
|
|
3100
3111
|
label?: string | undefined;
|
|
3101
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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;
|
|
3112
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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;
|
|
3102
3113
|
options?: {
|
|
3103
3114
|
label: string;
|
|
3104
3115
|
value: string;
|
|
@@ -3111,6 +3122,17 @@ declare const SysPermissionSet: Omit<{
|
|
|
3111
3122
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
3112
3123
|
confirmText?: string | undefined;
|
|
3113
3124
|
successMessage?: string | undefined;
|
|
3125
|
+
resultDialog?: {
|
|
3126
|
+
title?: string | undefined;
|
|
3127
|
+
description?: string | undefined;
|
|
3128
|
+
acknowledge?: string | undefined;
|
|
3129
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
3130
|
+
fields?: {
|
|
3131
|
+
path: string;
|
|
3132
|
+
label?: string | undefined;
|
|
3133
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
3134
|
+
}[] | undefined;
|
|
3135
|
+
} | undefined;
|
|
3114
3136
|
visible?: {
|
|
3115
3137
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3116
3138
|
source?: string | undefined;
|
|
@@ -3119,178 +3141,703 @@ declare const SysPermissionSet: Omit<{
|
|
|
3119
3141
|
rationale?: string | undefined;
|
|
3120
3142
|
generatedBy?: string | undefined;
|
|
3121
3143
|
} | undefined;
|
|
3122
|
-
} | undefined;
|
|
3123
|
-
disabled?: boolean | {
|
|
3124
|
-
dialect: "cel" | "js" | "cron" | "template";
|
|
3125
|
-
source?: string | undefined;
|
|
3126
|
-
ast?: unknown;
|
|
3127
|
-
meta?: {
|
|
3128
|
-
rationale?: string | undefined;
|
|
3129
|
-
generatedBy?: string | undefined;
|
|
3144
|
+
} | undefined;
|
|
3145
|
+
disabled?: boolean | {
|
|
3146
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3147
|
+
source?: string | undefined;
|
|
3148
|
+
ast?: unknown;
|
|
3149
|
+
meta?: {
|
|
3150
|
+
rationale?: string | undefined;
|
|
3151
|
+
generatedBy?: string | undefined;
|
|
3152
|
+
} | undefined;
|
|
3153
|
+
} | undefined;
|
|
3154
|
+
shortcut?: string | undefined;
|
|
3155
|
+
bulkEnabled?: boolean | undefined;
|
|
3156
|
+
aiExposed?: boolean | undefined;
|
|
3157
|
+
recordIdParam?: string | undefined;
|
|
3158
|
+
recordIdField?: string | undefined;
|
|
3159
|
+
bodyShape?: "flat" | {
|
|
3160
|
+
wrap: string;
|
|
3161
|
+
} | undefined;
|
|
3162
|
+
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
3163
|
+
bodyExtra?: Record<string, unknown> | undefined;
|
|
3164
|
+
mode?: "custom" | "delete" | "create" | "edit" | undefined;
|
|
3165
|
+
timeout?: number | undefined;
|
|
3166
|
+
aria?: {
|
|
3167
|
+
ariaLabel?: string | undefined;
|
|
3168
|
+
ariaDescribedBy?: string | undefined;
|
|
3169
|
+
role?: string | undefined;
|
|
3170
|
+
} | undefined;
|
|
3171
|
+
}[] | undefined;
|
|
3172
|
+
}, "fields"> & Pick<{
|
|
3173
|
+
readonly name: "sys_permission_set";
|
|
3174
|
+
readonly label: "Permission Set";
|
|
3175
|
+
readonly pluralLabel: "Permission Sets";
|
|
3176
|
+
readonly icon: "lock";
|
|
3177
|
+
readonly isSystem: true;
|
|
3178
|
+
readonly managedBy: "config";
|
|
3179
|
+
readonly description: "Named permission groupings for fine-grained access control";
|
|
3180
|
+
readonly displayNameField: "label";
|
|
3181
|
+
readonly titleFormat: "{label}";
|
|
3182
|
+
readonly compactLayout: ["label", "name", "active"];
|
|
3183
|
+
readonly actions: [{
|
|
3184
|
+
readonly name: "activate_permission_set";
|
|
3185
|
+
readonly label: "Activate";
|
|
3186
|
+
readonly icon: "circle-check";
|
|
3187
|
+
readonly variant: "secondary";
|
|
3188
|
+
readonly mode: "custom";
|
|
3189
|
+
readonly locations: ["list_item", "record_header"];
|
|
3190
|
+
readonly type: "api";
|
|
3191
|
+
readonly method: "PATCH";
|
|
3192
|
+
readonly target: "/api/v1/data/sys_permission_set/{id}";
|
|
3193
|
+
readonly bodyExtra: {
|
|
3194
|
+
readonly active: true;
|
|
3195
|
+
};
|
|
3196
|
+
readonly successMessage: "Permission set activated";
|
|
3197
|
+
readonly refreshAfter: true;
|
|
3198
|
+
}, {
|
|
3199
|
+
readonly name: "deactivate_permission_set";
|
|
3200
|
+
readonly label: "Deactivate";
|
|
3201
|
+
readonly icon: "circle-off";
|
|
3202
|
+
readonly variant: "danger";
|
|
3203
|
+
readonly mode: "custom";
|
|
3204
|
+
readonly locations: ["list_item", "record_header"];
|
|
3205
|
+
readonly type: "api";
|
|
3206
|
+
readonly method: "PATCH";
|
|
3207
|
+
readonly target: "/api/v1/data/sys_permission_set/{id}";
|
|
3208
|
+
readonly bodyExtra: {
|
|
3209
|
+
readonly active: false;
|
|
3210
|
+
};
|
|
3211
|
+
readonly confirmText: "Deactivate this permission set? Existing assignments stay in place but stop granting access until re-activated.";
|
|
3212
|
+
readonly successMessage: "Permission set deactivated";
|
|
3213
|
+
readonly refreshAfter: true;
|
|
3214
|
+
}, {
|
|
3215
|
+
readonly name: "clone_permission_set";
|
|
3216
|
+
readonly label: "Clone";
|
|
3217
|
+
readonly icon: "copy";
|
|
3218
|
+
readonly variant: "secondary";
|
|
3219
|
+
readonly mode: "custom";
|
|
3220
|
+
readonly locations: ["list_item", "record_header"];
|
|
3221
|
+
readonly type: "api";
|
|
3222
|
+
readonly method: "POST";
|
|
3223
|
+
readonly target: "/api/v1/data/sys_permission_set";
|
|
3224
|
+
readonly bodyExtra: {
|
|
3225
|
+
readonly active: true;
|
|
3226
|
+
};
|
|
3227
|
+
readonly successMessage: "Permission set cloned";
|
|
3228
|
+
readonly refreshAfter: true;
|
|
3229
|
+
readonly params: [{
|
|
3230
|
+
readonly name: "label";
|
|
3231
|
+
readonly label: "New Display Name";
|
|
3232
|
+
readonly type: "text";
|
|
3233
|
+
readonly required: true;
|
|
3234
|
+
}, {
|
|
3235
|
+
readonly name: "name";
|
|
3236
|
+
readonly label: "New API Name";
|
|
3237
|
+
readonly type: "text";
|
|
3238
|
+
readonly required: true;
|
|
3239
|
+
readonly helpText: "Unique snake_case machine name";
|
|
3240
|
+
}, {
|
|
3241
|
+
readonly field: "description";
|
|
3242
|
+
readonly defaultFromRow: true;
|
|
3243
|
+
}, {
|
|
3244
|
+
readonly field: "object_permissions";
|
|
3245
|
+
readonly defaultFromRow: true;
|
|
3246
|
+
}, {
|
|
3247
|
+
readonly field: "field_permissions";
|
|
3248
|
+
readonly defaultFromRow: true;
|
|
3249
|
+
}];
|
|
3250
|
+
}];
|
|
3251
|
+
readonly listViews: {
|
|
3252
|
+
readonly active: {
|
|
3253
|
+
readonly type: "grid";
|
|
3254
|
+
readonly name: "active";
|
|
3255
|
+
readonly label: "Active";
|
|
3256
|
+
readonly data: {
|
|
3257
|
+
readonly provider: "object";
|
|
3258
|
+
readonly object: "sys_permission_set";
|
|
3259
|
+
};
|
|
3260
|
+
readonly columns: ["label", "name", "description", "updated_at"];
|
|
3261
|
+
readonly filter: [{
|
|
3262
|
+
readonly field: "active";
|
|
3263
|
+
readonly operator: "equals";
|
|
3264
|
+
readonly value: true;
|
|
3265
|
+
}];
|
|
3266
|
+
readonly sort: [{
|
|
3267
|
+
readonly field: "label";
|
|
3268
|
+
readonly order: "asc";
|
|
3269
|
+
}];
|
|
3270
|
+
readonly pagination: {
|
|
3271
|
+
readonly pageSize: 50;
|
|
3272
|
+
};
|
|
3273
|
+
};
|
|
3274
|
+
readonly inactive: {
|
|
3275
|
+
readonly type: "grid";
|
|
3276
|
+
readonly name: "inactive";
|
|
3277
|
+
readonly label: "Inactive";
|
|
3278
|
+
readonly data: {
|
|
3279
|
+
readonly provider: "object";
|
|
3280
|
+
readonly object: "sys_permission_set";
|
|
3281
|
+
};
|
|
3282
|
+
readonly columns: ["label", "name", "updated_at"];
|
|
3283
|
+
readonly filter: [{
|
|
3284
|
+
readonly field: "active";
|
|
3285
|
+
readonly operator: "equals";
|
|
3286
|
+
readonly value: false;
|
|
3287
|
+
}];
|
|
3288
|
+
readonly sort: [{
|
|
3289
|
+
readonly field: "label";
|
|
3290
|
+
readonly order: "asc";
|
|
3291
|
+
}];
|
|
3292
|
+
readonly pagination: {
|
|
3293
|
+
readonly pageSize: 50;
|
|
3294
|
+
};
|
|
3295
|
+
};
|
|
3296
|
+
readonly all_permsets: {
|
|
3297
|
+
readonly type: "grid";
|
|
3298
|
+
readonly name: "all_permsets";
|
|
3299
|
+
readonly label: "All";
|
|
3300
|
+
readonly data: {
|
|
3301
|
+
readonly provider: "object";
|
|
3302
|
+
readonly object: "sys_permission_set";
|
|
3303
|
+
};
|
|
3304
|
+
readonly columns: ["label", "name", "active", "updated_at"];
|
|
3305
|
+
readonly sort: [{
|
|
3306
|
+
readonly field: "label";
|
|
3307
|
+
readonly order: "asc";
|
|
3308
|
+
}];
|
|
3309
|
+
readonly pagination: {
|
|
3310
|
+
readonly pageSize: 50;
|
|
3311
|
+
};
|
|
3312
|
+
};
|
|
3313
|
+
};
|
|
3314
|
+
readonly fields: {
|
|
3315
|
+
readonly label: {
|
|
3316
|
+
readonly readonly?: boolean | undefined;
|
|
3317
|
+
readonly format?: string | undefined;
|
|
3318
|
+
readonly options?: {
|
|
3319
|
+
label: string;
|
|
3320
|
+
value: string;
|
|
3321
|
+
color?: string | undefined;
|
|
3322
|
+
default?: boolean | undefined;
|
|
3323
|
+
}[] | undefined;
|
|
3324
|
+
readonly description?: string | undefined;
|
|
3325
|
+
readonly label?: string | undefined;
|
|
3326
|
+
readonly name?: string | undefined;
|
|
3327
|
+
readonly precision?: number | undefined;
|
|
3328
|
+
readonly required?: boolean | undefined;
|
|
3329
|
+
readonly multiple?: boolean | undefined;
|
|
3330
|
+
readonly dependencies?: string[] | undefined;
|
|
3331
|
+
readonly theme?: string | undefined;
|
|
3332
|
+
readonly externalId?: boolean | undefined;
|
|
3333
|
+
readonly system?: boolean | undefined;
|
|
3334
|
+
readonly min?: number | undefined;
|
|
3335
|
+
readonly max?: number | undefined;
|
|
3336
|
+
readonly group?: string | undefined;
|
|
3337
|
+
readonly encryptionConfig?: {
|
|
3338
|
+
enabled: boolean;
|
|
3339
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3340
|
+
keyManagement: {
|
|
3341
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3342
|
+
keyId?: string | undefined;
|
|
3343
|
+
rotationPolicy?: {
|
|
3344
|
+
enabled: boolean;
|
|
3345
|
+
frequencyDays: number;
|
|
3346
|
+
retainOldVersions: number;
|
|
3347
|
+
autoRotate: boolean;
|
|
3348
|
+
} | undefined;
|
|
3349
|
+
};
|
|
3350
|
+
scope: "record" | "field" | "table" | "database";
|
|
3351
|
+
deterministicEncryption: boolean;
|
|
3352
|
+
searchableEncryption: boolean;
|
|
3353
|
+
} | undefined;
|
|
3354
|
+
readonly columnName?: string | undefined;
|
|
3355
|
+
readonly searchable?: boolean | undefined;
|
|
3356
|
+
readonly unique?: boolean | undefined;
|
|
3357
|
+
readonly defaultValue?: unknown;
|
|
3358
|
+
readonly maxLength?: number | undefined;
|
|
3359
|
+
readonly minLength?: number | undefined;
|
|
3360
|
+
readonly scale?: number | undefined;
|
|
3361
|
+
readonly reference?: string | undefined;
|
|
3362
|
+
readonly referenceFilters?: string[] | undefined;
|
|
3363
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3364
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3365
|
+
readonly expression?: {
|
|
3366
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3367
|
+
source?: string | undefined;
|
|
3368
|
+
ast?: unknown;
|
|
3369
|
+
meta?: {
|
|
3370
|
+
rationale?: string | undefined;
|
|
3371
|
+
generatedBy?: string | undefined;
|
|
3372
|
+
} | undefined;
|
|
3373
|
+
} | undefined;
|
|
3374
|
+
readonly summaryOperations?: {
|
|
3375
|
+
object: string;
|
|
3376
|
+
field: string;
|
|
3377
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3378
|
+
} | undefined;
|
|
3379
|
+
readonly language?: string | undefined;
|
|
3380
|
+
readonly lineNumbers?: boolean | undefined;
|
|
3381
|
+
readonly maxRating?: number | undefined;
|
|
3382
|
+
readonly allowHalf?: boolean | undefined;
|
|
3383
|
+
readonly displayMap?: boolean | undefined;
|
|
3384
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
3385
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3386
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3387
|
+
readonly allowAlpha?: boolean | undefined;
|
|
3388
|
+
readonly presetColors?: string[] | undefined;
|
|
3389
|
+
readonly step?: number | undefined;
|
|
3390
|
+
readonly showValue?: boolean | undefined;
|
|
3391
|
+
readonly marks?: Record<string, string> | undefined;
|
|
3392
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3393
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3394
|
+
readonly displayValue?: boolean | undefined;
|
|
3395
|
+
readonly allowScanning?: boolean | undefined;
|
|
3396
|
+
readonly currencyConfig?: {
|
|
3397
|
+
precision: number;
|
|
3398
|
+
currencyMode: "fixed" | "dynamic";
|
|
3399
|
+
defaultCurrency: string;
|
|
3400
|
+
} | undefined;
|
|
3401
|
+
readonly vectorConfig?: {
|
|
3402
|
+
dimensions: number;
|
|
3403
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
3404
|
+
normalized: boolean;
|
|
3405
|
+
indexed: boolean;
|
|
3406
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
3407
|
+
} | undefined;
|
|
3408
|
+
readonly fileAttachmentConfig?: {
|
|
3409
|
+
virusScan: boolean;
|
|
3410
|
+
virusScanOnUpload: boolean;
|
|
3411
|
+
quarantineOnThreat: boolean;
|
|
3412
|
+
allowMultiple: boolean;
|
|
3413
|
+
allowReplace: boolean;
|
|
3414
|
+
allowDelete: boolean;
|
|
3415
|
+
requireUpload: boolean;
|
|
3416
|
+
extractMetadata: boolean;
|
|
3417
|
+
extractText: boolean;
|
|
3418
|
+
versioningEnabled: boolean;
|
|
3419
|
+
publicRead: boolean;
|
|
3420
|
+
presignedUrlExpiry: number;
|
|
3421
|
+
minSize?: number | undefined;
|
|
3422
|
+
maxSize?: number | undefined;
|
|
3423
|
+
allowedTypes?: string[] | undefined;
|
|
3424
|
+
blockedTypes?: string[] | undefined;
|
|
3425
|
+
allowedMimeTypes?: string[] | undefined;
|
|
3426
|
+
blockedMimeTypes?: string[] | undefined;
|
|
3427
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
3428
|
+
storageProvider?: string | undefined;
|
|
3429
|
+
storageBucket?: string | undefined;
|
|
3430
|
+
storagePrefix?: string | undefined;
|
|
3431
|
+
imageValidation?: {
|
|
3432
|
+
generateThumbnails: boolean;
|
|
3433
|
+
preserveMetadata: boolean;
|
|
3434
|
+
autoRotate: boolean;
|
|
3435
|
+
minWidth?: number | undefined;
|
|
3436
|
+
maxWidth?: number | undefined;
|
|
3437
|
+
minHeight?: number | undefined;
|
|
3438
|
+
maxHeight?: number | undefined;
|
|
3439
|
+
aspectRatio?: string | undefined;
|
|
3440
|
+
thumbnailSizes?: {
|
|
3441
|
+
name: string;
|
|
3442
|
+
width: number;
|
|
3443
|
+
height: number;
|
|
3444
|
+
crop: boolean;
|
|
3445
|
+
}[] | undefined;
|
|
3446
|
+
} | undefined;
|
|
3447
|
+
maxVersions?: number | undefined;
|
|
3448
|
+
} | undefined;
|
|
3449
|
+
readonly maskingRule?: {
|
|
3450
|
+
field: string;
|
|
3451
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3452
|
+
preserveFormat: boolean;
|
|
3453
|
+
preserveLength: boolean;
|
|
3454
|
+
pattern?: string | undefined;
|
|
3455
|
+
roles?: string[] | undefined;
|
|
3456
|
+
exemptRoles?: string[] | undefined;
|
|
3457
|
+
} | undefined;
|
|
3458
|
+
readonly auditTrail?: boolean | undefined;
|
|
3459
|
+
readonly cached?: {
|
|
3460
|
+
enabled: boolean;
|
|
3461
|
+
ttl: number;
|
|
3462
|
+
invalidateOn: string[];
|
|
3463
|
+
} | undefined;
|
|
3464
|
+
readonly dataQuality?: {
|
|
3465
|
+
uniqueness: boolean;
|
|
3466
|
+
completeness: number;
|
|
3467
|
+
accuracy?: {
|
|
3468
|
+
source: string;
|
|
3469
|
+
threshold: number;
|
|
3470
|
+
} | undefined;
|
|
3471
|
+
} | undefined;
|
|
3472
|
+
readonly conditionalRequired?: {
|
|
3473
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3474
|
+
source?: string | undefined;
|
|
3475
|
+
ast?: unknown;
|
|
3476
|
+
meta?: {
|
|
3477
|
+
rationale?: string | undefined;
|
|
3478
|
+
generatedBy?: string | undefined;
|
|
3479
|
+
} | undefined;
|
|
3480
|
+
} | undefined;
|
|
3481
|
+
readonly hidden?: boolean | undefined;
|
|
3482
|
+
readonly sortable?: boolean | undefined;
|
|
3483
|
+
readonly inlineHelpText?: string | undefined;
|
|
3484
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
3485
|
+
readonly caseSensitive?: boolean | undefined;
|
|
3486
|
+
readonly autonumberFormat?: string | undefined;
|
|
3487
|
+
readonly index?: boolean | undefined;
|
|
3488
|
+
readonly type: "text";
|
|
3489
|
+
};
|
|
3490
|
+
readonly name: {
|
|
3491
|
+
readonly readonly?: boolean | undefined;
|
|
3492
|
+
readonly format?: string | undefined;
|
|
3493
|
+
readonly options?: {
|
|
3494
|
+
label: string;
|
|
3495
|
+
value: string;
|
|
3496
|
+
color?: string | undefined;
|
|
3497
|
+
default?: boolean | undefined;
|
|
3498
|
+
}[] | undefined;
|
|
3499
|
+
readonly description?: string | undefined;
|
|
3500
|
+
readonly label?: string | undefined;
|
|
3501
|
+
readonly name?: string | undefined;
|
|
3502
|
+
readonly precision?: number | undefined;
|
|
3503
|
+
readonly required?: boolean | undefined;
|
|
3504
|
+
readonly multiple?: boolean | undefined;
|
|
3505
|
+
readonly dependencies?: string[] | undefined;
|
|
3506
|
+
readonly theme?: string | undefined;
|
|
3507
|
+
readonly externalId?: boolean | undefined;
|
|
3508
|
+
readonly system?: boolean | undefined;
|
|
3509
|
+
readonly min?: number | undefined;
|
|
3510
|
+
readonly max?: number | undefined;
|
|
3511
|
+
readonly group?: string | undefined;
|
|
3512
|
+
readonly encryptionConfig?: {
|
|
3513
|
+
enabled: boolean;
|
|
3514
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3515
|
+
keyManagement: {
|
|
3516
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3517
|
+
keyId?: string | undefined;
|
|
3518
|
+
rotationPolicy?: {
|
|
3519
|
+
enabled: boolean;
|
|
3520
|
+
frequencyDays: number;
|
|
3521
|
+
retainOldVersions: number;
|
|
3522
|
+
autoRotate: boolean;
|
|
3523
|
+
} | undefined;
|
|
3524
|
+
};
|
|
3525
|
+
scope: "record" | "field" | "table" | "database";
|
|
3526
|
+
deterministicEncryption: boolean;
|
|
3527
|
+
searchableEncryption: boolean;
|
|
3528
|
+
} | undefined;
|
|
3529
|
+
readonly columnName?: string | undefined;
|
|
3530
|
+
readonly searchable?: boolean | undefined;
|
|
3531
|
+
readonly unique?: boolean | undefined;
|
|
3532
|
+
readonly defaultValue?: unknown;
|
|
3533
|
+
readonly maxLength?: number | undefined;
|
|
3534
|
+
readonly minLength?: number | undefined;
|
|
3535
|
+
readonly scale?: number | undefined;
|
|
3536
|
+
readonly reference?: string | undefined;
|
|
3537
|
+
readonly referenceFilters?: string[] | undefined;
|
|
3538
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3539
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3540
|
+
readonly expression?: {
|
|
3541
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3542
|
+
source?: string | undefined;
|
|
3543
|
+
ast?: unknown;
|
|
3544
|
+
meta?: {
|
|
3545
|
+
rationale?: string | undefined;
|
|
3546
|
+
generatedBy?: string | undefined;
|
|
3547
|
+
} | undefined;
|
|
3548
|
+
} | undefined;
|
|
3549
|
+
readonly summaryOperations?: {
|
|
3550
|
+
object: string;
|
|
3551
|
+
field: string;
|
|
3552
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3553
|
+
} | undefined;
|
|
3554
|
+
readonly language?: string | undefined;
|
|
3555
|
+
readonly lineNumbers?: boolean | undefined;
|
|
3556
|
+
readonly maxRating?: number | undefined;
|
|
3557
|
+
readonly allowHalf?: boolean | undefined;
|
|
3558
|
+
readonly displayMap?: boolean | undefined;
|
|
3559
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
3560
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3561
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3562
|
+
readonly allowAlpha?: boolean | undefined;
|
|
3563
|
+
readonly presetColors?: string[] | undefined;
|
|
3564
|
+
readonly step?: number | undefined;
|
|
3565
|
+
readonly showValue?: boolean | undefined;
|
|
3566
|
+
readonly marks?: Record<string, string> | undefined;
|
|
3567
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3568
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3569
|
+
readonly displayValue?: boolean | undefined;
|
|
3570
|
+
readonly allowScanning?: boolean | undefined;
|
|
3571
|
+
readonly currencyConfig?: {
|
|
3572
|
+
precision: number;
|
|
3573
|
+
currencyMode: "fixed" | "dynamic";
|
|
3574
|
+
defaultCurrency: string;
|
|
3575
|
+
} | undefined;
|
|
3576
|
+
readonly vectorConfig?: {
|
|
3577
|
+
dimensions: number;
|
|
3578
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
3579
|
+
normalized: boolean;
|
|
3580
|
+
indexed: boolean;
|
|
3581
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
3582
|
+
} | undefined;
|
|
3583
|
+
readonly fileAttachmentConfig?: {
|
|
3584
|
+
virusScan: boolean;
|
|
3585
|
+
virusScanOnUpload: boolean;
|
|
3586
|
+
quarantineOnThreat: boolean;
|
|
3587
|
+
allowMultiple: boolean;
|
|
3588
|
+
allowReplace: boolean;
|
|
3589
|
+
allowDelete: boolean;
|
|
3590
|
+
requireUpload: boolean;
|
|
3591
|
+
extractMetadata: boolean;
|
|
3592
|
+
extractText: boolean;
|
|
3593
|
+
versioningEnabled: boolean;
|
|
3594
|
+
publicRead: boolean;
|
|
3595
|
+
presignedUrlExpiry: number;
|
|
3596
|
+
minSize?: number | undefined;
|
|
3597
|
+
maxSize?: number | undefined;
|
|
3598
|
+
allowedTypes?: string[] | undefined;
|
|
3599
|
+
blockedTypes?: string[] | undefined;
|
|
3600
|
+
allowedMimeTypes?: string[] | undefined;
|
|
3601
|
+
blockedMimeTypes?: string[] | undefined;
|
|
3602
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
3603
|
+
storageProvider?: string | undefined;
|
|
3604
|
+
storageBucket?: string | undefined;
|
|
3605
|
+
storagePrefix?: string | undefined;
|
|
3606
|
+
imageValidation?: {
|
|
3607
|
+
generateThumbnails: boolean;
|
|
3608
|
+
preserveMetadata: boolean;
|
|
3609
|
+
autoRotate: boolean;
|
|
3610
|
+
minWidth?: number | undefined;
|
|
3611
|
+
maxWidth?: number | undefined;
|
|
3612
|
+
minHeight?: number | undefined;
|
|
3613
|
+
maxHeight?: number | undefined;
|
|
3614
|
+
aspectRatio?: string | undefined;
|
|
3615
|
+
thumbnailSizes?: {
|
|
3616
|
+
name: string;
|
|
3617
|
+
width: number;
|
|
3618
|
+
height: number;
|
|
3619
|
+
crop: boolean;
|
|
3620
|
+
}[] | undefined;
|
|
3621
|
+
} | undefined;
|
|
3622
|
+
maxVersions?: number | undefined;
|
|
3623
|
+
} | undefined;
|
|
3624
|
+
readonly maskingRule?: {
|
|
3625
|
+
field: string;
|
|
3626
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3627
|
+
preserveFormat: boolean;
|
|
3628
|
+
preserveLength: boolean;
|
|
3629
|
+
pattern?: string | undefined;
|
|
3630
|
+
roles?: string[] | undefined;
|
|
3631
|
+
exemptRoles?: string[] | undefined;
|
|
3632
|
+
} | undefined;
|
|
3633
|
+
readonly auditTrail?: boolean | undefined;
|
|
3634
|
+
readonly cached?: {
|
|
3635
|
+
enabled: boolean;
|
|
3636
|
+
ttl: number;
|
|
3637
|
+
invalidateOn: string[];
|
|
3638
|
+
} | undefined;
|
|
3639
|
+
readonly dataQuality?: {
|
|
3640
|
+
uniqueness: boolean;
|
|
3641
|
+
completeness: number;
|
|
3642
|
+
accuracy?: {
|
|
3643
|
+
source: string;
|
|
3644
|
+
threshold: number;
|
|
3645
|
+
} | undefined;
|
|
3646
|
+
} | undefined;
|
|
3647
|
+
readonly conditionalRequired?: {
|
|
3648
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3649
|
+
source?: string | undefined;
|
|
3650
|
+
ast?: unknown;
|
|
3651
|
+
meta?: {
|
|
3652
|
+
rationale?: string | undefined;
|
|
3653
|
+
generatedBy?: string | undefined;
|
|
3654
|
+
} | undefined;
|
|
3655
|
+
} | undefined;
|
|
3656
|
+
readonly hidden?: boolean | undefined;
|
|
3657
|
+
readonly sortable?: boolean | undefined;
|
|
3658
|
+
readonly inlineHelpText?: string | undefined;
|
|
3659
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
3660
|
+
readonly caseSensitive?: boolean | undefined;
|
|
3661
|
+
readonly autonumberFormat?: string | undefined;
|
|
3662
|
+
readonly index?: boolean | undefined;
|
|
3663
|
+
readonly type: "text";
|
|
3664
|
+
};
|
|
3665
|
+
readonly description: {
|
|
3666
|
+
readonly readonly?: boolean | undefined;
|
|
3667
|
+
readonly format?: string | undefined;
|
|
3668
|
+
readonly options?: {
|
|
3669
|
+
label: string;
|
|
3670
|
+
value: string;
|
|
3671
|
+
color?: string | undefined;
|
|
3672
|
+
default?: boolean | undefined;
|
|
3673
|
+
}[] | undefined;
|
|
3674
|
+
readonly description?: string | undefined;
|
|
3675
|
+
readonly label?: string | undefined;
|
|
3676
|
+
readonly name?: string | undefined;
|
|
3677
|
+
readonly precision?: number | undefined;
|
|
3678
|
+
readonly required?: boolean | undefined;
|
|
3679
|
+
readonly multiple?: boolean | undefined;
|
|
3680
|
+
readonly dependencies?: string[] | undefined;
|
|
3681
|
+
readonly theme?: string | undefined;
|
|
3682
|
+
readonly externalId?: boolean | undefined;
|
|
3683
|
+
readonly system?: boolean | undefined;
|
|
3684
|
+
readonly min?: number | undefined;
|
|
3685
|
+
readonly max?: number | undefined;
|
|
3686
|
+
readonly group?: string | undefined;
|
|
3687
|
+
readonly encryptionConfig?: {
|
|
3688
|
+
enabled: boolean;
|
|
3689
|
+
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3690
|
+
keyManagement: {
|
|
3691
|
+
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3692
|
+
keyId?: string | undefined;
|
|
3693
|
+
rotationPolicy?: {
|
|
3694
|
+
enabled: boolean;
|
|
3695
|
+
frequencyDays: number;
|
|
3696
|
+
retainOldVersions: number;
|
|
3697
|
+
autoRotate: boolean;
|
|
3698
|
+
} | undefined;
|
|
3699
|
+
};
|
|
3700
|
+
scope: "record" | "field" | "table" | "database";
|
|
3701
|
+
deterministicEncryption: boolean;
|
|
3702
|
+
searchableEncryption: boolean;
|
|
3703
|
+
} | undefined;
|
|
3704
|
+
readonly columnName?: string | undefined;
|
|
3705
|
+
readonly searchable?: boolean | undefined;
|
|
3706
|
+
readonly unique?: boolean | undefined;
|
|
3707
|
+
readonly defaultValue?: unknown;
|
|
3708
|
+
readonly maxLength?: number | undefined;
|
|
3709
|
+
readonly minLength?: number | undefined;
|
|
3710
|
+
readonly scale?: number | undefined;
|
|
3711
|
+
readonly reference?: string | undefined;
|
|
3712
|
+
readonly referenceFilters?: string[] | undefined;
|
|
3713
|
+
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3714
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3715
|
+
readonly expression?: {
|
|
3716
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3717
|
+
source?: string | undefined;
|
|
3718
|
+
ast?: unknown;
|
|
3719
|
+
meta?: {
|
|
3720
|
+
rationale?: string | undefined;
|
|
3721
|
+
generatedBy?: string | undefined;
|
|
3722
|
+
} | undefined;
|
|
3723
|
+
} | undefined;
|
|
3724
|
+
readonly summaryOperations?: {
|
|
3725
|
+
object: string;
|
|
3726
|
+
field: string;
|
|
3727
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3728
|
+
} | undefined;
|
|
3729
|
+
readonly language?: string | undefined;
|
|
3730
|
+
readonly lineNumbers?: boolean | undefined;
|
|
3731
|
+
readonly maxRating?: number | undefined;
|
|
3732
|
+
readonly allowHalf?: boolean | undefined;
|
|
3733
|
+
readonly displayMap?: boolean | undefined;
|
|
3734
|
+
readonly allowGeocoding?: boolean | undefined;
|
|
3735
|
+
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3736
|
+
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3737
|
+
readonly allowAlpha?: boolean | undefined;
|
|
3738
|
+
readonly presetColors?: string[] | undefined;
|
|
3739
|
+
readonly step?: number | undefined;
|
|
3740
|
+
readonly showValue?: boolean | undefined;
|
|
3741
|
+
readonly marks?: Record<string, string> | undefined;
|
|
3742
|
+
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3743
|
+
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3744
|
+
readonly displayValue?: boolean | undefined;
|
|
3745
|
+
readonly allowScanning?: boolean | undefined;
|
|
3746
|
+
readonly currencyConfig?: {
|
|
3747
|
+
precision: number;
|
|
3748
|
+
currencyMode: "fixed" | "dynamic";
|
|
3749
|
+
defaultCurrency: string;
|
|
3750
|
+
} | undefined;
|
|
3751
|
+
readonly vectorConfig?: {
|
|
3752
|
+
dimensions: number;
|
|
3753
|
+
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
3754
|
+
normalized: boolean;
|
|
3755
|
+
indexed: boolean;
|
|
3756
|
+
indexType?: "flat" | "hnsw" | "ivfflat" | undefined;
|
|
3757
|
+
} | undefined;
|
|
3758
|
+
readonly fileAttachmentConfig?: {
|
|
3759
|
+
virusScan: boolean;
|
|
3760
|
+
virusScanOnUpload: boolean;
|
|
3761
|
+
quarantineOnThreat: boolean;
|
|
3762
|
+
allowMultiple: boolean;
|
|
3763
|
+
allowReplace: boolean;
|
|
3764
|
+
allowDelete: boolean;
|
|
3765
|
+
requireUpload: boolean;
|
|
3766
|
+
extractMetadata: boolean;
|
|
3767
|
+
extractText: boolean;
|
|
3768
|
+
versioningEnabled: boolean;
|
|
3769
|
+
publicRead: boolean;
|
|
3770
|
+
presignedUrlExpiry: number;
|
|
3771
|
+
minSize?: number | undefined;
|
|
3772
|
+
maxSize?: number | undefined;
|
|
3773
|
+
allowedTypes?: string[] | undefined;
|
|
3774
|
+
blockedTypes?: string[] | undefined;
|
|
3775
|
+
allowedMimeTypes?: string[] | undefined;
|
|
3776
|
+
blockedMimeTypes?: string[] | undefined;
|
|
3777
|
+
virusScanProvider?: "custom" | "clamav" | "virustotal" | "metadefender" | undefined;
|
|
3778
|
+
storageProvider?: string | undefined;
|
|
3779
|
+
storageBucket?: string | undefined;
|
|
3780
|
+
storagePrefix?: string | undefined;
|
|
3781
|
+
imageValidation?: {
|
|
3782
|
+
generateThumbnails: boolean;
|
|
3783
|
+
preserveMetadata: boolean;
|
|
3784
|
+
autoRotate: boolean;
|
|
3785
|
+
minWidth?: number | undefined;
|
|
3786
|
+
maxWidth?: number | undefined;
|
|
3787
|
+
minHeight?: number | undefined;
|
|
3788
|
+
maxHeight?: number | undefined;
|
|
3789
|
+
aspectRatio?: string | undefined;
|
|
3790
|
+
thumbnailSizes?: {
|
|
3791
|
+
name: string;
|
|
3792
|
+
width: number;
|
|
3793
|
+
height: number;
|
|
3794
|
+
crop: boolean;
|
|
3795
|
+
}[] | undefined;
|
|
3796
|
+
} | undefined;
|
|
3797
|
+
maxVersions?: number | undefined;
|
|
3798
|
+
} | undefined;
|
|
3799
|
+
readonly maskingRule?: {
|
|
3800
|
+
field: string;
|
|
3801
|
+
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3802
|
+
preserveFormat: boolean;
|
|
3803
|
+
preserveLength: boolean;
|
|
3804
|
+
pattern?: string | undefined;
|
|
3805
|
+
roles?: string[] | undefined;
|
|
3806
|
+
exemptRoles?: string[] | undefined;
|
|
3130
3807
|
} | undefined;
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
|
|
3151
|
-
|
|
3152
|
-
|
|
3153
|
-
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
readonly name: "activate_permission_set";
|
|
3163
|
-
readonly label: "Activate";
|
|
3164
|
-
readonly icon: "circle-check";
|
|
3165
|
-
readonly variant: "secondary";
|
|
3166
|
-
readonly mode: "custom";
|
|
3167
|
-
readonly locations: ["list_item", "record_header"];
|
|
3168
|
-
readonly type: "api";
|
|
3169
|
-
readonly method: "PATCH";
|
|
3170
|
-
readonly target: "/api/v1/data/sys_permission_set/{id}";
|
|
3171
|
-
readonly bodyExtra: {
|
|
3172
|
-
readonly active: true;
|
|
3173
|
-
};
|
|
3174
|
-
readonly successMessage: "Permission set activated";
|
|
3175
|
-
readonly refreshAfter: true;
|
|
3176
|
-
}, {
|
|
3177
|
-
readonly name: "deactivate_permission_set";
|
|
3178
|
-
readonly label: "Deactivate";
|
|
3179
|
-
readonly icon: "circle-off";
|
|
3180
|
-
readonly variant: "danger";
|
|
3181
|
-
readonly mode: "custom";
|
|
3182
|
-
readonly locations: ["list_item", "record_header"];
|
|
3183
|
-
readonly type: "api";
|
|
3184
|
-
readonly method: "PATCH";
|
|
3185
|
-
readonly target: "/api/v1/data/sys_permission_set/{id}";
|
|
3186
|
-
readonly bodyExtra: {
|
|
3187
|
-
readonly active: false;
|
|
3188
|
-
};
|
|
3189
|
-
readonly confirmText: "Deactivate this permission set? Existing assignments stay in place but stop granting access until re-activated.";
|
|
3190
|
-
readonly successMessage: "Permission set deactivated";
|
|
3191
|
-
readonly refreshAfter: true;
|
|
3192
|
-
}, {
|
|
3193
|
-
readonly name: "clone_permission_set";
|
|
3194
|
-
readonly label: "Clone";
|
|
3195
|
-
readonly icon: "copy";
|
|
3196
|
-
readonly variant: "secondary";
|
|
3197
|
-
readonly mode: "custom";
|
|
3198
|
-
readonly locations: ["list_item", "record_header"];
|
|
3199
|
-
readonly type: "api";
|
|
3200
|
-
readonly method: "POST";
|
|
3201
|
-
readonly target: "/api/v1/data/sys_permission_set";
|
|
3202
|
-
readonly bodyExtra: {
|
|
3203
|
-
readonly active: true;
|
|
3204
|
-
};
|
|
3205
|
-
readonly successMessage: "Permission set cloned";
|
|
3206
|
-
readonly refreshAfter: true;
|
|
3207
|
-
readonly params: [{
|
|
3208
|
-
readonly name: "label";
|
|
3209
|
-
readonly label: "New Display Name";
|
|
3210
|
-
readonly type: "text";
|
|
3211
|
-
readonly required: true;
|
|
3212
|
-
}, {
|
|
3213
|
-
readonly name: "name";
|
|
3214
|
-
readonly label: "New API Name";
|
|
3215
|
-
readonly type: "text";
|
|
3216
|
-
readonly required: true;
|
|
3217
|
-
readonly helpText: "Unique snake_case machine name";
|
|
3218
|
-
}, {
|
|
3219
|
-
readonly field: "description";
|
|
3220
|
-
readonly defaultFromRow: true;
|
|
3221
|
-
}, {
|
|
3222
|
-
readonly field: "object_permissions";
|
|
3223
|
-
readonly defaultFromRow: true;
|
|
3224
|
-
}, {
|
|
3225
|
-
readonly field: "field_permissions";
|
|
3226
|
-
readonly defaultFromRow: true;
|
|
3227
|
-
}];
|
|
3228
|
-
}];
|
|
3229
|
-
readonly listViews: {
|
|
3230
|
-
readonly active: {
|
|
3231
|
-
readonly type: "grid";
|
|
3232
|
-
readonly name: "active";
|
|
3233
|
-
readonly label: "Active";
|
|
3234
|
-
readonly data: {
|
|
3235
|
-
readonly provider: "object";
|
|
3236
|
-
readonly object: "sys_permission_set";
|
|
3237
|
-
};
|
|
3238
|
-
readonly columns: ["label", "name", "description", "updated_at"];
|
|
3239
|
-
readonly filter: [{
|
|
3240
|
-
readonly field: "active";
|
|
3241
|
-
readonly operator: "equals";
|
|
3242
|
-
readonly value: true;
|
|
3243
|
-
}];
|
|
3244
|
-
readonly sort: [{
|
|
3245
|
-
readonly field: "label";
|
|
3246
|
-
readonly order: "asc";
|
|
3247
|
-
}];
|
|
3248
|
-
readonly pagination: {
|
|
3249
|
-
readonly pageSize: 50;
|
|
3250
|
-
};
|
|
3251
|
-
};
|
|
3252
|
-
readonly inactive: {
|
|
3253
|
-
readonly type: "grid";
|
|
3254
|
-
readonly name: "inactive";
|
|
3255
|
-
readonly label: "Inactive";
|
|
3256
|
-
readonly data: {
|
|
3257
|
-
readonly provider: "object";
|
|
3258
|
-
readonly object: "sys_permission_set";
|
|
3259
|
-
};
|
|
3260
|
-
readonly columns: ["label", "name", "updated_at"];
|
|
3261
|
-
readonly filter: [{
|
|
3262
|
-
readonly field: "active";
|
|
3263
|
-
readonly operator: "equals";
|
|
3264
|
-
readonly value: false;
|
|
3265
|
-
}];
|
|
3266
|
-
readonly sort: [{
|
|
3267
|
-
readonly field: "label";
|
|
3268
|
-
readonly order: "asc";
|
|
3269
|
-
}];
|
|
3270
|
-
readonly pagination: {
|
|
3271
|
-
readonly pageSize: 50;
|
|
3272
|
-
};
|
|
3273
|
-
};
|
|
3274
|
-
readonly all_permsets: {
|
|
3275
|
-
readonly type: "grid";
|
|
3276
|
-
readonly name: "all_permsets";
|
|
3277
|
-
readonly label: "All";
|
|
3278
|
-
readonly data: {
|
|
3279
|
-
readonly provider: "object";
|
|
3280
|
-
readonly object: "sys_permission_set";
|
|
3281
|
-
};
|
|
3282
|
-
readonly columns: ["label", "name", "active", "updated_at"];
|
|
3283
|
-
readonly sort: [{
|
|
3284
|
-
readonly field: "label";
|
|
3285
|
-
readonly order: "asc";
|
|
3286
|
-
}];
|
|
3287
|
-
readonly pagination: {
|
|
3288
|
-
readonly pageSize: 50;
|
|
3289
|
-
};
|
|
3808
|
+
readonly auditTrail?: boolean | undefined;
|
|
3809
|
+
readonly cached?: {
|
|
3810
|
+
enabled: boolean;
|
|
3811
|
+
ttl: number;
|
|
3812
|
+
invalidateOn: string[];
|
|
3813
|
+
} | undefined;
|
|
3814
|
+
readonly dataQuality?: {
|
|
3815
|
+
uniqueness: boolean;
|
|
3816
|
+
completeness: number;
|
|
3817
|
+
accuracy?: {
|
|
3818
|
+
source: string;
|
|
3819
|
+
threshold: number;
|
|
3820
|
+
} | undefined;
|
|
3821
|
+
} | undefined;
|
|
3822
|
+
readonly conditionalRequired?: {
|
|
3823
|
+
dialect: "cel" | "js" | "cron" | "template";
|
|
3824
|
+
source?: string | undefined;
|
|
3825
|
+
ast?: unknown;
|
|
3826
|
+
meta?: {
|
|
3827
|
+
rationale?: string | undefined;
|
|
3828
|
+
generatedBy?: string | undefined;
|
|
3829
|
+
} | undefined;
|
|
3830
|
+
} | undefined;
|
|
3831
|
+
readonly hidden?: boolean | undefined;
|
|
3832
|
+
readonly sortable?: boolean | undefined;
|
|
3833
|
+
readonly inlineHelpText?: string | undefined;
|
|
3834
|
+
readonly trackFeedHistory?: boolean | undefined;
|
|
3835
|
+
readonly caseSensitive?: boolean | undefined;
|
|
3836
|
+
readonly autonumberFormat?: string | undefined;
|
|
3837
|
+
readonly index?: boolean | undefined;
|
|
3838
|
+
readonly type: "textarea";
|
|
3290
3839
|
};
|
|
3291
|
-
|
|
3292
|
-
readonly fields: {
|
|
3293
|
-
readonly label: {
|
|
3840
|
+
readonly object_permissions: {
|
|
3294
3841
|
readonly readonly?: boolean | undefined;
|
|
3295
3842
|
readonly format?: string | undefined;
|
|
3296
3843
|
readonly options?: {
|
|
@@ -3463,9 +4010,9 @@ declare const SysPermissionSet: Omit<{
|
|
|
3463
4010
|
readonly caseSensitive?: boolean | undefined;
|
|
3464
4011
|
readonly autonumberFormat?: string | undefined;
|
|
3465
4012
|
readonly index?: boolean | undefined;
|
|
3466
|
-
readonly type: "
|
|
4013
|
+
readonly type: "textarea";
|
|
3467
4014
|
};
|
|
3468
|
-
readonly
|
|
4015
|
+
readonly field_permissions: {
|
|
3469
4016
|
readonly readonly?: boolean | undefined;
|
|
3470
4017
|
readonly format?: string | undefined;
|
|
3471
4018
|
readonly options?: {
|
|
@@ -3638,9 +4185,9 @@ declare const SysPermissionSet: Omit<{
|
|
|
3638
4185
|
readonly caseSensitive?: boolean | undefined;
|
|
3639
4186
|
readonly autonumberFormat?: string | undefined;
|
|
3640
4187
|
readonly index?: boolean | undefined;
|
|
3641
|
-
readonly type: "
|
|
4188
|
+
readonly type: "textarea";
|
|
3642
4189
|
};
|
|
3643
|
-
readonly
|
|
4190
|
+
readonly system_permissions: {
|
|
3644
4191
|
readonly readonly?: boolean | undefined;
|
|
3645
4192
|
readonly format?: string | undefined;
|
|
3646
4193
|
readonly options?: {
|
|
@@ -3815,7 +4362,7 @@ declare const SysPermissionSet: Omit<{
|
|
|
3815
4362
|
readonly index?: boolean | undefined;
|
|
3816
4363
|
readonly type: "textarea";
|
|
3817
4364
|
};
|
|
3818
|
-
readonly
|
|
4365
|
+
readonly row_level_security: {
|
|
3819
4366
|
readonly readonly?: boolean | undefined;
|
|
3820
4367
|
readonly format?: string | undefined;
|
|
3821
4368
|
readonly options?: {
|
|
@@ -3990,7 +4537,7 @@ declare const SysPermissionSet: Omit<{
|
|
|
3990
4537
|
readonly index?: boolean | undefined;
|
|
3991
4538
|
readonly type: "textarea";
|
|
3992
4539
|
};
|
|
3993
|
-
readonly
|
|
4540
|
+
readonly tab_permissions: {
|
|
3994
4541
|
readonly readonly?: boolean | undefined;
|
|
3995
4542
|
readonly format?: string | undefined;
|
|
3996
4543
|
readonly options?: {
|
|
@@ -4904,7 +5451,7 @@ declare const SysUserPermissionSet: Omit<{
|
|
|
4904
5451
|
abstract: boolean;
|
|
4905
5452
|
datasource: string;
|
|
4906
5453
|
fields: Record<string, {
|
|
4907
|
-
type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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" | "vector";
|
|
5454
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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" | "vector";
|
|
4908
5455
|
required: boolean;
|
|
4909
5456
|
searchable: boolean;
|
|
4910
5457
|
multiple: boolean;
|
|
@@ -5043,7 +5590,7 @@ declare const SysUserPermissionSet: Omit<{
|
|
|
5043
5590
|
autoRotate: boolean;
|
|
5044
5591
|
} | undefined;
|
|
5045
5592
|
};
|
|
5046
|
-
scope: "
|
|
5593
|
+
scope: "record" | "field" | "table" | "database";
|
|
5047
5594
|
deterministicEncryption: boolean;
|
|
5048
5595
|
searchableEncryption: boolean;
|
|
5049
5596
|
} | undefined;
|
|
@@ -5506,7 +6053,7 @@ declare const SysUserPermissionSet: Omit<{
|
|
|
5506
6053
|
refreshAfter: boolean;
|
|
5507
6054
|
objectName?: string | undefined;
|
|
5508
6055
|
icon?: string | undefined;
|
|
5509
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
6056
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
5510
6057
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
5511
6058
|
target?: string | undefined;
|
|
5512
6059
|
body?: {
|
|
@@ -5526,7 +6073,7 @@ declare const SysUserPermissionSet: Omit<{
|
|
|
5526
6073
|
field?: string | undefined;
|
|
5527
6074
|
objectOverride?: string | undefined;
|
|
5528
6075
|
label?: string | undefined;
|
|
5529
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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;
|
|
6076
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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;
|
|
5530
6077
|
options?: {
|
|
5531
6078
|
label: string;
|
|
5532
6079
|
value: string;
|
|
@@ -5539,6 +6086,17 @@ declare const SysUserPermissionSet: Omit<{
|
|
|
5539
6086
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
5540
6087
|
confirmText?: string | undefined;
|
|
5541
6088
|
successMessage?: string | undefined;
|
|
6089
|
+
resultDialog?: {
|
|
6090
|
+
title?: string | undefined;
|
|
6091
|
+
description?: string | undefined;
|
|
6092
|
+
acknowledge?: string | undefined;
|
|
6093
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
6094
|
+
fields?: {
|
|
6095
|
+
path: string;
|
|
6096
|
+
label?: string | undefined;
|
|
6097
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
6098
|
+
}[] | undefined;
|
|
6099
|
+
} | undefined;
|
|
5542
6100
|
visible?: {
|
|
5543
6101
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5544
6102
|
source?: string | undefined;
|
|
@@ -6850,7 +7408,7 @@ declare const SysRolePermissionSet: Omit<{
|
|
|
6850
7408
|
abstract: boolean;
|
|
6851
7409
|
datasource: string;
|
|
6852
7410
|
fields: Record<string, {
|
|
6853
|
-
type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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" | "vector";
|
|
7411
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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" | "vector";
|
|
6854
7412
|
required: boolean;
|
|
6855
7413
|
searchable: boolean;
|
|
6856
7414
|
multiple: boolean;
|
|
@@ -6989,7 +7547,7 @@ declare const SysRolePermissionSet: Omit<{
|
|
|
6989
7547
|
autoRotate: boolean;
|
|
6990
7548
|
} | undefined;
|
|
6991
7549
|
};
|
|
6992
|
-
scope: "
|
|
7550
|
+
scope: "record" | "field" | "table" | "database";
|
|
6993
7551
|
deterministicEncryption: boolean;
|
|
6994
7552
|
searchableEncryption: boolean;
|
|
6995
7553
|
} | undefined;
|
|
@@ -7452,7 +8010,7 @@ declare const SysRolePermissionSet: Omit<{
|
|
|
7452
8010
|
refreshAfter: boolean;
|
|
7453
8011
|
objectName?: string | undefined;
|
|
7454
8012
|
icon?: string | undefined;
|
|
7455
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
8013
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
7456
8014
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
7457
8015
|
target?: string | undefined;
|
|
7458
8016
|
body?: {
|
|
@@ -7472,7 +8030,7 @@ declare const SysRolePermissionSet: Omit<{
|
|
|
7472
8030
|
field?: string | undefined;
|
|
7473
8031
|
objectOverride?: string | undefined;
|
|
7474
8032
|
label?: string | undefined;
|
|
7475
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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;
|
|
8033
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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;
|
|
7476
8034
|
options?: {
|
|
7477
8035
|
label: string;
|
|
7478
8036
|
value: string;
|
|
@@ -7485,6 +8043,17 @@ declare const SysRolePermissionSet: Omit<{
|
|
|
7485
8043
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
7486
8044
|
confirmText?: string | undefined;
|
|
7487
8045
|
successMessage?: string | undefined;
|
|
8046
|
+
resultDialog?: {
|
|
8047
|
+
title?: string | undefined;
|
|
8048
|
+
description?: string | undefined;
|
|
8049
|
+
acknowledge?: string | undefined;
|
|
8050
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
8051
|
+
fields?: {
|
|
8052
|
+
path: string;
|
|
8053
|
+
label?: string | undefined;
|
|
8054
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
8055
|
+
}[] | undefined;
|
|
8056
|
+
} | undefined;
|
|
7488
8057
|
visible?: {
|
|
7489
8058
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7490
8059
|
source?: string | undefined;
|
|
@@ -8461,7 +9030,7 @@ declare const SysRecordShare: Omit<{
|
|
|
8461
9030
|
abstract: boolean;
|
|
8462
9031
|
datasource: string;
|
|
8463
9032
|
fields: Record<string, {
|
|
8464
|
-
type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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" | "vector";
|
|
9033
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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" | "vector";
|
|
8465
9034
|
required: boolean;
|
|
8466
9035
|
searchable: boolean;
|
|
8467
9036
|
multiple: boolean;
|
|
@@ -8600,7 +9169,7 @@ declare const SysRecordShare: Omit<{
|
|
|
8600
9169
|
autoRotate: boolean;
|
|
8601
9170
|
} | undefined;
|
|
8602
9171
|
};
|
|
8603
|
-
scope: "
|
|
9172
|
+
scope: "record" | "field" | "table" | "database";
|
|
8604
9173
|
deterministicEncryption: boolean;
|
|
8605
9174
|
searchableEncryption: boolean;
|
|
8606
9175
|
} | undefined;
|
|
@@ -9063,7 +9632,7 @@ declare const SysRecordShare: Omit<{
|
|
|
9063
9632
|
refreshAfter: boolean;
|
|
9064
9633
|
objectName?: string | undefined;
|
|
9065
9634
|
icon?: string | undefined;
|
|
9066
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
9635
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
9067
9636
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
9068
9637
|
target?: string | undefined;
|
|
9069
9638
|
body?: {
|
|
@@ -9083,7 +9652,7 @@ declare const SysRecordShare: Omit<{
|
|
|
9083
9652
|
field?: string | undefined;
|
|
9084
9653
|
objectOverride?: string | undefined;
|
|
9085
9654
|
label?: string | undefined;
|
|
9086
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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;
|
|
9655
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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;
|
|
9087
9656
|
options?: {
|
|
9088
9657
|
label: string;
|
|
9089
9658
|
value: string;
|
|
@@ -9096,6 +9665,17 @@ declare const SysRecordShare: Omit<{
|
|
|
9096
9665
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
9097
9666
|
confirmText?: string | undefined;
|
|
9098
9667
|
successMessage?: string | undefined;
|
|
9668
|
+
resultDialog?: {
|
|
9669
|
+
title?: string | undefined;
|
|
9670
|
+
description?: string | undefined;
|
|
9671
|
+
acknowledge?: string | undefined;
|
|
9672
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
9673
|
+
fields?: {
|
|
9674
|
+
path: string;
|
|
9675
|
+
label?: string | undefined;
|
|
9676
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
9677
|
+
}[] | undefined;
|
|
9678
|
+
} | undefined;
|
|
9099
9679
|
visible?: {
|
|
9100
9680
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9101
9681
|
source?: string | undefined;
|
|
@@ -11424,7 +12004,7 @@ declare const SysSharingRule: Omit<{
|
|
|
11424
12004
|
abstract: boolean;
|
|
11425
12005
|
datasource: string;
|
|
11426
12006
|
fields: Record<string, {
|
|
11427
|
-
type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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" | "vector";
|
|
12007
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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" | "vector";
|
|
11428
12008
|
required: boolean;
|
|
11429
12009
|
searchable: boolean;
|
|
11430
12010
|
multiple: boolean;
|
|
@@ -11563,7 +12143,7 @@ declare const SysSharingRule: Omit<{
|
|
|
11563
12143
|
autoRotate: boolean;
|
|
11564
12144
|
} | undefined;
|
|
11565
12145
|
};
|
|
11566
|
-
scope: "
|
|
12146
|
+
scope: "record" | "field" | "table" | "database";
|
|
11567
12147
|
deterministicEncryption: boolean;
|
|
11568
12148
|
searchableEncryption: boolean;
|
|
11569
12149
|
} | undefined;
|
|
@@ -12026,7 +12606,7 @@ declare const SysSharingRule: Omit<{
|
|
|
12026
12606
|
refreshAfter: boolean;
|
|
12027
12607
|
objectName?: string | undefined;
|
|
12028
12608
|
icon?: string | undefined;
|
|
12029
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
12609
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
12030
12610
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
12031
12611
|
target?: string | undefined;
|
|
12032
12612
|
body?: {
|
|
@@ -12046,7 +12626,7 @@ declare const SysSharingRule: Omit<{
|
|
|
12046
12626
|
field?: string | undefined;
|
|
12047
12627
|
objectOverride?: string | undefined;
|
|
12048
12628
|
label?: string | undefined;
|
|
12049
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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;
|
|
12629
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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;
|
|
12050
12630
|
options?: {
|
|
12051
12631
|
label: string;
|
|
12052
12632
|
value: string;
|
|
@@ -12059,6 +12639,17 @@ declare const SysSharingRule: Omit<{
|
|
|
12059
12639
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
12060
12640
|
confirmText?: string | undefined;
|
|
12061
12641
|
successMessage?: string | undefined;
|
|
12642
|
+
resultDialog?: {
|
|
12643
|
+
title?: string | undefined;
|
|
12644
|
+
description?: string | undefined;
|
|
12645
|
+
acknowledge?: string | undefined;
|
|
12646
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
12647
|
+
fields?: {
|
|
12648
|
+
path: string;
|
|
12649
|
+
label?: string | undefined;
|
|
12650
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
12651
|
+
}[] | undefined;
|
|
12652
|
+
} | undefined;
|
|
12062
12653
|
visible?: {
|
|
12063
12654
|
dialect: "cel" | "js" | "cron" | "template";
|
|
12064
12655
|
source?: string | undefined;
|
|
@@ -14537,7 +15128,7 @@ declare const SysShareLink: Omit<{
|
|
|
14537
15128
|
abstract: boolean;
|
|
14538
15129
|
datasource: string;
|
|
14539
15130
|
fields: Record<string, {
|
|
14540
|
-
type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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" | "vector";
|
|
15131
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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" | "vector";
|
|
14541
15132
|
required: boolean;
|
|
14542
15133
|
searchable: boolean;
|
|
14543
15134
|
multiple: boolean;
|
|
@@ -14676,7 +15267,7 @@ declare const SysShareLink: Omit<{
|
|
|
14676
15267
|
autoRotate: boolean;
|
|
14677
15268
|
} | undefined;
|
|
14678
15269
|
};
|
|
14679
|
-
scope: "
|
|
15270
|
+
scope: "record" | "field" | "table" | "database";
|
|
14680
15271
|
deterministicEncryption: boolean;
|
|
14681
15272
|
searchableEncryption: boolean;
|
|
14682
15273
|
} | undefined;
|
|
@@ -15139,7 +15730,7 @@ declare const SysShareLink: Omit<{
|
|
|
15139
15730
|
refreshAfter: boolean;
|
|
15140
15731
|
objectName?: string | undefined;
|
|
15141
15732
|
icon?: string | undefined;
|
|
15142
|
-
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
|
|
15733
|
+
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
15143
15734
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
15144
15735
|
target?: string | undefined;
|
|
15145
15736
|
body?: {
|
|
@@ -15159,7 +15750,7 @@ declare const SysShareLink: Omit<{
|
|
|
15159
15750
|
field?: string | undefined;
|
|
15160
15751
|
objectOverride?: string | undefined;
|
|
15161
15752
|
label?: string | undefined;
|
|
15162
|
-
type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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;
|
|
15753
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "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;
|
|
15163
15754
|
options?: {
|
|
15164
15755
|
label: string;
|
|
15165
15756
|
value: string;
|
|
@@ -15172,6 +15763,17 @@ declare const SysShareLink: Omit<{
|
|
|
15172
15763
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
15173
15764
|
confirmText?: string | undefined;
|
|
15174
15765
|
successMessage?: string | undefined;
|
|
15766
|
+
resultDialog?: {
|
|
15767
|
+
title?: string | undefined;
|
|
15768
|
+
description?: string | undefined;
|
|
15769
|
+
acknowledge?: string | undefined;
|
|
15770
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
15771
|
+
fields?: {
|
|
15772
|
+
path: string;
|
|
15773
|
+
label?: string | undefined;
|
|
15774
|
+
format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
|
|
15775
|
+
}[] | undefined;
|
|
15776
|
+
} | undefined;
|
|
15175
15777
|
visible?: {
|
|
15176
15778
|
dialect: "cel" | "js" | "cron" | "template";
|
|
15177
15779
|
source?: string | undefined;
|