@objectstack/platform-objects 6.9.0 → 7.1.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 +987 -37
  4. package/dist/apps/index.js.map +1 -1
  5. package/dist/apps/index.mjs +987 -38
  6. package/dist/apps/index.mjs.map +1 -1
  7. package/dist/audit/index.d.mts +240 -64
  8. package/dist/audit/index.d.ts +240 -64
  9. package/dist/identity/index.d.mts +900 -82
  10. package/dist/identity/index.d.ts +900 -82
  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 +4 -1
  16. package/dist/index.d.ts +4 -1
  17. package/dist/index.js +6823 -99
  18. package/dist/index.js.map +1 -1
  19. package/dist/index.mjs +6818 -100
  20. package/dist/index.mjs.map +1 -1
  21. package/dist/integration/index.d.mts +15 -4
  22. package/dist/integration/index.d.ts +15 -4
  23. package/dist/metadata/index.d.mts +30 -8
  24. package/dist/metadata/index.d.ts +30 -8
  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 +73 -0
  32. package/dist/pages/index.d.ts +73 -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 +17562 -0
  40. package/dist/plugin.js.map +1 -0
  41. package/dist/plugin.mjs +17559 -0
  42. package/dist/plugin.mjs.map +1 -0
  43. package/dist/security/index.d.mts +806 -204
  44. package/dist/security/index.d.ts +806 -204
  45. package/dist/security/index.js +208 -1
  46. package/dist/security/index.js.map +1 -1
  47. package/dist/security/index.mjs +208 -1
  48. package/dist/security/index.mjs.map +1 -1
  49. package/dist/system/index.d.mts +45 -12
  50. package/dist/system/index.d.ts +45 -12
  51. package/package.json +17 -2
@@ -20,7 +20,7 @@ declare const SysAuditLog: Omit<{
20
20
  abstract: boolean;
21
21
  datasource: string;
22
22
  fields: Record<string, {
23
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
23
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
24
24
  required: boolean;
25
25
  searchable: boolean;
26
26
  multiple: boolean;
@@ -159,7 +159,7 @@ declare const SysAuditLog: Omit<{
159
159
  autoRotate: boolean;
160
160
  } | undefined;
161
161
  };
162
- scope: "field" | "record" | "table" | "database";
162
+ scope: "record" | "field" | "table" | "database";
163
163
  deterministicEncryption: boolean;
164
164
  searchableEncryption: boolean;
165
165
  } | undefined;
