@objectstack/platform-objects 12.6.0 → 13.0.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 +31 -11
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +31 -11
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +90 -30
- package/dist/audit/index.d.ts +90 -30
- package/dist/identity/index.d.mts +229 -81
- package/dist/identity/index.d.ts +229 -81
- package/dist/identity/index.js +64 -26
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +64 -26
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.js +104 -70
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +104 -70
- package/dist/index.mjs.map +1 -1
- package/dist/metadata-translations/index.js +0 -32
- package/dist/metadata-translations/index.js.map +1 -1
- package/dist/metadata-translations/index.mjs +0 -32
- package/dist/metadata-translations/index.mjs.map +1 -1
- package/dist/pages/index.d.mts +1 -1
- package/dist/pages/index.d.ts +1 -1
- package/dist/pages/index.js +1 -1
- package/dist/pages/index.js.map +1 -1
- package/dist/pages/index.mjs +1 -1
- package/dist/pages/index.mjs.map +1 -1
- package/dist/plugin.js +12 -40
- package/dist/plugin.js.map +1 -1
- package/dist/plugin.mjs +12 -40
- package/dist/plugin.mjs.map +1 -1
- package/dist/system/index.d.mts +30 -9
- package/dist/system/index.d.ts +30 -9
- package/dist/system/index.js +8 -0
- package/dist/system/index.js.map +1 -1
- package/dist/system/index.mjs +8 -0
- package/dist/system/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/audit/index.d.mts
CHANGED
|
@@ -319,7 +319,12 @@ declare const SysNotification: Omit<{
|
|
|
319
319
|
access?: {
|
|
320
320
|
default: "public" | "private";
|
|
321
321
|
} | undefined;
|
|
322
|
-
requiredPermissions?: string[] |
|
|
322
|
+
requiredPermissions?: string[] | {
|
|
323
|
+
read?: string[] | undefined;
|
|
324
|
+
create?: string[] | undefined;
|
|
325
|
+
update?: string[] | undefined;
|
|
326
|
+
delete?: string[] | undefined;
|
|
327
|
+
} | undefined;
|
|
323
328
|
softDelete?: {
|
|
324
329
|
enabled: boolean;
|
|
325
330
|
field: string;
|
|
@@ -665,9 +670,10 @@ declare const SysNotification: Omit<{
|
|
|
665
670
|
trash: boolean;
|
|
666
671
|
mru: boolean;
|
|
667
672
|
clone: boolean;
|
|
668
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
673
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
669
674
|
} | undefined;
|
|
670
|
-
sharingModel?: "
|
|
675
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
676
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
671
677
|
publicSharing?: {
|
|
672
678
|
enabled: boolean;
|
|
673
679
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -2821,7 +2827,12 @@ declare const SysAttachment: Omit<{
|
|
|
2821
2827
|
access?: {
|
|
2822
2828
|
default: "public" | "private";
|
|
2823
2829
|
} | undefined;
|
|
2824
|
-
requiredPermissions?: string[] |
|
|
2830
|
+
requiredPermissions?: string[] | {
|
|
2831
|
+
read?: string[] | undefined;
|
|
2832
|
+
create?: string[] | undefined;
|
|
2833
|
+
update?: string[] | undefined;
|
|
2834
|
+
delete?: string[] | undefined;
|
|
2835
|
+
} | undefined;
|
|
2825
2836
|
softDelete?: {
|
|
2826
2837
|
enabled: boolean;
|
|
2827
2838
|
field: string;
|
|
@@ -3167,9 +3178,10 @@ declare const SysAttachment: Omit<{
|
|
|
3167
3178
|
trash: boolean;
|
|
3168
3179
|
mru: boolean;
|
|
3169
3180
|
clone: boolean;
|
|
3170
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
3181
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
3171
3182
|
} | undefined;
|
|
3172
|
-
sharingModel?: "
|
|
3183
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
3184
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
3173
3185
|
publicSharing?: {
|
|
3174
3186
|
enabled: boolean;
|
|
3175
3187
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -6009,7 +6021,12 @@ declare const SysEmail: Omit<{
|
|
|
6009
6021
|
access?: {
|
|
6010
6022
|
default: "public" | "private";
|
|
6011
6023
|
} | undefined;
|
|
6012
|
-
requiredPermissions?: string[] |
|
|
6024
|
+
requiredPermissions?: string[] | {
|
|
6025
|
+
read?: string[] | undefined;
|
|
6026
|
+
create?: string[] | undefined;
|
|
6027
|
+
update?: string[] | undefined;
|
|
6028
|
+
delete?: string[] | undefined;
|
|
6029
|
+
} | undefined;
|
|
6013
6030
|
softDelete?: {
|
|
6014
6031
|
enabled: boolean;
|
|
6015
6032
|
field: string;
|
|
@@ -6355,9 +6372,10 @@ declare const SysEmail: Omit<{
|
|
|
6355
6372
|
trash: boolean;
|
|
6356
6373
|
mru: boolean;
|
|
6357
6374
|
clone: boolean;
|
|
6358
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
6375
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
6359
6376
|
} | undefined;
|
|
6360
|
-
sharingModel?: "
|
|
6377
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
6378
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
6361
6379
|
publicSharing?: {
|
|
6362
6380
|
enabled: boolean;
|
|
6363
6381
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -10287,7 +10305,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10287
10305
|
access?: {
|
|
10288
10306
|
default: "public" | "private";
|
|
10289
10307
|
} | undefined;
|
|
10290
|
-
requiredPermissions?: string[] |
|
|
10308
|
+
requiredPermissions?: string[] | {
|
|
10309
|
+
read?: string[] | undefined;
|
|
10310
|
+
create?: string[] | undefined;
|
|
10311
|
+
update?: string[] | undefined;
|
|
10312
|
+
delete?: string[] | undefined;
|
|
10313
|
+
} | undefined;
|
|
10291
10314
|
softDelete?: {
|
|
10292
10315
|
enabled: boolean;
|
|
10293
10316
|
field: string;
|
|
@@ -10633,9 +10656,10 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10633
10656
|
trash: boolean;
|
|
10634
10657
|
mru: boolean;
|
|
10635
10658
|
clone: boolean;
|
|
10636
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
10659
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
10637
10660
|
} | undefined;
|
|
10638
|
-
sharingModel?: "
|
|
10661
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
10662
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
10639
10663
|
publicSharing?: {
|
|
10640
10664
|
enabled: boolean;
|
|
10641
10665
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -14213,7 +14237,12 @@ declare const SysSavedReport: Omit<{
|
|
|
14213
14237
|
access?: {
|
|
14214
14238
|
default: "public" | "private";
|
|
14215
14239
|
} | undefined;
|
|
14216
|
-
requiredPermissions?: string[] |
|
|
14240
|
+
requiredPermissions?: string[] | {
|
|
14241
|
+
read?: string[] | undefined;
|
|
14242
|
+
create?: string[] | undefined;
|
|
14243
|
+
update?: string[] | undefined;
|
|
14244
|
+
delete?: string[] | undefined;
|
|
14245
|
+
} | undefined;
|
|
14217
14246
|
softDelete?: {
|
|
14218
14247
|
enabled: boolean;
|
|
14219
14248
|
field: string;
|
|
@@ -14559,9 +14588,10 @@ declare const SysSavedReport: Omit<{
|
|
|
14559
14588
|
trash: boolean;
|
|
14560
14589
|
mru: boolean;
|
|
14561
14590
|
clone: boolean;
|
|
14562
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
14591
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
14563
14592
|
} | undefined;
|
|
14564
|
-
sharingModel?: "
|
|
14593
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
14594
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
14565
14595
|
publicSharing?: {
|
|
14566
14596
|
enabled: boolean;
|
|
14567
14597
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -17040,7 +17070,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
17040
17070
|
access?: {
|
|
17041
17071
|
default: "public" | "private";
|
|
17042
17072
|
} | undefined;
|
|
17043
|
-
requiredPermissions?: string[] |
|
|
17073
|
+
requiredPermissions?: string[] | {
|
|
17074
|
+
read?: string[] | undefined;
|
|
17075
|
+
create?: string[] | undefined;
|
|
17076
|
+
update?: string[] | undefined;
|
|
17077
|
+
delete?: string[] | undefined;
|
|
17078
|
+
} | undefined;
|
|
17044
17079
|
softDelete?: {
|
|
17045
17080
|
enabled: boolean;
|
|
17046
17081
|
field: string;
|
|
@@ -17386,9 +17421,10 @@ declare const SysReportSchedule: Omit<{
|
|
|
17386
17421
|
trash: boolean;
|
|
17387
17422
|
mru: boolean;
|
|
17388
17423
|
clone: boolean;
|
|
17389
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
17424
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
17390
17425
|
} | undefined;
|
|
17391
|
-
sharingModel?: "
|
|
17426
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
17427
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
17392
17428
|
publicSharing?: {
|
|
17393
17429
|
enabled: boolean;
|
|
17394
17430
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -20949,7 +20985,12 @@ declare const SysJob: Omit<{
|
|
|
20949
20985
|
access?: {
|
|
20950
20986
|
default: "public" | "private";
|
|
20951
20987
|
} | undefined;
|
|
20952
|
-
requiredPermissions?: string[] |
|
|
20988
|
+
requiredPermissions?: string[] | {
|
|
20989
|
+
read?: string[] | undefined;
|
|
20990
|
+
create?: string[] | undefined;
|
|
20991
|
+
update?: string[] | undefined;
|
|
20992
|
+
delete?: string[] | undefined;
|
|
20993
|
+
} | undefined;
|
|
20953
20994
|
softDelete?: {
|
|
20954
20995
|
enabled: boolean;
|
|
20955
20996
|
field: string;
|
|
@@ -21295,9 +21336,10 @@ declare const SysJob: Omit<{
|
|
|
21295
21336
|
trash: boolean;
|
|
21296
21337
|
mru: boolean;
|
|
21297
21338
|
clone: boolean;
|
|
21298
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
21339
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
21299
21340
|
} | undefined;
|
|
21300
|
-
sharingModel?: "
|
|
21341
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
21342
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
21301
21343
|
publicSharing?: {
|
|
21302
21344
|
enabled: boolean;
|
|
21303
21345
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -24127,7 +24169,12 @@ declare const SysJobRun: Omit<{
|
|
|
24127
24169
|
access?: {
|
|
24128
24170
|
default: "public" | "private";
|
|
24129
24171
|
} | undefined;
|
|
24130
|
-
requiredPermissions?: string[] |
|
|
24172
|
+
requiredPermissions?: string[] | {
|
|
24173
|
+
read?: string[] | undefined;
|
|
24174
|
+
create?: string[] | undefined;
|
|
24175
|
+
update?: string[] | undefined;
|
|
24176
|
+
delete?: string[] | undefined;
|
|
24177
|
+
} | undefined;
|
|
24131
24178
|
softDelete?: {
|
|
24132
24179
|
enabled: boolean;
|
|
24133
24180
|
field: string;
|
|
@@ -24473,9 +24520,10 @@ declare const SysJobRun: Omit<{
|
|
|
24473
24520
|
trash: boolean;
|
|
24474
24521
|
mru: boolean;
|
|
24475
24522
|
clone: boolean;
|
|
24476
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
24523
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
24477
24524
|
} | undefined;
|
|
24478
|
-
sharingModel?: "
|
|
24525
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
24526
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
24479
24527
|
publicSharing?: {
|
|
24480
24528
|
enabled: boolean;
|
|
24481
24529
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -26764,7 +26812,12 @@ declare const SysJobQueue: Omit<{
|
|
|
26764
26812
|
access?: {
|
|
26765
26813
|
default: "public" | "private";
|
|
26766
26814
|
} | undefined;
|
|
26767
|
-
requiredPermissions?: string[] |
|
|
26815
|
+
requiredPermissions?: string[] | {
|
|
26816
|
+
read?: string[] | undefined;
|
|
26817
|
+
create?: string[] | undefined;
|
|
26818
|
+
update?: string[] | undefined;
|
|
26819
|
+
delete?: string[] | undefined;
|
|
26820
|
+
} | undefined;
|
|
26768
26821
|
softDelete?: {
|
|
26769
26822
|
enabled: boolean;
|
|
26770
26823
|
field: string;
|
|
@@ -27110,9 +27163,10 @@ declare const SysJobQueue: Omit<{
|
|
|
27110
27163
|
trash: boolean;
|
|
27111
27164
|
mru: boolean;
|
|
27112
27165
|
clone: boolean;
|
|
27113
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
27166
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
27114
27167
|
} | undefined;
|
|
27115
|
-
sharingModel?: "
|
|
27168
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
27169
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
27116
27170
|
publicSharing?: {
|
|
27117
27171
|
enabled: boolean;
|
|
27118
27172
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -31045,7 +31099,12 @@ declare const SysImportJob: Omit<{
|
|
|
31045
31099
|
access?: {
|
|
31046
31100
|
default: "public" | "private";
|
|
31047
31101
|
} | undefined;
|
|
31048
|
-
requiredPermissions?: string[] |
|
|
31102
|
+
requiredPermissions?: string[] | {
|
|
31103
|
+
read?: string[] | undefined;
|
|
31104
|
+
create?: string[] | undefined;
|
|
31105
|
+
update?: string[] | undefined;
|
|
31106
|
+
delete?: string[] | undefined;
|
|
31107
|
+
} | undefined;
|
|
31049
31108
|
softDelete?: {
|
|
31050
31109
|
enabled: boolean;
|
|
31051
31110
|
field: string;
|
|
@@ -31391,9 +31450,10 @@ declare const SysImportJob: Omit<{
|
|
|
31391
31450
|
trash: boolean;
|
|
31392
31451
|
mru: boolean;
|
|
31393
31452
|
clone: boolean;
|
|
31394
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
31453
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
31395
31454
|
} | undefined;
|
|
31396
|
-
sharingModel?: "
|
|
31455
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
31456
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
31397
31457
|
publicSharing?: {
|
|
31398
31458
|
enabled: boolean;
|
|
31399
31459
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
package/dist/audit/index.d.ts
CHANGED
|
@@ -319,7 +319,12 @@ declare const SysNotification: Omit<{
|
|
|
319
319
|
access?: {
|
|
320
320
|
default: "public" | "private";
|
|
321
321
|
} | undefined;
|
|
322
|
-
requiredPermissions?: string[] |
|
|
322
|
+
requiredPermissions?: string[] | {
|
|
323
|
+
read?: string[] | undefined;
|
|
324
|
+
create?: string[] | undefined;
|
|
325
|
+
update?: string[] | undefined;
|
|
326
|
+
delete?: string[] | undefined;
|
|
327
|
+
} | undefined;
|
|
323
328
|
softDelete?: {
|
|
324
329
|
enabled: boolean;
|
|
325
330
|
field: string;
|
|
@@ -665,9 +670,10 @@ declare const SysNotification: Omit<{
|
|
|
665
670
|
trash: boolean;
|
|
666
671
|
mru: boolean;
|
|
667
672
|
clone: boolean;
|
|
668
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
673
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
669
674
|
} | undefined;
|
|
670
|
-
sharingModel?: "
|
|
675
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
676
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
671
677
|
publicSharing?: {
|
|
672
678
|
enabled: boolean;
|
|
673
679
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -2821,7 +2827,12 @@ declare const SysAttachment: Omit<{
|
|
|
2821
2827
|
access?: {
|
|
2822
2828
|
default: "public" | "private";
|
|
2823
2829
|
} | undefined;
|
|
2824
|
-
requiredPermissions?: string[] |
|
|
2830
|
+
requiredPermissions?: string[] | {
|
|
2831
|
+
read?: string[] | undefined;
|
|
2832
|
+
create?: string[] | undefined;
|
|
2833
|
+
update?: string[] | undefined;
|
|
2834
|
+
delete?: string[] | undefined;
|
|
2835
|
+
} | undefined;
|
|
2825
2836
|
softDelete?: {
|
|
2826
2837
|
enabled: boolean;
|
|
2827
2838
|
field: string;
|
|
@@ -3167,9 +3178,10 @@ declare const SysAttachment: Omit<{
|
|
|
3167
3178
|
trash: boolean;
|
|
3168
3179
|
mru: boolean;
|
|
3169
3180
|
clone: boolean;
|
|
3170
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
3181
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
3171
3182
|
} | undefined;
|
|
3172
|
-
sharingModel?: "
|
|
3183
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
3184
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
3173
3185
|
publicSharing?: {
|
|
3174
3186
|
enabled: boolean;
|
|
3175
3187
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -6009,7 +6021,12 @@ declare const SysEmail: Omit<{
|
|
|
6009
6021
|
access?: {
|
|
6010
6022
|
default: "public" | "private";
|
|
6011
6023
|
} | undefined;
|
|
6012
|
-
requiredPermissions?: string[] |
|
|
6024
|
+
requiredPermissions?: string[] | {
|
|
6025
|
+
read?: string[] | undefined;
|
|
6026
|
+
create?: string[] | undefined;
|
|
6027
|
+
update?: string[] | undefined;
|
|
6028
|
+
delete?: string[] | undefined;
|
|
6029
|
+
} | undefined;
|
|
6013
6030
|
softDelete?: {
|
|
6014
6031
|
enabled: boolean;
|
|
6015
6032
|
field: string;
|
|
@@ -6355,9 +6372,10 @@ declare const SysEmail: Omit<{
|
|
|
6355
6372
|
trash: boolean;
|
|
6356
6373
|
mru: boolean;
|
|
6357
6374
|
clone: boolean;
|
|
6358
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
6375
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
6359
6376
|
} | undefined;
|
|
6360
|
-
sharingModel?: "
|
|
6377
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
6378
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
6361
6379
|
publicSharing?: {
|
|
6362
6380
|
enabled: boolean;
|
|
6363
6381
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -10287,7 +10305,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10287
10305
|
access?: {
|
|
10288
10306
|
default: "public" | "private";
|
|
10289
10307
|
} | undefined;
|
|
10290
|
-
requiredPermissions?: string[] |
|
|
10308
|
+
requiredPermissions?: string[] | {
|
|
10309
|
+
read?: string[] | undefined;
|
|
10310
|
+
create?: string[] | undefined;
|
|
10311
|
+
update?: string[] | undefined;
|
|
10312
|
+
delete?: string[] | undefined;
|
|
10313
|
+
} | undefined;
|
|
10291
10314
|
softDelete?: {
|
|
10292
10315
|
enabled: boolean;
|
|
10293
10316
|
field: string;
|
|
@@ -10633,9 +10656,10 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10633
10656
|
trash: boolean;
|
|
10634
10657
|
mru: boolean;
|
|
10635
10658
|
clone: boolean;
|
|
10636
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
10659
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
10637
10660
|
} | undefined;
|
|
10638
|
-
sharingModel?: "
|
|
10661
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
10662
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
10639
10663
|
publicSharing?: {
|
|
10640
10664
|
enabled: boolean;
|
|
10641
10665
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -14213,7 +14237,12 @@ declare const SysSavedReport: Omit<{
|
|
|
14213
14237
|
access?: {
|
|
14214
14238
|
default: "public" | "private";
|
|
14215
14239
|
} | undefined;
|
|
14216
|
-
requiredPermissions?: string[] |
|
|
14240
|
+
requiredPermissions?: string[] | {
|
|
14241
|
+
read?: string[] | undefined;
|
|
14242
|
+
create?: string[] | undefined;
|
|
14243
|
+
update?: string[] | undefined;
|
|
14244
|
+
delete?: string[] | undefined;
|
|
14245
|
+
} | undefined;
|
|
14217
14246
|
softDelete?: {
|
|
14218
14247
|
enabled: boolean;
|
|
14219
14248
|
field: string;
|
|
@@ -14559,9 +14588,10 @@ declare const SysSavedReport: Omit<{
|
|
|
14559
14588
|
trash: boolean;
|
|
14560
14589
|
mru: boolean;
|
|
14561
14590
|
clone: boolean;
|
|
14562
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
14591
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
14563
14592
|
} | undefined;
|
|
14564
|
-
sharingModel?: "
|
|
14593
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
14594
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
14565
14595
|
publicSharing?: {
|
|
14566
14596
|
enabled: boolean;
|
|
14567
14597
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -17040,7 +17070,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
17040
17070
|
access?: {
|
|
17041
17071
|
default: "public" | "private";
|
|
17042
17072
|
} | undefined;
|
|
17043
|
-
requiredPermissions?: string[] |
|
|
17073
|
+
requiredPermissions?: string[] | {
|
|
17074
|
+
read?: string[] | undefined;
|
|
17075
|
+
create?: string[] | undefined;
|
|
17076
|
+
update?: string[] | undefined;
|
|
17077
|
+
delete?: string[] | undefined;
|
|
17078
|
+
} | undefined;
|
|
17044
17079
|
softDelete?: {
|
|
17045
17080
|
enabled: boolean;
|
|
17046
17081
|
field: string;
|
|
@@ -17386,9 +17421,10 @@ declare const SysReportSchedule: Omit<{
|
|
|
17386
17421
|
trash: boolean;
|
|
17387
17422
|
mru: boolean;
|
|
17388
17423
|
clone: boolean;
|
|
17389
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
17424
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
17390
17425
|
} | undefined;
|
|
17391
|
-
sharingModel?: "
|
|
17426
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
17427
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
17392
17428
|
publicSharing?: {
|
|
17393
17429
|
enabled: boolean;
|
|
17394
17430
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -20949,7 +20985,12 @@ declare const SysJob: Omit<{
|
|
|
20949
20985
|
access?: {
|
|
20950
20986
|
default: "public" | "private";
|
|
20951
20987
|
} | undefined;
|
|
20952
|
-
requiredPermissions?: string[] |
|
|
20988
|
+
requiredPermissions?: string[] | {
|
|
20989
|
+
read?: string[] | undefined;
|
|
20990
|
+
create?: string[] | undefined;
|
|
20991
|
+
update?: string[] | undefined;
|
|
20992
|
+
delete?: string[] | undefined;
|
|
20993
|
+
} | undefined;
|
|
20953
20994
|
softDelete?: {
|
|
20954
20995
|
enabled: boolean;
|
|
20955
20996
|
field: string;
|
|
@@ -21295,9 +21336,10 @@ declare const SysJob: Omit<{
|
|
|
21295
21336
|
trash: boolean;
|
|
21296
21337
|
mru: boolean;
|
|
21297
21338
|
clone: boolean;
|
|
21298
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
21339
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
21299
21340
|
} | undefined;
|
|
21300
|
-
sharingModel?: "
|
|
21341
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
21342
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
21301
21343
|
publicSharing?: {
|
|
21302
21344
|
enabled: boolean;
|
|
21303
21345
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -24127,7 +24169,12 @@ declare const SysJobRun: Omit<{
|
|
|
24127
24169
|
access?: {
|
|
24128
24170
|
default: "public" | "private";
|
|
24129
24171
|
} | undefined;
|
|
24130
|
-
requiredPermissions?: string[] |
|
|
24172
|
+
requiredPermissions?: string[] | {
|
|
24173
|
+
read?: string[] | undefined;
|
|
24174
|
+
create?: string[] | undefined;
|
|
24175
|
+
update?: string[] | undefined;
|
|
24176
|
+
delete?: string[] | undefined;
|
|
24177
|
+
} | undefined;
|
|
24131
24178
|
softDelete?: {
|
|
24132
24179
|
enabled: boolean;
|
|
24133
24180
|
field: string;
|
|
@@ -24473,9 +24520,10 @@ declare const SysJobRun: Omit<{
|
|
|
24473
24520
|
trash: boolean;
|
|
24474
24521
|
mru: boolean;
|
|
24475
24522
|
clone: boolean;
|
|
24476
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
24523
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
24477
24524
|
} | undefined;
|
|
24478
|
-
sharingModel?: "
|
|
24525
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
24526
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
24479
24527
|
publicSharing?: {
|
|
24480
24528
|
enabled: boolean;
|
|
24481
24529
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -26764,7 +26812,12 @@ declare const SysJobQueue: Omit<{
|
|
|
26764
26812
|
access?: {
|
|
26765
26813
|
default: "public" | "private";
|
|
26766
26814
|
} | undefined;
|
|
26767
|
-
requiredPermissions?: string[] |
|
|
26815
|
+
requiredPermissions?: string[] | {
|
|
26816
|
+
read?: string[] | undefined;
|
|
26817
|
+
create?: string[] | undefined;
|
|
26818
|
+
update?: string[] | undefined;
|
|
26819
|
+
delete?: string[] | undefined;
|
|
26820
|
+
} | undefined;
|
|
26768
26821
|
softDelete?: {
|
|
26769
26822
|
enabled: boolean;
|
|
26770
26823
|
field: string;
|
|
@@ -27110,9 +27163,10 @@ declare const SysJobQueue: Omit<{
|
|
|
27110
27163
|
trash: boolean;
|
|
27111
27164
|
mru: boolean;
|
|
27112
27165
|
clone: boolean;
|
|
27113
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
27166
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
27114
27167
|
} | undefined;
|
|
27115
|
-
sharingModel?: "
|
|
27168
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
27169
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
27116
27170
|
publicSharing?: {
|
|
27117
27171
|
enabled: boolean;
|
|
27118
27172
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -31045,7 +31099,12 @@ declare const SysImportJob: Omit<{
|
|
|
31045
31099
|
access?: {
|
|
31046
31100
|
default: "public" | "private";
|
|
31047
31101
|
} | undefined;
|
|
31048
|
-
requiredPermissions?: string[] |
|
|
31102
|
+
requiredPermissions?: string[] | {
|
|
31103
|
+
read?: string[] | undefined;
|
|
31104
|
+
create?: string[] | undefined;
|
|
31105
|
+
update?: string[] | undefined;
|
|
31106
|
+
delete?: string[] | undefined;
|
|
31107
|
+
} | undefined;
|
|
31049
31108
|
softDelete?: {
|
|
31050
31109
|
enabled: boolean;
|
|
31051
31110
|
field: string;
|
|
@@ -31391,9 +31450,10 @@ declare const SysImportJob: Omit<{
|
|
|
31391
31450
|
trash: boolean;
|
|
31392
31451
|
mru: boolean;
|
|
31393
31452
|
clone: boolean;
|
|
31394
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
31453
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "update" | "get" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
31395
31454
|
} | undefined;
|
|
31396
|
-
sharingModel?: "
|
|
31455
|
+
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
31456
|
+
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
31397
31457
|
publicSharing?: {
|
|
31398
31458
|
enabled: boolean;
|
|
31399
31459
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|