@objectstack/platform-objects 7.0.0 → 7.2.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.js +25 -29
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +25 -29
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +192 -96
- package/dist/audit/index.d.ts +192 -96
- package/dist/identity/index.d.mts +244 -122
- package/dist/identity/index.d.ts +244 -122
- package/dist/identity/index.js +5 -2
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +5 -2
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +180 -31
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +180 -32
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +12 -6
- package/dist/integration/index.d.ts +12 -6
- package/dist/metadata/index.d.mts +3252 -13
- package/dist/metadata/index.d.ts +3252 -13
- package/dist/metadata/index.js +130 -0
- package/dist/metadata/index.js.map +1 -1
- package/dist/metadata/index.mjs +130 -1
- package/dist/metadata/index.mjs.map +1 -1
- package/dist/pages/index.d.mts +8 -3
- package/dist/pages/index.d.ts +8 -3
- package/dist/pages/index.js.map +1 -1
- package/dist/pages/index.mjs.map +1 -1
- package/dist/plugin.js +4 -8
- package/dist/plugin.js.map +1 -1
- package/dist/plugin.mjs +4 -8
- package/dist/plugin.mjs.map +1 -1
- package/dist/security/index.d.mts +84 -42
- package/dist/security/index.d.ts +84 -42
- package/dist/security/index.js +20 -0
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +20 -0
- package/dist/security/index.mjs.map +1 -1
- package/dist/system/index.d.mts +36 -18
- package/dist/system/index.d.ts +36 -18
- package/package.json +2 -2
package/dist/identity/index.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ declare const SysUser: Omit<{
|
|
|
20
20
|
abstract: boolean;
|
|
21
21
|
datasource: string;
|
|
22
22
|
fields: Record<string, {
|
|
23
|
-
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";
|
|
23
|
+
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";
|
|
24
24
|
required: boolean;
|
|
25
25
|
searchable: boolean;
|
|
26
26
|
multiple: boolean;
|
|
@@ -159,7 +159,7 @@ declare const SysUser: Omit<{
|
|
|
159
159
|
autoRotate: boolean;
|
|
160
160
|
} | undefined;
|
|
161
161
|
};
|
|
162
|
-
scope: "
|
|
162
|
+
scope: "record" | "field" | "table" | "database";
|
|
163
163
|
deterministicEncryption: boolean;
|
|
164
164
|
searchableEncryption: boolean;
|
|
165
165
|
} | undefined;
|
|
@@ -210,6 +210,12 @@ declare const SysUser: Omit<{
|
|
|
210
210
|
caseSensitive?: boolean | undefined;
|
|
211
211
|
autonumberFormat?: string | undefined;
|
|
212
212
|
}>;
|
|
213
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
214
|
+
_lockReason?: string | undefined;
|
|
215
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
216
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
217
|
+
_packageId?: string | undefined;
|
|
218
|
+
_packageVersion?: string | undefined;
|
|
213
219
|
label?: string | undefined;
|
|
214
220
|
pluralLabel?: string | undefined;
|
|
215
221
|
description?: string | undefined;
|
|
@@ -355,7 +361,7 @@ declare const SysUser: Omit<{
|
|
|
355
361
|
wrap?: boolean | undefined;
|
|
356
362
|
type?: string | undefined;
|
|
357
363
|
pinned?: "left" | "right" | undefined;
|
|
358
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
364
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
359
365
|
link?: boolean | undefined;
|
|
360
366
|
action?: string | undefined;
|
|
361
367
|
}[];
|
|
@@ -404,7 +410,7 @@ declare const SysUser: Omit<{
|
|
|
404
410
|
bordered?: boolean | undefined;
|
|
405
411
|
compactToolbar?: boolean | undefined;
|
|
406
412
|
selection?: {
|
|
407
|
-
type: "
|
|
413
|
+
type: "none" | "multiple" | "single";
|
|
408
414
|
} | undefined;
|
|
409
415
|
navigation?: {
|
|
410
416
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -599,7 +605,7 @@ declare const SysUser: Omit<{
|
|
|
599
605
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
600
606
|
} | undefined;
|
|
601
607
|
recordTypes?: string[] | undefined;
|
|
602
|
-
sharingModel?: "
|
|
608
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
603
609
|
publicSharing?: {
|
|
604
610
|
enabled: boolean;
|
|
605
611
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -642,7 +648,7 @@ declare const SysUser: Omit<{
|
|
|
642
648
|
field?: string | undefined;
|
|
643
649
|
objectOverride?: string | undefined;
|
|
644
650
|
label?: string | undefined;
|
|
645
|
-
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;
|
|
651
|
+
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;
|
|
646
652
|
options?: {
|
|
647
653
|
label: string;
|
|
648
654
|
value: string;
|
|
@@ -709,6 +715,8 @@ declare const SysUser: Omit<{
|
|
|
709
715
|
readonly icon: "user";
|
|
710
716
|
readonly isSystem: true;
|
|
711
717
|
readonly managedBy: "better-auth";
|
|
718
|
+
readonly _lock: "full";
|
|
719
|
+
readonly _lockReason: "Identity table managed by better-auth — see ADR-0010.";
|
|
712
720
|
readonly description: "User accounts for authentication";
|
|
713
721
|
readonly displayNameField: "name";
|
|
714
722
|
readonly titleFormat: "{name}";
|
|
@@ -3210,7 +3218,7 @@ declare const SysSession: Omit<{
|
|
|
3210
3218
|
abstract: boolean;
|
|
3211
3219
|
datasource: string;
|
|
3212
3220
|
fields: Record<string, {
|
|
3213
|
-
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";
|
|
3221
|
+
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";
|
|
3214
3222
|
required: boolean;
|
|
3215
3223
|
searchable: boolean;
|
|
3216
3224
|
multiple: boolean;
|
|
@@ -3349,7 +3357,7 @@ declare const SysSession: Omit<{
|
|
|
3349
3357
|
autoRotate: boolean;
|
|
3350
3358
|
} | undefined;
|
|
3351
3359
|
};
|
|
3352
|
-
scope: "
|
|
3360
|
+
scope: "record" | "field" | "table" | "database";
|
|
3353
3361
|
deterministicEncryption: boolean;
|
|
3354
3362
|
searchableEncryption: boolean;
|
|
3355
3363
|
} | undefined;
|
|
@@ -3400,6 +3408,12 @@ declare const SysSession: Omit<{
|
|
|
3400
3408
|
caseSensitive?: boolean | undefined;
|
|
3401
3409
|
autonumberFormat?: string | undefined;
|
|
3402
3410
|
}>;
|
|
3411
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
3412
|
+
_lockReason?: string | undefined;
|
|
3413
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
3414
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3415
|
+
_packageId?: string | undefined;
|
|
3416
|
+
_packageVersion?: string | undefined;
|
|
3403
3417
|
label?: string | undefined;
|
|
3404
3418
|
pluralLabel?: string | undefined;
|
|
3405
3419
|
description?: string | undefined;
|
|
@@ -3545,7 +3559,7 @@ declare const SysSession: Omit<{
|
|
|
3545
3559
|
wrap?: boolean | undefined;
|
|
3546
3560
|
type?: string | undefined;
|
|
3547
3561
|
pinned?: "left" | "right" | undefined;
|
|
3548
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
3562
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
3549
3563
|
link?: boolean | undefined;
|
|
3550
3564
|
action?: string | undefined;
|
|
3551
3565
|
}[];
|
|
@@ -3594,7 +3608,7 @@ declare const SysSession: Omit<{
|
|
|
3594
3608
|
bordered?: boolean | undefined;
|
|
3595
3609
|
compactToolbar?: boolean | undefined;
|
|
3596
3610
|
selection?: {
|
|
3597
|
-
type: "
|
|
3611
|
+
type: "none" | "multiple" | "single";
|
|
3598
3612
|
} | undefined;
|
|
3599
3613
|
navigation?: {
|
|
3600
3614
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -3789,7 +3803,7 @@ declare const SysSession: Omit<{
|
|
|
3789
3803
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
3790
3804
|
} | undefined;
|
|
3791
3805
|
recordTypes?: string[] | undefined;
|
|
3792
|
-
sharingModel?: "
|
|
3806
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
3793
3807
|
publicSharing?: {
|
|
3794
3808
|
enabled: boolean;
|
|
3795
3809
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -3832,7 +3846,7 @@ declare const SysSession: Omit<{
|
|
|
3832
3846
|
field?: string | undefined;
|
|
3833
3847
|
objectOverride?: string | undefined;
|
|
3834
3848
|
label?: string | undefined;
|
|
3835
|
-
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;
|
|
3849
|
+
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;
|
|
3836
3850
|
options?: {
|
|
3837
3851
|
label: string;
|
|
3838
3852
|
value: string;
|
|
@@ -5933,7 +5947,7 @@ declare const SysAccount: Omit<{
|
|
|
5933
5947
|
abstract: boolean;
|
|
5934
5948
|
datasource: string;
|
|
5935
5949
|
fields: Record<string, {
|
|
5936
|
-
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";
|
|
5950
|
+
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";
|
|
5937
5951
|
required: boolean;
|
|
5938
5952
|
searchable: boolean;
|
|
5939
5953
|
multiple: boolean;
|
|
@@ -6072,7 +6086,7 @@ declare const SysAccount: Omit<{
|
|
|
6072
6086
|
autoRotate: boolean;
|
|
6073
6087
|
} | undefined;
|
|
6074
6088
|
};
|
|
6075
|
-
scope: "
|
|
6089
|
+
scope: "record" | "field" | "table" | "database";
|
|
6076
6090
|
deterministicEncryption: boolean;
|
|
6077
6091
|
searchableEncryption: boolean;
|
|
6078
6092
|
} | undefined;
|
|
@@ -6123,6 +6137,12 @@ declare const SysAccount: Omit<{
|
|
|
6123
6137
|
caseSensitive?: boolean | undefined;
|
|
6124
6138
|
autonumberFormat?: string | undefined;
|
|
6125
6139
|
}>;
|
|
6140
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
6141
|
+
_lockReason?: string | undefined;
|
|
6142
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
6143
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
6144
|
+
_packageId?: string | undefined;
|
|
6145
|
+
_packageVersion?: string | undefined;
|
|
6126
6146
|
label?: string | undefined;
|
|
6127
6147
|
pluralLabel?: string | undefined;
|
|
6128
6148
|
description?: string | undefined;
|
|
@@ -6268,7 +6288,7 @@ declare const SysAccount: Omit<{
|
|
|
6268
6288
|
wrap?: boolean | undefined;
|
|
6269
6289
|
type?: string | undefined;
|
|
6270
6290
|
pinned?: "left" | "right" | undefined;
|
|
6271
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
6291
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
6272
6292
|
link?: boolean | undefined;
|
|
6273
6293
|
action?: string | undefined;
|
|
6274
6294
|
}[];
|
|
@@ -6317,7 +6337,7 @@ declare const SysAccount: Omit<{
|
|
|
6317
6337
|
bordered?: boolean | undefined;
|
|
6318
6338
|
compactToolbar?: boolean | undefined;
|
|
6319
6339
|
selection?: {
|
|
6320
|
-
type: "
|
|
6340
|
+
type: "none" | "multiple" | "single";
|
|
6321
6341
|
} | undefined;
|
|
6322
6342
|
navigation?: {
|
|
6323
6343
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -6512,7 +6532,7 @@ declare const SysAccount: Omit<{
|
|
|
6512
6532
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
6513
6533
|
} | undefined;
|
|
6514
6534
|
recordTypes?: string[] | undefined;
|
|
6515
|
-
sharingModel?: "
|
|
6535
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
6516
6536
|
publicSharing?: {
|
|
6517
6537
|
enabled: boolean;
|
|
6518
6538
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -6555,7 +6575,7 @@ declare const SysAccount: Omit<{
|
|
|
6555
6575
|
field?: string | undefined;
|
|
6556
6576
|
objectOverride?: string | undefined;
|
|
6557
6577
|
label?: string | undefined;
|
|
6558
|
-
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;
|
|
6578
|
+
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;
|
|
6559
6579
|
options?: {
|
|
6560
6580
|
label: string;
|
|
6561
6581
|
value: string;
|
|
@@ -6633,7 +6653,7 @@ declare const SysAccount: Omit<{
|
|
|
6633
6653
|
readonly mode: "create";
|
|
6634
6654
|
readonly locations: ["list_toolbar"];
|
|
6635
6655
|
readonly type: "url";
|
|
6636
|
-
readonly target: "/api/v1/auth/sign-in/social?provider=${param.provider}&callbackURL=${ctx.origin}/apps/account/sys_account";
|
|
6656
|
+
readonly target: "/api/v1/auth/sign-in/social?provider=${param.provider}&callbackURL=${ctx.origin}/_console/apps/account/sys_account";
|
|
6637
6657
|
readonly params: [{
|
|
6638
6658
|
readonly name: "provider";
|
|
6639
6659
|
readonly label: "Provider";
|
|
@@ -9063,7 +9083,7 @@ declare const SysVerification: Omit<{
|
|
|
9063
9083
|
abstract: boolean;
|
|
9064
9084
|
datasource: string;
|
|
9065
9085
|
fields: Record<string, {
|
|
9066
|
-
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";
|
|
9086
|
+
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";
|
|
9067
9087
|
required: boolean;
|
|
9068
9088
|
searchable: boolean;
|
|
9069
9089
|
multiple: boolean;
|
|
@@ -9202,7 +9222,7 @@ declare const SysVerification: Omit<{
|
|
|
9202
9222
|
autoRotate: boolean;
|
|
9203
9223
|
} | undefined;
|
|
9204
9224
|
};
|
|
9205
|
-
scope: "
|
|
9225
|
+
scope: "record" | "field" | "table" | "database";
|
|
9206
9226
|
deterministicEncryption: boolean;
|
|
9207
9227
|
searchableEncryption: boolean;
|
|
9208
9228
|
} | undefined;
|
|
@@ -9253,6 +9273,12 @@ declare const SysVerification: Omit<{
|
|
|
9253
9273
|
caseSensitive?: boolean | undefined;
|
|
9254
9274
|
autonumberFormat?: string | undefined;
|
|
9255
9275
|
}>;
|
|
9276
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
9277
|
+
_lockReason?: string | undefined;
|
|
9278
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
9279
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
9280
|
+
_packageId?: string | undefined;
|
|
9281
|
+
_packageVersion?: string | undefined;
|
|
9256
9282
|
label?: string | undefined;
|
|
9257
9283
|
pluralLabel?: string | undefined;
|
|
9258
9284
|
description?: string | undefined;
|
|
@@ -9398,7 +9424,7 @@ declare const SysVerification: Omit<{
|
|
|
9398
9424
|
wrap?: boolean | undefined;
|
|
9399
9425
|
type?: string | undefined;
|
|
9400
9426
|
pinned?: "left" | "right" | undefined;
|
|
9401
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
9427
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
9402
9428
|
link?: boolean | undefined;
|
|
9403
9429
|
action?: string | undefined;
|
|
9404
9430
|
}[];
|
|
@@ -9447,7 +9473,7 @@ declare const SysVerification: Omit<{
|
|
|
9447
9473
|
bordered?: boolean | undefined;
|
|
9448
9474
|
compactToolbar?: boolean | undefined;
|
|
9449
9475
|
selection?: {
|
|
9450
|
-
type: "
|
|
9476
|
+
type: "none" | "multiple" | "single";
|
|
9451
9477
|
} | undefined;
|
|
9452
9478
|
navigation?: {
|
|
9453
9479
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -9642,7 +9668,7 @@ declare const SysVerification: Omit<{
|
|
|
9642
9668
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
9643
9669
|
} | undefined;
|
|
9644
9670
|
recordTypes?: string[] | undefined;
|
|
9645
|
-
sharingModel?: "
|
|
9671
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
9646
9672
|
publicSharing?: {
|
|
9647
9673
|
enabled: boolean;
|
|
9648
9674
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -9685,7 +9711,7 @@ declare const SysVerification: Omit<{
|
|
|
9685
9711
|
field?: string | undefined;
|
|
9686
9712
|
objectOverride?: string | undefined;
|
|
9687
9713
|
label?: string | undefined;
|
|
9688
|
-
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;
|
|
9714
|
+
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;
|
|
9689
9715
|
options?: {
|
|
9690
9716
|
label: string;
|
|
9691
9717
|
value: string;
|
|
@@ -10842,7 +10868,7 @@ declare const SysOrganization: Omit<{
|
|
|
10842
10868
|
abstract: boolean;
|
|
10843
10869
|
datasource: string;
|
|
10844
10870
|
fields: Record<string, {
|
|
10845
|
-
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";
|
|
10871
|
+
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";
|
|
10846
10872
|
required: boolean;
|
|
10847
10873
|
searchable: boolean;
|
|
10848
10874
|
multiple: boolean;
|
|
@@ -10981,7 +11007,7 @@ declare const SysOrganization: Omit<{
|
|
|
10981
11007
|
autoRotate: boolean;
|
|
10982
11008
|
} | undefined;
|
|
10983
11009
|
};
|
|
10984
|
-
scope: "
|
|
11010
|
+
scope: "record" | "field" | "table" | "database";
|
|
10985
11011
|
deterministicEncryption: boolean;
|
|
10986
11012
|
searchableEncryption: boolean;
|
|
10987
11013
|
} | undefined;
|
|
@@ -11032,6 +11058,12 @@ declare const SysOrganization: Omit<{
|
|
|
11032
11058
|
caseSensitive?: boolean | undefined;
|
|
11033
11059
|
autonumberFormat?: string | undefined;
|
|
11034
11060
|
}>;
|
|
11061
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
11062
|
+
_lockReason?: string | undefined;
|
|
11063
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
11064
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
11065
|
+
_packageId?: string | undefined;
|
|
11066
|
+
_packageVersion?: string | undefined;
|
|
11035
11067
|
label?: string | undefined;
|
|
11036
11068
|
pluralLabel?: string | undefined;
|
|
11037
11069
|
description?: string | undefined;
|
|
@@ -11177,7 +11209,7 @@ declare const SysOrganization: Omit<{
|
|
|
11177
11209
|
wrap?: boolean | undefined;
|
|
11178
11210
|
type?: string | undefined;
|
|
11179
11211
|
pinned?: "left" | "right" | undefined;
|
|
11180
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
11212
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
11181
11213
|
link?: boolean | undefined;
|
|
11182
11214
|
action?: string | undefined;
|
|
11183
11215
|
}[];
|
|
@@ -11226,7 +11258,7 @@ declare const SysOrganization: Omit<{
|
|
|
11226
11258
|
bordered?: boolean | undefined;
|
|
11227
11259
|
compactToolbar?: boolean | undefined;
|
|
11228
11260
|
selection?: {
|
|
11229
|
-
type: "
|
|
11261
|
+
type: "none" | "multiple" | "single";
|
|
11230
11262
|
} | undefined;
|
|
11231
11263
|
navigation?: {
|
|
11232
11264
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -11421,7 +11453,7 @@ declare const SysOrganization: Omit<{
|
|
|
11421
11453
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
11422
11454
|
} | undefined;
|
|
11423
11455
|
recordTypes?: string[] | undefined;
|
|
11424
|
-
sharingModel?: "
|
|
11456
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
11425
11457
|
publicSharing?: {
|
|
11426
11458
|
enabled: boolean;
|
|
11427
11459
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -11464,7 +11496,7 @@ declare const SysOrganization: Omit<{
|
|
|
11464
11496
|
field?: string | undefined;
|
|
11465
11497
|
objectOverride?: string | undefined;
|
|
11466
11498
|
label?: string | undefined;
|
|
11467
|
-
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;
|
|
11499
|
+
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;
|
|
11468
11500
|
options?: {
|
|
11469
11501
|
label: string;
|
|
11470
11502
|
value: string;
|
|
@@ -12915,7 +12947,7 @@ declare const SysMember: Omit<{
|
|
|
12915
12947
|
abstract: boolean;
|
|
12916
12948
|
datasource: string;
|
|
12917
12949
|
fields: Record<string, {
|
|
12918
|
-
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";
|
|
12950
|
+
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";
|
|
12919
12951
|
required: boolean;
|
|
12920
12952
|
searchable: boolean;
|
|
12921
12953
|
multiple: boolean;
|
|
@@ -13054,7 +13086,7 @@ declare const SysMember: Omit<{
|
|
|
13054
13086
|
autoRotate: boolean;
|
|
13055
13087
|
} | undefined;
|
|
13056
13088
|
};
|
|
13057
|
-
scope: "
|
|
13089
|
+
scope: "record" | "field" | "table" | "database";
|
|
13058
13090
|
deterministicEncryption: boolean;
|
|
13059
13091
|
searchableEncryption: boolean;
|
|
13060
13092
|
} | undefined;
|
|
@@ -13105,6 +13137,12 @@ declare const SysMember: Omit<{
|
|
|
13105
13137
|
caseSensitive?: boolean | undefined;
|
|
13106
13138
|
autonumberFormat?: string | undefined;
|
|
13107
13139
|
}>;
|
|
13140
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
13141
|
+
_lockReason?: string | undefined;
|
|
13142
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
13143
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
13144
|
+
_packageId?: string | undefined;
|
|
13145
|
+
_packageVersion?: string | undefined;
|
|
13108
13146
|
label?: string | undefined;
|
|
13109
13147
|
pluralLabel?: string | undefined;
|
|
13110
13148
|
description?: string | undefined;
|
|
@@ -13250,7 +13288,7 @@ declare const SysMember: Omit<{
|
|
|
13250
13288
|
wrap?: boolean | undefined;
|
|
13251
13289
|
type?: string | undefined;
|
|
13252
13290
|
pinned?: "left" | "right" | undefined;
|
|
13253
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
13291
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
13254
13292
|
link?: boolean | undefined;
|
|
13255
13293
|
action?: string | undefined;
|
|
13256
13294
|
}[];
|
|
@@ -13299,7 +13337,7 @@ declare const SysMember: Omit<{
|
|
|
13299
13337
|
bordered?: boolean | undefined;
|
|
13300
13338
|
compactToolbar?: boolean | undefined;
|
|
13301
13339
|
selection?: {
|
|
13302
|
-
type: "
|
|
13340
|
+
type: "none" | "multiple" | "single";
|
|
13303
13341
|
} | undefined;
|
|
13304
13342
|
navigation?: {
|
|
13305
13343
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -13494,7 +13532,7 @@ declare const SysMember: Omit<{
|
|
|
13494
13532
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
13495
13533
|
} | undefined;
|
|
13496
13534
|
recordTypes?: string[] | undefined;
|
|
13497
|
-
sharingModel?: "
|
|
13535
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
13498
13536
|
publicSharing?: {
|
|
13499
13537
|
enabled: boolean;
|
|
13500
13538
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -13537,7 +13575,7 @@ declare const SysMember: Omit<{
|
|
|
13537
13575
|
field?: string | undefined;
|
|
13538
13576
|
objectOverride?: string | undefined;
|
|
13539
13577
|
label?: string | undefined;
|
|
13540
|
-
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;
|
|
13578
|
+
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;
|
|
13541
13579
|
options?: {
|
|
13542
13580
|
label: string;
|
|
13543
13581
|
value: string;
|
|
@@ -14611,7 +14649,7 @@ declare const SysInvitation: Omit<{
|
|
|
14611
14649
|
abstract: boolean;
|
|
14612
14650
|
datasource: string;
|
|
14613
14651
|
fields: Record<string, {
|
|
14614
|
-
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";
|
|
14652
|
+
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";
|
|
14615
14653
|
required: boolean;
|
|
14616
14654
|
searchable: boolean;
|
|
14617
14655
|
multiple: boolean;
|
|
@@ -14750,7 +14788,7 @@ declare const SysInvitation: Omit<{
|
|
|
14750
14788
|
autoRotate: boolean;
|
|
14751
14789
|
} | undefined;
|
|
14752
14790
|
};
|
|
14753
|
-
scope: "
|
|
14791
|
+
scope: "record" | "field" | "table" | "database";
|
|
14754
14792
|
deterministicEncryption: boolean;
|
|
14755
14793
|
searchableEncryption: boolean;
|
|
14756
14794
|
} | undefined;
|
|
@@ -14801,6 +14839,12 @@ declare const SysInvitation: Omit<{
|
|
|
14801
14839
|
caseSensitive?: boolean | undefined;
|
|
14802
14840
|
autonumberFormat?: string | undefined;
|
|
14803
14841
|
}>;
|
|
14842
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
14843
|
+
_lockReason?: string | undefined;
|
|
14844
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
14845
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
14846
|
+
_packageId?: string | undefined;
|
|
14847
|
+
_packageVersion?: string | undefined;
|
|
14804
14848
|
label?: string | undefined;
|
|
14805
14849
|
pluralLabel?: string | undefined;
|
|
14806
14850
|
description?: string | undefined;
|
|
@@ -14946,7 +14990,7 @@ declare const SysInvitation: Omit<{
|
|
|
14946
14990
|
wrap?: boolean | undefined;
|
|
14947
14991
|
type?: string | undefined;
|
|
14948
14992
|
pinned?: "left" | "right" | undefined;
|
|
14949
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
14993
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
14950
14994
|
link?: boolean | undefined;
|
|
14951
14995
|
action?: string | undefined;
|
|
14952
14996
|
}[];
|
|
@@ -14995,7 +15039,7 @@ declare const SysInvitation: Omit<{
|
|
|
14995
15039
|
bordered?: boolean | undefined;
|
|
14996
15040
|
compactToolbar?: boolean | undefined;
|
|
14997
15041
|
selection?: {
|
|
14998
|
-
type: "
|
|
15042
|
+
type: "none" | "multiple" | "single";
|
|
14999
15043
|
} | undefined;
|
|
15000
15044
|
navigation?: {
|
|
15001
15045
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -15190,7 +15234,7 @@ declare const SysInvitation: Omit<{
|
|
|
15190
15234
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
15191
15235
|
} | undefined;
|
|
15192
15236
|
recordTypes?: string[] | undefined;
|
|
15193
|
-
sharingModel?: "
|
|
15237
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
15194
15238
|
publicSharing?: {
|
|
15195
15239
|
enabled: boolean;
|
|
15196
15240
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -15233,7 +15277,7 @@ declare const SysInvitation: Omit<{
|
|
|
15233
15277
|
field?: string | undefined;
|
|
15234
15278
|
objectOverride?: string | undefined;
|
|
15235
15279
|
label?: string | undefined;
|
|
15236
|
-
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;
|
|
15280
|
+
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;
|
|
15237
15281
|
options?: {
|
|
15238
15282
|
label: string;
|
|
15239
15283
|
value: string;
|
|
@@ -17075,7 +17119,7 @@ declare const SysTeam: Omit<{
|
|
|
17075
17119
|
abstract: boolean;
|
|
17076
17120
|
datasource: string;
|
|
17077
17121
|
fields: Record<string, {
|
|
17078
|
-
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";
|
|
17122
|
+
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";
|
|
17079
17123
|
required: boolean;
|
|
17080
17124
|
searchable: boolean;
|
|
17081
17125
|
multiple: boolean;
|
|
@@ -17214,7 +17258,7 @@ declare const SysTeam: Omit<{
|
|
|
17214
17258
|
autoRotate: boolean;
|
|
17215
17259
|
} | undefined;
|
|
17216
17260
|
};
|
|
17217
|
-
scope: "
|
|
17261
|
+
scope: "record" | "field" | "table" | "database";
|
|
17218
17262
|
deterministicEncryption: boolean;
|
|
17219
17263
|
searchableEncryption: boolean;
|
|
17220
17264
|
} | undefined;
|
|
@@ -17265,6 +17309,12 @@ declare const SysTeam: Omit<{
|
|
|
17265
17309
|
caseSensitive?: boolean | undefined;
|
|
17266
17310
|
autonumberFormat?: string | undefined;
|
|
17267
17311
|
}>;
|
|
17312
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
17313
|
+
_lockReason?: string | undefined;
|
|
17314
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
17315
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
17316
|
+
_packageId?: string | undefined;
|
|
17317
|
+
_packageVersion?: string | undefined;
|
|
17268
17318
|
label?: string | undefined;
|
|
17269
17319
|
pluralLabel?: string | undefined;
|
|
17270
17320
|
description?: string | undefined;
|
|
@@ -17410,7 +17460,7 @@ declare const SysTeam: Omit<{
|
|
|
17410
17460
|
wrap?: boolean | undefined;
|
|
17411
17461
|
type?: string | undefined;
|
|
17412
17462
|
pinned?: "left" | "right" | undefined;
|
|
17413
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
17463
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
17414
17464
|
link?: boolean | undefined;
|
|
17415
17465
|
action?: string | undefined;
|
|
17416
17466
|
}[];
|
|
@@ -17459,7 +17509,7 @@ declare const SysTeam: Omit<{
|
|
|
17459
17509
|
bordered?: boolean | undefined;
|
|
17460
17510
|
compactToolbar?: boolean | undefined;
|
|
17461
17511
|
selection?: {
|
|
17462
|
-
type: "
|
|
17512
|
+
type: "none" | "multiple" | "single";
|
|
17463
17513
|
} | undefined;
|
|
17464
17514
|
navigation?: {
|
|
17465
17515
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -17654,7 +17704,7 @@ declare const SysTeam: Omit<{
|
|
|
17654
17704
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
17655
17705
|
} | undefined;
|
|
17656
17706
|
recordTypes?: string[] | undefined;
|
|
17657
|
-
sharingModel?: "
|
|
17707
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
17658
17708
|
publicSharing?: {
|
|
17659
17709
|
enabled: boolean;
|
|
17660
17710
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -17697,7 +17747,7 @@ declare const SysTeam: Omit<{
|
|
|
17697
17747
|
field?: string | undefined;
|
|
17698
17748
|
objectOverride?: string | undefined;
|
|
17699
17749
|
label?: string | undefined;
|
|
17700
|
-
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;
|
|
17750
|
+
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;
|
|
17701
17751
|
options?: {
|
|
17702
17752
|
label: string;
|
|
17703
17753
|
value: string;
|
|
@@ -18772,7 +18822,7 @@ declare const SysTeamMember: Omit<{
|
|
|
18772
18822
|
abstract: boolean;
|
|
18773
18823
|
datasource: string;
|
|
18774
18824
|
fields: Record<string, {
|
|
18775
|
-
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";
|
|
18825
|
+
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";
|
|
18776
18826
|
required: boolean;
|
|
18777
18827
|
searchable: boolean;
|
|
18778
18828
|
multiple: boolean;
|
|
@@ -18911,7 +18961,7 @@ declare const SysTeamMember: Omit<{
|
|
|
18911
18961
|
autoRotate: boolean;
|
|
18912
18962
|
} | undefined;
|
|
18913
18963
|
};
|
|
18914
|
-
scope: "
|
|
18964
|
+
scope: "record" | "field" | "table" | "database";
|
|
18915
18965
|
deterministicEncryption: boolean;
|
|
18916
18966
|
searchableEncryption: boolean;
|
|
18917
18967
|
} | undefined;
|
|
@@ -18962,6 +19012,12 @@ declare const SysTeamMember: Omit<{
|
|
|
18962
19012
|
caseSensitive?: boolean | undefined;
|
|
18963
19013
|
autonumberFormat?: string | undefined;
|
|
18964
19014
|
}>;
|
|
19015
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
19016
|
+
_lockReason?: string | undefined;
|
|
19017
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
19018
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
19019
|
+
_packageId?: string | undefined;
|
|
19020
|
+
_packageVersion?: string | undefined;
|
|
18965
19021
|
label?: string | undefined;
|
|
18966
19022
|
pluralLabel?: string | undefined;
|
|
18967
19023
|
description?: string | undefined;
|
|
@@ -19107,7 +19163,7 @@ declare const SysTeamMember: Omit<{
|
|
|
19107
19163
|
wrap?: boolean | undefined;
|
|
19108
19164
|
type?: string | undefined;
|
|
19109
19165
|
pinned?: "left" | "right" | undefined;
|
|
19110
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
19166
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
19111
19167
|
link?: boolean | undefined;
|
|
19112
19168
|
action?: string | undefined;
|
|
19113
19169
|
}[];
|
|
@@ -19156,7 +19212,7 @@ declare const SysTeamMember: Omit<{
|
|
|
19156
19212
|
bordered?: boolean | undefined;
|
|
19157
19213
|
compactToolbar?: boolean | undefined;
|
|
19158
19214
|
selection?: {
|
|
19159
|
-
type: "
|
|
19215
|
+
type: "none" | "multiple" | "single";
|
|
19160
19216
|
} | undefined;
|
|
19161
19217
|
navigation?: {
|
|
19162
19218
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -19351,7 +19407,7 @@ declare const SysTeamMember: Omit<{
|
|
|
19351
19407
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
19352
19408
|
} | undefined;
|
|
19353
19409
|
recordTypes?: string[] | undefined;
|
|
19354
|
-
sharingModel?: "
|
|
19410
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
19355
19411
|
publicSharing?: {
|
|
19356
19412
|
enabled: boolean;
|
|
19357
19413
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -19394,7 +19450,7 @@ declare const SysTeamMember: Omit<{
|
|
|
19394
19450
|
field?: string | undefined;
|
|
19395
19451
|
objectOverride?: string | undefined;
|
|
19396
19452
|
label?: string | undefined;
|
|
19397
|
-
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;
|
|
19453
|
+
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;
|
|
19398
19454
|
options?: {
|
|
19399
19455
|
label: string;
|
|
19400
19456
|
value: string;
|
|
@@ -20250,7 +20306,7 @@ declare const SysDepartment: Omit<{
|
|
|
20250
20306
|
abstract: boolean;
|
|
20251
20307
|
datasource: string;
|
|
20252
20308
|
fields: Record<string, {
|
|
20253
|
-
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";
|
|
20309
|
+
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";
|
|
20254
20310
|
required: boolean;
|
|
20255
20311
|
searchable: boolean;
|
|
20256
20312
|
multiple: boolean;
|
|
@@ -20389,7 +20445,7 @@ declare const SysDepartment: Omit<{
|
|
|
20389
20445
|
autoRotate: boolean;
|
|
20390
20446
|
} | undefined;
|
|
20391
20447
|
};
|
|
20392
|
-
scope: "
|
|
20448
|
+
scope: "record" | "field" | "table" | "database";
|
|
20393
20449
|
deterministicEncryption: boolean;
|
|
20394
20450
|
searchableEncryption: boolean;
|
|
20395
20451
|
} | undefined;
|
|
@@ -20440,6 +20496,12 @@ declare const SysDepartment: Omit<{
|
|
|
20440
20496
|
caseSensitive?: boolean | undefined;
|
|
20441
20497
|
autonumberFormat?: string | undefined;
|
|
20442
20498
|
}>;
|
|
20499
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
20500
|
+
_lockReason?: string | undefined;
|
|
20501
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
20502
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
20503
|
+
_packageId?: string | undefined;
|
|
20504
|
+
_packageVersion?: string | undefined;
|
|
20443
20505
|
label?: string | undefined;
|
|
20444
20506
|
pluralLabel?: string | undefined;
|
|
20445
20507
|
description?: string | undefined;
|
|
@@ -20585,7 +20647,7 @@ declare const SysDepartment: Omit<{
|
|
|
20585
20647
|
wrap?: boolean | undefined;
|
|
20586
20648
|
type?: string | undefined;
|
|
20587
20649
|
pinned?: "left" | "right" | undefined;
|
|
20588
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
20650
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
20589
20651
|
link?: boolean | undefined;
|
|
20590
20652
|
action?: string | undefined;
|
|
20591
20653
|
}[];
|
|
@@ -20634,7 +20696,7 @@ declare const SysDepartment: Omit<{
|
|
|
20634
20696
|
bordered?: boolean | undefined;
|
|
20635
20697
|
compactToolbar?: boolean | undefined;
|
|
20636
20698
|
selection?: {
|
|
20637
|
-
type: "
|
|
20699
|
+
type: "none" | "multiple" | "single";
|
|
20638
20700
|
} | undefined;
|
|
20639
20701
|
navigation?: {
|
|
20640
20702
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -20829,7 +20891,7 @@ declare const SysDepartment: Omit<{
|
|
|
20829
20891
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
20830
20892
|
} | undefined;
|
|
20831
20893
|
recordTypes?: string[] | undefined;
|
|
20832
|
-
sharingModel?: "
|
|
20894
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
20833
20895
|
publicSharing?: {
|
|
20834
20896
|
enabled: boolean;
|
|
20835
20897
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -20872,7 +20934,7 @@ declare const SysDepartment: Omit<{
|
|
|
20872
20934
|
field?: string | undefined;
|
|
20873
20935
|
objectOverride?: string | undefined;
|
|
20874
20936
|
label?: string | undefined;
|
|
20875
|
-
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;
|
|
20937
|
+
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;
|
|
20876
20938
|
options?: {
|
|
20877
20939
|
label: string;
|
|
20878
20940
|
value: string;
|
|
@@ -23349,7 +23411,7 @@ declare const SysDepartmentMember: Omit<{
|
|
|
23349
23411
|
abstract: boolean;
|
|
23350
23412
|
datasource: string;
|
|
23351
23413
|
fields: Record<string, {
|
|
23352
|
-
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";
|
|
23414
|
+
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";
|
|
23353
23415
|
required: boolean;
|
|
23354
23416
|
searchable: boolean;
|
|
23355
23417
|
multiple: boolean;
|
|
@@ -23488,7 +23550,7 @@ declare const SysDepartmentMember: Omit<{
|
|
|
23488
23550
|
autoRotate: boolean;
|
|
23489
23551
|
} | undefined;
|
|
23490
23552
|
};
|
|
23491
|
-
scope: "
|
|
23553
|
+
scope: "record" | "field" | "table" | "database";
|
|
23492
23554
|
deterministicEncryption: boolean;
|
|
23493
23555
|
searchableEncryption: boolean;
|
|
23494
23556
|
} | undefined;
|
|
@@ -23539,6 +23601,12 @@ declare const SysDepartmentMember: Omit<{
|
|
|
23539
23601
|
caseSensitive?: boolean | undefined;
|
|
23540
23602
|
autonumberFormat?: string | undefined;
|
|
23541
23603
|
}>;
|
|
23604
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
23605
|
+
_lockReason?: string | undefined;
|
|
23606
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
23607
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
23608
|
+
_packageId?: string | undefined;
|
|
23609
|
+
_packageVersion?: string | undefined;
|
|
23542
23610
|
label?: string | undefined;
|
|
23543
23611
|
pluralLabel?: string | undefined;
|
|
23544
23612
|
description?: string | undefined;
|
|
@@ -23684,7 +23752,7 @@ declare const SysDepartmentMember: Omit<{
|
|
|
23684
23752
|
wrap?: boolean | undefined;
|
|
23685
23753
|
type?: string | undefined;
|
|
23686
23754
|
pinned?: "left" | "right" | undefined;
|
|
23687
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
23755
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
23688
23756
|
link?: boolean | undefined;
|
|
23689
23757
|
action?: string | undefined;
|
|
23690
23758
|
}[];
|
|
@@ -23733,7 +23801,7 @@ declare const SysDepartmentMember: Omit<{
|
|
|
23733
23801
|
bordered?: boolean | undefined;
|
|
23734
23802
|
compactToolbar?: boolean | undefined;
|
|
23735
23803
|
selection?: {
|
|
23736
|
-
type: "
|
|
23804
|
+
type: "none" | "multiple" | "single";
|
|
23737
23805
|
} | undefined;
|
|
23738
23806
|
navigation?: {
|
|
23739
23807
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -23928,7 +23996,7 @@ declare const SysDepartmentMember: Omit<{
|
|
|
23928
23996
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
23929
23997
|
} | undefined;
|
|
23930
23998
|
recordTypes?: string[] | undefined;
|
|
23931
|
-
sharingModel?: "
|
|
23999
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
23932
24000
|
publicSharing?: {
|
|
23933
24001
|
enabled: boolean;
|
|
23934
24002
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -23971,7 +24039,7 @@ declare const SysDepartmentMember: Omit<{
|
|
|
23971
24039
|
field?: string | undefined;
|
|
23972
24040
|
objectOverride?: string | undefined;
|
|
23973
24041
|
label?: string | undefined;
|
|
23974
|
-
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;
|
|
24042
|
+
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;
|
|
23975
24043
|
options?: {
|
|
23976
24044
|
label: string;
|
|
23977
24045
|
value: string;
|
|
@@ -25654,7 +25722,7 @@ declare const SysApiKey: Omit<{
|
|
|
25654
25722
|
abstract: boolean;
|
|
25655
25723
|
datasource: string;
|
|
25656
25724
|
fields: Record<string, {
|
|
25657
|
-
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";
|
|
25725
|
+
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";
|
|
25658
25726
|
required: boolean;
|
|
25659
25727
|
searchable: boolean;
|
|
25660
25728
|
multiple: boolean;
|
|
@@ -25793,7 +25861,7 @@ declare const SysApiKey: Omit<{
|
|
|
25793
25861
|
autoRotate: boolean;
|
|
25794
25862
|
} | undefined;
|
|
25795
25863
|
};
|
|
25796
|
-
scope: "
|
|
25864
|
+
scope: "record" | "field" | "table" | "database";
|
|
25797
25865
|
deterministicEncryption: boolean;
|
|
25798
25866
|
searchableEncryption: boolean;
|
|
25799
25867
|
} | undefined;
|
|
@@ -25844,6 +25912,12 @@ declare const SysApiKey: Omit<{
|
|
|
25844
25912
|
caseSensitive?: boolean | undefined;
|
|
25845
25913
|
autonumberFormat?: string | undefined;
|
|
25846
25914
|
}>;
|
|
25915
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
25916
|
+
_lockReason?: string | undefined;
|
|
25917
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
25918
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
25919
|
+
_packageId?: string | undefined;
|
|
25920
|
+
_packageVersion?: string | undefined;
|
|
25847
25921
|
label?: string | undefined;
|
|
25848
25922
|
pluralLabel?: string | undefined;
|
|
25849
25923
|
description?: string | undefined;
|
|
@@ -25989,7 +26063,7 @@ declare const SysApiKey: Omit<{
|
|
|
25989
26063
|
wrap?: boolean | undefined;
|
|
25990
26064
|
type?: string | undefined;
|
|
25991
26065
|
pinned?: "left" | "right" | undefined;
|
|
25992
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
26066
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
25993
26067
|
link?: boolean | undefined;
|
|
25994
26068
|
action?: string | undefined;
|
|
25995
26069
|
}[];
|
|
@@ -26038,7 +26112,7 @@ declare const SysApiKey: Omit<{
|
|
|
26038
26112
|
bordered?: boolean | undefined;
|
|
26039
26113
|
compactToolbar?: boolean | undefined;
|
|
26040
26114
|
selection?: {
|
|
26041
|
-
type: "
|
|
26115
|
+
type: "none" | "multiple" | "single";
|
|
26042
26116
|
} | undefined;
|
|
26043
26117
|
navigation?: {
|
|
26044
26118
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -26233,7 +26307,7 @@ declare const SysApiKey: Omit<{
|
|
|
26233
26307
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
26234
26308
|
} | undefined;
|
|
26235
26309
|
recordTypes?: string[] | undefined;
|
|
26236
|
-
sharingModel?: "
|
|
26310
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
26237
26311
|
publicSharing?: {
|
|
26238
26312
|
enabled: boolean;
|
|
26239
26313
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -26276,7 +26350,7 @@ declare const SysApiKey: Omit<{
|
|
|
26276
26350
|
field?: string | undefined;
|
|
26277
26351
|
objectOverride?: string | undefined;
|
|
26278
26352
|
label?: string | undefined;
|
|
26279
|
-
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;
|
|
26353
|
+
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;
|
|
26280
26354
|
options?: {
|
|
26281
26355
|
label: string;
|
|
26282
26356
|
value: string;
|
|
@@ -28427,7 +28501,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
28427
28501
|
abstract: boolean;
|
|
28428
28502
|
datasource: string;
|
|
28429
28503
|
fields: Record<string, {
|
|
28430
|
-
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";
|
|
28504
|
+
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";
|
|
28431
28505
|
required: boolean;
|
|
28432
28506
|
searchable: boolean;
|
|
28433
28507
|
multiple: boolean;
|
|
@@ -28566,7 +28640,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
28566
28640
|
autoRotate: boolean;
|
|
28567
28641
|
} | undefined;
|
|
28568
28642
|
};
|
|
28569
|
-
scope: "
|
|
28643
|
+
scope: "record" | "field" | "table" | "database";
|
|
28570
28644
|
deterministicEncryption: boolean;
|
|
28571
28645
|
searchableEncryption: boolean;
|
|
28572
28646
|
} | undefined;
|
|
@@ -28617,6 +28691,12 @@ declare const SysTwoFactor: Omit<{
|
|
|
28617
28691
|
caseSensitive?: boolean | undefined;
|
|
28618
28692
|
autonumberFormat?: string | undefined;
|
|
28619
28693
|
}>;
|
|
28694
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
28695
|
+
_lockReason?: string | undefined;
|
|
28696
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
28697
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
28698
|
+
_packageId?: string | undefined;
|
|
28699
|
+
_packageVersion?: string | undefined;
|
|
28620
28700
|
label?: string | undefined;
|
|
28621
28701
|
pluralLabel?: string | undefined;
|
|
28622
28702
|
description?: string | undefined;
|
|
@@ -28762,7 +28842,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
28762
28842
|
wrap?: boolean | undefined;
|
|
28763
28843
|
type?: string | undefined;
|
|
28764
28844
|
pinned?: "left" | "right" | undefined;
|
|
28765
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
28845
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
28766
28846
|
link?: boolean | undefined;
|
|
28767
28847
|
action?: string | undefined;
|
|
28768
28848
|
}[];
|
|
@@ -28811,7 +28891,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
28811
28891
|
bordered?: boolean | undefined;
|
|
28812
28892
|
compactToolbar?: boolean | undefined;
|
|
28813
28893
|
selection?: {
|
|
28814
|
-
type: "
|
|
28894
|
+
type: "none" | "multiple" | "single";
|
|
28815
28895
|
} | undefined;
|
|
28816
28896
|
navigation?: {
|
|
28817
28897
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -29006,7 +29086,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
29006
29086
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
29007
29087
|
} | undefined;
|
|
29008
29088
|
recordTypes?: string[] | undefined;
|
|
29009
|
-
sharingModel?: "
|
|
29089
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
29010
29090
|
publicSharing?: {
|
|
29011
29091
|
enabled: boolean;
|
|
29012
29092
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -29049,7 +29129,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
29049
29129
|
field?: string | undefined;
|
|
29050
29130
|
objectOverride?: string | undefined;
|
|
29051
29131
|
label?: string | undefined;
|
|
29052
|
-
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;
|
|
29132
|
+
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;
|
|
29053
29133
|
options?: {
|
|
29054
29134
|
label: string;
|
|
29055
29135
|
value: string;
|
|
@@ -30498,7 +30578,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
30498
30578
|
abstract: boolean;
|
|
30499
30579
|
datasource: string;
|
|
30500
30580
|
fields: Record<string, {
|
|
30501
|
-
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";
|
|
30581
|
+
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";
|
|
30502
30582
|
required: boolean;
|
|
30503
30583
|
searchable: boolean;
|
|
30504
30584
|
multiple: boolean;
|
|
@@ -30637,7 +30717,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
30637
30717
|
autoRotate: boolean;
|
|
30638
30718
|
} | undefined;
|
|
30639
30719
|
};
|
|
30640
|
-
scope: "
|
|
30720
|
+
scope: "record" | "field" | "table" | "database";
|
|
30641
30721
|
deterministicEncryption: boolean;
|
|
30642
30722
|
searchableEncryption: boolean;
|
|
30643
30723
|
} | undefined;
|
|
@@ -30688,6 +30768,12 @@ declare const SysDeviceCode: Omit<{
|
|
|
30688
30768
|
caseSensitive?: boolean | undefined;
|
|
30689
30769
|
autonumberFormat?: string | undefined;
|
|
30690
30770
|
}>;
|
|
30771
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
30772
|
+
_lockReason?: string | undefined;
|
|
30773
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
30774
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
30775
|
+
_packageId?: string | undefined;
|
|
30776
|
+
_packageVersion?: string | undefined;
|
|
30691
30777
|
label?: string | undefined;
|
|
30692
30778
|
pluralLabel?: string | undefined;
|
|
30693
30779
|
description?: string | undefined;
|
|
@@ -30833,7 +30919,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
30833
30919
|
wrap?: boolean | undefined;
|
|
30834
30920
|
type?: string | undefined;
|
|
30835
30921
|
pinned?: "left" | "right" | undefined;
|
|
30836
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
30922
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
30837
30923
|
link?: boolean | undefined;
|
|
30838
30924
|
action?: string | undefined;
|
|
30839
30925
|
}[];
|
|
@@ -30882,7 +30968,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
30882
30968
|
bordered?: boolean | undefined;
|
|
30883
30969
|
compactToolbar?: boolean | undefined;
|
|
30884
30970
|
selection?: {
|
|
30885
|
-
type: "
|
|
30971
|
+
type: "none" | "multiple" | "single";
|
|
30886
30972
|
} | undefined;
|
|
30887
30973
|
navigation?: {
|
|
30888
30974
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -31077,7 +31163,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
31077
31163
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
31078
31164
|
} | undefined;
|
|
31079
31165
|
recordTypes?: string[] | undefined;
|
|
31080
|
-
sharingModel?: "
|
|
31166
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
31081
31167
|
publicSharing?: {
|
|
31082
31168
|
enabled: boolean;
|
|
31083
31169
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -31120,7 +31206,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
31120
31206
|
field?: string | undefined;
|
|
31121
31207
|
objectOverride?: string | undefined;
|
|
31122
31208
|
label?: string | undefined;
|
|
31123
|
-
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;
|
|
31209
|
+
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;
|
|
31124
31210
|
options?: {
|
|
31125
31211
|
label: string;
|
|
31126
31212
|
value: string;
|
|
@@ -33337,7 +33423,7 @@ declare const SysUserPreference: Omit<{
|
|
|
33337
33423
|
abstract: boolean;
|
|
33338
33424
|
datasource: string;
|
|
33339
33425
|
fields: Record<string, {
|
|
33340
|
-
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";
|
|
33426
|
+
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";
|
|
33341
33427
|
required: boolean;
|
|
33342
33428
|
searchable: boolean;
|
|
33343
33429
|
multiple: boolean;
|
|
@@ -33476,7 +33562,7 @@ declare const SysUserPreference: Omit<{
|
|
|
33476
33562
|
autoRotate: boolean;
|
|
33477
33563
|
} | undefined;
|
|
33478
33564
|
};
|
|
33479
|
-
scope: "
|
|
33565
|
+
scope: "record" | "field" | "table" | "database";
|
|
33480
33566
|
deterministicEncryption: boolean;
|
|
33481
33567
|
searchableEncryption: boolean;
|
|
33482
33568
|
} | undefined;
|
|
@@ -33527,6 +33613,12 @@ declare const SysUserPreference: Omit<{
|
|
|
33527
33613
|
caseSensitive?: boolean | undefined;
|
|
33528
33614
|
autonumberFormat?: string | undefined;
|
|
33529
33615
|
}>;
|
|
33616
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
33617
|
+
_lockReason?: string | undefined;
|
|
33618
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
33619
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
33620
|
+
_packageId?: string | undefined;
|
|
33621
|
+
_packageVersion?: string | undefined;
|
|
33530
33622
|
label?: string | undefined;
|
|
33531
33623
|
pluralLabel?: string | undefined;
|
|
33532
33624
|
description?: string | undefined;
|
|
@@ -33672,7 +33764,7 @@ declare const SysUserPreference: Omit<{
|
|
|
33672
33764
|
wrap?: boolean | undefined;
|
|
33673
33765
|
type?: string | undefined;
|
|
33674
33766
|
pinned?: "left" | "right" | undefined;
|
|
33675
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
33767
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
33676
33768
|
link?: boolean | undefined;
|
|
33677
33769
|
action?: string | undefined;
|
|
33678
33770
|
}[];
|
|
@@ -33721,7 +33813,7 @@ declare const SysUserPreference: Omit<{
|
|
|
33721
33813
|
bordered?: boolean | undefined;
|
|
33722
33814
|
compactToolbar?: boolean | undefined;
|
|
33723
33815
|
selection?: {
|
|
33724
|
-
type: "
|
|
33816
|
+
type: "none" | "multiple" | "single";
|
|
33725
33817
|
} | undefined;
|
|
33726
33818
|
navigation?: {
|
|
33727
33819
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -33916,7 +34008,7 @@ declare const SysUserPreference: Omit<{
|
|
|
33916
34008
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
33917
34009
|
} | undefined;
|
|
33918
34010
|
recordTypes?: string[] | undefined;
|
|
33919
|
-
sharingModel?: "
|
|
34011
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
33920
34012
|
publicSharing?: {
|
|
33921
34013
|
enabled: boolean;
|
|
33922
34014
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -33959,7 +34051,7 @@ declare const SysUserPreference: Omit<{
|
|
|
33959
34051
|
field?: string | undefined;
|
|
33960
34052
|
objectOverride?: string | undefined;
|
|
33961
34053
|
label?: string | undefined;
|
|
33962
|
-
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;
|
|
34054
|
+
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;
|
|
33963
34055
|
options?: {
|
|
33964
34056
|
label: string;
|
|
33965
34057
|
value: string;
|
|
@@ -35188,7 +35280,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
35188
35280
|
abstract: boolean;
|
|
35189
35281
|
datasource: string;
|
|
35190
35282
|
fields: Record<string, {
|
|
35191
|
-
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";
|
|
35283
|
+
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";
|
|
35192
35284
|
required: boolean;
|
|
35193
35285
|
searchable: boolean;
|
|
35194
35286
|
multiple: boolean;
|
|
@@ -35327,7 +35419,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
35327
35419
|
autoRotate: boolean;
|
|
35328
35420
|
} | undefined;
|
|
35329
35421
|
};
|
|
35330
|
-
scope: "
|
|
35422
|
+
scope: "record" | "field" | "table" | "database";
|
|
35331
35423
|
deterministicEncryption: boolean;
|
|
35332
35424
|
searchableEncryption: boolean;
|
|
35333
35425
|
} | undefined;
|
|
@@ -35378,6 +35470,12 @@ declare const SysOauthApplication: Omit<{
|
|
|
35378
35470
|
caseSensitive?: boolean | undefined;
|
|
35379
35471
|
autonumberFormat?: string | undefined;
|
|
35380
35472
|
}>;
|
|
35473
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
35474
|
+
_lockReason?: string | undefined;
|
|
35475
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
35476
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
35477
|
+
_packageId?: string | undefined;
|
|
35478
|
+
_packageVersion?: string | undefined;
|
|
35381
35479
|
label?: string | undefined;
|
|
35382
35480
|
pluralLabel?: string | undefined;
|
|
35383
35481
|
description?: string | undefined;
|
|
@@ -35523,7 +35621,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
35523
35621
|
wrap?: boolean | undefined;
|
|
35524
35622
|
type?: string | undefined;
|
|
35525
35623
|
pinned?: "left" | "right" | undefined;
|
|
35526
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
35624
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
35527
35625
|
link?: boolean | undefined;
|
|
35528
35626
|
action?: string | undefined;
|
|
35529
35627
|
}[];
|
|
@@ -35572,7 +35670,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
35572
35670
|
bordered?: boolean | undefined;
|
|
35573
35671
|
compactToolbar?: boolean | undefined;
|
|
35574
35672
|
selection?: {
|
|
35575
|
-
type: "
|
|
35673
|
+
type: "none" | "multiple" | "single";
|
|
35576
35674
|
} | undefined;
|
|
35577
35675
|
navigation?: {
|
|
35578
35676
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -35767,7 +35865,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
35767
35865
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
35768
35866
|
} | undefined;
|
|
35769
35867
|
recordTypes?: string[] | undefined;
|
|
35770
|
-
sharingModel?: "
|
|
35868
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
35771
35869
|
publicSharing?: {
|
|
35772
35870
|
enabled: boolean;
|
|
35773
35871
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -35810,7 +35908,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
35810
35908
|
field?: string | undefined;
|
|
35811
35909
|
objectOverride?: string | undefined;
|
|
35812
35910
|
label?: string | undefined;
|
|
35813
|
-
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;
|
|
35911
|
+
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;
|
|
35814
35912
|
options?: {
|
|
35815
35913
|
label: string;
|
|
35816
35914
|
value: string;
|
|
@@ -35936,7 +36034,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
35936
36034
|
readonly locations: ["list_toolbar"];
|
|
35937
36035
|
readonly type: "api";
|
|
35938
36036
|
readonly method: "POST";
|
|
35939
|
-
readonly target: "/api/v1/auth/
|
|
36037
|
+
readonly target: "/api/v1/auth/sys-oauth-application/register";
|
|
35940
36038
|
readonly refreshAfter: true;
|
|
35941
36039
|
readonly params: [{
|
|
35942
36040
|
readonly name: "name";
|
|
@@ -41406,7 +41504,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
41406
41504
|
abstract: boolean;
|
|
41407
41505
|
datasource: string;
|
|
41408
41506
|
fields: Record<string, {
|
|
41409
|
-
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";
|
|
41507
|
+
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";
|
|
41410
41508
|
required: boolean;
|
|
41411
41509
|
searchable: boolean;
|
|
41412
41510
|
multiple: boolean;
|
|
@@ -41545,7 +41643,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
41545
41643
|
autoRotate: boolean;
|
|
41546
41644
|
} | undefined;
|
|
41547
41645
|
};
|
|
41548
|
-
scope: "
|
|
41646
|
+
scope: "record" | "field" | "table" | "database";
|
|
41549
41647
|
deterministicEncryption: boolean;
|
|
41550
41648
|
searchableEncryption: boolean;
|
|
41551
41649
|
} | undefined;
|
|
@@ -41596,6 +41694,12 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
41596
41694
|
caseSensitive?: boolean | undefined;
|
|
41597
41695
|
autonumberFormat?: string | undefined;
|
|
41598
41696
|
}>;
|
|
41697
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
41698
|
+
_lockReason?: string | undefined;
|
|
41699
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
41700
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
41701
|
+
_packageId?: string | undefined;
|
|
41702
|
+
_packageVersion?: string | undefined;
|
|
41599
41703
|
label?: string | undefined;
|
|
41600
41704
|
pluralLabel?: string | undefined;
|
|
41601
41705
|
description?: string | undefined;
|
|
@@ -41741,7 +41845,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
41741
41845
|
wrap?: boolean | undefined;
|
|
41742
41846
|
type?: string | undefined;
|
|
41743
41847
|
pinned?: "left" | "right" | undefined;
|
|
41744
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
41848
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
41745
41849
|
link?: boolean | undefined;
|
|
41746
41850
|
action?: string | undefined;
|
|
41747
41851
|
}[];
|
|
@@ -41790,7 +41894,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
41790
41894
|
bordered?: boolean | undefined;
|
|
41791
41895
|
compactToolbar?: boolean | undefined;
|
|
41792
41896
|
selection?: {
|
|
41793
|
-
type: "
|
|
41897
|
+
type: "none" | "multiple" | "single";
|
|
41794
41898
|
} | undefined;
|
|
41795
41899
|
navigation?: {
|
|
41796
41900
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -41985,7 +42089,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
41985
42089
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
41986
42090
|
} | undefined;
|
|
41987
42091
|
recordTypes?: string[] | undefined;
|
|
41988
|
-
sharingModel?: "
|
|
42092
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
41989
42093
|
publicSharing?: {
|
|
41990
42094
|
enabled: boolean;
|
|
41991
42095
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -42028,7 +42132,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
42028
42132
|
field?: string | undefined;
|
|
42029
42133
|
objectOverride?: string | undefined;
|
|
42030
42134
|
label?: string | undefined;
|
|
42031
|
-
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;
|
|
42135
|
+
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;
|
|
42032
42136
|
options?: {
|
|
42033
42137
|
label: string;
|
|
42034
42138
|
value: string;
|
|
@@ -43890,7 +43994,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
43890
43994
|
abstract: boolean;
|
|
43891
43995
|
datasource: string;
|
|
43892
43996
|
fields: Record<string, {
|
|
43893
|
-
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";
|
|
43997
|
+
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";
|
|
43894
43998
|
required: boolean;
|
|
43895
43999
|
searchable: boolean;
|
|
43896
44000
|
multiple: boolean;
|
|
@@ -44029,7 +44133,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
44029
44133
|
autoRotate: boolean;
|
|
44030
44134
|
} | undefined;
|
|
44031
44135
|
};
|
|
44032
|
-
scope: "
|
|
44136
|
+
scope: "record" | "field" | "table" | "database";
|
|
44033
44137
|
deterministicEncryption: boolean;
|
|
44034
44138
|
searchableEncryption: boolean;
|
|
44035
44139
|
} | undefined;
|
|
@@ -44080,6 +44184,12 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
44080
44184
|
caseSensitive?: boolean | undefined;
|
|
44081
44185
|
autonumberFormat?: string | undefined;
|
|
44082
44186
|
}>;
|
|
44187
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
44188
|
+
_lockReason?: string | undefined;
|
|
44189
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
44190
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
44191
|
+
_packageId?: string | undefined;
|
|
44192
|
+
_packageVersion?: string | undefined;
|
|
44083
44193
|
label?: string | undefined;
|
|
44084
44194
|
pluralLabel?: string | undefined;
|
|
44085
44195
|
description?: string | undefined;
|
|
@@ -44225,7 +44335,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
44225
44335
|
wrap?: boolean | undefined;
|
|
44226
44336
|
type?: string | undefined;
|
|
44227
44337
|
pinned?: "left" | "right" | undefined;
|
|
44228
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
44338
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
44229
44339
|
link?: boolean | undefined;
|
|
44230
44340
|
action?: string | undefined;
|
|
44231
44341
|
}[];
|
|
@@ -44274,7 +44384,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
44274
44384
|
bordered?: boolean | undefined;
|
|
44275
44385
|
compactToolbar?: boolean | undefined;
|
|
44276
44386
|
selection?: {
|
|
44277
|
-
type: "
|
|
44387
|
+
type: "none" | "multiple" | "single";
|
|
44278
44388
|
} | undefined;
|
|
44279
44389
|
navigation?: {
|
|
44280
44390
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -44469,7 +44579,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
44469
44579
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
44470
44580
|
} | undefined;
|
|
44471
44581
|
recordTypes?: string[] | undefined;
|
|
44472
|
-
sharingModel?: "
|
|
44582
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
44473
44583
|
publicSharing?: {
|
|
44474
44584
|
enabled: boolean;
|
|
44475
44585
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -44512,7 +44622,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
44512
44622
|
field?: string | undefined;
|
|
44513
44623
|
objectOverride?: string | undefined;
|
|
44514
44624
|
label?: string | undefined;
|
|
44515
|
-
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;
|
|
44625
|
+
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;
|
|
44516
44626
|
options?: {
|
|
44517
44627
|
label: string;
|
|
44518
44628
|
value: string;
|
|
@@ -46549,7 +46659,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
46549
46659
|
abstract: boolean;
|
|
46550
46660
|
datasource: string;
|
|
46551
46661
|
fields: Record<string, {
|
|
46552
|
-
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";
|
|
46662
|
+
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";
|
|
46553
46663
|
required: boolean;
|
|
46554
46664
|
searchable: boolean;
|
|
46555
46665
|
multiple: boolean;
|
|
@@ -46688,7 +46798,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
46688
46798
|
autoRotate: boolean;
|
|
46689
46799
|
} | undefined;
|
|
46690
46800
|
};
|
|
46691
|
-
scope: "
|
|
46801
|
+
scope: "record" | "field" | "table" | "database";
|
|
46692
46802
|
deterministicEncryption: boolean;
|
|
46693
46803
|
searchableEncryption: boolean;
|
|
46694
46804
|
} | undefined;
|
|
@@ -46739,6 +46849,12 @@ declare const SysOauthConsent: Omit<{
|
|
|
46739
46849
|
caseSensitive?: boolean | undefined;
|
|
46740
46850
|
autonumberFormat?: string | undefined;
|
|
46741
46851
|
}>;
|
|
46852
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
46853
|
+
_lockReason?: string | undefined;
|
|
46854
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
46855
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
46856
|
+
_packageId?: string | undefined;
|
|
46857
|
+
_packageVersion?: string | undefined;
|
|
46742
46858
|
label?: string | undefined;
|
|
46743
46859
|
pluralLabel?: string | undefined;
|
|
46744
46860
|
description?: string | undefined;
|
|
@@ -46884,7 +47000,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
46884
47000
|
wrap?: boolean | undefined;
|
|
46885
47001
|
type?: string | undefined;
|
|
46886
47002
|
pinned?: "left" | "right" | undefined;
|
|
46887
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
47003
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
46888
47004
|
link?: boolean | undefined;
|
|
46889
47005
|
action?: string | undefined;
|
|
46890
47006
|
}[];
|
|
@@ -46933,7 +47049,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
46933
47049
|
bordered?: boolean | undefined;
|
|
46934
47050
|
compactToolbar?: boolean | undefined;
|
|
46935
47051
|
selection?: {
|
|
46936
|
-
type: "
|
|
47052
|
+
type: "none" | "multiple" | "single";
|
|
46937
47053
|
} | undefined;
|
|
46938
47054
|
navigation?: {
|
|
46939
47055
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -47128,7 +47244,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
47128
47244
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
47129
47245
|
} | undefined;
|
|
47130
47246
|
recordTypes?: string[] | undefined;
|
|
47131
|
-
sharingModel?: "
|
|
47247
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
47132
47248
|
publicSharing?: {
|
|
47133
47249
|
enabled: boolean;
|
|
47134
47250
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -47171,7 +47287,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
47171
47287
|
field?: string | undefined;
|
|
47172
47288
|
objectOverride?: string | undefined;
|
|
47173
47289
|
label?: string | undefined;
|
|
47174
|
-
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;
|
|
47290
|
+
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;
|
|
47175
47291
|
options?: {
|
|
47176
47292
|
label: string;
|
|
47177
47293
|
value: string;
|
|
@@ -48501,7 +48617,7 @@ declare const SysJwks: Omit<{
|
|
|
48501
48617
|
abstract: boolean;
|
|
48502
48618
|
datasource: string;
|
|
48503
48619
|
fields: Record<string, {
|
|
48504
|
-
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";
|
|
48620
|
+
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";
|
|
48505
48621
|
required: boolean;
|
|
48506
48622
|
searchable: boolean;
|
|
48507
48623
|
multiple: boolean;
|
|
@@ -48640,7 +48756,7 @@ declare const SysJwks: Omit<{
|
|
|
48640
48756
|
autoRotate: boolean;
|
|
48641
48757
|
} | undefined;
|
|
48642
48758
|
};
|
|
48643
|
-
scope: "
|
|
48759
|
+
scope: "record" | "field" | "table" | "database";
|
|
48644
48760
|
deterministicEncryption: boolean;
|
|
48645
48761
|
searchableEncryption: boolean;
|
|
48646
48762
|
} | undefined;
|
|
@@ -48691,6 +48807,12 @@ declare const SysJwks: Omit<{
|
|
|
48691
48807
|
caseSensitive?: boolean | undefined;
|
|
48692
48808
|
autonumberFormat?: string | undefined;
|
|
48693
48809
|
}>;
|
|
48810
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
48811
|
+
_lockReason?: string | undefined;
|
|
48812
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
48813
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
48814
|
+
_packageId?: string | undefined;
|
|
48815
|
+
_packageVersion?: string | undefined;
|
|
48694
48816
|
label?: string | undefined;
|
|
48695
48817
|
pluralLabel?: string | undefined;
|
|
48696
48818
|
description?: string | undefined;
|
|
@@ -48836,7 +48958,7 @@ declare const SysJwks: Omit<{
|
|
|
48836
48958
|
wrap?: boolean | undefined;
|
|
48837
48959
|
type?: string | undefined;
|
|
48838
48960
|
pinned?: "left" | "right" | undefined;
|
|
48839
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
48961
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
48840
48962
|
link?: boolean | undefined;
|
|
48841
48963
|
action?: string | undefined;
|
|
48842
48964
|
}[];
|
|
@@ -48885,7 +49007,7 @@ declare const SysJwks: Omit<{
|
|
|
48885
49007
|
bordered?: boolean | undefined;
|
|
48886
49008
|
compactToolbar?: boolean | undefined;
|
|
48887
49009
|
selection?: {
|
|
48888
|
-
type: "
|
|
49010
|
+
type: "none" | "multiple" | "single";
|
|
48889
49011
|
} | undefined;
|
|
48890
49012
|
navigation?: {
|
|
48891
49013
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -49080,7 +49202,7 @@ declare const SysJwks: Omit<{
|
|
|
49080
49202
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
49081
49203
|
} | undefined;
|
|
49082
49204
|
recordTypes?: string[] | undefined;
|
|
49083
|
-
sharingModel?: "
|
|
49205
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
49084
49206
|
publicSharing?: {
|
|
49085
49207
|
enabled: boolean;
|
|
49086
49208
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -49123,7 +49245,7 @@ declare const SysJwks: Omit<{
|
|
|
49123
49245
|
field?: string | undefined;
|
|
49124
49246
|
objectOverride?: string | undefined;
|
|
49125
49247
|
label?: string | undefined;
|
|
49126
|
-
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;
|
|
49248
|
+
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;
|
|
49127
49249
|
options?: {
|
|
49128
49250
|
label: string;
|
|
49129
49251
|
value: string;
|