@@ -622,7 +622,7 @@ declare const SysAuditLog: Omit<{
622
622
  refreshAfter: boolean;
623
623
  objectName?: string | undefined;
624
624
  icon?: string | undefined;
625
- 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;
626
626
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
627
627
  target?: string | undefined;
628
628
  body?: {
@@ -642,7 +642,7 @@ declare const SysAuditLog: Omit<{
642
642
  field?: string | undefined;
643
643
  objectOverride?: string | undefined;
644
644
  label?: string | undefined;
645
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
645
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
646
646
  options?: {
647
647
  label: string;
648
648
  value: string;
@@ -655,6 +655,17 @@ declare const SysAuditLog: Omit<{
655
655
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
656
656
  confirmText?: string | undefined;
657
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;
658
669
  visible?: {
659
670
  dialect: "cel" | "js" | "cron" | "template";
660
671
  source?: string | undefined;
@@ -2951,7 +2962,7 @@ declare const SysPresence: Omit<{
2951
2962
  abstract: boolean;
2952
2963
  datasource: string;
2953
2964
  fields: Record<string, {
2954
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
2965
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
2955
2966
  required: boolean;
2956
2967
  searchable: boolean;
2957
2968
  multiple: boolean;
@@ -3090,7 +3101,7 @@ declare const SysPresence: Omit<{
3090
3101
  autoRotate: boolean;
3091
3102
  } | undefined;
3092
3103
  };
3093
- scope: "field" | "record" | "table" | "database";
3104
+ scope: "record" | "field" | "table" | "database";
3094
3105
  deterministicEncryption: boolean;
3095
3106
  searchableEncryption: boolean;
3096
3107
  } | undefined;
@@ -3553,7 +3564,7 @@ declare const SysPresence: Omit<{
3553
3564
  refreshAfter: boolean;
3554
3565
  objectName?: string | undefined;
3555
3566
  icon?: string | undefined;
3556
- 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;
3557
3568
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
3558
3569
  target?: string | undefined;
3559
3570
  body?: {
@@ -3573,7 +3584,7 @@ declare const SysPresence: Omit<{
3573
3584
  field?: string | undefined;
3574
3585
  objectOverride?: string | undefined;
3575
3586
  label?: string | undefined;
3576
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
3587
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
3577
3588
  options?: {
3578
3589
  label: string;
3579
3590
  value: string;
@@ -3586,6 +3597,17 @@ declare const SysPresence: Omit<{
3586
3597
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
3587
3598
  confirmText?: string | undefined;
3588
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;
3589
3611
  visible?: {
3590
3612
  dialect: "cel" | "js" | "cron" | "template";
3591
3613
  source?: string | undefined;
@@ -5600,7 +5622,7 @@ declare const SysActivity: Omit<{
5600
5622
  abstract: boolean;
5601
5623
  datasource: string;
5602
5624
  fields: Record<string, {
5603
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
5625
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
5604
5626
  required: boolean;
5605
5627
  searchable: boolean;
5606
5628
  multiple: boolean;
@@ -5739,7 +5761,7 @@ declare const SysActivity: Omit<{
5739
5761
  autoRotate: boolean;
5740
5762
  } | undefined;
5741
5763
  };
5742
- scope: "field" | "record" | "table" | "database";
5764
+ scope: "record" | "field" | "table" | "database";
5743
5765
  deterministicEncryption: boolean;
5744
5766
  searchableEncryption: boolean;
5745
5767
  } | undefined;
@@ -6202,7 +6224,7 @@ declare const SysActivity: Omit<{
6202
6224
  refreshAfter: boolean;
6203
6225
  objectName?: string | undefined;
6204
6226
  icon?: string | undefined;
6205
- 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;
6206
6228
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
6207
6229
  target?: string | undefined;
6208
6230
  body?: {
@@ -6222,7 +6244,7 @@ declare const SysActivity: Omit<{
6222
6244
  field?: string | undefined;
6223
6245
  objectOverride?: string | undefined;
6224
6246
  label?: string | undefined;
6225
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
6247
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
6226
6248
  options?: {
6227
6249
  label: string;
6228
6250
  value: string;
@@ -6235,6 +6257,17 @@ declare const SysActivity: Omit<{
6235
6257
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
6236
6258
  confirmText?: string | undefined;
6237
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;
6238
6271
  visible?: {
6239
6272
  dialect: "cel" | "js" | "cron" | "template";
6240
6273
  source?: string | undefined;
@@ -8603,7 +8636,7 @@ declare const SysComment: Omit<{
8603
8636
  abstract: boolean;
8604
8637
  datasource: string;
8605
8638
  fields: Record<string, {
8606
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
8639
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
8607
8640
  required: boolean;
8608
8641
  searchable: boolean;
8609
8642
  multiple: boolean;
@@ -8742,7 +8775,7 @@ declare const SysComment: Omit<{
8742
8775
  autoRotate: boolean;
8743
8776
  } | undefined;
8744
8777
  };
8745
- scope: "field" | "record" | "table" | "database";
8778
+ scope: "record" | "field" | "table" | "database";
8746
8779
  deterministicEncryption: boolean;
8747
8780
  searchableEncryption: boolean;
8748
8781
  } | undefined;
@@ -9205,7 +9238,7 @@ declare const SysComment: Omit<{
9205
9238
  refreshAfter: boolean;
9206
9239
  objectName?: string | undefined;
9207
9240
  icon?: string | undefined;
9208
- 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;
9209
9242
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
9210
9243
  target?: string | undefined;
9211
9244
  body?: {
@@ -9225,7 +9258,7 @@ declare const SysComment: Omit<{
9225
9258
  field?: string | undefined;
9226
9259
  objectOverride?: string | undefined;
9227
9260
  label?: string | undefined;
9228
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
9261
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
9229
9262
  options?: {
9230
9263
  label: string;
9231
9264
  value: string;
@@ -9238,6 +9271,17 @@ declare const SysComment: Omit<{
9238
9271
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
9239
9272
  confirmText?: string | undefined;
9240
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;
9241
9285
  visible?: {
9242
9286
  dialect: "cel" | "js" | "cron" | "template";
9243
9287
  source?: string | undefined;
@@ -11956,7 +12000,7 @@ declare const SysAttachment: Omit<{
11956
12000
  abstract: boolean;
11957
12001
  datasource: string;
11958
12002
  fields: Record<string, {
11959
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
12003
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
11960
12004
  required: boolean;
11961
12005
  searchable: boolean;
11962
12006
  multiple: boolean;
@@ -12095,7 +12139,7 @@ declare const SysAttachment: Omit<{
12095
12139
  autoRotate: boolean;
12096
12140
  } | undefined;
12097
12141
  };
12098
- scope: "field" | "record" | "table" | "database";
12142
+ scope: "record" | "field" | "table" | "database";
12099
12143
  deterministicEncryption: boolean;
12100
12144
  searchableEncryption: boolean;
12101
12145
  } | undefined;
@@ -12558,7 +12602,7 @@ declare const SysAttachment: Omit<{
12558
12602
  refreshAfter: boolean;
12559
12603
  objectName?: string | undefined;
12560
12604
  icon?: string | undefined;
12561
- 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;
12562
12606
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
12563
12607
  target?: string | undefined;
12564
12608
  body?: {
@@ -12578,7 +12622,7 @@ declare const SysAttachment: Omit<{
12578
12622
  field?: string | undefined;
12579
12623
  objectOverride?: string | undefined;
12580
12624
  label?: string | undefined;
12581
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
12625
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
12582
12626
  options?: {
12583
12627
  label: string;
12584
12628
  value: string;
@@ -12591,6 +12635,17 @@ declare const SysAttachment: Omit<{
12591
12635
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
12592
12636
  confirmText?: string | undefined;
12593
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;
12594
12649
  visible?: {
12595
12650
  dialect: "cel" | "js" | "cron" | "template";
12596
12651
  source?: string | undefined;
@@ -14953,7 +15008,7 @@ declare const SysNotification: Omit<{
14953
15008
  abstract: boolean;
14954
15009
  datasource: string;
14955
15010
  fields: Record<string, {
14956
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
15011
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
14957
15012
  required: boolean;
14958
15013
  searchable: boolean;
14959
15014
  multiple: boolean;
@@ -15092,7 +15147,7 @@ declare const SysNotification: Omit<{
15092
15147
  autoRotate: boolean;
15093
15148
  } | undefined;
15094
15149
  };
15095
- scope: "field" | "record" | "table" | "database";
15150
+ scope: "record" | "field" | "table" | "database";
15096
15151
  deterministicEncryption: boolean;
15097
15152
  searchableEncryption: boolean;
15098
15153
  } | undefined;
@@ -15555,7 +15610,7 @@ declare const SysNotification: Omit<{
15555
15610
  refreshAfter: boolean;
15556
15611
  objectName?: string | undefined;
15557
15612
  icon?: string | undefined;
15558
- 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;
15559
15614
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
15560
15615
  target?: string | undefined;
15561
15616
  body?: {
@@ -15575,7 +15630,7 @@ declare const SysNotification: Omit<{
15575
15630
  field?: string | undefined;
15576
15631
  objectOverride?: string | undefined;
15577
15632
  label?: string | undefined;
15578
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
15633
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
15579
15634
  options?: {
15580
15635
  label: string;
15581
15636
  value: string;
@@ -15588,6 +15643,17 @@ declare const SysNotification: Omit<{
15588
15643
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
15589
15644
  confirmText?: string | undefined;
15590
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;
15591
15657
  visible?: {
15592
15658
  dialect: "cel" | "js" | "cron" | "template";
15593
15659
  source?: string | undefined;
@@ -18240,7 +18306,7 @@ declare const SysEmail: Omit<{
18240
18306
  abstract: boolean;
18241
18307
  datasource: string;
18242
18308
  fields: Record<string, {
18243
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
18309
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
18244
18310
  required: boolean;
18245
18311
  searchable: boolean;
18246
18312
  multiple: boolean;
@@ -18379,7 +18445,7 @@ declare const SysEmail: Omit<{
18379
18445
  autoRotate: boolean;
18380
18446
  } | undefined;
18381
18447
  };
18382
- scope: "field" | "record" | "table" | "database";
18448
+ scope: "record" | "field" | "table" | "database";
18383
18449
  deterministicEncryption: boolean;
18384
18450
  searchableEncryption: boolean;
18385
18451
  } | undefined;
@@ -18842,7 +18908,7 @@ declare const SysEmail: Omit<{
18842
18908
  refreshAfter: boolean;
18843
18909
  objectName?: string | undefined;
18844
18910
  icon?: string | undefined;
18845
- 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;
18846
18912
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
18847
18913
  target?: string | undefined;
18848
18914
  body?: {
@@ -18862,7 +18928,7 @@ declare const SysEmail: Omit<{
18862
18928
  field?: string | undefined;
18863
18929
  objectOverride?: string | undefined;
18864
18930
  label?: string | undefined;
18865
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
18931
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
18866
18932
  options?: {
18867
18933
  label: string;
18868
18934
  value: string;
@@ -18875,6 +18941,17 @@ declare const SysEmail: Omit<{
18875
18941
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
18876
18942
  confirmText?: string | undefined;
18877
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;
18878
18955
  visible?: {
18879
18956
  dialect: "cel" | "js" | "cron" | "template";
18880
18957
  source?: string | undefined;
@@ -22279,7 +22356,7 @@ declare const SysEmailTemplate: Omit<{
22279
22356
  abstract: boolean;
22280
22357
  datasource: string;
22281
22358
  fields: Record<string, {
22282
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
22359
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
22283
22360
  required: boolean;
22284
22361
  searchable: boolean;
22285
22362
  multiple: boolean;
@@ -22418,7 +22495,7 @@ declare const SysEmailTemplate: Omit<{
22418
22495
  autoRotate: boolean;
22419
22496
  } | undefined;
22420
22497
  };
22421
- scope: "field" | "record" | "table" | "database";
22498
+ scope: "record" | "field" | "table" | "database";
22422
22499
  deterministicEncryption: boolean;
22423
22500
  searchableEncryption: boolean;
22424
22501
  } | undefined;
@@ -22881,7 +22958,7 @@ declare const SysEmailTemplate: Omit<{
22881
22958
  refreshAfter: boolean;
22882
22959
  objectName?: string | undefined;
22883
22960
  icon?: string | undefined;
22884
- 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;
22885
22962
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
22886
22963
  target?: string | undefined;
22887
22964
  body?: {
@@ -22901,7 +22978,7 @@ declare const SysEmailTemplate: Omit<{
22901
22978
  field?: string | undefined;
22902
22979
  objectOverride?: string | undefined;
22903
22980
  label?: string | undefined;
22904
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
22981
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
22905
22982
  options?: {
22906
22983
  label: string;
22907
22984
  value: string;
@@ -22914,6 +22991,17 @@ declare const SysEmailTemplate: Omit<{
22914
22991
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
22915
22992
  confirmText?: string | undefined;
22916
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;
22917
23005
  visible?: {
22918
23006
  dialect: "cel" | "js" | "cron" | "template";
22919
23007
  source?: string | undefined;
@@ -25982,7 +26070,7 @@ declare const SysSavedReport: Omit<{
25982
26070
  abstract: boolean;
25983
26071
  datasource: string;
25984
26072
  fields: Record<string, {
25985
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
26073
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
25986
26074
  required: boolean;
25987
26075
  searchable: boolean;
25988
26076
  multiple: boolean;
@@ -26121,7 +26209,7 @@ declare const SysSavedReport: Omit<{
26121
26209
  autoRotate: boolean;
26122
26210
  } | undefined;
26123
26211
  };
26124
- scope: "field" | "record" | "table" | "database";
26212
+ scope: "record" | "field" | "table" | "database";
26125
26213
  deterministicEncryption: boolean;
26126
26214
  searchableEncryption: boolean;
26127
26215
  } | undefined;
@@ -26584,7 +26672,7 @@ declare const SysSavedReport: Omit<{
26584
26672
  refreshAfter: boolean;
26585
26673
  objectName?: string | undefined;
26586
26674
  icon?: string | undefined;
26587
- 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;
26588
26676
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
26589
26677
  target?: string | undefined;
26590
26678
  body?: {
@@ -26604,7 +26692,7 @@ declare const SysSavedReport: Omit<{
26604
26692
  field?: string | undefined;
26605
26693
  objectOverride?: string | undefined;
26606
26694
  label?: string | undefined;
26607
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
26695
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
26608
26696
  options?: {
26609
26697
  label: string;
26610
26698
  value: string;
@@ -26617,6 +26705,17 @@ declare const SysSavedReport: Omit<{
26617
26705
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
26618
26706
  confirmText?: string | undefined;
26619
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;
26620
26719
  visible?: {
26621
26720
  dialect: "cel" | "js" | "cron" | "template";
26622
26721
  source?: string | undefined;
@@ -28633,7 +28732,7 @@ declare const SysReportSchedule: Omit<{
28633
28732
  abstract: boolean;
28634
28733
  datasource: string;
28635
28734
  fields: Record<string, {
28636
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
28735
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
28637
28736
  required: boolean;
28638
28737
  searchable: boolean;
28639
28738
  multiple: boolean;
@@ -28772,7 +28871,7 @@ declare const SysReportSchedule: Omit<{
28772
28871
  autoRotate: boolean;
28773
28872
  } | undefined;
28774
28873
  };
28775
- scope: "field" | "record" | "table" | "database";
28874
+ scope: "record" | "field" | "table" | "database";
28776
28875
  deterministicEncryption: boolean;
28777
28876
  searchableEncryption: boolean;
28778
28877
  } | undefined;
@@ -29235,7 +29334,7 @@ declare const SysReportSchedule: Omit<{
29235
29334
  refreshAfter: boolean;
29236
29335
  objectName?: string | undefined;
29237
29336
  icon?: string | undefined;
29238
- 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;
29239
29338
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
29240
29339
  target?: string | undefined;
29241
29340
  body?: {
@@ -29255,7 +29354,7 @@ declare const SysReportSchedule: Omit<{
29255
29354
  field?: string | undefined;
29256
29355
  objectOverride?: string | undefined;
29257
29356
  label?: string | undefined;
29258
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
29357
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
29259
29358
  options?: {
29260
29359
  label: string;
29261
29360
  value: string;
@@ -29268,6 +29367,17 @@ declare const SysReportSchedule: Omit<{
29268
29367
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
29269
29368
  confirmText?: string | undefined;
29270
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;
29271
29381
  visible?: {
29272
29382
  dialect: "cel" | "js" | "cron" | "template";
29273
29383
  source?: string | undefined;
@@ -32323,7 +32433,7 @@ declare const SysApprovalProcess: Omit<{
32323
32433
  abstract: boolean;
32324
32434
  datasource: string;
32325
32435
  fields: Record<string, {
32326
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
32436
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
32327
32437
  required: boolean;
32328
32438
  searchable: boolean;
32329
32439
  multiple: boolean;
@@ -32462,7 +32572,7 @@ declare const SysApprovalProcess: Omit<{
32462
32572
  autoRotate: boolean;
32463
32573
  } | undefined;
32464
32574
  };
32465
- scope: "field" | "record" | "table" | "database";
32575
+ scope: "record" | "field" | "table" | "database";
32466
32576
  deterministicEncryption: boolean;
32467
32577
  searchableEncryption: boolean;
32468
32578
  } | undefined;
@@ -32925,7 +33035,7 @@ declare const SysApprovalProcess: Omit<{
32925
33035
  refreshAfter: boolean;
32926
33036
  objectName?: string | undefined;
32927
33037
  icon?: string | undefined;
32928
- 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;
32929
33039
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
32930
33040
  target?: string | undefined;
32931
33041
  body?: {
@@ -32945,7 +33055,7 @@ declare const SysApprovalProcess: Omit<{
32945
33055
  field?: string | undefined;
32946
33056
  objectOverride?: string | undefined;
32947
33057
  label?: string | undefined;
32948
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
33058
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
32949
33059
  options?: {
32950
33060
  label: string;
32951
33061
  value: string;
@@ -32958,6 +33068,17 @@ declare const SysApprovalProcess: Omit<{
32958
33068
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
32959
33069
  confirmText?: string | undefined;
32960
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;
32961
33082
  visible?: {
32962
33083
  dialect: "cel" | "js" | "cron" | "template";
32963
33084
  source?: string | undefined;
@@ -34714,7 +34835,7 @@ declare const SysApprovalRequest: Omit<{
34714
34835
  abstract: boolean;
34715
34836
  datasource: string;
34716
34837
  fields: Record<string, {
34717
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
34838
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
34718
34839
  required: boolean;
34719
34840
  searchable: boolean;
34720
34841
  multiple: boolean;
@@ -34853,7 +34974,7 @@ declare const SysApprovalRequest: Omit<{
34853
34974
  autoRotate: boolean;
34854
34975
  } | undefined;
34855
34976
  };
34856
- scope: "field" | "record" | "table" | "database";
34977
+ scope: "record" | "field" | "table" | "database";
34857
34978
  deterministicEncryption: boolean;
34858
34979
  searchableEncryption: boolean;
34859
34980
  } | undefined;
@@ -35316,7 +35437,7 @@ declare const SysApprovalRequest: Omit<{
35316
35437
  refreshAfter: boolean;
35317
35438
  objectName?: string | undefined;
35318
35439
  icon?: string | undefined;
35319
- 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;
35320
35441
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
35321
35442
  target?: string | undefined;
35322
35443
  body?: {
@@ -35336,7 +35457,7 @@ declare const SysApprovalRequest: Omit<{
35336
35457
  field?: string | undefined;
35337
35458
  objectOverride?: string | undefined;
35338
35459
  label?: string | undefined;
35339
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
35460
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
35340
35461
  options?: {
35341
35462
  label: string;
35342
35463
  value: string;
@@ -35349,6 +35470,17 @@ declare const SysApprovalRequest: Omit<{
35349
35470
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
35350
35471
  confirmText?: string | undefined;
35351
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;
35352
35484
  visible?: {
35353
35485
  dialect: "cel" | "js" | "cron" | "template";
35354
35486
  source?: string | undefined;
@@ -38320,7 +38452,7 @@ declare const SysApprovalAction: Omit<{
38320
38452
  abstract: boolean;
38321
38453
  datasource: string;
38322
38454
  fields: Record<string, {
38323
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
38455
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
38324
38456
  required: boolean;
38325
38457
  searchable: boolean;
38326
38458
  multiple: boolean;
@@ -38459,7 +38591,7 @@ declare const SysApprovalAction: Omit<{
38459
38591
  autoRotate: boolean;
38460
38592
  } | undefined;
38461
38593
  };
38462
- scope: "field" | "record" | "table" | "database";
38594
+ scope: "record" | "field" | "table" | "database";
38463
38595
  deterministicEncryption: boolean;
38464
38596
  searchableEncryption: boolean;
38465
38597
  } | undefined;
@@ -38922,7 +39054,7 @@ declare const SysApprovalAction: Omit<{
38922
39054
  refreshAfter: boolean;
38923
39055
  objectName?: string | undefined;
38924
39056
  icon?: string | undefined;
38925
- 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;
38926
39058
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
38927
39059
  target?: string | undefined;
38928
39060
  body?: {
@@ -38942,7 +39074,7 @@ declare const SysApprovalAction: Omit<{
38942
39074
  field?: string | undefined;
38943
39075
  objectOverride?: string | undefined;
38944
39076
  label?: string | undefined;
38945
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
39077
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
38946
39078
  options?: {
38947
39079
  label: string;
38948
39080
  value: string;
@@ -38955,6 +39087,17 @@ declare const SysApprovalAction: Omit<{
38955
39087
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
38956
39088
  confirmText?: string | undefined;
38957
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;
38958
39101
  visible?: {
38959
39102
  dialect: "cel" | "js" | "cron" | "template";
38960
39103
  source?: string | undefined;
@@ -40673,7 +40816,7 @@ declare const SysJob: Omit<{
40673
40816
  abstract: boolean;
40674
40817
  datasource: string;
40675
40818
  fields: Record<string, {
40676
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
40819
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
40677
40820
  required: boolean;
40678
40821
  searchable: boolean;
40679
40822
  multiple: boolean;
@@ -40812,7 +40955,7 @@ declare const SysJob: Omit<{
40812
40955
  autoRotate: boolean;
40813
40956
  } | undefined;
40814
40957
  };
40815
- scope: "field" | "record" | "table" | "database";
40958
+ scope: "record" | "field" | "table" | "database";
40816
40959
  deterministicEncryption: boolean;
40817
40960
  searchableEncryption: boolean;
40818
40961
  } | undefined;
@@ -41275,7 +41418,7 @@ declare const SysJob: Omit<{
41275
41418
  refreshAfter: boolean;
41276
41419
  objectName?: string | undefined;
41277
41420
  icon?: string | undefined;
41278
- 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;
41279
41422
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
41280
41423
  target?: string | undefined;
41281
41424
  body?: {
@@ -41295,7 +41438,7 @@ declare const SysJob: Omit<{
41295
41438
  field?: string | undefined;
41296
41439
  objectOverride?: string | undefined;
41297
41440
  label?: string | undefined;
41298
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
41441
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
41299
41442
  options?: {
41300
41443
  label: string;
41301
41444
  value: string;
@@ -41308,6 +41451,17 @@ declare const SysJob: Omit<{
41308
41451
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
41309
41452
  confirmText?: string | undefined;
41310
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;
41311
41465
  visible?: {
41312
41466
  dialect: "cel" | "js" | "cron" | "template";
41313
41467
  source?: string | undefined;
@@ -43660,7 +43814,7 @@ declare const SysJobRun: Omit<{
43660
43814
  abstract: boolean;
43661
43815
  datasource: string;
43662
43816
  fields: Record<string, {
43663
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
43817
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
43664
43818
  required: boolean;
43665
43819
  searchable: boolean;
43666
43820
  multiple: boolean;
@@ -43799,7 +43953,7 @@ declare const SysJobRun: Omit<{
43799
43953
  autoRotate: boolean;
43800
43954
  } | undefined;
43801
43955
  };
43802
- scope: "field" | "record" | "table" | "database";
43956
+ scope: "record" | "field" | "table" | "database";
43803
43957
  deterministicEncryption: boolean;
43804
43958
  searchableEncryption: boolean;
43805
43959
  } | undefined;
@@ -44262,7 +44416,7 @@ declare const SysJobRun: Omit<{
44262
44416
  refreshAfter: boolean;
44263
44417
  objectName?: string | undefined;
44264
44418
  icon?: string | undefined;
44265
- 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;
44266
44420
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
44267
44421
  target?: string | undefined;
44268
44422
  body?: {
@@ -44282,7 +44436,7 @@ declare const SysJobRun: Omit<{
44282
44436
  field?: string | undefined;
44283
44437
  objectOverride?: string | undefined;
44284
44438
  label?: string | undefined;
44285
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
44439
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
44286
44440
  options?: {
44287
44441
  label: string;
44288
44442
  value: string;
@@ -44295,6 +44449,17 @@ declare const SysJobRun: Omit<{
44295
44449
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
44296
44450
  confirmText?: string | undefined;
44297
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;
44298
44463
  visible?: {
44299
44464
  dialect: "cel" | "js" | "cron" | "template";
44300
44465
  source?: string | undefined;
@@ -46130,7 +46295,7 @@ declare const SysJobQueue: Omit<{
46130
46295
  abstract: boolean;
46131
46296
  datasource: string;
46132
46297
  fields: Record<string, {
46133
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
46298
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
46134
46299
  required: boolean;
46135
46300
  searchable: boolean;
46136
46301
  multiple: boolean;
@@ -46269,7 +46434,7 @@ declare const SysJobQueue: Omit<{
46269
46434
  autoRotate: boolean;
46270
46435
  } | undefined;
46271
46436
  };
46272
- scope: "field" | "record" | "table" | "database";
46437
+ scope: "record" | "field" | "table" | "database";
46273
46438
  deterministicEncryption: boolean;
46274
46439
  searchableEncryption: boolean;
46275
46440
  } | undefined;
@@ -46732,7 +46897,7 @@ declare const SysJobQueue: Omit<{
46732
46897
  refreshAfter: boolean;
46733
46898
  objectName?: string | undefined;
46734
46899
  icon?: string | undefined;
46735
- 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;
46736
46901
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
46737
46902
  target?: string | undefined;
46738
46903
  body?: {
@@ -46752,7 +46917,7 @@ declare const SysJobQueue: Omit<{
46752
46917
  field?: string | undefined;
46753
46918
  objectOverride?: string | undefined;
46754
46919
  label?: string | undefined;
46755
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
46920
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
46756
46921
  options?: {
46757
46922
  label: string;
46758
46923
  value: string;
@@ -46765,6 +46930,17 @@ declare const SysJobQueue: Omit<{
46765
46930
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
46766
46931
  confirmText?: string | undefined;
46767
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;
46768
46944
  visible?: {
46769
46945
  dialect: "cel" | "js" | "cron" | "template";
46770
46946
  source?: string | undefined;