@objectstack/platform-objects 6.9.0 → 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.
- package/dist/apps/index.d.mts +30 -1
- package/dist/apps/index.d.ts +30 -1
- package/dist/apps/index.js +994 -37
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +994 -38
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +192 -16
- package/dist/audit/index.d.ts +192 -16
- package/dist/identity/index.d.mts +840 -22
- package/dist/identity/index.d.ts +840 -22
- package/dist/identity/index.js +384 -8
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +384 -8
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +6815 -104
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6810 -105
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +12 -1
- package/dist/integration/index.d.ts +12 -1
- package/dist/metadata/index.d.mts +24 -2
- package/dist/metadata/index.d.ts +24 -2
- package/dist/metadata-translations/index.d.mts +20 -0
- package/dist/metadata-translations/index.d.ts +20 -0
- package/dist/metadata-translations/index.js +4777 -0
- package/dist/metadata-translations/index.js.map +1 -0
- package/dist/metadata-translations/index.mjs +4775 -0
- package/dist/metadata-translations/index.mjs.map +1 -0
- package/dist/pages/index.d.mts +68 -0
- package/dist/pages/index.d.ts +68 -0
- package/dist/pages/index.js +371 -0
- package/dist/pages/index.js.map +1 -0
- package/dist/pages/index.mjs +368 -0
- package/dist/pages/index.mjs.map +1 -0
- package/dist/plugin.d.mts +35 -0
- package/dist/plugin.d.ts +35 -0
- package/dist/plugin.js +17566 -0
- package/dist/plugin.js.map +1 -0
- package/dist/plugin.mjs +17563 -0
- package/dist/plugin.mjs.map +1 -0
- package/dist/security/index.d.mts +785 -183
- package/dist/security/index.d.ts +785 -183
- package/dist/security/index.js +188 -1
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +188 -1
- package/dist/security/index.mjs.map +1 -1
- package/dist/system/index.d.mts +36 -3
- package/dist/system/index.d.ts +36 -3
- package/package.json +17 -2
package/dist/audit/index.d.ts
CHANGED
|
@@ -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?: {
|
|
@@ -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;
|
|
@@ -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?: {
|
|
@@ -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;
|
|
@@ -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?: {
|
|
@@ -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;
|
|
@@ -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?: {
|
|
@@ -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;
|
|
@@ -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?: {
|
|
@@ -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;
|
|
@@ -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?: {
|
|
@@ -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;
|
|
@@ -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?: {
|
|
@@ -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;
|
|
@@ -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?: {
|
|
@@ -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;
|
|
@@ -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?: {
|
|
@@ -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;
|
|
@@ -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?: {
|
|
@@ -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;
|
|
@@ -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?: {
|
|
@@ -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;
|
|
@@ -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?: {
|
|
@@ -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;
|
|
@@ -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?: {
|
|
@@ -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;
|
|
@@ -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?: {
|
|
@@ -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;
|
|
@@ -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?: {
|
|
@@ -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;
|
|
@@ -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?: {
|
|
@@ -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;
|