@objectstack/platform-objects 6.8.1 → 7.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.
Files changed (51) hide show
  1. package/dist/apps/index.d.mts +30 -1
  2. package/dist/apps/index.d.ts +30 -1
  3. package/dist/apps/index.js +994 -37
  4. package/dist/apps/index.js.map +1 -1
  5. package/dist/apps/index.mjs +994 -38
  6. package/dist/apps/index.mjs.map +1 -1
  7. package/dist/audit/index.d.mts +320 -16
  8. package/dist/audit/index.d.ts +320 -16
  9. package/dist/identity/index.d.mts +1000 -22
  10. package/dist/identity/index.d.ts +1000 -22
  11. package/dist/identity/index.js +384 -8
  12. package/dist/identity/index.js.map +1 -1
  13. package/dist/identity/index.mjs +384 -8
  14. package/dist/identity/index.mjs.map +1 -1
  15. package/dist/index.d.mts +5 -2
  16. package/dist/index.d.ts +5 -2
  17. package/dist/index.js +7060 -154
  18. package/dist/index.js.map +1 -1
  19. package/dist/index.mjs +7054 -155
  20. package/dist/index.mjs.map +1 -1
  21. package/dist/integration/index.d.mts +20 -1
  22. package/dist/integration/index.d.ts +20 -1
  23. package/dist/metadata/index.d.mts +40 -2
  24. package/dist/metadata/index.d.ts +40 -2
  25. package/dist/metadata-translations/index.d.mts +20 -0
  26. package/dist/metadata-translations/index.d.ts +20 -0
  27. package/dist/metadata-translations/index.js +4777 -0
  28. package/dist/metadata-translations/index.js.map +1 -0
  29. package/dist/metadata-translations/index.mjs +4775 -0
  30. package/dist/metadata-translations/index.mjs.map +1 -0
  31. package/dist/pages/index.d.mts +68 -0
  32. package/dist/pages/index.d.ts +68 -0
  33. package/dist/pages/index.js +371 -0
  34. package/dist/pages/index.js.map +1 -0
  35. package/dist/pages/index.mjs +368 -0
  36. package/dist/pages/index.mjs.map +1 -0
  37. package/dist/plugin.d.mts +35 -0
  38. package/dist/plugin.d.ts +35 -0
  39. package/dist/plugin.js +17566 -0
  40. package/dist/plugin.js.map +1 -0
  41. package/dist/plugin.mjs +17563 -0
  42. package/dist/plugin.mjs.map +1 -0
  43. package/dist/security/index.d.mts +6376 -2094
  44. package/dist/security/index.d.ts +6376 -2094
  45. package/dist/security/index.js +383 -1
  46. package/dist/security/index.js.map +1 -1
  47. package/dist/security/index.mjs +383 -2
  48. package/dist/security/index.mjs.map +1 -1
  49. package/dist/system/index.d.mts +60 -3
  50. package/dist/system/index.d.ts +60 -3
  51. package/package.json +17 -2
@@ -600,6 +600,14 @@ declare const SysAuditLog: Omit<{
600
600
  } | undefined;
601
601
  recordTypes?: string[] | undefined;
602
602
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
603
+ publicSharing?: {
604
+ enabled: boolean;
605
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
606
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
607
+ maxExpiryDays?: number | undefined;
608
+ redactFields?: string[] | undefined;
609
+ eligibility?: string | undefined;
610
+ } | undefined;
603
611
  keyPrefix?: string | undefined;
