@objectstack/platform-objects 7.1.0 → 7.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/apps/index.d.mts +12 -0
- package/dist/apps/index.d.ts +12 -0
- package/dist/apps/index.js +48 -16
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +48 -16
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +240 -48
- package/dist/audit/index.d.ts +240 -48
- package/dist/identity/index.d.mts +386 -61
- package/dist/identity/index.d.ts +386 -61
- package/dist/identity/index.js +135 -1
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +135 -1
- 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 +327 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +327 -18
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +15 -3
- package/dist/integration/index.d.ts +15 -3
- package/dist/metadata/index.d.mts +3264 -7
- package/dist/metadata/index.d.ts +3264 -7
- 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/security/index.d.mts +115 -21
- package/dist/security/index.d.ts +115 -21
- package/dist/security/index.js +14 -0
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +14 -0
- package/dist/security/index.mjs.map +1 -1
- package/dist/system/index.d.mts +45 -9
- package/dist/system/index.d.ts +45 -9
- package/package.json +2 -2
package/dist/audit/index.d.ts
CHANGED
|
@@ -210,6 +210,13 @@ declare const SysAuditLog: 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;
|
|
219
|
+
_lockDocsUrl?: string | undefined;
|
|
213
220
|
label?: string | undefined;
|
|
214
221
|
pluralLabel?: string | undefined;
|
|
215
222
|
description?: string | undefined;
|
|
@@ -355,7 +362,7 @@ declare const SysAuditLog: Omit<{
|
|
|
355
362
|
wrap?: boolean | undefined;
|
|
356
363
|
type?: string | undefined;
|
|
357
364
|
pinned?: "left" | "right" | undefined;
|
|
358
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
365
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
359
366
|
link?: boolean | undefined;
|
|
360
367
|
action?: string | undefined;
|
|
361
368
|
}[];
|
|
@@ -404,7 +411,7 @@ declare const SysAuditLog: Omit<{
|
|
|
404
411
|
bordered?: boolean | undefined;
|
|
405
412
|
compactToolbar?: boolean | undefined;
|
|
406
413
|
selection?: {
|
|
407
|
-
type: "
|
|
414
|
+
type: "none" | "multiple" | "single";
|
|
408
415
|
} | undefined;
|
|
409
416
|
navigation?: {
|
|
410
417
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -599,7 +606,7 @@ declare const SysAuditLog: Omit<{
|
|
|
599
606
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
600
607
|
} | undefined;
|
|
601
608
|
recordTypes?: string[] | undefined;
|
|
602
|
-
sharingModel?: "
|
|
609
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
603
610
|
publicSharing?: {
|
|
604
611
|
enabled: boolean;
|
|
605
612
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -702,6 +709,11 @@ declare const SysAuditLog: Omit<{
|
|
|
702
709
|
role?: string | undefined;
|
|
703
710
|
} | undefined;
|
|
704
711
|
}[] | undefined;
|
|
712
|
+
protection?: {
|
|
713
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
714
|
+
reason: string;
|
|
715
|
+
docsUrl?: string | undefined;
|
|
716
|
+
} | undefined;
|
|
705
717
|
}, "fields"> & Pick<{
|
|
706
718
|
readonly name: "sys_audit_log";
|
|
707
719
|
readonly label: "Audit Log";
|
|
@@ -3152,6 +3164,13 @@ declare const SysPresence: Omit<{
|
|
|
3152
3164
|
caseSensitive?: boolean | undefined;
|
|
3153
3165
|
autonumberFormat?: string | undefined;
|
|
3154
3166
|
}>;
|
|
3167
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
3168
|
+
_lockReason?: string | undefined;
|
|
3169
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
3170
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3171
|
+
_packageId?: string | undefined;
|
|
3172
|
+
_packageVersion?: string | undefined;
|
|
3173
|
+
_lockDocsUrl?: string | undefined;
|
|
3155
3174
|
label?: string | undefined;
|
|
3156
3175
|
pluralLabel?: string | undefined;
|
|
3157
3176
|
description?: string | undefined;
|
|
@@ -3297,7 +3316,7 @@ declare const SysPresence: Omit<{
|
|
|
3297
3316
|
wrap?: boolean | undefined;
|
|
3298
3317
|
type?: string | undefined;
|
|
3299
3318
|
pinned?: "left" | "right" | undefined;
|
|
3300
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
3319
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
3301
3320
|
link?: boolean | undefined;
|
|
3302
3321
|
action?: string | undefined;
|
|
3303
3322
|
}[];
|
|
@@ -3346,7 +3365,7 @@ declare const SysPresence: Omit<{
|
|
|
3346
3365
|
bordered?: boolean | undefined;
|
|
3347
3366
|
compactToolbar?: boolean | undefined;
|
|
3348
3367
|
selection?: {
|
|
3349
|
-
type: "
|
|
3368
|
+
type: "none" | "multiple" | "single";
|
|
3350
3369
|
} | undefined;
|
|
3351
3370
|
navigation?: {
|
|
3352
3371
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -3541,7 +3560,7 @@ declare const SysPresence: Omit<{
|
|
|
3541
3560
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
3542
3561
|
} | undefined;
|
|
3543
3562
|
recordTypes?: string[] | undefined;
|
|
3544
|
-
sharingModel?: "
|
|
3563
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
3545
3564
|
publicSharing?: {
|
|
3546
3565
|
enabled: boolean;
|
|
3547
3566
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -3644,6 +3663,11 @@ declare const SysPresence: Omit<{
|
|
|
3644
3663
|
role?: string | undefined;
|
|
3645
3664
|
} | undefined;
|
|
3646
3665
|
}[] | undefined;
|
|
3666
|
+
protection?: {
|
|
3667
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
3668
|
+
reason: string;
|
|
3669
|
+
docsUrl?: string | undefined;
|
|
3670
|
+
} | undefined;
|
|
3647
3671
|
}, "fields"> & Pick<{
|
|
3648
3672
|
readonly name: "sys_presence";
|
|
3649
3673
|
readonly label: "Presence";
|
|
@@ -5812,6 +5836,13 @@ declare const SysActivity: Omit<{
|
|
|
5812
5836
|
caseSensitive?: boolean | undefined;
|
|
5813
5837
|
autonumberFormat?: string | undefined;
|
|
5814
5838
|
}>;
|
|
5839
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
5840
|
+
_lockReason?: string | undefined;
|
|
5841
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
5842
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
5843
|
+
_packageId?: string | undefined;
|
|
5844
|
+
_packageVersion?: string | undefined;
|
|
5845
|
+
_lockDocsUrl?: string | undefined;
|
|
5815
5846
|
label?: string | undefined;
|
|
5816
5847
|
pluralLabel?: string | undefined;
|
|
5817
5848
|
description?: string | undefined;
|
|
@@ -5957,7 +5988,7 @@ declare const SysActivity: Omit<{
|
|
|
5957
5988
|
wrap?: boolean | undefined;
|
|
5958
5989
|
type?: string | undefined;
|
|
5959
5990
|
pinned?: "left" | "right" | undefined;
|
|
5960
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
5991
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
5961
5992
|
link?: boolean | undefined;
|
|
5962
5993
|
action?: string | undefined;
|
|
5963
5994
|
}[];
|
|
@@ -6006,7 +6037,7 @@ declare const SysActivity: Omit<{
|
|
|
6006
6037
|
bordered?: boolean | undefined;
|
|
6007
6038
|
compactToolbar?: boolean | undefined;
|
|
6008
6039
|
selection?: {
|
|
6009
|
-
type: "
|
|
6040
|
+
type: "none" | "multiple" | "single";
|
|
6010
6041
|
} | undefined;
|
|
6011
6042
|
navigation?: {
|
|
6012
6043
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -6201,7 +6232,7 @@ declare const SysActivity: Omit<{
|
|
|
6201
6232
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
6202
6233
|
} | undefined;
|
|
6203
6234
|
recordTypes?: string[] | undefined;
|
|
6204
|
-
sharingModel?: "
|
|
6235
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
6205
6236
|
publicSharing?: {
|
|
6206
6237
|
enabled: boolean;
|
|
6207
6238
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -6304,6 +6335,11 @@ declare const SysActivity: Omit<{
|
|
|
6304
6335
|
role?: string | undefined;
|
|
6305
6336
|
} | undefined;
|
|
6306
6337
|
}[] | undefined;
|
|
6338
|
+
protection?: {
|
|
6339
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
6340
|
+
reason: string;
|
|
6341
|
+
docsUrl?: string | undefined;
|
|
6342
|
+
} | undefined;
|
|
6307
6343
|
}, "fields"> & Pick<{
|
|
6308
6344
|
readonly name: "sys_activity";
|
|
6309
6345
|
readonly label: "Activity";
|
|
@@ -8826,6 +8862,13 @@ declare const SysComment: Omit<{
|
|
|
8826
8862
|
caseSensitive?: boolean | undefined;
|
|
8827
8863
|
autonumberFormat?: string | undefined;
|
|
8828
8864
|
}>;
|
|
8865
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
8866
|
+
_lockReason?: string | undefined;
|
|
8867
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
8868
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
8869
|
+
_packageId?: string | undefined;
|
|
8870
|
+
_packageVersion?: string | undefined;
|
|
8871
|
+
_lockDocsUrl?: string | undefined;
|
|
8829
8872
|
label?: string | undefined;
|
|
8830
8873
|
pluralLabel?: string | undefined;
|
|
8831
8874
|
description?: string | undefined;
|
|
@@ -8971,7 +9014,7 @@ declare const SysComment: Omit<{
|
|
|
8971
9014
|
wrap?: boolean | undefined;
|
|
8972
9015
|
type?: string | undefined;
|
|
8973
9016
|
pinned?: "left" | "right" | undefined;
|
|
8974
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
9017
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
8975
9018
|
link?: boolean | undefined;
|
|
8976
9019
|
action?: string | undefined;
|
|
8977
9020
|
}[];
|
|
@@ -9020,7 +9063,7 @@ declare const SysComment: Omit<{
|
|
|
9020
9063
|
bordered?: boolean | undefined;
|
|
9021
9064
|
compactToolbar?: boolean | undefined;
|
|
9022
9065
|
selection?: {
|
|
9023
|
-
type: "
|
|
9066
|
+
type: "none" | "multiple" | "single";
|
|
9024
9067
|
} | undefined;
|
|
9025
9068
|
navigation?: {
|
|
9026
9069
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -9215,7 +9258,7 @@ declare const SysComment: Omit<{
|
|
|
9215
9258
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
9216
9259
|
} | undefined;
|
|
9217
9260
|
recordTypes?: string[] | undefined;
|
|
9218
|
-
sharingModel?: "
|
|
9261
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
9219
9262
|
publicSharing?: {
|
|
9220
9263
|
enabled: boolean;
|
|
9221
9264
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -9318,6 +9361,11 @@ declare const SysComment: Omit<{
|
|
|
9318
9361
|
role?: string | undefined;
|
|
9319
9362
|
} | undefined;
|
|
9320
9363
|
}[] | undefined;
|
|
9364
|
+
protection?: {
|
|
9365
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
9366
|
+
reason: string;
|
|
9367
|
+
docsUrl?: string | undefined;
|
|
9368
|
+
} | undefined;
|
|
9321
9369
|
}, "fields"> & Pick<{
|
|
9322
9370
|
readonly name: "sys_comment";
|
|
9323
9371
|
readonly label: "Comment";
|
|
@@ -12190,6 +12238,13 @@ declare const SysAttachment: Omit<{
|
|
|
12190
12238
|
caseSensitive?: boolean | undefined;
|
|
12191
12239
|
autonumberFormat?: string | undefined;
|
|
12192
12240
|
}>;
|
|
12241
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
12242
|
+
_lockReason?: string | undefined;
|
|
12243
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
12244
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
12245
|
+
_packageId?: string | undefined;
|
|
12246
|
+
_packageVersion?: string | undefined;
|
|
12247
|
+
_lockDocsUrl?: string | undefined;
|
|
12193
12248
|
label?: string | undefined;
|
|
12194
12249
|
pluralLabel?: string | undefined;
|
|
12195
12250
|
description?: string | undefined;
|
|
@@ -12335,7 +12390,7 @@ declare const SysAttachment: Omit<{
|
|
|
12335
12390
|
wrap?: boolean | undefined;
|
|
12336
12391
|
type?: string | undefined;
|
|
12337
12392
|
pinned?: "left" | "right" | undefined;
|
|
12338
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
12393
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
12339
12394
|
link?: boolean | undefined;
|
|
12340
12395
|
action?: string | undefined;
|
|
12341
12396
|
}[];
|
|
@@ -12384,7 +12439,7 @@ declare const SysAttachment: Omit<{
|
|
|
12384
12439
|
bordered?: boolean | undefined;
|
|
12385
12440
|
compactToolbar?: boolean | undefined;
|
|
12386
12441
|
selection?: {
|
|
12387
|
-
type: "
|
|
12442
|
+
type: "none" | "multiple" | "single";
|
|
12388
12443
|
} | undefined;
|
|
12389
12444
|
navigation?: {
|
|
12390
12445
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -12579,7 +12634,7 @@ declare const SysAttachment: Omit<{
|
|
|
12579
12634
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
12580
12635
|
} | undefined;
|
|
12581
12636
|
recordTypes?: string[] | undefined;
|
|
12582
|
-
sharingModel?: "
|
|
12637
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
12583
12638
|
publicSharing?: {
|
|
12584
12639
|
enabled: boolean;
|
|
12585
12640
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -12682,6 +12737,11 @@ declare const SysAttachment: Omit<{
|
|
|
12682
12737
|
role?: string | undefined;
|
|
12683
12738
|
} | undefined;
|
|
12684
12739
|
}[] | undefined;
|
|
12740
|
+
protection?: {
|
|
12741
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
12742
|
+
reason: string;
|
|
12743
|
+
docsUrl?: string | undefined;
|
|
12744
|
+
} | undefined;
|
|
12685
12745
|
}, "fields"> & Pick<{
|
|
12686
12746
|
readonly name: "sys_attachment";
|
|
12687
12747
|
readonly label: "Attachment";
|
|
@@ -15198,6 +15258,13 @@ declare const SysNotification: Omit<{
|
|
|
15198
15258
|
caseSensitive?: boolean | undefined;
|
|
15199
15259
|
autonumberFormat?: string | undefined;
|
|
15200
15260
|
}>;
|
|
15261
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
15262
|
+
_lockReason?: string | undefined;
|
|
15263
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
15264
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
15265
|
+
_packageId?: string | undefined;
|
|
15266
|
+
_packageVersion?: string | undefined;
|
|
15267
|
+
_lockDocsUrl?: string | undefined;
|
|
15201
15268
|
label?: string | undefined;
|
|
15202
15269
|
pluralLabel?: string | undefined;
|
|
15203
15270
|
description?: string | undefined;
|
|
@@ -15343,7 +15410,7 @@ declare const SysNotification: Omit<{
|
|
|
15343
15410
|
wrap?: boolean | undefined;
|
|
15344
15411
|
type?: string | undefined;
|
|
15345
15412
|
pinned?: "left" | "right" | undefined;
|
|
15346
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
15413
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
15347
15414
|
link?: boolean | undefined;
|
|
15348
15415
|
action?: string | undefined;
|
|
15349
15416
|
}[];
|
|
@@ -15392,7 +15459,7 @@ declare const SysNotification: Omit<{
|
|
|
15392
15459
|
bordered?: boolean | undefined;
|
|
15393
15460
|
compactToolbar?: boolean | undefined;
|
|
15394
15461
|
selection?: {
|
|
15395
|
-
type: "
|
|
15462
|
+
type: "none" | "multiple" | "single";
|
|
15396
15463
|
} | undefined;
|
|
15397
15464
|
navigation?: {
|
|
15398
15465
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -15587,7 +15654,7 @@ declare const SysNotification: Omit<{
|
|
|
15587
15654
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
15588
15655
|
} | undefined;
|
|
15589
15656
|
recordTypes?: string[] | undefined;
|
|
15590
|
-
sharingModel?: "
|
|
15657
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
15591
15658
|
publicSharing?: {
|
|
15592
15659
|
enabled: boolean;
|
|
15593
15660
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -15690,6 +15757,11 @@ declare const SysNotification: Omit<{
|
|
|
15690
15757
|
role?: string | undefined;
|
|
15691
15758
|
} | undefined;
|
|
15692
15759
|
}[] | undefined;
|
|
15760
|
+
protection?: {
|
|
15761
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
15762
|
+
reason: string;
|
|
15763
|
+
docsUrl?: string | undefined;
|
|
15764
|
+
} | undefined;
|
|
15693
15765
|
}, "fields"> & Pick<{
|
|
15694
15766
|
readonly name: "sys_notification";
|
|
15695
15767
|
readonly label: "Notification";
|
|
@@ -18496,6 +18568,13 @@ declare const SysEmail: Omit<{
|
|
|
18496
18568
|
caseSensitive?: boolean | undefined;
|
|
18497
18569
|
autonumberFormat?: string | undefined;
|
|
18498
18570
|
}>;
|
|
18571
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
18572
|
+
_lockReason?: string | undefined;
|
|
18573
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
18574
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
18575
|
+
_packageId?: string | undefined;
|
|
18576
|
+
_packageVersion?: string | undefined;
|
|
18577
|
+
_lockDocsUrl?: string | undefined;
|
|
18499
18578
|
label?: string | undefined;
|
|
18500
18579
|
pluralLabel?: string | undefined;
|
|
18501
18580
|
description?: string | undefined;
|
|
@@ -18641,7 +18720,7 @@ declare const SysEmail: Omit<{
|
|
|
18641
18720
|
wrap?: boolean | undefined;
|
|
18642
18721
|
type?: string | undefined;
|
|
18643
18722
|
pinned?: "left" | "right" | undefined;
|
|
18644
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
18723
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
18645
18724
|
link?: boolean | undefined;
|
|
18646
18725
|
action?: string | undefined;
|
|
18647
18726
|
}[];
|
|
@@ -18690,7 +18769,7 @@ declare const SysEmail: Omit<{
|
|
|
18690
18769
|
bordered?: boolean | undefined;
|
|
18691
18770
|
compactToolbar?: boolean | undefined;
|
|
18692
18771
|
selection?: {
|
|
18693
|
-
type: "
|
|
18772
|
+
type: "none" | "multiple" | "single";
|
|
18694
18773
|
} | undefined;
|
|
18695
18774
|
navigation?: {
|
|
18696
18775
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -18885,7 +18964,7 @@ declare const SysEmail: Omit<{
|
|
|
18885
18964
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
18886
18965
|
} | undefined;
|
|
18887
18966
|
recordTypes?: string[] | undefined;
|
|
18888
|
-
sharingModel?: "
|
|
18967
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
18889
18968
|
publicSharing?: {
|
|
18890
18969
|
enabled: boolean;
|
|
18891
18970
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -18988,6 +19067,11 @@ declare const SysEmail: Omit<{
|
|
|
18988
19067
|
role?: string | undefined;
|
|
18989
19068
|
} | undefined;
|
|
18990
19069
|
}[] | undefined;
|
|
19070
|
+
protection?: {
|
|
19071
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
19072
|
+
reason: string;
|
|
19073
|
+
docsUrl?: string | undefined;
|
|
19074
|
+
} | undefined;
|
|
18991
19075
|
}, "fields"> & Pick<{
|
|
18992
19076
|
readonly name: "sys_email";
|
|
18993
19077
|
readonly label: "Email";
|
|
@@ -22546,6 +22630,13 @@ declare const SysEmailTemplate: Omit<{
|
|
|
22546
22630
|
caseSensitive?: boolean | undefined;
|
|
22547
22631
|
autonumberFormat?: string | undefined;
|
|
22548
22632
|
}>;
|
|
22633
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
22634
|
+
_lockReason?: string | undefined;
|
|
22635
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
22636
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
22637
|
+
_packageId?: string | undefined;
|
|
22638
|
+
_packageVersion?: string | undefined;
|
|
22639
|
+
_lockDocsUrl?: string | undefined;
|
|
22549
22640
|
label?: string | undefined;
|
|
22550
22641
|
pluralLabel?: string | undefined;
|
|
22551
22642
|
description?: string | undefined;
|
|
@@ -22691,7 +22782,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
22691
22782
|
wrap?: boolean | undefined;
|
|
22692
22783
|
type?: string | undefined;
|
|
22693
22784
|
pinned?: "left" | "right" | undefined;
|
|
22694
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
22785
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
22695
22786
|
link?: boolean | undefined;
|
|
22696
22787
|
action?: string | undefined;
|
|
22697
22788
|
}[];
|
|
@@ -22740,7 +22831,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
22740
22831
|
bordered?: boolean | undefined;
|
|
22741
22832
|
compactToolbar?: boolean | undefined;
|
|
22742
22833
|
selection?: {
|
|
22743
|
-
type: "
|
|
22834
|
+
type: "none" | "multiple" | "single";
|
|
22744
22835
|
} | undefined;
|
|
22745
22836
|
navigation?: {
|
|
22746
22837
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -22935,7 +23026,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
22935
23026
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
22936
23027
|
} | undefined;
|
|
22937
23028
|
recordTypes?: string[] | undefined;
|
|
22938
|
-
sharingModel?: "
|
|
23029
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
22939
23030
|
publicSharing?: {
|
|
22940
23031
|
enabled: boolean;
|
|
22941
23032
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -23038,6 +23129,11 @@ declare const SysEmailTemplate: Omit<{
|
|
|
23038
23129
|
role?: string | undefined;
|
|
23039
23130
|
} | undefined;
|
|
23040
23131
|
}[] | undefined;
|
|
23132
|
+
protection?: {
|
|
23133
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
23134
|
+
reason: string;
|
|
23135
|
+
docsUrl?: string | undefined;
|
|
23136
|
+
} | undefined;
|
|
23041
23137
|
}, "fields"> & Pick<{
|
|
23042
23138
|
readonly name: "sys_email_template";
|
|
23043
23139
|
readonly label: "Email Template";
|
|
@@ -26260,6 +26356,13 @@ declare const SysSavedReport: Omit<{
|
|
|
26260
26356
|
caseSensitive?: boolean | undefined;
|
|
26261
26357
|
autonumberFormat?: string | undefined;
|
|
26262
26358
|
}>;
|
|
26359
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
26360
|
+
_lockReason?: string | undefined;
|
|
26361
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
26362
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
26363
|
+
_packageId?: string | undefined;
|
|
26364
|
+
_packageVersion?: string | undefined;
|
|
26365
|
+
_lockDocsUrl?: string | undefined;
|
|
26263
26366
|
label?: string | undefined;
|
|
26264
26367
|
pluralLabel?: string | undefined;
|
|
26265
26368
|
description?: string | undefined;
|
|
@@ -26405,7 +26508,7 @@ declare const SysSavedReport: Omit<{
|
|
|
26405
26508
|
wrap?: boolean | undefined;
|
|
26406
26509
|
type?: string | undefined;
|
|
26407
26510
|
pinned?: "left" | "right" | undefined;
|
|
26408
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
26511
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
26409
26512
|
link?: boolean | undefined;
|
|
26410
26513
|
action?: string | undefined;
|
|
26411
26514
|
}[];
|
|
@@ -26454,7 +26557,7 @@ declare const SysSavedReport: Omit<{
|
|
|
26454
26557
|
bordered?: boolean | undefined;
|
|
26455
26558
|
compactToolbar?: boolean | undefined;
|
|
26456
26559
|
selection?: {
|
|
26457
|
-
type: "
|
|
26560
|
+
type: "none" | "multiple" | "single";
|
|
26458
26561
|
} | undefined;
|
|
26459
26562
|
navigation?: {
|
|
26460
26563
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -26649,7 +26752,7 @@ declare const SysSavedReport: Omit<{
|
|
|
26649
26752
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
26650
26753
|
} | undefined;
|
|
26651
26754
|
recordTypes?: string[] | undefined;
|
|
26652
|
-
sharingModel?: "
|
|
26755
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
26653
26756
|
publicSharing?: {
|
|
26654
26757
|
enabled: boolean;
|
|
26655
26758
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -26752,6 +26855,11 @@ declare const SysSavedReport: Omit<{
|
|
|
26752
26855
|
role?: string | undefined;
|
|
26753
26856
|
} | undefined;
|
|
26754
26857
|
}[] | undefined;
|
|
26858
|
+
protection?: {
|
|
26859
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
26860
|
+
reason: string;
|
|
26861
|
+
docsUrl?: string | undefined;
|
|
26862
|
+
} | undefined;
|
|
26755
26863
|
}, "fields"> & Pick<{
|
|
26756
26864
|
readonly name: "sys_saved_report";
|
|
26757
26865
|
readonly label: "Saved Report";
|
|
@@ -28922,6 +29030,13 @@ declare const SysReportSchedule: Omit<{
|
|
|
28922
29030
|
caseSensitive?: boolean | undefined;
|
|
28923
29031
|
autonumberFormat?: string | undefined;
|
|
28924
29032
|
}>;
|
|
29033
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
29034
|
+
_lockReason?: string | undefined;
|
|
29035
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
29036
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
29037
|
+
_packageId?: string | undefined;
|
|
29038
|
+
_packageVersion?: string | undefined;
|
|
29039
|
+
_lockDocsUrl?: string | undefined;
|
|
28925
29040
|
label?: string | undefined;
|
|
28926
29041
|
pluralLabel?: string | undefined;
|
|
28927
29042
|
description?: string | undefined;
|
|
@@ -29067,7 +29182,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
29067
29182
|
wrap?: boolean | undefined;
|
|
29068
29183
|
type?: string | undefined;
|
|
29069
29184
|
pinned?: "left" | "right" | undefined;
|
|
29070
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
29185
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
29071
29186
|
link?: boolean | undefined;
|
|
29072
29187
|
action?: string | undefined;
|
|
29073
29188
|
}[];
|
|
@@ -29116,7 +29231,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
29116
29231
|
bordered?: boolean | undefined;
|
|
29117
29232
|
compactToolbar?: boolean | undefined;
|
|
29118
29233
|
selection?: {
|
|
29119
|
-
type: "
|
|
29234
|
+
type: "none" | "multiple" | "single";
|
|
29120
29235
|
} | undefined;
|
|
29121
29236
|
navigation?: {
|
|
29122
29237
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -29311,7 +29426,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
29311
29426
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
29312
29427
|
} | undefined;
|
|
29313
29428
|
recordTypes?: string[] | undefined;
|
|
29314
|
-
sharingModel?: "
|
|
29429
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
29315
29430
|
publicSharing?: {
|
|
29316
29431
|
enabled: boolean;
|
|
29317
29432
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -29414,6 +29529,11 @@ declare const SysReportSchedule: Omit<{
|
|
|
29414
29529
|
role?: string | undefined;
|
|
29415
29530
|
} | undefined;
|
|
29416
29531
|
}[] | undefined;
|
|
29532
|
+
protection?: {
|
|
29533
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
29534
|
+
reason: string;
|
|
29535
|
+
docsUrl?: string | undefined;
|
|
29536
|
+
} | undefined;
|
|
29417
29537
|
}, "fields"> & Pick<{
|
|
29418
29538
|
readonly name: "sys_report_schedule";
|
|
29419
29539
|
readonly label: "Report Schedule";
|
|
@@ -32623,6 +32743,13 @@ declare const SysApprovalProcess: Omit<{
|
|
|
32623
32743
|
caseSensitive?: boolean | undefined;
|
|
32624
32744
|
autonumberFormat?: string | undefined;
|
|
32625
32745
|
}>;
|
|
32746
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
32747
|
+
_lockReason?: string | undefined;
|
|
32748
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
32749
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
32750
|
+
_packageId?: string | undefined;
|
|
32751
|
+
_packageVersion?: string | undefined;
|
|
32752
|
+
_lockDocsUrl?: string | undefined;
|
|
32626
32753
|
label?: string | undefined;
|
|
32627
32754
|
pluralLabel?: string | undefined;
|
|
32628
32755
|
description?: string | undefined;
|
|
@@ -32768,7 +32895,7 @@ declare const SysApprovalProcess: Omit<{
|
|
|
32768
32895
|
wrap?: boolean | undefined;
|
|
32769
32896
|
type?: string | undefined;
|
|
32770
32897
|
pinned?: "left" | "right" | undefined;
|
|
32771
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
32898
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
32772
32899
|
link?: boolean | undefined;
|
|
32773
32900
|
action?: string | undefined;
|
|
32774
32901
|
}[];
|
|
@@ -32817,7 +32944,7 @@ declare const SysApprovalProcess: Omit<{
|
|
|
32817
32944
|
bordered?: boolean | undefined;
|
|
32818
32945
|
compactToolbar?: boolean | undefined;
|
|
32819
32946
|
selection?: {
|
|
32820
|
-
type: "
|
|
32947
|
+
type: "none" | "multiple" | "single";
|
|
32821
32948
|
} | undefined;
|
|
32822
32949
|
navigation?: {
|
|
32823
32950
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -33012,7 +33139,7 @@ declare const SysApprovalProcess: Omit<{
|
|
|
33012
33139
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
33013
33140
|
} | undefined;
|
|
33014
33141
|
recordTypes?: string[] | undefined;
|
|
33015
|
-
sharingModel?: "
|
|
33142
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
33016
33143
|
publicSharing?: {
|
|
33017
33144
|
enabled: boolean;
|
|
33018
33145
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -33115,6 +33242,11 @@ declare const SysApprovalProcess: Omit<{
|
|
|
33115
33242
|
role?: string | undefined;
|
|
33116
33243
|
} | undefined;
|
|
33117
33244
|
}[] | undefined;
|
|
33245
|
+
protection?: {
|
|
33246
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
33247
|
+
reason: string;
|
|
33248
|
+
docsUrl?: string | undefined;
|
|
33249
|
+
} | undefined;
|
|
33118
33250
|
}, "fields"> & Pick<{
|
|
33119
33251
|
readonly name: "sys_approval_process";
|
|
33120
33252
|
readonly label: "Approval Process";
|
|
@@ -35025,6 +35157,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
35025
35157
|
caseSensitive?: boolean | undefined;
|
|
35026
35158
|
autonumberFormat?: string | undefined;
|
|
35027
35159
|
}>;
|
|
35160
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
35161
|
+
_lockReason?: string | undefined;
|
|
35162
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
35163
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
35164
|
+
_packageId?: string | undefined;
|
|
35165
|
+
_packageVersion?: string | undefined;
|
|
35166
|
+
_lockDocsUrl?: string | undefined;
|
|
35028
35167
|
label?: string | undefined;
|
|
35029
35168
|
pluralLabel?: string | undefined;
|
|
35030
35169
|
description?: string | undefined;
|
|
@@ -35170,7 +35309,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
35170
35309
|
wrap?: boolean | undefined;
|
|
35171
35310
|
type?: string | undefined;
|
|
35172
35311
|
pinned?: "left" | "right" | undefined;
|
|
35173
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
35312
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
35174
35313
|
link?: boolean | undefined;
|
|
35175
35314
|
action?: string | undefined;
|
|
35176
35315
|
}[];
|
|
@@ -35219,7 +35358,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
35219
35358
|
bordered?: boolean | undefined;
|
|
35220
35359
|
compactToolbar?: boolean | undefined;
|
|
35221
35360
|
selection?: {
|
|
35222
|
-
type: "
|
|
35361
|
+
type: "none" | "multiple" | "single";
|
|
35223
35362
|
} | undefined;
|
|
35224
35363
|
navigation?: {
|
|
35225
35364
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -35414,7 +35553,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
35414
35553
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
35415
35554
|
} | undefined;
|
|
35416
35555
|
recordTypes?: string[] | undefined;
|
|
35417
|
-
sharingModel?: "
|
|
35556
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
35418
35557
|
publicSharing?: {
|
|
35419
35558
|
enabled: boolean;
|
|
35420
35559
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -35517,6 +35656,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
35517
35656
|
role?: string | undefined;
|
|
35518
35657
|
} | undefined;
|
|
35519
35658
|
}[] | undefined;
|
|
35659
|
+
protection?: {
|
|
35660
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
35661
|
+
reason: string;
|
|
35662
|
+
docsUrl?: string | undefined;
|
|
35663
|
+
} | undefined;
|
|
35520
35664
|
}, "fields"> & Pick<{
|
|
35521
35665
|
readonly name: "sys_approval_request";
|
|
35522
35666
|
readonly label: "Approval Request";
|
|
@@ -38642,6 +38786,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
38642
38786
|
caseSensitive?: boolean | undefined;
|
|
38643
38787
|
autonumberFormat?: string | undefined;
|
|
38644
38788
|
}>;
|
|
38789
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
38790
|
+
_lockReason?: string | undefined;
|
|
38791
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
38792
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
38793
|
+
_packageId?: string | undefined;
|
|
38794
|
+
_packageVersion?: string | undefined;
|
|
38795
|
+
_lockDocsUrl?: string | undefined;
|
|
38645
38796
|
label?: string | undefined;
|
|
38646
38797
|
pluralLabel?: string | undefined;
|
|
38647
38798
|
description?: string | undefined;
|
|
@@ -38787,7 +38938,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
38787
38938
|
wrap?: boolean | undefined;
|
|
38788
38939
|
type?: string | undefined;
|
|
38789
38940
|
pinned?: "left" | "right" | undefined;
|
|
38790
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
38941
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
38791
38942
|
link?: boolean | undefined;
|
|
38792
38943
|
action?: string | undefined;
|
|
38793
38944
|
}[];
|
|
@@ -38836,7 +38987,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
38836
38987
|
bordered?: boolean | undefined;
|
|
38837
38988
|
compactToolbar?: boolean | undefined;
|
|
38838
38989
|
selection?: {
|
|
38839
|
-
type: "
|
|
38990
|
+
type: "none" | "multiple" | "single";
|
|
38840
38991
|
} | undefined;
|
|
38841
38992
|
navigation?: {
|
|
38842
38993
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -39031,7 +39182,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
39031
39182
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
39032
39183
|
} | undefined;
|
|
39033
39184
|
recordTypes?: string[] | undefined;
|
|
39034
|
-
sharingModel?: "
|
|
39185
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
39035
39186
|
publicSharing?: {
|
|
39036
39187
|
enabled: boolean;
|
|
39037
39188
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -39134,6 +39285,11 @@ declare const SysApprovalAction: Omit<{
|
|
|
39134
39285
|
role?: string | undefined;
|
|
39135
39286
|
} | undefined;
|
|
39136
39287
|
}[] | undefined;
|
|
39288
|
+
protection?: {
|
|
39289
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
39290
|
+
reason: string;
|
|
39291
|
+
docsUrl?: string | undefined;
|
|
39292
|
+
} | undefined;
|
|
39137
39293
|
}, "fields"> & Pick<{
|
|
39138
39294
|
readonly name: "sys_approval_action";
|
|
39139
39295
|
readonly label: "Approval Action";
|
|
@@ -41006,6 +41162,13 @@ declare const SysJob: Omit<{
|
|
|
41006
41162
|
caseSensitive?: boolean | undefined;
|
|
41007
41163
|
autonumberFormat?: string | undefined;
|
|
41008
41164
|
}>;
|
|
41165
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
41166
|
+
_lockReason?: string | undefined;
|
|
41167
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
41168
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
41169
|
+
_packageId?: string | undefined;
|
|
41170
|
+
_packageVersion?: string | undefined;
|
|
41171
|
+
_lockDocsUrl?: string | undefined;
|
|
41009
41172
|
label?: string | undefined;
|
|
41010
41173
|
pluralLabel?: string | undefined;
|
|
41011
41174
|
description?: string | undefined;
|
|
@@ -41151,7 +41314,7 @@ declare const SysJob: Omit<{
|
|
|
41151
41314
|
wrap?: boolean | undefined;
|
|
41152
41315
|
type?: string | undefined;
|
|
41153
41316
|
pinned?: "left" | "right" | undefined;
|
|
41154
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
41317
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
41155
41318
|
link?: boolean | undefined;
|
|
41156
41319
|
action?: string | undefined;
|
|
41157
41320
|
}[];
|
|
@@ -41200,7 +41363,7 @@ declare const SysJob: Omit<{
|
|
|
41200
41363
|
bordered?: boolean | undefined;
|
|
41201
41364
|
compactToolbar?: boolean | undefined;
|
|
41202
41365
|
selection?: {
|
|
41203
|
-
type: "
|
|
41366
|
+
type: "none" | "multiple" | "single";
|
|
41204
41367
|
} | undefined;
|
|
41205
41368
|
navigation?: {
|
|
41206
41369
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -41395,7 +41558,7 @@ declare const SysJob: Omit<{
|
|
|
41395
41558
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
41396
41559
|
} | undefined;
|
|
41397
41560
|
recordTypes?: string[] | undefined;
|
|
41398
|
-
sharingModel?: "
|
|
41561
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
41399
41562
|
publicSharing?: {
|
|
41400
41563
|
enabled: boolean;
|
|
41401
41564
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -41498,6 +41661,11 @@ declare const SysJob: Omit<{
|
|
|
41498
41661
|
role?: string | undefined;
|
|
41499
41662
|
} | undefined;
|
|
41500
41663
|
}[] | undefined;
|
|
41664
|
+
protection?: {
|
|
41665
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
41666
|
+
reason: string;
|
|
41667
|
+
docsUrl?: string | undefined;
|
|
41668
|
+
} | undefined;
|
|
41501
41669
|
}, "fields"> & Pick<{
|
|
41502
41670
|
readonly name: "sys_job";
|
|
41503
41671
|
readonly label: "Background Job";
|
|
@@ -44004,6 +44172,13 @@ declare const SysJobRun: Omit<{
|
|
|
44004
44172
|
caseSensitive?: boolean | undefined;
|
|
44005
44173
|
autonumberFormat?: string | undefined;
|
|
44006
44174
|
}>;
|
|
44175
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
44176
|
+
_lockReason?: string | undefined;
|
|
44177
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
44178
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
44179
|
+
_packageId?: string | undefined;
|
|
44180
|
+
_packageVersion?: string | undefined;
|
|
44181
|
+
_lockDocsUrl?: string | undefined;
|
|
44007
44182
|
label?: string | undefined;
|
|
44008
44183
|
pluralLabel?: string | undefined;
|
|
44009
44184
|
description?: string | undefined;
|
|
@@ -44149,7 +44324,7 @@ declare const SysJobRun: Omit<{
|
|
|
44149
44324
|
wrap?: boolean | undefined;
|
|
44150
44325
|
type?: string | undefined;
|
|
44151
44326
|
pinned?: "left" | "right" | undefined;
|
|
44152
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
44327
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
44153
44328
|
link?: boolean | undefined;
|
|
44154
44329
|
action?: string | undefined;
|
|
44155
44330
|
}[];
|
|
@@ -44198,7 +44373,7 @@ declare const SysJobRun: Omit<{
|
|
|
44198
44373
|
bordered?: boolean | undefined;
|
|
44199
44374
|
compactToolbar?: boolean | undefined;
|
|
44200
44375
|
selection?: {
|
|
44201
|
-
type: "
|
|
44376
|
+
type: "none" | "multiple" | "single";
|
|
44202
44377
|
} | undefined;
|
|
44203
44378
|
navigation?: {
|
|
44204
44379
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -44393,7 +44568,7 @@ declare const SysJobRun: Omit<{
|
|
|
44393
44568
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
44394
44569
|
} | undefined;
|
|
44395
44570
|
recordTypes?: string[] | undefined;
|
|
44396
|
-
sharingModel?: "
|
|
44571
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
44397
44572
|
publicSharing?: {
|
|
44398
44573
|
enabled: boolean;
|
|
44399
44574
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -44496,6 +44671,11 @@ declare const SysJobRun: Omit<{
|
|
|
44496
44671
|
role?: string | undefined;
|
|
44497
44672
|
} | undefined;
|
|
44498
44673
|
}[] | undefined;
|
|
44674
|
+
protection?: {
|
|
44675
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
44676
|
+
reason: string;
|
|
44677
|
+
docsUrl?: string | undefined;
|
|
44678
|
+
} | undefined;
|
|
44499
44679
|
}, "fields"> & Pick<{
|
|
44500
44680
|
readonly name: "sys_job_run";
|
|
44501
44681
|
readonly label: "Job Run";
|
|
@@ -46485,6 +46665,13 @@ declare const SysJobQueue: Omit<{
|
|
|
46485
46665
|
caseSensitive?: boolean | undefined;
|
|
46486
46666
|
autonumberFormat?: string | undefined;
|
|
46487
46667
|
}>;
|
|
46668
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
46669
|
+
_lockReason?: string | undefined;
|
|
46670
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
46671
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
46672
|
+
_packageId?: string | undefined;
|
|
46673
|
+
_packageVersion?: string | undefined;
|
|
46674
|
+
_lockDocsUrl?: string | undefined;
|
|
46488
46675
|
label?: string | undefined;
|
|
46489
46676
|
pluralLabel?: string | undefined;
|
|
46490
46677
|
description?: string | undefined;
|
|
@@ -46630,7 +46817,7 @@ declare const SysJobQueue: Omit<{
|
|
|
46630
46817
|
wrap?: boolean | undefined;
|
|
46631
46818
|
type?: string | undefined;
|
|
46632
46819
|
pinned?: "left" | "right" | undefined;
|
|
46633
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
46820
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
46634
46821
|
link?: boolean | undefined;
|
|
46635
46822
|
action?: string | undefined;
|
|
46636
46823
|
}[];
|
|
@@ -46679,7 +46866,7 @@ declare const SysJobQueue: Omit<{
|
|
|
46679
46866
|
bordered?: boolean | undefined;
|
|
46680
46867
|
compactToolbar?: boolean | undefined;
|
|
46681
46868
|
selection?: {
|
|
46682
|
-
type: "
|
|
46869
|
+
type: "none" | "multiple" | "single";
|
|
46683
46870
|
} | undefined;
|
|
46684
46871
|
navigation?: {
|
|
46685
46872
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -46874,7 +47061,7 @@ declare const SysJobQueue: Omit<{
|
|
|
46874
47061
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
46875
47062
|
} | undefined;
|
|
46876
47063
|
recordTypes?: string[] | undefined;
|
|
46877
|
-
sharingModel?: "
|
|
47064
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
46878
47065
|
publicSharing?: {
|
|
46879
47066
|
enabled: boolean;
|
|
46880
47067
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -46977,6 +47164,11 @@ declare const SysJobQueue: Omit<{
|
|
|
46977
47164
|
role?: string | undefined;
|
|
46978
47165
|
} | undefined;
|
|
46979
47166
|
}[] | undefined;
|
|
47167
|
+
protection?: {
|
|
47168
|
+
lock: "full" | "none" | "no-overlay" | "no-delete";
|
|
47169
|
+
reason: string;
|
|
47170
|
+
docsUrl?: string | undefined;
|
|
47171
|
+
} | undefined;
|
|
46980
47172
|
}, "fields"> & Pick<{
|
|
46981
47173
|
readonly name: "sys_job_queue";
|
|
46982
47174
|
readonly label: "Job Queue Message";
|