@objectstack/platform-objects 7.1.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 +3 -0
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +3 -0
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +144 -48
- package/dist/audit/index.d.ts +144 -48
- package/dist/identity/index.d.mts +183 -61
- package/dist/identity/index.d.ts +183 -61
- package/dist/identity/index.js +4 -1
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +4 -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 +137 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +137 -2
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +9 -3
- package/dist/integration/index.d.ts +9 -3
- package/dist/metadata/index.d.mts +3246 -7
- package/dist/metadata/index.d.ts +3246 -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 +63 -21
- package/dist/security/index.d.ts +63 -21
- package/dist/system/index.d.mts +27 -9
- package/dist/system/index.d.ts +27 -9
- package/package.json +2 -2
package/dist/audit/index.d.mts
CHANGED
|
@@ -210,6 +210,12 @@ 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;
|
|
213
219
|
label?: string | undefined;
|
|
214
220
|
pluralLabel?: string | undefined;
|
|
215
221
|
description?: string | undefined;
|
|
@@ -355,7 +361,7 @@ declare const SysAuditLog: 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 SysAuditLog: 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 SysAuditLog: 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;
|
|
@@ -3152,6 +3158,12 @@ declare const SysPresence: Omit<{
|
|
|
3152
3158
|
caseSensitive?: boolean | undefined;
|
|
3153
3159
|
autonumberFormat?: string | undefined;
|
|
3154
3160
|
}>;
|
|
3161
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
3162
|
+
_lockReason?: string | undefined;
|
|
3163
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
3164
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3165
|
+
_packageId?: string | undefined;
|
|
3166
|
+
_packageVersion?: string | undefined;
|
|
3155
3167
|
label?: string | undefined;
|
|
3156
3168
|
pluralLabel?: string | undefined;
|
|
3157
3169
|
description?: string | undefined;
|
|
@@ -3297,7 +3309,7 @@ declare const SysPresence: Omit<{
|
|
|
3297
3309
|
wrap?: boolean | undefined;
|
|
3298
3310
|
type?: string | undefined;
|
|
3299
3311
|
pinned?: "left" | "right" | undefined;
|
|
3300
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
3312
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
3301
3313
|
link?: boolean | undefined;
|
|
3302
3314
|
action?: string | undefined;
|
|
3303
3315
|
}[];
|
|
@@ -3346,7 +3358,7 @@ declare const SysPresence: Omit<{
|
|
|
3346
3358
|
bordered?: boolean | undefined;
|
|
3347
3359
|
compactToolbar?: boolean | undefined;
|
|
3348
3360
|
selection?: {
|
|
3349
|
-
type: "
|
|
3361
|
+
type: "none" | "multiple" | "single";
|
|
3350
3362
|
} | undefined;
|
|
3351
3363
|
navigation?: {
|
|
3352
3364
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -3541,7 +3553,7 @@ declare const SysPresence: Omit<{
|
|
|
3541
3553
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
3542
3554
|
} | undefined;
|
|
3543
3555
|
recordTypes?: string[] | undefined;
|
|
3544
|
-
sharingModel?: "
|
|
3556
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
3545
3557
|
publicSharing?: {
|
|
3546
3558
|
enabled: boolean;
|
|
3547
3559
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -5812,6 +5824,12 @@ declare const SysActivity: Omit<{
|
|
|
5812
5824
|
caseSensitive?: boolean | undefined;
|
|
5813
5825
|
autonumberFormat?: string | undefined;
|
|
5814
5826
|
}>;
|
|
5827
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
5828
|
+
_lockReason?: string | undefined;
|
|
5829
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
5830
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
5831
|
+
_packageId?: string | undefined;
|
|
5832
|
+
_packageVersion?: string | undefined;
|
|
5815
5833
|
label?: string | undefined;
|
|
5816
5834
|
pluralLabel?: string | undefined;
|
|
5817
5835
|
description?: string | undefined;
|
|
@@ -5957,7 +5975,7 @@ declare const SysActivity: Omit<{
|
|
|
5957
5975
|
wrap?: boolean | undefined;
|
|
5958
5976
|
type?: string | undefined;
|
|
5959
5977
|
pinned?: "left" | "right" | undefined;
|
|
5960
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
5978
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
5961
5979
|
link?: boolean | undefined;
|
|
5962
5980
|
action?: string | undefined;
|
|
5963
5981
|
}[];
|
|
@@ -6006,7 +6024,7 @@ declare const SysActivity: Omit<{
|
|
|
6006
6024
|
bordered?: boolean | undefined;
|
|
6007
6025
|
compactToolbar?: boolean | undefined;
|
|
6008
6026
|
selection?: {
|
|
6009
|
-
type: "
|
|
6027
|
+
type: "none" | "multiple" | "single";
|
|
6010
6028
|
} | undefined;
|
|
6011
6029
|
navigation?: {
|
|
6012
6030
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -6201,7 +6219,7 @@ declare const SysActivity: Omit<{
|
|
|
6201
6219
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
6202
6220
|
} | undefined;
|
|
6203
6221
|
recordTypes?: string[] | undefined;
|
|
6204
|
-
sharingModel?: "
|
|
6222
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
6205
6223
|
publicSharing?: {
|
|
6206
6224
|
enabled: boolean;
|
|
6207
6225
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -8826,6 +8844,12 @@ declare const SysComment: Omit<{
|
|
|
8826
8844
|
caseSensitive?: boolean | undefined;
|
|
8827
8845
|
autonumberFormat?: string | undefined;
|
|
8828
8846
|
}>;
|
|
8847
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
8848
|
+
_lockReason?: string | undefined;
|
|
8849
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
8850
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
8851
|
+
_packageId?: string | undefined;
|
|
8852
|
+
_packageVersion?: string | undefined;
|
|
8829
8853
|
label?: string | undefined;
|
|
8830
8854
|
pluralLabel?: string | undefined;
|
|
8831
8855
|
description?: string | undefined;
|
|
@@ -8971,7 +8995,7 @@ declare const SysComment: Omit<{
|
|
|
8971
8995
|
wrap?: boolean | undefined;
|
|
8972
8996
|
type?: string | undefined;
|
|
8973
8997
|
pinned?: "left" | "right" | undefined;
|
|
8974
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
8998
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
8975
8999
|
link?: boolean | undefined;
|
|
8976
9000
|
action?: string | undefined;
|
|
8977
9001
|
}[];
|
|
@@ -9020,7 +9044,7 @@ declare const SysComment: Omit<{
|
|
|
9020
9044
|
bordered?: boolean | undefined;
|
|
9021
9045
|
compactToolbar?: boolean | undefined;
|
|
9022
9046
|
selection?: {
|
|
9023
|
-
type: "
|
|
9047
|
+
type: "none" | "multiple" | "single";
|
|
9024
9048
|
} | undefined;
|
|
9025
9049
|
navigation?: {
|
|
9026
9050
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -9215,7 +9239,7 @@ declare const SysComment: Omit<{
|
|
|
9215
9239
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
9216
9240
|
} | undefined;
|
|
9217
9241
|
recordTypes?: string[] | undefined;
|
|
9218
|
-
sharingModel?: "
|
|
9242
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
9219
9243
|
publicSharing?: {
|
|
9220
9244
|
enabled: boolean;
|
|
9221
9245
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -12190,6 +12214,12 @@ declare const SysAttachment: Omit<{
|
|
|
12190
12214
|
caseSensitive?: boolean | undefined;
|
|
12191
12215
|
autonumberFormat?: string | undefined;
|
|
12192
12216
|
}>;
|
|
12217
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
12218
|
+
_lockReason?: string | undefined;
|
|
12219
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
12220
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
12221
|
+
_packageId?: string | undefined;
|
|
12222
|
+
_packageVersion?: string | undefined;
|
|
12193
12223
|
label?: string | undefined;
|
|
12194
12224
|
pluralLabel?: string | undefined;
|
|
12195
12225
|
description?: string | undefined;
|
|
@@ -12335,7 +12365,7 @@ declare const SysAttachment: Omit<{
|
|
|
12335
12365
|
wrap?: boolean | undefined;
|
|
12336
12366
|
type?: string | undefined;
|
|
12337
12367
|
pinned?: "left" | "right" | undefined;
|
|
12338
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
12368
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
12339
12369
|
link?: boolean | undefined;
|
|
12340
12370
|
action?: string | undefined;
|
|
12341
12371
|
}[];
|
|
@@ -12384,7 +12414,7 @@ declare const SysAttachment: Omit<{
|
|
|
12384
12414
|
bordered?: boolean | undefined;
|
|
12385
12415
|
compactToolbar?: boolean | undefined;
|
|
12386
12416
|
selection?: {
|
|
12387
|
-
type: "
|
|
12417
|
+
type: "none" | "multiple" | "single";
|
|
12388
12418
|
} | undefined;
|
|
12389
12419
|
navigation?: {
|
|
12390
12420
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -12579,7 +12609,7 @@ declare const SysAttachment: Omit<{
|
|
|
12579
12609
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
12580
12610
|
} | undefined;
|
|
12581
12611
|
recordTypes?: string[] | undefined;
|
|
12582
|
-
sharingModel?: "
|
|
12612
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
12583
12613
|
publicSharing?: {
|
|
12584
12614
|
enabled: boolean;
|
|
12585
12615
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -15198,6 +15228,12 @@ declare const SysNotification: Omit<{
|
|
|
15198
15228
|
caseSensitive?: boolean | undefined;
|
|
15199
15229
|
autonumberFormat?: string | undefined;
|
|
15200
15230
|
}>;
|
|
15231
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
15232
|
+
_lockReason?: string | undefined;
|
|
15233
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
15234
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
15235
|
+
_packageId?: string | undefined;
|
|
15236
|
+
_packageVersion?: string | undefined;
|
|
15201
15237
|
label?: string | undefined;
|
|
15202
15238
|
pluralLabel?: string | undefined;
|
|
15203
15239
|
description?: string | undefined;
|
|
@@ -15343,7 +15379,7 @@ declare const SysNotification: Omit<{
|
|
|
15343
15379
|
wrap?: boolean | undefined;
|
|
15344
15380
|
type?: string | undefined;
|
|
15345
15381
|
pinned?: "left" | "right" | undefined;
|
|
15346
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
15382
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
15347
15383
|
link?: boolean | undefined;
|
|
15348
15384
|
action?: string | undefined;
|
|
15349
15385
|
}[];
|
|
@@ -15392,7 +15428,7 @@ declare const SysNotification: Omit<{
|
|
|
15392
15428
|
bordered?: boolean | undefined;
|
|
15393
15429
|
compactToolbar?: boolean | undefined;
|
|
15394
15430
|
selection?: {
|
|
15395
|
-
type: "
|
|
15431
|
+
type: "none" | "multiple" | "single";
|
|
15396
15432
|
} | undefined;
|
|
15397
15433
|
navigation?: {
|
|
15398
15434
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -15587,7 +15623,7 @@ declare const SysNotification: Omit<{
|
|
|
15587
15623
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
15588
15624
|
} | undefined;
|
|
15589
15625
|
recordTypes?: string[] | undefined;
|
|
15590
|
-
sharingModel?: "
|
|
15626
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
15591
15627
|
publicSharing?: {
|
|
15592
15628
|
enabled: boolean;
|
|
15593
15629
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -18496,6 +18532,12 @@ declare const SysEmail: Omit<{
|
|
|
18496
18532
|
caseSensitive?: boolean | undefined;
|
|
18497
18533
|
autonumberFormat?: string | undefined;
|
|
18498
18534
|
}>;
|
|
18535
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
18536
|
+
_lockReason?: string | undefined;
|
|
18537
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
18538
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
18539
|
+
_packageId?: string | undefined;
|
|
18540
|
+
_packageVersion?: string | undefined;
|
|
18499
18541
|
label?: string | undefined;
|
|
18500
18542
|
pluralLabel?: string | undefined;
|
|
18501
18543
|
description?: string | undefined;
|
|
@@ -18641,7 +18683,7 @@ declare const SysEmail: Omit<{
|
|
|
18641
18683
|
wrap?: boolean | undefined;
|
|
18642
18684
|
type?: string | undefined;
|
|
18643
18685
|
pinned?: "left" | "right" | undefined;
|
|
18644
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
18686
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
18645
18687
|
link?: boolean | undefined;
|
|
18646
18688
|
action?: string | undefined;
|
|
18647
18689
|
}[];
|
|
@@ -18690,7 +18732,7 @@ declare const SysEmail: Omit<{
|
|
|
18690
18732
|
bordered?: boolean | undefined;
|
|
18691
18733
|
compactToolbar?: boolean | undefined;
|
|
18692
18734
|
selection?: {
|
|
18693
|
-
type: "
|
|
18735
|
+
type: "none" | "multiple" | "single";
|
|
18694
18736
|
} | undefined;
|
|
18695
18737
|
navigation?: {
|
|
18696
18738
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -18885,7 +18927,7 @@ declare const SysEmail: Omit<{
|
|
|
18885
18927
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
18886
18928
|
} | undefined;
|
|
18887
18929
|
recordTypes?: string[] | undefined;
|
|
18888
|
-
sharingModel?: "
|
|
18930
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
18889
18931
|
publicSharing?: {
|
|
18890
18932
|
enabled: boolean;
|
|
18891
18933
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -22546,6 +22588,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
22546
22588
|
caseSensitive?: boolean | undefined;
|
|
22547
22589
|
autonumberFormat?: string | undefined;
|
|
22548
22590
|
}>;
|
|
22591
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
22592
|
+
_lockReason?: string | undefined;
|
|
22593
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
22594
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
22595
|
+
_packageId?: string | undefined;
|
|
22596
|
+
_packageVersion?: string | undefined;
|
|
22549
22597
|
label?: string | undefined;
|
|
22550
22598
|
pluralLabel?: string | undefined;
|
|
22551
22599
|
description?: string | undefined;
|
|
@@ -22691,7 +22739,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
22691
22739
|
wrap?: boolean | undefined;
|
|
22692
22740
|
type?: string | undefined;
|
|
22693
22741
|
pinned?: "left" | "right" | undefined;
|
|
22694
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
22742
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
22695
22743
|
link?: boolean | undefined;
|
|
22696
22744
|
action?: string | undefined;
|
|
22697
22745
|
}[];
|
|
@@ -22740,7 +22788,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
22740
22788
|
bordered?: boolean | undefined;
|
|
22741
22789
|
compactToolbar?: boolean | undefined;
|
|
22742
22790
|
selection?: {
|
|
22743
|
-
type: "
|
|
22791
|
+
type: "none" | "multiple" | "single";
|
|
22744
22792
|
} | undefined;
|
|
22745
22793
|
navigation?: {
|
|
22746
22794
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -22935,7 +22983,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
22935
22983
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
22936
22984
|
} | undefined;
|
|
22937
22985
|
recordTypes?: string[] | undefined;
|
|
22938
|
-
sharingModel?: "
|
|
22986
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
22939
22987
|
publicSharing?: {
|
|
22940
22988
|
enabled: boolean;
|
|
22941
22989
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -26260,6 +26308,12 @@ declare const SysSavedReport: Omit<{
|
|
|
26260
26308
|
caseSensitive?: boolean | undefined;
|
|
26261
26309
|
autonumberFormat?: string | undefined;
|
|
26262
26310
|
}>;
|
|
26311
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
26312
|
+
_lockReason?: string | undefined;
|
|
26313
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
26314
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
26315
|
+
_packageId?: string | undefined;
|
|
26316
|
+
_packageVersion?: string | undefined;
|
|
26263
26317
|
label?: string | undefined;
|
|
26264
26318
|
pluralLabel?: string | undefined;
|
|
26265
26319
|
description?: string | undefined;
|
|
@@ -26405,7 +26459,7 @@ declare const SysSavedReport: Omit<{
|
|
|
26405
26459
|
wrap?: boolean | undefined;
|
|
26406
26460
|
type?: string | undefined;
|
|
26407
26461
|
pinned?: "left" | "right" | undefined;
|
|
26408
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
26462
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
26409
26463
|
link?: boolean | undefined;
|
|
26410
26464
|
action?: string | undefined;
|
|
26411
26465
|
}[];
|
|
@@ -26454,7 +26508,7 @@ declare const SysSavedReport: Omit<{
|
|
|
26454
26508
|
bordered?: boolean | undefined;
|
|
26455
26509
|
compactToolbar?: boolean | undefined;
|
|
26456
26510
|
selection?: {
|
|
26457
|
-
type: "
|
|
26511
|
+
type: "none" | "multiple" | "single";
|
|
26458
26512
|
} | undefined;
|
|
26459
26513
|
navigation?: {
|
|
26460
26514
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -26649,7 +26703,7 @@ declare const SysSavedReport: Omit<{
|
|
|
26649
26703
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
26650
26704
|
} | undefined;
|
|
26651
26705
|
recordTypes?: string[] | undefined;
|
|
26652
|
-
sharingModel?: "
|
|
26706
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
26653
26707
|
publicSharing?: {
|
|
26654
26708
|
enabled: boolean;
|
|
26655
26709
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -28922,6 +28976,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
28922
28976
|
caseSensitive?: boolean | undefined;
|
|
28923
28977
|
autonumberFormat?: string | undefined;
|
|
28924
28978
|
}>;
|
|
28979
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
28980
|
+
_lockReason?: string | undefined;
|
|
28981
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
28982
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
28983
|
+
_packageId?: string | undefined;
|
|
28984
|
+
_packageVersion?: string | undefined;
|
|
28925
28985
|
label?: string | undefined;
|
|
28926
28986
|
pluralLabel?: string | undefined;
|
|
28927
28987
|
description?: string | undefined;
|
|
@@ -29067,7 +29127,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
29067
29127
|
wrap?: boolean | undefined;
|
|
29068
29128
|
type?: string | undefined;
|
|
29069
29129
|
pinned?: "left" | "right" | undefined;
|
|
29070
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
29130
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
29071
29131
|
link?: boolean | undefined;
|
|
29072
29132
|
action?: string | undefined;
|
|
29073
29133
|
}[];
|
|
@@ -29116,7 +29176,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
29116
29176
|
bordered?: boolean | undefined;
|
|
29117
29177
|
compactToolbar?: boolean | undefined;
|
|
29118
29178
|
selection?: {
|
|
29119
|
-
type: "
|
|
29179
|
+
type: "none" | "multiple" | "single";
|
|
29120
29180
|
} | undefined;
|
|
29121
29181
|
navigation?: {
|
|
29122
29182
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -29311,7 +29371,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
29311
29371
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
29312
29372
|
} | undefined;
|
|
29313
29373
|
recordTypes?: string[] | undefined;
|
|
29314
|
-
sharingModel?: "
|
|
29374
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
29315
29375
|
publicSharing?: {
|
|
29316
29376
|
enabled: boolean;
|
|
29317
29377
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -32623,6 +32683,12 @@ declare const SysApprovalProcess: Omit<{
|
|
|
32623
32683
|
caseSensitive?: boolean | undefined;
|
|
32624
32684
|
autonumberFormat?: string | undefined;
|
|
32625
32685
|
}>;
|
|
32686
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
32687
|
+
_lockReason?: string | undefined;
|
|
32688
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
32689
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
32690
|
+
_packageId?: string | undefined;
|
|
32691
|
+
_packageVersion?: string | undefined;
|
|
32626
32692
|
label?: string | undefined;
|
|
32627
32693
|
pluralLabel?: string | undefined;
|
|
32628
32694
|
description?: string | undefined;
|
|
@@ -32768,7 +32834,7 @@ declare const SysApprovalProcess: Omit<{
|
|
|
32768
32834
|
wrap?: boolean | undefined;
|
|
32769
32835
|
type?: string | undefined;
|
|
32770
32836
|
pinned?: "left" | "right" | undefined;
|
|
32771
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
32837
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
32772
32838
|
link?: boolean | undefined;
|
|
32773
32839
|
action?: string | undefined;
|
|
32774
32840
|
}[];
|
|
@@ -32817,7 +32883,7 @@ declare const SysApprovalProcess: Omit<{
|
|
|
32817
32883
|
bordered?: boolean | undefined;
|
|
32818
32884
|
compactToolbar?: boolean | undefined;
|
|
32819
32885
|
selection?: {
|
|
32820
|
-
type: "
|
|
32886
|
+
type: "none" | "multiple" | "single";
|
|
32821
32887
|
} | undefined;
|
|
32822
32888
|
navigation?: {
|
|
32823
32889
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -33012,7 +33078,7 @@ declare const SysApprovalProcess: Omit<{
|
|
|
33012
33078
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
33013
33079
|
} | undefined;
|
|
33014
33080
|
recordTypes?: string[] | undefined;
|
|
33015
|
-
sharingModel?: "
|
|
33081
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
33016
33082
|
publicSharing?: {
|
|
33017
33083
|
enabled: boolean;
|
|
33018
33084
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -35025,6 +35091,12 @@ declare const SysApprovalRequest: Omit<{
|
|
|
35025
35091
|
caseSensitive?: boolean | undefined;
|
|
35026
35092
|
autonumberFormat?: string | undefined;
|
|
35027
35093
|
}>;
|
|
35094
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
35095
|
+
_lockReason?: string | undefined;
|
|
35096
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
35097
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
35098
|
+
_packageId?: string | undefined;
|
|
35099
|
+
_packageVersion?: string | undefined;
|
|
35028
35100
|
label?: string | undefined;
|
|
35029
35101
|
pluralLabel?: string | undefined;
|
|
35030
35102
|
description?: string | undefined;
|
|
@@ -35170,7 +35242,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
35170
35242
|
wrap?: boolean | undefined;
|
|
35171
35243
|
type?: string | undefined;
|
|
35172
35244
|
pinned?: "left" | "right" | undefined;
|
|
35173
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
35245
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
35174
35246
|
link?: boolean | undefined;
|
|
35175
35247
|
action?: string | undefined;
|
|
35176
35248
|
}[];
|
|
@@ -35219,7 +35291,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
35219
35291
|
bordered?: boolean | undefined;
|
|
35220
35292
|
compactToolbar?: boolean | undefined;
|
|
35221
35293
|
selection?: {
|
|
35222
|
-
type: "
|
|
35294
|
+
type: "none" | "multiple" | "single";
|
|
35223
35295
|
} | undefined;
|
|
35224
35296
|
navigation?: {
|
|
35225
35297
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -35414,7 +35486,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
35414
35486
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
35415
35487
|
} | undefined;
|
|
35416
35488
|
recordTypes?: string[] | undefined;
|
|
35417
|
-
sharingModel?: "
|
|
35489
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
35418
35490
|
publicSharing?: {
|
|
35419
35491
|
enabled: boolean;
|
|
35420
35492
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -38642,6 +38714,12 @@ declare const SysApprovalAction: Omit<{
|
|
|
38642
38714
|
caseSensitive?: boolean | undefined;
|
|
38643
38715
|
autonumberFormat?: string | undefined;
|
|
38644
38716
|
}>;
|
|
38717
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
38718
|
+
_lockReason?: string | undefined;
|
|
38719
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
38720
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
38721
|
+
_packageId?: string | undefined;
|
|
38722
|
+
_packageVersion?: string | undefined;
|
|
38645
38723
|
label?: string | undefined;
|
|
38646
38724
|
pluralLabel?: string | undefined;
|
|
38647
38725
|
description?: string | undefined;
|
|
@@ -38787,7 +38865,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
38787
38865
|
wrap?: boolean | undefined;
|
|
38788
38866
|
type?: string | undefined;
|
|
38789
38867
|
pinned?: "left" | "right" | undefined;
|
|
38790
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
38868
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
38791
38869
|
link?: boolean | undefined;
|
|
38792
38870
|
action?: string | undefined;
|
|
38793
38871
|
}[];
|
|
@@ -38836,7 +38914,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
38836
38914
|
bordered?: boolean | undefined;
|
|
38837
38915
|
compactToolbar?: boolean | undefined;
|
|
38838
38916
|
selection?: {
|
|
38839
|
-
type: "
|
|
38917
|
+
type: "none" | "multiple" | "single";
|
|
38840
38918
|
} | undefined;
|
|
38841
38919
|
navigation?: {
|
|
38842
38920
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -39031,7 +39109,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
39031
39109
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
39032
39110
|
} | undefined;
|
|
39033
39111
|
recordTypes?: string[] | undefined;
|
|
39034
|
-
sharingModel?: "
|
|
39112
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
39035
39113
|
publicSharing?: {
|
|
39036
39114
|
enabled: boolean;
|
|
39037
39115
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -41006,6 +41084,12 @@ declare const SysJob: Omit<{
|
|
|
41006
41084
|
caseSensitive?: boolean | undefined;
|
|
41007
41085
|
autonumberFormat?: string | undefined;
|
|
41008
41086
|
}>;
|
|
41087
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
41088
|
+
_lockReason?: string | undefined;
|
|
41089
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
41090
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
41091
|
+
_packageId?: string | undefined;
|
|
41092
|
+
_packageVersion?: string | undefined;
|
|
41009
41093
|
label?: string | undefined;
|
|
41010
41094
|
pluralLabel?: string | undefined;
|
|
41011
41095
|
description?: string | undefined;
|
|
@@ -41151,7 +41235,7 @@ declare const SysJob: Omit<{
|
|
|
41151
41235
|
wrap?: boolean | undefined;
|
|
41152
41236
|
type?: string | undefined;
|
|
41153
41237
|
pinned?: "left" | "right" | undefined;
|
|
41154
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
41238
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
41155
41239
|
link?: boolean | undefined;
|
|
41156
41240
|
action?: string | undefined;
|
|
41157
41241
|
}[];
|
|
@@ -41200,7 +41284,7 @@ declare const SysJob: Omit<{
|
|
|
41200
41284
|
bordered?: boolean | undefined;
|
|
41201
41285
|
compactToolbar?: boolean | undefined;
|
|
41202
41286
|
selection?: {
|
|
41203
|
-
type: "
|
|
41287
|
+
type: "none" | "multiple" | "single";
|
|
41204
41288
|
} | undefined;
|
|
41205
41289
|
navigation?: {
|
|
41206
41290
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -41395,7 +41479,7 @@ declare const SysJob: Omit<{
|
|
|
41395
41479
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
41396
41480
|
} | undefined;
|
|
41397
41481
|
recordTypes?: string[] | undefined;
|
|
41398
|
-
sharingModel?: "
|
|
41482
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
41399
41483
|
publicSharing?: {
|
|
41400
41484
|
enabled: boolean;
|
|
41401
41485
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -44004,6 +44088,12 @@ declare const SysJobRun: Omit<{
|
|
|
44004
44088
|
caseSensitive?: boolean | undefined;
|
|
44005
44089
|
autonumberFormat?: string | undefined;
|
|
44006
44090
|
}>;
|
|
44091
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
44092
|
+
_lockReason?: string | undefined;
|
|
44093
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
44094
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
44095
|
+
_packageId?: string | undefined;
|
|
44096
|
+
_packageVersion?: string | undefined;
|
|
44007
44097
|
label?: string | undefined;
|
|
44008
44098
|
pluralLabel?: string | undefined;
|
|
44009
44099
|
description?: string | undefined;
|
|
@@ -44149,7 +44239,7 @@ declare const SysJobRun: Omit<{
|
|
|
44149
44239
|
wrap?: boolean | undefined;
|
|
44150
44240
|
type?: string | undefined;
|
|
44151
44241
|
pinned?: "left" | "right" | undefined;
|
|
44152
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
44242
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
44153
44243
|
link?: boolean | undefined;
|
|
44154
44244
|
action?: string | undefined;
|
|
44155
44245
|
}[];
|
|
@@ -44198,7 +44288,7 @@ declare const SysJobRun: Omit<{
|
|
|
44198
44288
|
bordered?: boolean | undefined;
|
|
44199
44289
|
compactToolbar?: boolean | undefined;
|
|
44200
44290
|
selection?: {
|
|
44201
|
-
type: "
|
|
44291
|
+
type: "none" | "multiple" | "single";
|
|
44202
44292
|
} | undefined;
|
|
44203
44293
|
navigation?: {
|
|
44204
44294
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -44393,7 +44483,7 @@ declare const SysJobRun: Omit<{
|
|
|
44393
44483
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
44394
44484
|
} | undefined;
|
|
44395
44485
|
recordTypes?: string[] | undefined;
|
|
44396
|
-
sharingModel?: "
|
|
44486
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
44397
44487
|
publicSharing?: {
|
|
44398
44488
|
enabled: boolean;
|
|
44399
44489
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -46485,6 +46575,12 @@ declare const SysJobQueue: Omit<{
|
|
|
46485
46575
|
caseSensitive?: boolean | undefined;
|
|
46486
46576
|
autonumberFormat?: string | undefined;
|
|
46487
46577
|
}>;
|
|
46578
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
46579
|
+
_lockReason?: string | undefined;
|
|
46580
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
46581
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
46582
|
+
_packageId?: string | undefined;
|
|
46583
|
+
_packageVersion?: string | undefined;
|
|
46488
46584
|
label?: string | undefined;
|
|
46489
46585
|
pluralLabel?: string | undefined;
|
|
46490
46586
|
description?: string | undefined;
|
|
@@ -46630,7 +46726,7 @@ declare const SysJobQueue: Omit<{
|
|
|
46630
46726
|
wrap?: boolean | undefined;
|
|
46631
46727
|
type?: string | undefined;
|
|
46632
46728
|
pinned?: "left" | "right" | undefined;
|
|
46633
|
-
summary?: "min" | "max" | "count" | "sum" | "avg" | "
|
|
46729
|
+
summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
|
|
46634
46730
|
link?: boolean | undefined;
|
|
46635
46731
|
action?: string | undefined;
|
|
46636
46732
|
}[];
|
|
@@ -46679,7 +46775,7 @@ declare const SysJobQueue: Omit<{
|
|
|
46679
46775
|
bordered?: boolean | undefined;
|
|
46680
46776
|
compactToolbar?: boolean | undefined;
|
|
46681
46777
|
selection?: {
|
|
46682
|
-
type: "
|
|
46778
|
+
type: "none" | "multiple" | "single";
|
|
46683
46779
|
} | undefined;
|
|
46684
46780
|
navigation?: {
|
|
46685
46781
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
@@ -46874,7 +46970,7 @@ declare const SysJobQueue: Omit<{
|
|
|
46874
46970
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
|
|
46875
46971
|
} | undefined;
|
|
46876
46972
|
recordTypes?: string[] | undefined;
|
|
46877
|
-
sharingModel?: "
|
|
46973
|
+
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
46878
46974
|
publicSharing?: {
|
|
46879
46975
|
enabled: boolean;
|
|
46880
46976
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|