604
612
  detail?: {
605
613
  [x: string]: unknown;
@@ -614,7 +622,7 @@ declare const SysAuditLog: Omit<{
614
622
  refreshAfter: boolean;
615
623
  objectName?: string | undefined;
616
624
  icon?: string | undefined;
617
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
625
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
618
626
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
619
627
  target?: string | undefined;
620
628
  body?: {
@@ -647,6 +655,17 @@ declare const SysAuditLog: Omit<{
647
655
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
648
656
  confirmText?: string | undefined;
649
657
  successMessage?: string | undefined;
658
+ resultDialog?: {
659
+ title?: string | undefined;
660
+ description?: string | undefined;
661
+ acknowledge?: string | undefined;
662
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
663
+ fields?: {
664
+ path: string;
665
+ label?: string | undefined;
666
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
667
+ }[] | undefined;
668
+ } | undefined;
650
669
  visible?: {
651
670
  dialect: "cel" | "js" | "cron" | "template";
652
671
  source?: string | undefined;
@@ -3523,6 +3542,14 @@ declare const SysPresence: Omit<{
3523
3542
  } | undefined;
3524
3543
  recordTypes?: string[] | undefined;
3525
3544
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
3545
+ publicSharing?: {
3546
+ enabled: boolean;
3547
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
3548
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
3549
+ maxExpiryDays?: number | undefined;
3550
+ redactFields?: string[] | undefined;
3551
+ eligibility?: string | undefined;
3552
+ } | undefined;
3526
3553
  keyPrefix?: string | undefined;
3527
3554
  detail?: {
3528
3555
  [x: string]: unknown;
@@ -3537,7 +3564,7 @@ declare const SysPresence: Omit<{
3537
3564
  refreshAfter: boolean;
3538
3565
  objectName?: string | undefined;
3539
3566
  icon?: string | undefined;
3540
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
3567
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
3541
3568
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
3542
3569
  target?: string | undefined;
3543
3570
  body?: {
@@ -3570,6 +3597,17 @@ declare const SysPresence: Omit<{
3570
3597
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
3571
3598
  confirmText?: string | undefined;
3572
3599
  successMessage?: string | undefined;
3600
+ resultDialog?: {
3601
+ title?: string | undefined;
3602
+ description?: string | undefined;
3603
+ acknowledge?: string | undefined;
3604
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
3605
+ fields?: {
3606
+ path: string;
3607
+ label?: string | undefined;
3608
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
3609
+ }[] | undefined;
3610
+ } | undefined;
3573
3611
  visible?: {
3574
3612
  dialect: "cel" | "js" | "cron" | "template";
3575
3613
  source?: string | undefined;
@@ -6164,6 +6202,14 @@ declare const SysActivity: Omit<{
6164
6202
  } | undefined;
6165
6203
  recordTypes?: string[] | undefined;
6166
6204
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
6205
+ publicSharing?: {
6206
+ enabled: boolean;
6207
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
6208
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
6209
+ maxExpiryDays?: number | undefined;
6210
+ redactFields?: string[] | undefined;
6211
+ eligibility?: string | undefined;
6212
+ } | undefined;
6167
6213
  keyPrefix?: string | undefined;
6168
6214
  detail?: {
6169
6215
  [x: string]: unknown;
@@ -6178,7 +6224,7 @@ declare const SysActivity: Omit<{
6178
6224
  refreshAfter: boolean;
6179
6225
  objectName?: string | undefined;
6180
6226
  icon?: string | undefined;
6181
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
6227
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
6182
6228
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
6183
6229
  target?: string | undefined;
6184
6230
  body?: {
@@ -6211,6 +6257,17 @@ declare const SysActivity: Omit<{
6211
6257
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
6212
6258
  confirmText?: string | undefined;
6213
6259
  successMessage?: string | undefined;
6260
+ resultDialog?: {
6261
+ title?: string | undefined;
6262
+ description?: string | undefined;
6263
+ acknowledge?: string | undefined;
6264
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
6265
+ fields?: {
6266
+ path: string;
6267
+ label?: string | undefined;
6268
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
6269
+ }[] | undefined;
6270
+ } | undefined;
6214
6271
  visible?: {
6215
6272
  dialect: "cel" | "js" | "cron" | "template";
6216
6273
  source?: string | undefined;
@@ -9159,6 +9216,14 @@ declare const SysComment: Omit<{
9159
9216
  } | undefined;
9160
9217
  recordTypes?: string[] | undefined;
9161
9218
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
9219
+ publicSharing?: {
9220
+ enabled: boolean;
9221
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
9222
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
9223
+ maxExpiryDays?: number | undefined;
9224
+ redactFields?: string[] | undefined;
9225
+ eligibility?: string | undefined;
9226
+ } | undefined;
9162
9227
  keyPrefix?: string | undefined;
9163
9228
  detail?: {
9164
9229
  [x: string]: unknown;
@@ -9173,7 +9238,7 @@ declare const SysComment: Omit<{
9173
9238
  refreshAfter: boolean;
9174
9239
  objectName?: string | undefined;
9175
9240
  icon?: string | undefined;
9176
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
9241
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
9177
9242
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
9178
9243
  target?: string | undefined;
9179
9244
  body?: {
@@ -9206,6 +9271,17 @@ declare const SysComment: Omit<{
9206
9271
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
9207
9272
  confirmText?: string | undefined;
9208
9273
  successMessage?: string | undefined;
9274
+ resultDialog?: {
9275
+ title?: string | undefined;
9276
+ description?: string | undefined;
9277
+ acknowledge?: string | undefined;
9278
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
9279
+ fields?: {
9280
+ path: string;
9281
+ label?: string | undefined;
9282
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
9283
+ }[] | undefined;
9284
+ } | undefined;
9209
9285
  visible?: {
9210
9286
  dialect: "cel" | "js" | "cron" | "template";
9211
9287
  source?: string | undefined;
@@ -12504,6 +12580,14 @@ declare const SysAttachment: Omit<{
12504
12580
  } | undefined;
12505
12581
  recordTypes?: string[] | undefined;
12506
12582
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
12583
+ publicSharing?: {
12584
+ enabled: boolean;
12585
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
12586
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
12587
+ maxExpiryDays?: number | undefined;
12588
+ redactFields?: string[] | undefined;
12589
+ eligibility?: string | undefined;
12590
+ } | undefined;
12507
12591
  keyPrefix?: string | undefined;
12508
12592
  detail?: {
12509
12593
  [x: string]: unknown;
@@ -12518,7 +12602,7 @@ declare const SysAttachment: Omit<{
12518
12602
  refreshAfter: boolean;
12519
12603
  objectName?: string | undefined;
12520
12604
  icon?: string | undefined;
12521
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
12605
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
12522
12606
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
12523
12607
  target?: string | undefined;
12524
12608
  body?: {
@@ -12551,6 +12635,17 @@ declare const SysAttachment: Omit<{
12551
12635
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
12552
12636
  confirmText?: string | undefined;
12553
12637
  successMessage?: string | undefined;
12638
+ resultDialog?: {
12639
+ title?: string | undefined;
12640
+ description?: string | undefined;
12641
+ acknowledge?: string | undefined;
12642
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
12643
+ fields?: {
12644
+ path: string;
12645
+ label?: string | undefined;
12646
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
12647
+ }[] | undefined;
12648
+ } | undefined;
12554
12649
  visible?: {
12555
12650
  dialect: "cel" | "js" | "cron" | "template";
12556
12651
  source?: string | undefined;
@@ -15493,6 +15588,14 @@ declare const SysNotification: Omit<{
15493
15588
  } | undefined;
15494
15589
  recordTypes?: string[] | undefined;
15495
15590
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
15591
+ publicSharing?: {
15592
+ enabled: boolean;
15593
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
15594
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
15595
+ maxExpiryDays?: number | undefined;
15596
+ redactFields?: string[] | undefined;
15597
+ eligibility?: string | undefined;
15598
+ } | undefined;
15496
15599
  keyPrefix?: string | undefined;
15497
15600
  detail?: {
15498
15601
  [x: string]: unknown;
@@ -15507,7 +15610,7 @@ declare const SysNotification: Omit<{
15507
15610
  refreshAfter: boolean;
15508
15611
  objectName?: string | undefined;
15509
15612
  icon?: string | undefined;
15510
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
15613
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
15511
15614
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
15512
15615
  target?: string | undefined;
15513
15616
  body?: {
@@ -15540,6 +15643,17 @@ declare const SysNotification: Omit<{
15540
15643
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
15541
15644
  confirmText?: string | undefined;
15542
15645
  successMessage?: string | undefined;
15646
+ resultDialog?: {
15647
+ title?: string | undefined;
15648
+ description?: string | undefined;
15649
+ acknowledge?: string | undefined;
15650
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
15651
+ fields?: {
15652
+ path: string;
15653
+ label?: string | undefined;
15654
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
15655
+ }[] | undefined;
15656
+ } | undefined;
15543
15657
  visible?: {
15544
15658
  dialect: "cel" | "js" | "cron" | "template";
15545
15659
  source?: string | undefined;
@@ -18772,6 +18886,14 @@ declare const SysEmail: Omit<{
18772
18886
  } | undefined;
18773
18887
  recordTypes?: string[] | undefined;
18774
18888
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
18889
+ publicSharing?: {
18890
+ enabled: boolean;
18891
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
18892
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
18893
+ maxExpiryDays?: number | undefined;
18894
+ redactFields?: string[] | undefined;
18895
+ eligibility?: string | undefined;
18896
+ } | undefined;
18775
18897
  keyPrefix?: string | undefined;
18776
18898
  detail?: {
18777
18899
  [x: string]: unknown;
@@ -18786,7 +18908,7 @@ declare const SysEmail: Omit<{
18786
18908
  refreshAfter: boolean;
18787
18909
  objectName?: string | undefined;
18788
18910
  icon?: string | undefined;
18789
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
18911
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
18790
18912
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
18791
18913
  target?: string | undefined;
18792
18914
  body?: {
@@ -18819,6 +18941,17 @@ declare const SysEmail: Omit<{
18819
18941
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
18820
18942
  confirmText?: string | undefined;
18821
18943
  successMessage?: string | undefined;
18944
+ resultDialog?: {
18945
+ title?: string | undefined;
18946
+ description?: string | undefined;
18947
+ acknowledge?: string | undefined;
18948
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
18949
+ fields?: {
18950
+ path: string;
18951
+ label?: string | undefined;
18952
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
18953
+ }[] | undefined;
18954
+ } | undefined;
18822
18955
  visible?: {
18823
18956
  dialect: "cel" | "js" | "cron" | "template";
18824
18957
  source?: string | undefined;
@@ -22803,6 +22936,14 @@ declare const SysEmailTemplate: Omit<{
22803
22936
  } | undefined;
22804
22937
  recordTypes?: string[] | undefined;
22805
22938
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
22939
+ publicSharing?: {
22940
+ enabled: boolean;
22941
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
22942
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
22943
+ maxExpiryDays?: number | undefined;
22944
+ redactFields?: string[] | undefined;
22945
+ eligibility?: string | undefined;
22946
+ } | undefined;
22806
22947
  keyPrefix?: string | undefined;
22807
22948
  detail?: {
22808
22949
  [x: string]: unknown;
@@ -22817,7 +22958,7 @@ declare const SysEmailTemplate: Omit<{
22817
22958
  refreshAfter: boolean;
22818
22959
  objectName?: string | undefined;
22819
22960
  icon?: string | undefined;
22820
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
22961
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
22821
22962
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
22822
22963
  target?: string | undefined;
22823
22964
  body?: {
@@ -22850,6 +22991,17 @@ declare const SysEmailTemplate: Omit<{
22850
22991
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
22851
22992
  confirmText?: string | undefined;
22852
22993
  successMessage?: string | undefined;
22994
+ resultDialog?: {
22995
+ title?: string | undefined;
22996
+ description?: string | undefined;
22997
+ acknowledge?: string | undefined;
22998
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
22999
+ fields?: {
23000
+ path: string;
23001
+ label?: string | undefined;
23002
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
23003
+ }[] | undefined;
23004
+ } | undefined;
22853
23005
  visible?: {
22854
23006
  dialect: "cel" | "js" | "cron" | "template";
22855
23007
  source?: string | undefined;
@@ -26498,6 +26650,14 @@ declare const SysSavedReport: Omit<{
26498
26650
  } | undefined;
26499
26651
  recordTypes?: string[] | undefined;
26500
26652
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
26653
+ publicSharing?: {
26654
+ enabled: boolean;
26655
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
26656
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
26657
+ maxExpiryDays?: number | undefined;
26658
+ redactFields?: string[] | undefined;
26659
+ eligibility?: string | undefined;
26660
+ } | undefined;
26501
26661
  keyPrefix?: string | undefined;
26502
26662
  detail?: {
26503
26663
  [x: string]: unknown;
@@ -26512,7 +26672,7 @@ declare const SysSavedReport: Omit<{
26512
26672
  refreshAfter: boolean;
26513
26673
  objectName?: string | undefined;
26514
26674
  icon?: string | undefined;
26515
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
26675
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
26516
26676
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
26517
26677
  target?: string | undefined;
26518
26678
  body?: {
@@ -26545,6 +26705,17 @@ declare const SysSavedReport: Omit<{
26545
26705
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
26546
26706
  confirmText?: string | undefined;
26547
26707
  successMessage?: string | undefined;
26708
+ resultDialog?: {
26709
+ title?: string | undefined;
26710
+ description?: string | undefined;
26711
+ acknowledge?: string | undefined;
26712
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
26713
+ fields?: {
26714
+ path: string;
26715
+ label?: string | undefined;
26716
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
26717
+ }[] | undefined;
26718
+ } | undefined;
26548
26719
  visible?: {
26549
26720
  dialect: "cel" | "js" | "cron" | "template";
26550
26721
  source?: string | undefined;
@@ -29141,6 +29312,14 @@ declare const SysReportSchedule: Omit<{
29141
29312
  } | undefined;
29142
29313
  recordTypes?: string[] | undefined;
29143
29314
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
29315
+ publicSharing?: {
29316
+ enabled: boolean;
29317
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
29318
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
29319
+ maxExpiryDays?: number | undefined;
29320
+ redactFields?: string[] | undefined;
29321
+ eligibility?: string | undefined;
29322
+ } | undefined;
29144
29323
  keyPrefix?: string | undefined;
29145
29324
  detail?: {
29146
29325
  [x: string]: unknown;
@@ -29155,7 +29334,7 @@ declare const SysReportSchedule: Omit<{
29155
29334
  refreshAfter: boolean;
29156
29335
  objectName?: string | undefined;
29157
29336
  icon?: string | undefined;
29158
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
29337
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
29159
29338
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
29160
29339
  target?: string | undefined;
29161
29340
  body?: {
@@ -29188,6 +29367,17 @@ declare const SysReportSchedule: Omit<{
29188
29367
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
29189
29368
  confirmText?: string | undefined;
29190
29369
  successMessage?: string | undefined;
29370
+ resultDialog?: {
29371
+ title?: string | undefined;
29372
+ description?: string | undefined;
29373
+ acknowledge?: string | undefined;
29374
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
29375
+ fields?: {
29376
+ path: string;
29377
+ label?: string | undefined;
29378
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
29379
+ }[] | undefined;
29380
+ } | undefined;
29191
29381
  visible?: {
29192
29382
  dialect: "cel" | "js" | "cron" | "template";
29193
29383
  source?: string | undefined;
@@ -32823,6 +33013,14 @@ declare const SysApprovalProcess: Omit<{
32823
33013
  } | undefined;
32824
33014
  recordTypes?: string[] | undefined;
32825
33015
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
33016
+ publicSharing?: {
33017
+ enabled: boolean;
33018
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
33019
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
33020
+ maxExpiryDays?: number | undefined;
33021
+ redactFields?: string[] | undefined;
33022
+ eligibility?: string | undefined;
33023
+ } | undefined;
32826
33024
  keyPrefix?: string | undefined;
32827
33025
  detail?: {
32828
33026
  [x: string]: unknown;
@@ -32837,7 +33035,7 @@ declare const SysApprovalProcess: Omit<{
32837
33035
  refreshAfter: boolean;
32838
33036
  objectName?: string | undefined;
32839
33037
  icon?: string | undefined;
32840
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
33038
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
32841
33039
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
32842
33040
  target?: string | undefined;
32843
33041
  body?: {
@@ -32870,6 +33068,17 @@ declare const SysApprovalProcess: Omit<{
32870
33068
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
32871
33069
  confirmText?: string | undefined;
32872
33070
  successMessage?: string | undefined;
33071
+ resultDialog?: {
33072
+ title?: string | undefined;
33073
+ description?: string | undefined;
33074
+ acknowledge?: string | undefined;
33075
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
33076
+ fields?: {
33077
+ path: string;
33078
+ label?: string | undefined;
33079
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
33080
+ }[] | undefined;
33081
+ } | undefined;
32873
33082
  visible?: {
32874
33083
  dialect: "cel" | "js" | "cron" | "template";
32875
33084
  source?: string | undefined;
@@ -35206,6 +35415,14 @@ declare const SysApprovalRequest: Omit<{
35206
35415
  } | undefined;
35207
35416
  recordTypes?: string[] | undefined;
35208
35417
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
35418
+ publicSharing?: {
35419
+ enabled: boolean;
35420
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
35421
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
35422
+ maxExpiryDays?: number | undefined;
35423
+ redactFields?: string[] | undefined;
35424
+ eligibility?: string | undefined;
35425
+ } | undefined;
35209
35426
  keyPrefix?: string | undefined;
35210
35427
  detail?: {
35211
35428
  [x: string]: unknown;
@@ -35220,7 +35437,7 @@ declare const SysApprovalRequest: Omit<{
35220
35437
  refreshAfter: boolean;
35221
35438
  objectName?: string | undefined;
35222
35439
  icon?: string | undefined;
35223
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
35440
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
35224
35441
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
35225
35442
  target?: string | undefined;
35226
35443
  body?: {
@@ -35253,6 +35470,17 @@ declare const SysApprovalRequest: Omit<{
35253
35470
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
35254
35471
  confirmText?: string | undefined;
35255
35472
  successMessage?: string | undefined;
35473
+ resultDialog?: {
35474
+ title?: string | undefined;
35475
+ description?: string | undefined;
35476
+ acknowledge?: string | undefined;
35477
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
35478
+ fields?: {
35479
+ path: string;
35480
+ label?: string | undefined;
35481
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
35482
+ }[] | undefined;
35483
+ } | undefined;
35256
35484
  visible?: {
35257
35485
  dialect: "cel" | "js" | "cron" | "template";
35258
35486
  source?: string | undefined;
@@ -38804,6 +39032,14 @@ declare const SysApprovalAction: Omit<{
38804
39032
  } | undefined;
38805
39033
  recordTypes?: string[] | undefined;
38806
39034
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
39035
+ publicSharing?: {
39036
+ enabled: boolean;
39037
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
39038
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
39039
+ maxExpiryDays?: number | undefined;
39040
+ redactFields?: string[] | undefined;
39041
+ eligibility?: string | undefined;
39042
+ } | undefined;
38807
39043
  keyPrefix?: string | undefined;
38808
39044
  detail?: {
38809
39045
  [x: string]: unknown;
@@ -38818,7 +39054,7 @@ declare const SysApprovalAction: Omit<{
38818
39054
  refreshAfter: boolean;
38819
39055
  objectName?: string | undefined;
38820
39056
  icon?: string | undefined;
38821
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
39057
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
38822
39058
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
38823
39059
  target?: string | undefined;
38824
39060
  body?: {
@@ -38851,6 +39087,17 @@ declare const SysApprovalAction: Omit<{
38851
39087
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
38852
39088
  confirmText?: string | undefined;
38853
39089
  successMessage?: string | undefined;
39090
+ resultDialog?: {
39091
+ title?: string | undefined;
39092
+ description?: string | undefined;
39093
+ acknowledge?: string | undefined;
39094
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
39095
+ fields?: {
39096
+ path: string;
39097
+ label?: string | undefined;
39098
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
39099
+ }[] | undefined;
39100
+ } | undefined;
38854
39101
  visible?: {
38855
39102
  dialect: "cel" | "js" | "cron" | "template";
38856
39103
  source?: string | undefined;
@@ -41149,6 +41396,14 @@ declare const SysJob: Omit<{
41149
41396
  } | undefined;
41150
41397
  recordTypes?: string[] | undefined;
41151
41398
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
41399
+ publicSharing?: {
41400
+ enabled: boolean;
41401
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
41402
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
41403
+ maxExpiryDays?: number | undefined;
41404
+ redactFields?: string[] | undefined;
41405
+ eligibility?: string | undefined;
41406
+ } | undefined;
41152
41407
  keyPrefix?: string | undefined;
41153
41408
  detail?: {
41154
41409
  [x: string]: unknown;
@@ -41163,7 +41418,7 @@ declare const SysJob: Omit<{
41163
41418
  refreshAfter: boolean;
41164
41419
  objectName?: string | undefined;
41165
41420
  icon?: string | undefined;
41166
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
41421
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
41167
41422
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
41168
41423
  target?: string | undefined;
41169
41424
  body?: {
@@ -41196,6 +41451,17 @@ declare const SysJob: Omit<{
41196
41451
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
41197
41452
  confirmText?: string | undefined;
41198
41453
  successMessage?: string | undefined;
41454
+ resultDialog?: {
41455
+ title?: string | undefined;
41456
+ description?: string | undefined;
41457
+ acknowledge?: string | undefined;
41458
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
41459
+ fields?: {
41460
+ path: string;
41461
+ label?: string | undefined;
41462
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
41463
+ }[] | undefined;
41464
+ } | undefined;
41199
41465
  visible?: {
41200
41466
  dialect: "cel" | "js" | "cron" | "template";
41201
41467
  source?: string | undefined;
@@ -44128,6 +44394,14 @@ declare const SysJobRun: Omit<{
44128
44394
  } | undefined;
44129
44395
  recordTypes?: string[] | undefined;
44130
44396
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
44397
+ publicSharing?: {
44398
+ enabled: boolean;
44399
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
44400
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
44401
+ maxExpiryDays?: number | undefined;
44402
+ redactFields?: string[] | undefined;
44403
+ eligibility?: string | undefined;
44404
+ } | undefined;
44131
44405
  keyPrefix?: string | undefined;
44132
44406
  detail?: {
44133
44407
  [x: string]: unknown;
@@ -44142,7 +44416,7 @@ declare const SysJobRun: Omit<{
44142
44416
  refreshAfter: boolean;
44143
44417
  objectName?: string | undefined;
44144
44418
  icon?: string | undefined;
44145
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
44419
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
44146
44420
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
44147
44421
  target?: string | undefined;
44148
44422
  body?: {
@@ -44175,6 +44449,17 @@ declare const SysJobRun: Omit<{
44175
44449
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
44176
44450
  confirmText?: string | undefined;
44177
44451
  successMessage?: string | undefined;
44452
+ resultDialog?: {
44453
+ title?: string | undefined;
44454
+ description?: string | undefined;
44455
+ acknowledge?: string | undefined;
44456
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
44457
+ fields?: {
44458
+ path: string;
44459
+ label?: string | undefined;
44460
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
44461
+ }[] | undefined;
44462
+ } | undefined;
44178
44463
  visible?: {
44179
44464
  dialect: "cel" | "js" | "cron" | "template";
44180
44465
  source?: string | undefined;
@@ -46590,6 +46875,14 @@ declare const SysJobQueue: Omit<{
46590
46875
  } | undefined;
46591
46876
  recordTypes?: string[] | undefined;
46592
46877
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
46878
+ publicSharing?: {
46879
+ enabled: boolean;
46880
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
46881
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
46882
+ maxExpiryDays?: number | undefined;
46883
+ redactFields?: string[] | undefined;
46884
+ eligibility?: string | undefined;
46885
+ } | undefined;
46593
46886
  keyPrefix?: string | undefined;
46594
46887
  detail?: {
46595
46888
  [x: string]: unknown;
@@ -46604,7 +46897,7 @@ declare const SysJobQueue: Omit<{
46604
46897
  refreshAfter: boolean;
46605
46898
  objectName?: string | undefined;
46606
46899
  icon?: string | undefined;
46607
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
46900
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
46608
46901
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
46609
46902
  target?: string | undefined;
46610
46903
  body?: {
@@ -46637,6 +46930,17 @@ declare const SysJobQueue: Omit<{
46637
46930
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
46638
46931
  confirmText?: string | undefined;
46639
46932
  successMessage?: string | undefined;
46933
+ resultDialog?: {
46934
+ title?: string | undefined;
46935
+ description?: string | undefined;
46936
+ acknowledge?: string | undefined;
46937
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
46938
+ fields?: {
46939
+ path: string;
46940
+ label?: string | undefined;
46941
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
46942
+ }[] | undefined;
46943
+ } | undefined;
46640
46944
  visible?: {
46641
46945
  dialect: "cel" | "js" | "cron" | "template";
46642
46946
  source?: string | undefined;