@objectstack/platform-objects 10.2.0 → 11.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 +8 -8
- package/dist/apps/index.d.ts +8 -8
- package/dist/apps/index.js +35 -6
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +35 -6
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +346 -27
- package/dist/audit/index.d.ts +346 -27
- package/dist/identity/index.d.mts +19528 -13310
- package/dist/identity/index.d.ts +19528 -13310
- package/dist/identity/index.js +363 -8
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +362 -9
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +398 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +397 -15
- package/dist/index.mjs.map +1 -1
- package/dist/plugin.js +5 -2
- package/dist/plugin.js.map +1 -1
- package/dist/plugin.mjs +5 -2
- package/dist/plugin.mjs.map +1 -1
- package/dist/system/index.d.mts +100 -9
- package/dist/system/index.d.ts +100 -9
- package/package.json +3 -3
package/dist/audit/index.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ declare const SysNotification: Omit<{
|
|
|
30
30
|
abstract: boolean;
|
|
31
31
|
datasource: string;
|
|
32
32
|
fields: Record<string, {
|
|
33
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
33
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
34
34
|
required: boolean;
|
|
35
35
|
searchable: boolean;
|
|
36
36
|
multiple: boolean;
|
|
@@ -104,6 +104,7 @@ declare const SysNotification: Omit<{
|
|
|
104
104
|
generatedBy?: string | undefined;
|
|
105
105
|
} | undefined;
|
|
106
106
|
} | undefined;
|
|
107
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
107
108
|
summaryOperations?: {
|
|
108
109
|
object: string;
|
|
109
110
|
field: string;
|
|
@@ -238,6 +239,7 @@ declare const SysNotification: Omit<{
|
|
|
238
239
|
generatedBy?: string | undefined;
|
|
239
240
|
} | undefined;
|
|
240
241
|
} | undefined;
|
|
242
|
+
requiredPermissions?: string[] | undefined;
|
|
241
243
|
system?: boolean | undefined;
|
|
242
244
|
inlineHelpText?: string | undefined;
|
|
243
245
|
caseSensitive?: boolean | undefined;
|
|
@@ -313,6 +315,10 @@ declare const SysNotification: Omit<{
|
|
|
313
315
|
tenantField: string;
|
|
314
316
|
crossTenantAccess: boolean;
|
|
315
317
|
} | undefined;
|
|
318
|
+
access?: {
|
|
319
|
+
default: "public" | "private";
|
|
320
|
+
} | undefined;
|
|
321
|
+
requiredPermissions?: string[] | undefined;
|
|
316
322
|
softDelete?: {
|
|
317
323
|
enabled: boolean;
|
|
318
324
|
field: string;
|
|
@@ -679,7 +685,7 @@ declare const SysNotification: Omit<{
|
|
|
679
685
|
clone: boolean;
|
|
680
686
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
681
687
|
} | undefined;
|
|
682
|
-
sharingModel?: "full" | "
|
|
688
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
683
689
|
publicSharing?: {
|
|
684
690
|
enabled: boolean;
|
|
685
691
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -722,7 +728,7 @@ declare const SysNotification: Omit<{
|
|
|
722
728
|
field?: string | undefined;
|
|
723
729
|
objectOverride?: string | undefined;
|
|
724
730
|
label?: string | undefined;
|
|
725
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
731
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
726
732
|
options?: {
|
|
727
733
|
label: string;
|
|
728
734
|
value: string;
|
|
@@ -766,6 +772,7 @@ declare const SysNotification: Omit<{
|
|
|
766
772
|
generatedBy?: string | undefined;
|
|
767
773
|
} | undefined;
|
|
768
774
|
} | undefined;
|
|
775
|
+
requiredPermissions?: string[] | undefined;
|
|
769
776
|
shortcut?: string | undefined;
|
|
770
777
|
bulkEnabled?: boolean | undefined;
|
|
771
778
|
ai?: {
|
|
@@ -875,10 +882,12 @@ declare const SysNotification: Omit<{
|
|
|
875
882
|
readonly name?: string | undefined;
|
|
876
883
|
readonly precision?: number | undefined;
|
|
877
884
|
readonly required?: boolean | undefined;
|
|
885
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
878
886
|
readonly multiple?: boolean | undefined;
|
|
879
887
|
readonly dependencies?: string[] | undefined;
|
|
880
888
|
readonly externalId?: boolean | undefined;
|
|
881
889
|
readonly defaultValue?: unknown;
|
|
890
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
882
891
|
readonly group?: string | undefined;
|
|
883
892
|
readonly hidden?: boolean | undefined;
|
|
884
893
|
readonly system?: boolean | undefined;
|
|
@@ -1049,10 +1058,12 @@ declare const SysNotification: Omit<{
|
|
|
1049
1058
|
readonly name?: string | undefined;
|
|
1050
1059
|
readonly precision?: number | undefined;
|
|
1051
1060
|
readonly required?: boolean | undefined;
|
|
1061
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1052
1062
|
readonly multiple?: boolean | undefined;
|
|
1053
1063
|
readonly dependencies?: string[] | undefined;
|
|
1054
1064
|
readonly externalId?: boolean | undefined;
|
|
1055
1065
|
readonly defaultValue?: unknown;
|
|
1066
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1056
1067
|
readonly group?: string | undefined;
|
|
1057
1068
|
readonly hidden?: boolean | undefined;
|
|
1058
1069
|
readonly system?: boolean | undefined;
|
|
@@ -1223,10 +1234,12 @@ declare const SysNotification: Omit<{
|
|
|
1223
1234
|
readonly name?: string | undefined;
|
|
1224
1235
|
readonly precision?: number | undefined;
|
|
1225
1236
|
readonly required?: boolean | undefined;
|
|
1237
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1226
1238
|
readonly multiple?: boolean | undefined;
|
|
1227
1239
|
readonly dependencies?: string[] | undefined;
|
|
1228
1240
|
readonly externalId?: boolean | undefined;
|
|
1229
1241
|
readonly defaultValue?: unknown;
|
|
1242
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1230
1243
|
readonly group?: string | undefined;
|
|
1231
1244
|
readonly hidden?: boolean | undefined;
|
|
1232
1245
|
readonly system?: boolean | undefined;
|
|
@@ -1397,10 +1410,12 @@ declare const SysNotification: Omit<{
|
|
|
1397
1410
|
readonly name?: string | undefined;
|
|
1398
1411
|
readonly precision?: number | undefined;
|
|
1399
1412
|
readonly required?: boolean | undefined;
|
|
1413
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1400
1414
|
readonly multiple?: boolean | undefined;
|
|
1401
1415
|
readonly dependencies?: string[] | undefined;
|
|
1402
1416
|
readonly externalId?: boolean | undefined;
|
|
1403
1417
|
readonly defaultValue?: unknown;
|
|
1418
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1404
1419
|
readonly group?: string | undefined;
|
|
1405
1420
|
readonly hidden?: boolean | undefined;
|
|
1406
1421
|
readonly system?: boolean | undefined;
|
|
@@ -1571,10 +1586,12 @@ declare const SysNotification: Omit<{
|
|
|
1571
1586
|
readonly name?: string | undefined;
|
|
1572
1587
|
readonly precision?: number | undefined;
|
|
1573
1588
|
readonly required?: boolean | undefined;
|
|
1589
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1574
1590
|
readonly multiple?: boolean | undefined;
|
|
1575
1591
|
readonly dependencies?: string[] | undefined;
|
|
1576
1592
|
readonly externalId?: boolean | undefined;
|
|
1577
1593
|
readonly defaultValue?: unknown;
|
|
1594
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1578
1595
|
readonly group?: string | undefined;
|
|
1579
1596
|
readonly hidden?: boolean | undefined;
|
|
1580
1597
|
readonly system?: boolean | undefined;
|
|
@@ -1745,10 +1762,12 @@ declare const SysNotification: Omit<{
|
|
|
1745
1762
|
readonly name?: string | undefined;
|
|
1746
1763
|
readonly precision?: number | undefined;
|
|
1747
1764
|
readonly required?: boolean | undefined;
|
|
1765
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1748
1766
|
readonly multiple?: boolean | undefined;
|
|
1749
1767
|
readonly dependencies?: string[] | undefined;
|
|
1750
1768
|
readonly externalId?: boolean | undefined;
|
|
1751
1769
|
readonly defaultValue?: unknown;
|
|
1770
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1752
1771
|
readonly group?: string | undefined;
|
|
1753
1772
|
readonly hidden?: boolean | undefined;
|
|
1754
1773
|
readonly system?: boolean | undefined;
|
|
@@ -1919,10 +1938,12 @@ declare const SysNotification: Omit<{
|
|
|
1919
1938
|
readonly name?: string | undefined;
|
|
1920
1939
|
readonly precision?: number | undefined;
|
|
1921
1940
|
readonly required?: boolean | undefined;
|
|
1941
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1922
1942
|
readonly multiple?: boolean | undefined;
|
|
1923
1943
|
readonly dependencies?: string[] | undefined;
|
|
1924
1944
|
readonly externalId?: boolean | undefined;
|
|
1925
1945
|
readonly defaultValue?: unknown;
|
|
1946
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1926
1947
|
readonly group?: string | undefined;
|
|
1927
1948
|
readonly hidden?: boolean | undefined;
|
|
1928
1949
|
readonly system?: boolean | undefined;
|
|
@@ -2093,10 +2114,12 @@ declare const SysNotification: Omit<{
|
|
|
2093
2114
|
readonly name?: string | undefined;
|
|
2094
2115
|
readonly precision?: number | undefined;
|
|
2095
2116
|
readonly required?: boolean | undefined;
|
|
2117
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2096
2118
|
readonly multiple?: boolean | undefined;
|
|
2097
2119
|
readonly dependencies?: string[] | undefined;
|
|
2098
2120
|
readonly externalId?: boolean | undefined;
|
|
2099
2121
|
readonly defaultValue?: unknown;
|
|
2122
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2100
2123
|
readonly group?: string | undefined;
|
|
2101
2124
|
readonly hidden?: boolean | undefined;
|
|
2102
2125
|
readonly system?: boolean | undefined;
|
|
@@ -2267,10 +2290,12 @@ declare const SysNotification: Omit<{
|
|
|
2267
2290
|
readonly name?: string | undefined;
|
|
2268
2291
|
readonly precision?: number | undefined;
|
|
2269
2292
|
readonly required?: boolean | undefined;
|
|
2293
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2270
2294
|
readonly multiple?: boolean | undefined;
|
|
2271
2295
|
readonly dependencies?: string[] | undefined;
|
|
2272
2296
|
readonly externalId?: boolean | undefined;
|
|
2273
2297
|
readonly defaultValue?: unknown;
|
|
2298
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2274
2299
|
readonly group?: string | undefined;
|
|
2275
2300
|
readonly hidden?: boolean | undefined;
|
|
2276
2301
|
readonly system?: boolean | undefined;
|
|
@@ -2465,7 +2490,7 @@ declare const SysAttachment: Omit<{
|
|
|
2465
2490
|
abstract: boolean;
|
|
2466
2491
|
datasource: string;
|
|
2467
2492
|
fields: Record<string, {
|
|
2468
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
2493
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
2469
2494
|
required: boolean;
|
|
2470
2495
|
searchable: boolean;
|
|
2471
2496
|
multiple: boolean;
|
|
@@ -2539,6 +2564,7 @@ declare const SysAttachment: Omit<{
|
|
|
2539
2564
|
generatedBy?: string | undefined;
|
|
2540
2565
|
} | undefined;
|
|
2541
2566
|
} | undefined;
|
|
2567
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2542
2568
|
summaryOperations?: {
|
|
2543
2569
|
object: string;
|
|
2544
2570
|
field: string;
|
|
@@ -2673,6 +2699,7 @@ declare const SysAttachment: Omit<{
|
|
|
2673
2699
|
generatedBy?: string | undefined;
|
|
2674
2700
|
} | undefined;
|
|
2675
2701
|
} | undefined;
|
|
2702
|
+
requiredPermissions?: string[] | undefined;
|
|
2676
2703
|
system?: boolean | undefined;
|
|
2677
2704
|
inlineHelpText?: string | undefined;
|
|
2678
2705
|
caseSensitive?: boolean | undefined;
|
|
@@ -2748,6 +2775,10 @@ declare const SysAttachment: Omit<{
|
|
|
2748
2775
|
tenantField: string;
|
|
2749
2776
|
crossTenantAccess: boolean;
|
|
2750
2777
|
} | undefined;
|
|
2778
|
+
access?: {
|
|
2779
|
+
default: "public" | "private";
|
|
2780
|
+
} | undefined;
|
|
2781
|
+
requiredPermissions?: string[] | undefined;
|
|
2751
2782
|
softDelete?: {
|
|
2752
2783
|
enabled: boolean;
|
|
2753
2784
|
field: string;
|
|
@@ -3114,7 +3145,7 @@ declare const SysAttachment: Omit<{
|
|
|
3114
3145
|
clone: boolean;
|
|
3115
3146
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
3116
3147
|
} | undefined;
|
|
3117
|
-
sharingModel?: "full" | "
|
|
3148
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
3118
3149
|
publicSharing?: {
|
|
3119
3150
|
enabled: boolean;
|
|
3120
3151
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -3157,7 +3188,7 @@ declare const SysAttachment: Omit<{
|
|
|
3157
3188
|
field?: string | undefined;
|
|
3158
3189
|
objectOverride?: string | undefined;
|
|
3159
3190
|
label?: string | undefined;
|
|
3160
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
3191
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
3161
3192
|
options?: {
|
|
3162
3193
|
label: string;
|
|
3163
3194
|
value: string;
|
|
@@ -3201,6 +3232,7 @@ declare const SysAttachment: Omit<{
|
|
|
3201
3232
|
generatedBy?: string | undefined;
|
|
3202
3233
|
} | undefined;
|
|
3203
3234
|
} | undefined;
|
|
3235
|
+
requiredPermissions?: string[] | undefined;
|
|
3204
3236
|
shortcut?: string | undefined;
|
|
3205
3237
|
bulkEnabled?: boolean | undefined;
|
|
3206
3238
|
ai?: {
|
|
@@ -3262,10 +3294,12 @@ declare const SysAttachment: Omit<{
|
|
|
3262
3294
|
readonly name?: string | undefined;
|
|
3263
3295
|
readonly precision?: number | undefined;
|
|
3264
3296
|
readonly required?: boolean | undefined;
|
|
3297
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3265
3298
|
readonly multiple?: boolean | undefined;
|
|
3266
3299
|
readonly dependencies?: string[] | undefined;
|
|
3267
3300
|
readonly externalId?: boolean | undefined;
|
|
3268
3301
|
readonly defaultValue?: unknown;
|
|
3302
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3269
3303
|
readonly group?: string | undefined;
|
|
3270
3304
|
readonly hidden?: boolean | undefined;
|
|
3271
3305
|
readonly system?: boolean | undefined;
|
|
@@ -3436,10 +3470,12 @@ declare const SysAttachment: Omit<{
|
|
|
3436
3470
|
readonly name?: string | undefined;
|
|
3437
3471
|
readonly precision?: number | undefined;
|
|
3438
3472
|
readonly required?: boolean | undefined;
|
|
3473
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3439
3474
|
readonly multiple?: boolean | undefined;
|
|
3440
3475
|
readonly dependencies?: string[] | undefined;
|
|
3441
3476
|
readonly externalId?: boolean | undefined;
|
|
3442
3477
|
readonly defaultValue?: unknown;
|
|
3478
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3443
3479
|
readonly group?: string | undefined;
|
|
3444
3480
|
readonly hidden?: boolean | undefined;
|
|
3445
3481
|
readonly system?: boolean | undefined;
|
|
@@ -3610,10 +3646,12 @@ declare const SysAttachment: Omit<{
|
|
|
3610
3646
|
readonly name?: string | undefined;
|
|
3611
3647
|
readonly precision?: number | undefined;
|
|
3612
3648
|
readonly required?: boolean | undefined;
|
|
3649
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3613
3650
|
readonly multiple?: boolean | undefined;
|
|
3614
3651
|
readonly dependencies?: string[] | undefined;
|
|
3615
3652
|
readonly externalId?: boolean | undefined;
|
|
3616
3653
|
readonly defaultValue?: unknown;
|
|
3654
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3617
3655
|
readonly group?: string | undefined;
|
|
3618
3656
|
readonly hidden?: boolean | undefined;
|
|
3619
3657
|
readonly system?: boolean | undefined;
|
|
@@ -3784,10 +3822,12 @@ declare const SysAttachment: Omit<{
|
|
|
3784
3822
|
readonly name?: string | undefined;
|
|
3785
3823
|
readonly precision?: number | undefined;
|
|
3786
3824
|
readonly required?: boolean | undefined;
|
|
3825
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3787
3826
|
readonly multiple?: boolean | undefined;
|
|
3788
3827
|
readonly dependencies?: string[] | undefined;
|
|
3789
3828
|
readonly externalId?: boolean | undefined;
|
|
3790
3829
|
readonly defaultValue?: unknown;
|
|
3830
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3791
3831
|
readonly group?: string | undefined;
|
|
3792
3832
|
readonly hidden?: boolean | undefined;
|
|
3793
3833
|
readonly system?: boolean | undefined;
|
|
@@ -3958,10 +3998,12 @@ declare const SysAttachment: Omit<{
|
|
|
3958
3998
|
readonly name?: string | undefined;
|
|
3959
3999
|
readonly precision?: number | undefined;
|
|
3960
4000
|
readonly required?: boolean | undefined;
|
|
4001
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3961
4002
|
readonly multiple?: boolean | undefined;
|
|
3962
4003
|
readonly dependencies?: string[] | undefined;
|
|
3963
4004
|
readonly externalId?: boolean | undefined;
|
|
3964
4005
|
readonly defaultValue?: unknown;
|
|
4006
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3965
4007
|
readonly group?: string | undefined;
|
|
3966
4008
|
readonly hidden?: boolean | undefined;
|
|
3967
4009
|
readonly system?: boolean | undefined;
|
|
@@ -4132,10 +4174,12 @@ declare const SysAttachment: Omit<{
|
|
|
4132
4174
|
readonly name?: string | undefined;
|
|
4133
4175
|
readonly precision?: number | undefined;
|
|
4134
4176
|
readonly required?: boolean | undefined;
|
|
4177
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4135
4178
|
readonly multiple?: boolean | undefined;
|
|
4136
4179
|
readonly dependencies?: string[] | undefined;
|
|
4137
4180
|
readonly externalId?: boolean | undefined;
|
|
4138
4181
|
readonly defaultValue?: unknown;
|
|
4182
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
4139
4183
|
readonly group?: string | undefined;
|
|
4140
4184
|
readonly hidden?: boolean | undefined;
|
|
4141
4185
|
readonly system?: boolean | undefined;
|
|
@@ -4306,10 +4350,12 @@ declare const SysAttachment: Omit<{
|
|
|
4306
4350
|
readonly name?: string | undefined;
|
|
4307
4351
|
readonly precision?: number | undefined;
|
|
4308
4352
|
readonly required?: boolean | undefined;
|
|
4353
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4309
4354
|
readonly multiple?: boolean | undefined;
|
|
4310
4355
|
readonly dependencies?: string[] | undefined;
|
|
4311
4356
|
readonly externalId?: boolean | undefined;
|
|
4312
4357
|
readonly defaultValue?: unknown;
|
|
4358
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
4313
4359
|
readonly group?: string | undefined;
|
|
4314
4360
|
readonly hidden?: boolean | undefined;
|
|
4315
4361
|
readonly system?: boolean | undefined;
|
|
@@ -4480,10 +4526,12 @@ declare const SysAttachment: Omit<{
|
|
|
4480
4526
|
readonly name?: string | undefined;
|
|
4481
4527
|
readonly precision?: number | undefined;
|
|
4482
4528
|
readonly required?: boolean | undefined;
|
|
4529
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4483
4530
|
readonly multiple?: boolean | undefined;
|
|
4484
4531
|
readonly dependencies?: string[] | undefined;
|
|
4485
4532
|
readonly externalId?: boolean | undefined;
|
|
4486
4533
|
readonly defaultValue?: unknown;
|
|
4534
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
4487
4535
|
readonly group?: string | undefined;
|
|
4488
4536
|
readonly hidden?: boolean | undefined;
|
|
4489
4537
|
readonly system?: boolean | undefined;
|
|
@@ -4654,10 +4702,12 @@ declare const SysAttachment: Omit<{
|
|
|
4654
4702
|
readonly name?: string | undefined;
|
|
4655
4703
|
readonly precision?: number | undefined;
|
|
4656
4704
|
readonly required?: boolean | undefined;
|
|
4705
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4657
4706
|
readonly multiple?: boolean | undefined;
|
|
4658
4707
|
readonly dependencies?: string[] | undefined;
|
|
4659
4708
|
readonly externalId?: boolean | undefined;
|
|
4660
4709
|
readonly defaultValue?: unknown;
|
|
4710
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
4661
4711
|
readonly group?: string | undefined;
|
|
4662
4712
|
readonly hidden?: boolean | undefined;
|
|
4663
4713
|
readonly system?: boolean | undefined;
|
|
@@ -4828,10 +4878,12 @@ declare const SysAttachment: Omit<{
|
|
|
4828
4878
|
readonly name?: string | undefined;
|
|
4829
4879
|
readonly precision?: number | undefined;
|
|
4830
4880
|
readonly required?: boolean | undefined;
|
|
4881
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4831
4882
|
readonly multiple?: boolean | undefined;
|
|
4832
4883
|
readonly dependencies?: string[] | undefined;
|
|
4833
4884
|
readonly externalId?: boolean | undefined;
|
|
4834
4885
|
readonly defaultValue?: unknown;
|
|
4886
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
4835
4887
|
readonly group?: string | undefined;
|
|
4836
4888
|
readonly hidden?: boolean | undefined;
|
|
4837
4889
|
readonly system?: boolean | undefined;
|
|
@@ -5002,10 +5054,12 @@ declare const SysAttachment: Omit<{
|
|
|
5002
5054
|
readonly name?: string | undefined;
|
|
5003
5055
|
readonly precision?: number | undefined;
|
|
5004
5056
|
readonly required?: boolean | undefined;
|
|
5057
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5005
5058
|
readonly multiple?: boolean | undefined;
|
|
5006
5059
|
readonly dependencies?: string[] | undefined;
|
|
5007
5060
|
readonly externalId?: boolean | undefined;
|
|
5008
5061
|
readonly defaultValue?: unknown;
|
|
5062
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5009
5063
|
readonly group?: string | undefined;
|
|
5010
5064
|
readonly hidden?: boolean | undefined;
|
|
5011
5065
|
readonly system?: boolean | undefined;
|
|
@@ -5176,10 +5230,12 @@ declare const SysAttachment: Omit<{
|
|
|
5176
5230
|
readonly name?: string | undefined;
|
|
5177
5231
|
readonly precision?: number | undefined;
|
|
5178
5232
|
readonly required?: boolean | undefined;
|
|
5233
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5179
5234
|
readonly multiple?: boolean | undefined;
|
|
5180
5235
|
readonly dependencies?: string[] | undefined;
|
|
5181
5236
|
readonly externalId?: boolean | undefined;
|
|
5182
5237
|
readonly defaultValue?: unknown;
|
|
5238
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5183
5239
|
readonly group?: string | undefined;
|
|
5184
5240
|
readonly hidden?: boolean | undefined;
|
|
5185
5241
|
readonly system?: boolean | undefined;
|
|
@@ -5350,10 +5406,12 @@ declare const SysAttachment: Omit<{
|
|
|
5350
5406
|
readonly name?: string | undefined;
|
|
5351
5407
|
readonly precision?: number | undefined;
|
|
5352
5408
|
readonly required?: boolean | undefined;
|
|
5409
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5353
5410
|
readonly multiple?: boolean | undefined;
|
|
5354
5411
|
readonly dependencies?: string[] | undefined;
|
|
5355
5412
|
readonly externalId?: boolean | undefined;
|
|
5356
5413
|
readonly defaultValue?: unknown;
|
|
5414
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5357
5415
|
readonly group?: string | undefined;
|
|
5358
5416
|
readonly hidden?: boolean | undefined;
|
|
5359
5417
|
readonly system?: boolean | undefined;
|
|
@@ -5551,7 +5609,7 @@ declare const SysEmail: Omit<{
|
|
|
5551
5609
|
abstract: boolean;
|
|
5552
5610
|
datasource: string;
|
|
5553
5611
|
fields: Record<string, {
|
|
5554
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
5612
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
5555
5613
|
required: boolean;
|
|
5556
5614
|
searchable: boolean;
|
|
5557
5615
|
multiple: boolean;
|
|
@@ -5625,6 +5683,7 @@ declare const SysEmail: Omit<{
|
|
|
5625
5683
|
generatedBy?: string | undefined;
|
|
5626
5684
|
} | undefined;
|
|
5627
5685
|
} | undefined;
|
|
5686
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5628
5687
|
summaryOperations?: {
|
|
5629
5688
|
object: string;
|
|
5630
5689
|
field: string;
|
|
@@ -5759,6 +5818,7 @@ declare const SysEmail: Omit<{
|
|
|
5759
5818
|
generatedBy?: string | undefined;
|
|
5760
5819
|
} | undefined;
|
|
5761
5820
|
} | undefined;
|
|
5821
|
+
requiredPermissions?: string[] | undefined;
|
|
5762
5822
|
system?: boolean | undefined;
|
|
5763
5823
|
inlineHelpText?: string | undefined;
|
|
5764
5824
|
caseSensitive?: boolean | undefined;
|
|
@@ -5834,6 +5894,10 @@ declare const SysEmail: Omit<{
|
|
|
5834
5894
|
tenantField: string;
|
|
5835
5895
|
crossTenantAccess: boolean;
|
|
5836
5896
|
} | undefined;
|
|
5897
|
+
access?: {
|
|
5898
|
+
default: "public" | "private";
|
|
5899
|
+
} | undefined;
|
|
5900
|
+
requiredPermissions?: string[] | undefined;
|
|
5837
5901
|
softDelete?: {
|
|
5838
5902
|
enabled: boolean;
|
|
5839
5903
|
field: string;
|
|
@@ -6200,7 +6264,7 @@ declare const SysEmail: Omit<{
|
|
|
6200
6264
|
clone: boolean;
|
|
6201
6265
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
6202
6266
|
} | undefined;
|
|
6203
|
-
sharingModel?: "full" | "
|
|
6267
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
6204
6268
|
publicSharing?: {
|
|
6205
6269
|
enabled: boolean;
|
|
6206
6270
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -6243,7 +6307,7 @@ declare const SysEmail: Omit<{
|
|
|
6243
6307
|
field?: string | undefined;
|
|
6244
6308
|
objectOverride?: string | undefined;
|
|
6245
6309
|
label?: string | undefined;
|
|
6246
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
6310
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
6247
6311
|
options?: {
|
|
6248
6312
|
label: string;
|
|
6249
6313
|
value: string;
|
|
@@ -6287,6 +6351,7 @@ declare const SysEmail: Omit<{
|
|
|
6287
6351
|
generatedBy?: string | undefined;
|
|
6288
6352
|
} | undefined;
|
|
6289
6353
|
} | undefined;
|
|
6354
|
+
requiredPermissions?: string[] | undefined;
|
|
6290
6355
|
shortcut?: string | undefined;
|
|
6291
6356
|
bulkEnabled?: boolean | undefined;
|
|
6292
6357
|
ai?: {
|
|
@@ -6349,10 +6414,12 @@ declare const SysEmail: Omit<{
|
|
|
6349
6414
|
readonly name?: string | undefined;
|
|
6350
6415
|
readonly precision?: number | undefined;
|
|
6351
6416
|
readonly required?: boolean | undefined;
|
|
6417
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6352
6418
|
readonly multiple?: boolean | undefined;
|
|
6353
6419
|
readonly dependencies?: string[] | undefined;
|
|
6354
6420
|
readonly externalId?: boolean | undefined;
|
|
6355
6421
|
readonly defaultValue?: unknown;
|
|
6422
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
6356
6423
|
readonly group?: string | undefined;
|
|
6357
6424
|
readonly hidden?: boolean | undefined;
|
|
6358
6425
|
readonly system?: boolean | undefined;
|
|
@@ -6523,10 +6590,12 @@ declare const SysEmail: Omit<{
|
|
|
6523
6590
|
readonly name?: string | undefined;
|
|
6524
6591
|
readonly precision?: number | undefined;
|
|
6525
6592
|
readonly required?: boolean | undefined;
|
|
6593
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6526
6594
|
readonly multiple?: boolean | undefined;
|
|
6527
6595
|
readonly dependencies?: string[] | undefined;
|
|
6528
6596
|
readonly externalId?: boolean | undefined;
|
|
6529
6597
|
readonly defaultValue?: unknown;
|
|
6598
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
6530
6599
|
readonly group?: string | undefined;
|
|
6531
6600
|
readonly hidden?: boolean | undefined;
|
|
6532
6601
|
readonly system?: boolean | undefined;
|
|
@@ -6697,10 +6766,12 @@ declare const SysEmail: Omit<{
|
|
|
6697
6766
|
readonly name?: string | undefined;
|
|
6698
6767
|
readonly precision?: number | undefined;
|
|
6699
6768
|
readonly required?: boolean | undefined;
|
|
6769
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6700
6770
|
readonly multiple?: boolean | undefined;
|
|
6701
6771
|
readonly dependencies?: string[] | undefined;
|
|
6702
6772
|
readonly externalId?: boolean | undefined;
|
|
6703
6773
|
readonly defaultValue?: unknown;
|
|
6774
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
6704
6775
|
readonly group?: string | undefined;
|
|
6705
6776
|
readonly hidden?: boolean | undefined;
|
|
6706
6777
|
readonly system?: boolean | undefined;
|
|
@@ -6871,10 +6942,12 @@ declare const SysEmail: Omit<{
|
|
|
6871
6942
|
readonly name?: string | undefined;
|
|
6872
6943
|
readonly precision?: number | undefined;
|
|
6873
6944
|
readonly required?: boolean | undefined;
|
|
6945
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6874
6946
|
readonly multiple?: boolean | undefined;
|
|
6875
6947
|
readonly dependencies?: string[] | undefined;
|
|
6876
6948
|
readonly externalId?: boolean | undefined;
|
|
6877
6949
|
readonly defaultValue?: unknown;
|
|
6950
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
6878
6951
|
readonly group?: string | undefined;
|
|
6879
6952
|
readonly hidden?: boolean | undefined;
|
|
6880
6953
|
readonly system?: boolean | undefined;
|
|
@@ -7045,10 +7118,12 @@ declare const SysEmail: Omit<{
|
|
|
7045
7118
|
readonly name?: string | undefined;
|
|
7046
7119
|
readonly precision?: number | undefined;
|
|
7047
7120
|
readonly required?: boolean | undefined;
|
|
7121
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7048
7122
|
readonly multiple?: boolean | undefined;
|
|
7049
7123
|
readonly dependencies?: string[] | undefined;
|
|
7050
7124
|
readonly externalId?: boolean | undefined;
|
|
7051
7125
|
readonly defaultValue?: unknown;
|
|
7126
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7052
7127
|
readonly group?: string | undefined;
|
|
7053
7128
|
readonly hidden?: boolean | undefined;
|
|
7054
7129
|
readonly system?: boolean | undefined;
|
|
@@ -7219,10 +7294,12 @@ declare const SysEmail: Omit<{
|
|
|
7219
7294
|
readonly name?: string | undefined;
|
|
7220
7295
|
readonly precision?: number | undefined;
|
|
7221
7296
|
readonly required?: boolean | undefined;
|
|
7297
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7222
7298
|
readonly multiple?: boolean | undefined;
|
|
7223
7299
|
readonly dependencies?: string[] | undefined;
|
|
7224
7300
|
readonly externalId?: boolean | undefined;
|
|
7225
7301
|
readonly defaultValue?: unknown;
|
|
7302
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7226
7303
|
readonly group?: string | undefined;
|
|
7227
7304
|
readonly hidden?: boolean | undefined;
|
|
7228
7305
|
readonly system?: boolean | undefined;
|
|
@@ -7393,10 +7470,12 @@ declare const SysEmail: Omit<{
|
|
|
7393
7470
|
readonly name?: string | undefined;
|
|
7394
7471
|
readonly precision?: number | undefined;
|
|
7395
7472
|
readonly required?: boolean | undefined;
|
|
7473
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7396
7474
|
readonly multiple?: boolean | undefined;
|
|
7397
7475
|
readonly dependencies?: string[] | undefined;
|
|
7398
7476
|
readonly externalId?: boolean | undefined;
|
|
7399
7477
|
readonly defaultValue?: unknown;
|
|
7478
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7400
7479
|
readonly group?: string | undefined;
|
|
7401
7480
|
readonly hidden?: boolean | undefined;
|
|
7402
7481
|
readonly system?: boolean | undefined;
|
|
@@ -7567,10 +7646,12 @@ declare const SysEmail: Omit<{
|
|
|
7567
7646
|
readonly name?: string | undefined;
|
|
7568
7647
|
readonly precision?: number | undefined;
|
|
7569
7648
|
readonly required?: boolean | undefined;
|
|
7649
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7570
7650
|
readonly multiple?: boolean | undefined;
|
|
7571
7651
|
readonly dependencies?: string[] | undefined;
|
|
7572
7652
|
readonly externalId?: boolean | undefined;
|
|
7573
7653
|
readonly defaultValue?: unknown;
|
|
7654
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7574
7655
|
readonly group?: string | undefined;
|
|
7575
7656
|
readonly hidden?: boolean | undefined;
|
|
7576
7657
|
readonly system?: boolean | undefined;
|
|
@@ -7741,10 +7822,12 @@ declare const SysEmail: Omit<{
|
|
|
7741
7822
|
readonly name?: string | undefined;
|
|
7742
7823
|
readonly precision?: number | undefined;
|
|
7743
7824
|
readonly required?: boolean | undefined;
|
|
7825
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7744
7826
|
readonly multiple?: boolean | undefined;
|
|
7745
7827
|
readonly dependencies?: string[] | undefined;
|
|
7746
7828
|
readonly externalId?: boolean | undefined;
|
|
7747
7829
|
readonly defaultValue?: unknown;
|
|
7830
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7748
7831
|
readonly group?: string | undefined;
|
|
7749
7832
|
readonly hidden?: boolean | undefined;
|
|
7750
7833
|
readonly system?: boolean | undefined;
|
|
@@ -7915,10 +7998,12 @@ declare const SysEmail: Omit<{
|
|
|
7915
7998
|
readonly name?: string | undefined;
|
|
7916
7999
|
readonly precision?: number | undefined;
|
|
7917
8000
|
readonly required?: boolean | undefined;
|
|
8001
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7918
8002
|
readonly multiple?: boolean | undefined;
|
|
7919
8003
|
readonly dependencies?: string[] | undefined;
|
|
7920
8004
|
readonly externalId?: boolean | undefined;
|
|
7921
8005
|
readonly defaultValue?: unknown;
|
|
8006
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7922
8007
|
readonly group?: string | undefined;
|
|
7923
8008
|
readonly hidden?: boolean | undefined;
|
|
7924
8009
|
readonly system?: boolean | undefined;
|
|
@@ -8089,10 +8174,12 @@ declare const SysEmail: Omit<{
|
|
|
8089
8174
|
readonly name?: string | undefined;
|
|
8090
8175
|
readonly precision?: number | undefined;
|
|
8091
8176
|
readonly required?: boolean | undefined;
|
|
8177
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8092
8178
|
readonly multiple?: boolean | undefined;
|
|
8093
8179
|
readonly dependencies?: string[] | undefined;
|
|
8094
8180
|
readonly externalId?: boolean | undefined;
|
|
8095
8181
|
readonly defaultValue?: unknown;
|
|
8182
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8096
8183
|
readonly group?: string | undefined;
|
|
8097
8184
|
readonly hidden?: boolean | undefined;
|
|
8098
8185
|
readonly system?: boolean | undefined;
|
|
@@ -8263,10 +8350,12 @@ declare const SysEmail: Omit<{
|
|
|
8263
8350
|
readonly name?: string | undefined;
|
|
8264
8351
|
readonly precision?: number | undefined;
|
|
8265
8352
|
readonly required?: boolean | undefined;
|
|
8353
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8266
8354
|
readonly multiple?: boolean | undefined;
|
|
8267
8355
|
readonly dependencies?: string[] | undefined;
|
|
8268
8356
|
readonly externalId?: boolean | undefined;
|
|
8269
8357
|
readonly defaultValue?: unknown;
|
|
8358
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8270
8359
|
readonly group?: string | undefined;
|
|
8271
8360
|
readonly hidden?: boolean | undefined;
|
|
8272
8361
|
readonly system?: boolean | undefined;
|
|
@@ -8437,10 +8526,12 @@ declare const SysEmail: Omit<{
|
|
|
8437
8526
|
readonly name?: string | undefined;
|
|
8438
8527
|
readonly precision?: number | undefined;
|
|
8439
8528
|
readonly required?: boolean | undefined;
|
|
8529
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8440
8530
|
readonly multiple?: boolean | undefined;
|
|
8441
8531
|
readonly dependencies?: string[] | undefined;
|
|
8442
8532
|
readonly externalId?: boolean | undefined;
|
|
8443
8533
|
readonly defaultValue?: unknown;
|
|
8534
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8444
8535
|
readonly group?: string | undefined;
|
|
8445
8536
|
readonly hidden?: boolean | undefined;
|
|
8446
8537
|
readonly system?: boolean | undefined;
|
|
@@ -8611,10 +8702,12 @@ declare const SysEmail: Omit<{
|
|
|
8611
8702
|
readonly name?: string | undefined;
|
|
8612
8703
|
readonly precision?: number | undefined;
|
|
8613
8704
|
readonly required?: boolean | undefined;
|
|
8705
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8614
8706
|
readonly multiple?: boolean | undefined;
|
|
8615
8707
|
readonly dependencies?: string[] | undefined;
|
|
8616
8708
|
readonly externalId?: boolean | undefined;
|
|
8617
8709
|
readonly defaultValue?: unknown;
|
|
8710
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8618
8711
|
readonly group?: string | undefined;
|
|
8619
8712
|
readonly hidden?: boolean | undefined;
|
|
8620
8713
|
readonly system?: boolean | undefined;
|
|
@@ -8785,10 +8878,12 @@ declare const SysEmail: Omit<{
|
|
|
8785
8878
|
readonly name?: string | undefined;
|
|
8786
8879
|
readonly precision?: number | undefined;
|
|
8787
8880
|
readonly required?: boolean | undefined;
|
|
8881
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8788
8882
|
readonly multiple?: boolean | undefined;
|
|
8789
8883
|
readonly dependencies?: string[] | undefined;
|
|
8790
8884
|
readonly externalId?: boolean | undefined;
|
|
8791
8885
|
readonly defaultValue?: unknown;
|
|
8886
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8792
8887
|
readonly group?: string | undefined;
|
|
8793
8888
|
readonly hidden?: boolean | undefined;
|
|
8794
8889
|
readonly system?: boolean | undefined;
|
|
@@ -8959,10 +9054,12 @@ declare const SysEmail: Omit<{
|
|
|
8959
9054
|
readonly name?: string | undefined;
|
|
8960
9055
|
readonly precision?: number | undefined;
|
|
8961
9056
|
readonly required?: boolean | undefined;
|
|
9057
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8962
9058
|
readonly multiple?: boolean | undefined;
|
|
8963
9059
|
readonly dependencies?: string[] | undefined;
|
|
8964
9060
|
readonly externalId?: boolean | undefined;
|
|
8965
9061
|
readonly defaultValue?: unknown;
|
|
9062
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8966
9063
|
readonly group?: string | undefined;
|
|
8967
9064
|
readonly hidden?: boolean | undefined;
|
|
8968
9065
|
readonly system?: boolean | undefined;
|
|
@@ -9133,10 +9230,12 @@ declare const SysEmail: Omit<{
|
|
|
9133
9230
|
readonly name?: string | undefined;
|
|
9134
9231
|
readonly precision?: number | undefined;
|
|
9135
9232
|
readonly required?: boolean | undefined;
|
|
9233
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9136
9234
|
readonly multiple?: boolean | undefined;
|
|
9137
9235
|
readonly dependencies?: string[] | undefined;
|
|
9138
9236
|
readonly externalId?: boolean | undefined;
|
|
9139
9237
|
readonly defaultValue?: unknown;
|
|
9238
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
9140
9239
|
readonly group?: string | undefined;
|
|
9141
9240
|
readonly hidden?: boolean | undefined;
|
|
9142
9241
|
readonly system?: boolean | undefined;
|
|
@@ -9307,10 +9406,12 @@ declare const SysEmail: Omit<{
|
|
|
9307
9406
|
readonly name?: string | undefined;
|
|
9308
9407
|
readonly precision?: number | undefined;
|
|
9309
9408
|
readonly required?: boolean | undefined;
|
|
9409
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9310
9410
|
readonly multiple?: boolean | undefined;
|
|
9311
9411
|
readonly dependencies?: string[] | undefined;
|
|
9312
9412
|
readonly externalId?: boolean | undefined;
|
|
9313
9413
|
readonly defaultValue?: unknown;
|
|
9414
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
9314
9415
|
readonly group?: string | undefined;
|
|
9315
9416
|
readonly hidden?: boolean | undefined;
|
|
9316
9417
|
readonly system?: boolean | undefined;
|
|
@@ -9481,10 +9582,12 @@ declare const SysEmail: Omit<{
|
|
|
9481
9582
|
readonly name?: string | undefined;
|
|
9482
9583
|
readonly precision?: number | undefined;
|
|
9483
9584
|
readonly required?: boolean | undefined;
|
|
9585
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9484
9586
|
readonly multiple?: boolean | undefined;
|
|
9485
9587
|
readonly dependencies?: string[] | undefined;
|
|
9486
9588
|
readonly externalId?: boolean | undefined;
|
|
9487
9589
|
readonly defaultValue?: unknown;
|
|
9590
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
9488
9591
|
readonly group?: string | undefined;
|
|
9489
9592
|
readonly hidden?: boolean | undefined;
|
|
9490
9593
|
readonly system?: boolean | undefined;
|
|
@@ -9672,7 +9775,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9672
9775
|
abstract: boolean;
|
|
9673
9776
|
datasource: string;
|
|
9674
9777
|
fields: Record<string, {
|
|
9675
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
9778
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
9676
9779
|
required: boolean;
|
|
9677
9780
|
searchable: boolean;
|
|
9678
9781
|
multiple: boolean;
|
|
@@ -9746,6 +9849,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9746
9849
|
generatedBy?: string | undefined;
|
|
9747
9850
|
} | undefined;
|
|
9748
9851
|
} | undefined;
|
|
9852
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9749
9853
|
summaryOperations?: {
|
|
9750
9854
|
object: string;
|
|
9751
9855
|
field: string;
|
|
@@ -9880,6 +9984,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9880
9984
|
generatedBy?: string | undefined;
|
|
9881
9985
|
} | undefined;
|
|
9882
9986
|
} | undefined;
|
|
9987
|
+
requiredPermissions?: string[] | undefined;
|
|
9883
9988
|
system?: boolean | undefined;
|
|
9884
9989
|
inlineHelpText?: string | undefined;
|
|
9885
9990
|
caseSensitive?: boolean | undefined;
|
|
@@ -9955,6 +10060,10 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9955
10060
|
tenantField: string;
|
|
9956
10061
|
crossTenantAccess: boolean;
|
|
9957
10062
|
} | undefined;
|
|
10063
|
+
access?: {
|
|
10064
|
+
default: "public" | "private";
|
|
10065
|
+
} | undefined;
|
|
10066
|
+
requiredPermissions?: string[] | undefined;
|
|
9958
10067
|
softDelete?: {
|
|
9959
10068
|
enabled: boolean;
|
|
9960
10069
|
field: string;
|
|
@@ -10321,7 +10430,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10321
10430
|
clone: boolean;
|
|
10322
10431
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
10323
10432
|
} | undefined;
|
|
10324
|
-
sharingModel?: "full" | "
|
|
10433
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
10325
10434
|
publicSharing?: {
|
|
10326
10435
|
enabled: boolean;
|
|
10327
10436
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -10364,7 +10473,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10364
10473
|
field?: string | undefined;
|
|
10365
10474
|
objectOverride?: string | undefined;
|
|
10366
10475
|
label?: string | undefined;
|
|
10367
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
10476
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
10368
10477
|
options?: {
|
|
10369
10478
|
label: string;
|
|
10370
10479
|
value: string;
|
|
@@ -10408,6 +10517,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10408
10517
|
generatedBy?: string | undefined;
|
|
10409
10518
|
} | undefined;
|
|
10410
10519
|
} | undefined;
|
|
10520
|
+
requiredPermissions?: string[] | undefined;
|
|
10411
10521
|
shortcut?: string | undefined;
|
|
10412
10522
|
bulkEnabled?: boolean | undefined;
|
|
10413
10523
|
ai?: {
|
|
@@ -10470,10 +10580,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10470
10580
|
readonly name?: string | undefined;
|
|
10471
10581
|
readonly precision?: number | undefined;
|
|
10472
10582
|
readonly required?: boolean | undefined;
|
|
10583
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10473
10584
|
readonly multiple?: boolean | undefined;
|
|
10474
10585
|
readonly dependencies?: string[] | undefined;
|
|
10475
10586
|
readonly externalId?: boolean | undefined;
|
|
10476
10587
|
readonly defaultValue?: unknown;
|
|
10588
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
10477
10589
|
readonly group?: string | undefined;
|
|
10478
10590
|
readonly hidden?: boolean | undefined;
|
|
10479
10591
|
readonly system?: boolean | undefined;
|
|
@@ -10644,10 +10756,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10644
10756
|
readonly name?: string | undefined;
|
|
10645
10757
|
readonly precision?: number | undefined;
|
|
10646
10758
|
readonly required?: boolean | undefined;
|
|
10759
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10647
10760
|
readonly multiple?: boolean | undefined;
|
|
10648
10761
|
readonly dependencies?: string[] | undefined;
|
|
10649
10762
|
readonly externalId?: boolean | undefined;
|
|
10650
10763
|
readonly defaultValue?: unknown;
|
|
10764
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
10651
10765
|
readonly group?: string | undefined;
|
|
10652
10766
|
readonly hidden?: boolean | undefined;
|
|
10653
10767
|
readonly system?: boolean | undefined;
|
|
@@ -10818,10 +10932,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10818
10932
|
readonly name?: string | undefined;
|
|
10819
10933
|
readonly precision?: number | undefined;
|
|
10820
10934
|
readonly required?: boolean | undefined;
|
|
10935
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10821
10936
|
readonly multiple?: boolean | undefined;
|
|
10822
10937
|
readonly dependencies?: string[] | undefined;
|
|
10823
10938
|
readonly externalId?: boolean | undefined;
|
|
10824
10939
|
readonly defaultValue?: unknown;
|
|
10940
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
10825
10941
|
readonly group?: string | undefined;
|
|
10826
10942
|
readonly hidden?: boolean | undefined;
|
|
10827
10943
|
readonly system?: boolean | undefined;
|
|
@@ -10992,10 +11108,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10992
11108
|
readonly name?: string | undefined;
|
|
10993
11109
|
readonly precision?: number | undefined;
|
|
10994
11110
|
readonly required?: boolean | undefined;
|
|
11111
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10995
11112
|
readonly multiple?: boolean | undefined;
|
|
10996
11113
|
readonly dependencies?: string[] | undefined;
|
|
10997
11114
|
readonly externalId?: boolean | undefined;
|
|
10998
11115
|
readonly defaultValue?: unknown;
|
|
11116
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
10999
11117
|
readonly group?: string | undefined;
|
|
11000
11118
|
readonly hidden?: boolean | undefined;
|
|
11001
11119
|
readonly system?: boolean | undefined;
|
|
@@ -11166,10 +11284,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11166
11284
|
readonly name?: string | undefined;
|
|
11167
11285
|
readonly precision?: number | undefined;
|
|
11168
11286
|
readonly required?: boolean | undefined;
|
|
11287
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11169
11288
|
readonly multiple?: boolean | undefined;
|
|
11170
11289
|
readonly dependencies?: string[] | undefined;
|
|
11171
11290
|
readonly externalId?: boolean | undefined;
|
|
11172
11291
|
readonly defaultValue?: unknown;
|
|
11292
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
11173
11293
|
readonly group?: string | undefined;
|
|
11174
11294
|
readonly hidden?: boolean | undefined;
|
|
11175
11295
|
readonly system?: boolean | undefined;
|
|
@@ -11340,10 +11460,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11340
11460
|
readonly name?: string | undefined;
|
|
11341
11461
|
readonly precision?: number | undefined;
|
|
11342
11462
|
readonly required?: boolean | undefined;
|
|
11463
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11343
11464
|
readonly multiple?: boolean | undefined;
|
|
11344
11465
|
readonly dependencies?: string[] | undefined;
|
|
11345
11466
|
readonly externalId?: boolean | undefined;
|
|
11346
11467
|
readonly defaultValue?: unknown;
|
|
11468
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
11347
11469
|
readonly group?: string | undefined;
|
|
11348
11470
|
readonly hidden?: boolean | undefined;
|
|
11349
11471
|
readonly system?: boolean | undefined;
|
|
@@ -11514,10 +11636,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11514
11636
|
readonly name?: string | undefined;
|
|
11515
11637
|
readonly precision?: number | undefined;
|
|
11516
11638
|
readonly required?: boolean | undefined;
|
|
11639
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11517
11640
|
readonly multiple?: boolean | undefined;
|
|
11518
11641
|
readonly dependencies?: string[] | undefined;
|
|
11519
11642
|
readonly externalId?: boolean | undefined;
|
|
11520
11643
|
readonly defaultValue?: unknown;
|
|
11644
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
11521
11645
|
readonly group?: string | undefined;
|
|
11522
11646
|
readonly hidden?: boolean | undefined;
|
|
11523
11647
|
readonly system?: boolean | undefined;
|
|
@@ -11688,10 +11812,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11688
11812
|
readonly name?: string | undefined;
|
|
11689
11813
|
readonly precision?: number | undefined;
|
|
11690
11814
|
readonly required?: boolean | undefined;
|
|
11815
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11691
11816
|
readonly multiple?: boolean | undefined;
|
|
11692
11817
|
readonly dependencies?: string[] | undefined;
|
|
11693
11818
|
readonly externalId?: boolean | undefined;
|
|
11694
11819
|
readonly defaultValue?: unknown;
|
|
11820
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
11695
11821
|
readonly group?: string | undefined;
|
|
11696
11822
|
readonly hidden?: boolean | undefined;
|
|
11697
11823
|
readonly system?: boolean | undefined;
|
|
@@ -11862,10 +11988,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11862
11988
|
readonly name?: string | undefined;
|
|
11863
11989
|
readonly precision?: number | undefined;
|
|
11864
11990
|
readonly required?: boolean | undefined;
|
|
11991
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11865
11992
|
readonly multiple?: boolean | undefined;
|
|
11866
11993
|
readonly dependencies?: string[] | undefined;
|
|
11867
11994
|
readonly externalId?: boolean | undefined;
|
|
11868
11995
|
readonly defaultValue?: unknown;
|
|
11996
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
11869
11997
|
readonly group?: string | undefined;
|
|
11870
11998
|
readonly hidden?: boolean | undefined;
|
|
11871
11999
|
readonly system?: boolean | undefined;
|
|
@@ -12036,10 +12164,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12036
12164
|
readonly name?: string | undefined;
|
|
12037
12165
|
readonly precision?: number | undefined;
|
|
12038
12166
|
readonly required?: boolean | undefined;
|
|
12167
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12039
12168
|
readonly multiple?: boolean | undefined;
|
|
12040
12169
|
readonly dependencies?: string[] | undefined;
|
|
12041
12170
|
readonly externalId?: boolean | undefined;
|
|
12042
12171
|
readonly defaultValue?: unknown;
|
|
12172
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
12043
12173
|
readonly group?: string | undefined;
|
|
12044
12174
|
readonly hidden?: boolean | undefined;
|
|
12045
12175
|
readonly system?: boolean | undefined;
|
|
@@ -12210,10 +12340,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12210
12340
|
readonly name?: string | undefined;
|
|
12211
12341
|
readonly precision?: number | undefined;
|
|
12212
12342
|
readonly required?: boolean | undefined;
|
|
12343
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12213
12344
|
readonly multiple?: boolean | undefined;
|
|
12214
12345
|
readonly dependencies?: string[] | undefined;
|
|
12215
12346
|
readonly externalId?: boolean | undefined;
|
|
12216
12347
|
readonly defaultValue?: unknown;
|
|
12348
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
12217
12349
|
readonly group?: string | undefined;
|
|
12218
12350
|
readonly hidden?: boolean | undefined;
|
|
12219
12351
|
readonly system?: boolean | undefined;
|
|
@@ -12384,10 +12516,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12384
12516
|
readonly name?: string | undefined;
|
|
12385
12517
|
readonly precision?: number | undefined;
|
|
12386
12518
|
readonly required?: boolean | undefined;
|
|
12519
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12387
12520
|
readonly multiple?: boolean | undefined;
|
|
12388
12521
|
readonly dependencies?: string[] | undefined;
|
|
12389
12522
|
readonly externalId?: boolean | undefined;
|
|
12390
12523
|
readonly defaultValue?: unknown;
|
|
12524
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
12391
12525
|
readonly group?: string | undefined;
|
|
12392
12526
|
readonly hidden?: boolean | undefined;
|
|
12393
12527
|
readonly system?: boolean | undefined;
|
|
@@ -12558,10 +12692,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12558
12692
|
readonly name?: string | undefined;
|
|
12559
12693
|
readonly precision?: number | undefined;
|
|
12560
12694
|
readonly required?: boolean | undefined;
|
|
12695
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12561
12696
|
readonly multiple?: boolean | undefined;
|
|
12562
12697
|
readonly dependencies?: string[] | undefined;
|
|
12563
12698
|
readonly externalId?: boolean | undefined;
|
|
12564
12699
|
readonly defaultValue?: unknown;
|
|
12700
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
12565
12701
|
readonly group?: string | undefined;
|
|
12566
12702
|
readonly hidden?: boolean | undefined;
|
|
12567
12703
|
readonly system?: boolean | undefined;
|
|
@@ -12732,10 +12868,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12732
12868
|
readonly name?: string | undefined;
|
|
12733
12869
|
readonly precision?: number | undefined;
|
|
12734
12870
|
readonly required?: boolean | undefined;
|
|
12871
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12735
12872
|
readonly multiple?: boolean | undefined;
|
|
12736
12873
|
readonly dependencies?: string[] | undefined;
|
|
12737
12874
|
readonly externalId?: boolean | undefined;
|
|
12738
12875
|
readonly defaultValue?: unknown;
|
|
12876
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
12739
12877
|
readonly group?: string | undefined;
|
|
12740
12878
|
readonly hidden?: boolean | undefined;
|
|
12741
12879
|
readonly system?: boolean | undefined;
|
|
@@ -12912,10 +13050,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12912
13050
|
readonly name?: string | undefined;
|
|
12913
13051
|
readonly precision?: number | undefined;
|
|
12914
13052
|
readonly required?: boolean | undefined;
|
|
13053
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12915
13054
|
readonly multiple?: boolean | undefined;
|
|
12916
13055
|
readonly dependencies?: string[] | undefined;
|
|
12917
13056
|
readonly externalId?: boolean | undefined;
|
|
12918
13057
|
readonly defaultValue?: unknown;
|
|
13058
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
12919
13059
|
readonly group?: string | undefined;
|
|
12920
13060
|
readonly hidden?: boolean | undefined;
|
|
12921
13061
|
readonly system?: boolean | undefined;
|
|
@@ -13086,10 +13226,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
13086
13226
|
readonly name?: string | undefined;
|
|
13087
13227
|
readonly precision?: number | undefined;
|
|
13088
13228
|
readonly required?: boolean | undefined;
|
|
13229
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13089
13230
|
readonly multiple?: boolean | undefined;
|
|
13090
13231
|
readonly dependencies?: string[] | undefined;
|
|
13091
13232
|
readonly externalId?: boolean | undefined;
|
|
13092
13233
|
readonly defaultValue?: unknown;
|
|
13234
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
13093
13235
|
readonly group?: string | undefined;
|
|
13094
13236
|
readonly hidden?: boolean | undefined;
|
|
13095
13237
|
readonly system?: boolean | undefined;
|
|
@@ -13260,10 +13402,12 @@ declare const SysEmailTemplate: Omit<{
|
|
|
13260
13402
|
readonly name?: string | undefined;
|
|
13261
13403
|
readonly precision?: number | undefined;
|
|
13262
13404
|
readonly required?: boolean | undefined;
|
|
13405
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13263
13406
|
readonly multiple?: boolean | undefined;
|
|
13264
13407
|
readonly dependencies?: string[] | undefined;
|
|
13265
13408
|
readonly externalId?: boolean | undefined;
|
|
13266
13409
|
readonly defaultValue?: unknown;
|
|
13410
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
13267
13411
|
readonly group?: string | undefined;
|
|
13268
13412
|
readonly hidden?: boolean | undefined;
|
|
13269
13413
|
readonly system?: boolean | undefined;
|
|
@@ -13459,7 +13603,7 @@ declare const SysSavedReport: Omit<{
|
|
|
13459
13603
|
abstract: boolean;
|
|
13460
13604
|
datasource: string;
|
|
13461
13605
|
fields: Record<string, {
|
|
13462
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
13606
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
13463
13607
|
required: boolean;
|
|
13464
13608
|
searchable: boolean;
|
|
13465
13609
|
multiple: boolean;
|
|
@@ -13533,6 +13677,7 @@ declare const SysSavedReport: Omit<{
|
|
|
13533
13677
|
generatedBy?: string | undefined;
|
|
13534
13678
|
} | undefined;
|
|
13535
13679
|
} | undefined;
|
|
13680
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13536
13681
|
summaryOperations?: {
|
|
13537
13682
|
object: string;
|
|
13538
13683
|
field: string;
|
|
@@ -13667,6 +13812,7 @@ declare const SysSavedReport: Omit<{
|
|
|
13667
13812
|
generatedBy?: string | undefined;
|
|
13668
13813
|
} | undefined;
|
|
13669
13814
|
} | undefined;
|
|
13815
|
+
requiredPermissions?: string[] | undefined;
|
|
13670
13816
|
system?: boolean | undefined;
|
|
13671
13817
|
inlineHelpText?: string | undefined;
|
|
13672
13818
|
caseSensitive?: boolean | undefined;
|
|
@@ -13742,6 +13888,10 @@ declare const SysSavedReport: Omit<{
|
|
|
13742
13888
|
tenantField: string;
|
|
13743
13889
|
crossTenantAccess: boolean;
|
|
13744
13890
|
} | undefined;
|
|
13891
|
+
access?: {
|
|
13892
|
+
default: "public" | "private";
|
|
13893
|
+
} | undefined;
|
|
13894
|
+
requiredPermissions?: string[] | undefined;
|
|
13745
13895
|
softDelete?: {
|
|
13746
13896
|
enabled: boolean;
|
|
13747
13897
|
field: string;
|
|
@@ -14108,7 +14258,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14108
14258
|
clone: boolean;
|
|
14109
14259
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
14110
14260
|
} | undefined;
|
|
14111
|
-
sharingModel?: "full" | "
|
|
14261
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
14112
14262
|
publicSharing?: {
|
|
14113
14263
|
enabled: boolean;
|
|
14114
14264
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -14151,7 +14301,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14151
14301
|
field?: string | undefined;
|
|
14152
14302
|
objectOverride?: string | undefined;
|
|
14153
14303
|
label?: string | undefined;
|
|
14154
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
14304
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
14155
14305
|
options?: {
|
|
14156
14306
|
label: string;
|
|
14157
14307
|
value: string;
|
|
@@ -14195,6 +14345,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14195
14345
|
generatedBy?: string | undefined;
|
|
14196
14346
|
} | undefined;
|
|
14197
14347
|
} | undefined;
|
|
14348
|
+
requiredPermissions?: string[] | undefined;
|
|
14198
14349
|
shortcut?: string | undefined;
|
|
14199
14350
|
bulkEnabled?: boolean | undefined;
|
|
14200
14351
|
ai?: {
|
|
@@ -14257,10 +14408,12 @@ declare const SysSavedReport: Omit<{
|
|
|
14257
14408
|
readonly name?: string | undefined;
|
|
14258
14409
|
readonly precision?: number | undefined;
|
|
14259
14410
|
readonly required?: boolean | undefined;
|
|
14411
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14260
14412
|
readonly multiple?: boolean | undefined;
|
|
14261
14413
|
readonly dependencies?: string[] | undefined;
|
|
14262
14414
|
readonly externalId?: boolean | undefined;
|
|
14263
14415
|
readonly defaultValue?: unknown;
|
|
14416
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
14264
14417
|
readonly group?: string | undefined;
|
|
14265
14418
|
readonly hidden?: boolean | undefined;
|
|
14266
14419
|
readonly system?: boolean | undefined;
|
|
@@ -14431,10 +14584,12 @@ declare const SysSavedReport: Omit<{
|
|
|
14431
14584
|
readonly name?: string | undefined;
|
|
14432
14585
|
readonly precision?: number | undefined;
|
|
14433
14586
|
readonly required?: boolean | undefined;
|
|
14587
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14434
14588
|
readonly multiple?: boolean | undefined;
|
|
14435
14589
|
readonly dependencies?: string[] | undefined;
|
|
14436
14590
|
readonly externalId?: boolean | undefined;
|
|
14437
14591
|
readonly defaultValue?: unknown;
|
|
14592
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
14438
14593
|
readonly group?: string | undefined;
|
|
14439
14594
|
readonly hidden?: boolean | undefined;
|
|
14440
14595
|
readonly system?: boolean | undefined;
|
|
@@ -14605,10 +14760,12 @@ declare const SysSavedReport: Omit<{
|
|
|
14605
14760
|
readonly name?: string | undefined;
|
|
14606
14761
|
readonly precision?: number | undefined;
|
|
14607
14762
|
readonly required?: boolean | undefined;
|
|
14763
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14608
14764
|
readonly multiple?: boolean | undefined;
|
|
14609
14765
|
readonly dependencies?: string[] | undefined;
|
|
14610
14766
|
readonly externalId?: boolean | undefined;
|
|
14611
14767
|
readonly defaultValue?: unknown;
|
|
14768
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
14612
14769
|
readonly group?: string | undefined;
|
|
14613
14770
|
readonly hidden?: boolean | undefined;
|
|
14614
14771
|
readonly system?: boolean | undefined;
|
|
@@ -14779,10 +14936,12 @@ declare const SysSavedReport: Omit<{
|
|
|
14779
14936
|
readonly name?: string | undefined;
|
|
14780
14937
|
readonly precision?: number | undefined;
|
|
14781
14938
|
readonly required?: boolean | undefined;
|
|
14939
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14782
14940
|
readonly multiple?: boolean | undefined;
|
|
14783
14941
|
readonly dependencies?: string[] | undefined;
|
|
14784
14942
|
readonly externalId?: boolean | undefined;
|
|
14785
14943
|
readonly defaultValue?: unknown;
|
|
14944
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
14786
14945
|
readonly group?: string | undefined;
|
|
14787
14946
|
readonly hidden?: boolean | undefined;
|
|
14788
14947
|
readonly system?: boolean | undefined;
|
|
@@ -14953,10 +15112,12 @@ declare const SysSavedReport: Omit<{
|
|
|
14953
15112
|
readonly name?: string | undefined;
|
|
14954
15113
|
readonly precision?: number | undefined;
|
|
14955
15114
|
readonly required?: boolean | undefined;
|
|
15115
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14956
15116
|
readonly multiple?: boolean | undefined;
|
|
14957
15117
|
readonly dependencies?: string[] | undefined;
|
|
14958
15118
|
readonly externalId?: boolean | undefined;
|
|
14959
15119
|
readonly defaultValue?: unknown;
|
|
15120
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
14960
15121
|
readonly group?: string | undefined;
|
|
14961
15122
|
readonly hidden?: boolean | undefined;
|
|
14962
15123
|
readonly system?: boolean | undefined;
|
|
@@ -15127,10 +15288,12 @@ declare const SysSavedReport: Omit<{
|
|
|
15127
15288
|
readonly name?: string | undefined;
|
|
15128
15289
|
readonly precision?: number | undefined;
|
|
15129
15290
|
readonly required?: boolean | undefined;
|
|
15291
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15130
15292
|
readonly multiple?: boolean | undefined;
|
|
15131
15293
|
readonly dependencies?: string[] | undefined;
|
|
15132
15294
|
readonly externalId?: boolean | undefined;
|
|
15133
15295
|
readonly defaultValue?: unknown;
|
|
15296
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
15134
15297
|
readonly group?: string | undefined;
|
|
15135
15298
|
readonly hidden?: boolean | undefined;
|
|
15136
15299
|
readonly system?: boolean | undefined;
|
|
@@ -15301,10 +15464,12 @@ declare const SysSavedReport: Omit<{
|
|
|
15301
15464
|
readonly name?: string | undefined;
|
|
15302
15465
|
readonly precision?: number | undefined;
|
|
15303
15466
|
readonly required?: boolean | undefined;
|
|
15467
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15304
15468
|
readonly multiple?: boolean | undefined;
|
|
15305
15469
|
readonly dependencies?: string[] | undefined;
|
|
15306
15470
|
readonly externalId?: boolean | undefined;
|
|
15307
15471
|
readonly defaultValue?: unknown;
|
|
15472
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
15308
15473
|
readonly group?: string | undefined;
|
|
15309
15474
|
readonly hidden?: boolean | undefined;
|
|
15310
15475
|
readonly system?: boolean | undefined;
|
|
@@ -15475,10 +15640,12 @@ declare const SysSavedReport: Omit<{
|
|
|
15475
15640
|
readonly name?: string | undefined;
|
|
15476
15641
|
readonly precision?: number | undefined;
|
|
15477
15642
|
readonly required?: boolean | undefined;
|
|
15643
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15478
15644
|
readonly multiple?: boolean | undefined;
|
|
15479
15645
|
readonly dependencies?: string[] | undefined;
|
|
15480
15646
|
readonly externalId?: boolean | undefined;
|
|
15481
15647
|
readonly defaultValue?: unknown;
|
|
15648
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
15482
15649
|
readonly group?: string | undefined;
|
|
15483
15650
|
readonly hidden?: boolean | undefined;
|
|
15484
15651
|
readonly system?: boolean | undefined;
|
|
@@ -15649,10 +15816,12 @@ declare const SysSavedReport: Omit<{
|
|
|
15649
15816
|
readonly name?: string | undefined;
|
|
15650
15817
|
readonly precision?: number | undefined;
|
|
15651
15818
|
readonly required?: boolean | undefined;
|
|
15819
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15652
15820
|
readonly multiple?: boolean | undefined;
|
|
15653
15821
|
readonly dependencies?: string[] | undefined;
|
|
15654
15822
|
readonly externalId?: boolean | undefined;
|
|
15655
15823
|
readonly defaultValue?: unknown;
|
|
15824
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
15656
15825
|
readonly group?: string | undefined;
|
|
15657
15826
|
readonly hidden?: boolean | undefined;
|
|
15658
15827
|
readonly system?: boolean | undefined;
|
|
@@ -15823,10 +15992,12 @@ declare const SysSavedReport: Omit<{
|
|
|
15823
15992
|
readonly name?: string | undefined;
|
|
15824
15993
|
readonly precision?: number | undefined;
|
|
15825
15994
|
readonly required?: boolean | undefined;
|
|
15995
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15826
15996
|
readonly multiple?: boolean | undefined;
|
|
15827
15997
|
readonly dependencies?: string[] | undefined;
|
|
15828
15998
|
readonly externalId?: boolean | undefined;
|
|
15829
15999
|
readonly defaultValue?: unknown;
|
|
16000
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
15830
16001
|
readonly group?: string | undefined;
|
|
15831
16002
|
readonly hidden?: boolean | undefined;
|
|
15832
16003
|
readonly system?: boolean | undefined;
|
|
@@ -15997,10 +16168,12 @@ declare const SysSavedReport: Omit<{
|
|
|
15997
16168
|
readonly name?: string | undefined;
|
|
15998
16169
|
readonly precision?: number | undefined;
|
|
15999
16170
|
readonly required?: boolean | undefined;
|
|
16171
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16000
16172
|
readonly multiple?: boolean | undefined;
|
|
16001
16173
|
readonly dependencies?: string[] | undefined;
|
|
16002
16174
|
readonly externalId?: boolean | undefined;
|
|
16003
16175
|
readonly defaultValue?: unknown;
|
|
16176
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
16004
16177
|
readonly group?: string | undefined;
|
|
16005
16178
|
readonly hidden?: boolean | undefined;
|
|
16006
16179
|
readonly system?: boolean | undefined;
|
|
@@ -16201,7 +16374,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16201
16374
|
abstract: boolean;
|
|
16202
16375
|
datasource: string;
|
|
16203
16376
|
fields: Record<string, {
|
|
16204
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
16377
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
16205
16378
|
required: boolean;
|
|
16206
16379
|
searchable: boolean;
|
|
16207
16380
|
multiple: boolean;
|
|
@@ -16275,6 +16448,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16275
16448
|
generatedBy?: string | undefined;
|
|
16276
16449
|
} | undefined;
|
|
16277
16450
|
} | undefined;
|
|
16451
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16278
16452
|
summaryOperations?: {
|
|
16279
16453
|
object: string;
|
|
16280
16454
|
field: string;
|
|
@@ -16409,6 +16583,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16409
16583
|
generatedBy?: string | undefined;
|
|
16410
16584
|
} | undefined;
|
|
16411
16585
|
} | undefined;
|
|
16586
|
+
requiredPermissions?: string[] | undefined;
|
|
16412
16587
|
system?: boolean | undefined;
|
|
16413
16588
|
inlineHelpText?: string | undefined;
|
|
16414
16589
|
caseSensitive?: boolean | undefined;
|
|
@@ -16484,6 +16659,10 @@ declare const SysReportSchedule: Omit<{
|
|
|
16484
16659
|
tenantField: string;
|
|
16485
16660
|
crossTenantAccess: boolean;
|
|
16486
16661
|
} | undefined;
|
|
16662
|
+
access?: {
|
|
16663
|
+
default: "public" | "private";
|
|
16664
|
+
} | undefined;
|
|
16665
|
+
requiredPermissions?: string[] | undefined;
|
|
16487
16666
|
softDelete?: {
|
|
16488
16667
|
enabled: boolean;
|
|
16489
16668
|
field: string;
|
|
@@ -16850,7 +17029,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16850
17029
|
clone: boolean;
|
|
16851
17030
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
16852
17031
|
} | undefined;
|
|
16853
|
-
sharingModel?: "full" | "
|
|
17032
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
16854
17033
|
publicSharing?: {
|
|
16855
17034
|
enabled: boolean;
|
|
16856
17035
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -16893,7 +17072,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16893
17072
|
field?: string | undefined;
|
|
16894
17073
|
objectOverride?: string | undefined;
|
|
16895
17074
|
label?: string | undefined;
|
|
16896
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
17075
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
16897
17076
|
options?: {
|
|
16898
17077
|
label: string;
|
|
16899
17078
|
value: string;
|
|
@@ -16937,6 +17116,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16937
17116
|
generatedBy?: string | undefined;
|
|
16938
17117
|
} | undefined;
|
|
16939
17118
|
} | undefined;
|
|
17119
|
+
requiredPermissions?: string[] | undefined;
|
|
16940
17120
|
shortcut?: string | undefined;
|
|
16941
17121
|
bulkEnabled?: boolean | undefined;
|
|
16942
17122
|
ai?: {
|
|
@@ -16998,10 +17178,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
16998
17178
|
readonly name?: string | undefined;
|
|
16999
17179
|
readonly precision?: number | undefined;
|
|
17000
17180
|
readonly required?: boolean | undefined;
|
|
17181
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17001
17182
|
readonly multiple?: boolean | undefined;
|
|
17002
17183
|
readonly dependencies?: string[] | undefined;
|
|
17003
17184
|
readonly externalId?: boolean | undefined;
|
|
17004
17185
|
readonly defaultValue?: unknown;
|
|
17186
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
17005
17187
|
readonly group?: string | undefined;
|
|
17006
17188
|
readonly hidden?: boolean | undefined;
|
|
17007
17189
|
readonly system?: boolean | undefined;
|
|
@@ -17172,10 +17354,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
17172
17354
|
readonly name?: string | undefined;
|
|
17173
17355
|
readonly precision?: number | undefined;
|
|
17174
17356
|
readonly required?: boolean | undefined;
|
|
17357
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17175
17358
|
readonly multiple?: boolean | undefined;
|
|
17176
17359
|
readonly dependencies?: string[] | undefined;
|
|
17177
17360
|
readonly externalId?: boolean | undefined;
|
|
17178
17361
|
readonly defaultValue?: unknown;
|
|
17362
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
17179
17363
|
readonly group?: string | undefined;
|
|
17180
17364
|
readonly hidden?: boolean | undefined;
|
|
17181
17365
|
readonly system?: boolean | undefined;
|
|
@@ -17346,10 +17530,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
17346
17530
|
readonly name?: string | undefined;
|
|
17347
17531
|
readonly precision?: number | undefined;
|
|
17348
17532
|
readonly required?: boolean | undefined;
|
|
17533
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17349
17534
|
readonly multiple?: boolean | undefined;
|
|
17350
17535
|
readonly dependencies?: string[] | undefined;
|
|
17351
17536
|
readonly externalId?: boolean | undefined;
|
|
17352
17537
|
readonly defaultValue?: unknown;
|
|
17538
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
17353
17539
|
readonly group?: string | undefined;
|
|
17354
17540
|
readonly hidden?: boolean | undefined;
|
|
17355
17541
|
readonly system?: boolean | undefined;
|
|
@@ -17520,10 +17706,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
17520
17706
|
readonly name?: string | undefined;
|
|
17521
17707
|
readonly precision?: number | undefined;
|
|
17522
17708
|
readonly required?: boolean | undefined;
|
|
17709
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17523
17710
|
readonly multiple?: boolean | undefined;
|
|
17524
17711
|
readonly dependencies?: string[] | undefined;
|
|
17525
17712
|
readonly externalId?: boolean | undefined;
|
|
17526
17713
|
readonly defaultValue?: unknown;
|
|
17714
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
17527
17715
|
readonly group?: string | undefined;
|
|
17528
17716
|
readonly hidden?: boolean | undefined;
|
|
17529
17717
|
readonly system?: boolean | undefined;
|
|
@@ -17694,10 +17882,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
17694
17882
|
readonly name?: string | undefined;
|
|
17695
17883
|
readonly precision?: number | undefined;
|
|
17696
17884
|
readonly required?: boolean | undefined;
|
|
17885
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17697
17886
|
readonly multiple?: boolean | undefined;
|
|
17698
17887
|
readonly dependencies?: string[] | undefined;
|
|
17699
17888
|
readonly externalId?: boolean | undefined;
|
|
17700
17889
|
readonly defaultValue?: unknown;
|
|
17890
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
17701
17891
|
readonly group?: string | undefined;
|
|
17702
17892
|
readonly hidden?: boolean | undefined;
|
|
17703
17893
|
readonly system?: boolean | undefined;
|
|
@@ -17868,10 +18058,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
17868
18058
|
readonly name?: string | undefined;
|
|
17869
18059
|
readonly precision?: number | undefined;
|
|
17870
18060
|
readonly required?: boolean | undefined;
|
|
18061
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17871
18062
|
readonly multiple?: boolean | undefined;
|
|
17872
18063
|
readonly dependencies?: string[] | undefined;
|
|
17873
18064
|
readonly externalId?: boolean | undefined;
|
|
17874
18065
|
readonly defaultValue?: unknown;
|
|
18066
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
17875
18067
|
readonly group?: string | undefined;
|
|
17876
18068
|
readonly hidden?: boolean | undefined;
|
|
17877
18069
|
readonly system?: boolean | undefined;
|
|
@@ -18042,10 +18234,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
18042
18234
|
readonly name?: string | undefined;
|
|
18043
18235
|
readonly precision?: number | undefined;
|
|
18044
18236
|
readonly required?: boolean | undefined;
|
|
18237
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18045
18238
|
readonly multiple?: boolean | undefined;
|
|
18046
18239
|
readonly dependencies?: string[] | undefined;
|
|
18047
18240
|
readonly externalId?: boolean | undefined;
|
|
18048
18241
|
readonly defaultValue?: unknown;
|
|
18242
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
18049
18243
|
readonly group?: string | undefined;
|
|
18050
18244
|
readonly hidden?: boolean | undefined;
|
|
18051
18245
|
readonly system?: boolean | undefined;
|
|
@@ -18216,10 +18410,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
18216
18410
|
readonly name?: string | undefined;
|
|
18217
18411
|
readonly precision?: number | undefined;
|
|
18218
18412
|
readonly required?: boolean | undefined;
|
|
18413
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18219
18414
|
readonly multiple?: boolean | undefined;
|
|
18220
18415
|
readonly dependencies?: string[] | undefined;
|
|
18221
18416
|
readonly externalId?: boolean | undefined;
|
|
18222
18417
|
readonly defaultValue?: unknown;
|
|
18418
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
18223
18419
|
readonly group?: string | undefined;
|
|
18224
18420
|
readonly hidden?: boolean | undefined;
|
|
18225
18421
|
readonly system?: boolean | undefined;
|
|
@@ -18390,10 +18586,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
18390
18586
|
readonly name?: string | undefined;
|
|
18391
18587
|
readonly precision?: number | undefined;
|
|
18392
18588
|
readonly required?: boolean | undefined;
|
|
18589
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18393
18590
|
readonly multiple?: boolean | undefined;
|
|
18394
18591
|
readonly dependencies?: string[] | undefined;
|
|
18395
18592
|
readonly externalId?: boolean | undefined;
|
|
18396
18593
|
readonly defaultValue?: unknown;
|
|
18594
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
18397
18595
|
readonly group?: string | undefined;
|
|
18398
18596
|
readonly hidden?: boolean | undefined;
|
|
18399
18597
|
readonly system?: boolean | undefined;
|
|
@@ -18564,10 +18762,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
18564
18762
|
readonly name?: string | undefined;
|
|
18565
18763
|
readonly precision?: number | undefined;
|
|
18566
18764
|
readonly required?: boolean | undefined;
|
|
18765
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18567
18766
|
readonly multiple?: boolean | undefined;
|
|
18568
18767
|
readonly dependencies?: string[] | undefined;
|
|
18569
18768
|
readonly externalId?: boolean | undefined;
|
|
18570
18769
|
readonly defaultValue?: unknown;
|
|
18770
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
18571
18771
|
readonly group?: string | undefined;
|
|
18572
18772
|
readonly hidden?: boolean | undefined;
|
|
18573
18773
|
readonly system?: boolean | undefined;
|
|
@@ -18738,10 +18938,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
18738
18938
|
readonly name?: string | undefined;
|
|
18739
18939
|
readonly precision?: number | undefined;
|
|
18740
18940
|
readonly required?: boolean | undefined;
|
|
18941
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18741
18942
|
readonly multiple?: boolean | undefined;
|
|
18742
18943
|
readonly dependencies?: string[] | undefined;
|
|
18743
18944
|
readonly externalId?: boolean | undefined;
|
|
18744
18945
|
readonly defaultValue?: unknown;
|
|
18946
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
18745
18947
|
readonly group?: string | undefined;
|
|
18746
18948
|
readonly hidden?: boolean | undefined;
|
|
18747
18949
|
readonly system?: boolean | undefined;
|
|
@@ -18912,10 +19114,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
18912
19114
|
readonly name?: string | undefined;
|
|
18913
19115
|
readonly precision?: number | undefined;
|
|
18914
19116
|
readonly required?: boolean | undefined;
|
|
19117
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18915
19118
|
readonly multiple?: boolean | undefined;
|
|
18916
19119
|
readonly dependencies?: string[] | undefined;
|
|
18917
19120
|
readonly externalId?: boolean | undefined;
|
|
18918
19121
|
readonly defaultValue?: unknown;
|
|
19122
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
18919
19123
|
readonly group?: string | undefined;
|
|
18920
19124
|
readonly hidden?: boolean | undefined;
|
|
18921
19125
|
readonly system?: boolean | undefined;
|
|
@@ -19086,10 +19290,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
19086
19290
|
readonly name?: string | undefined;
|
|
19087
19291
|
readonly precision?: number | undefined;
|
|
19088
19292
|
readonly required?: boolean | undefined;
|
|
19293
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19089
19294
|
readonly multiple?: boolean | undefined;
|
|
19090
19295
|
readonly dependencies?: string[] | undefined;
|
|
19091
19296
|
readonly externalId?: boolean | undefined;
|
|
19092
19297
|
readonly defaultValue?: unknown;
|
|
19298
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
19093
19299
|
readonly group?: string | undefined;
|
|
19094
19300
|
readonly hidden?: boolean | undefined;
|
|
19095
19301
|
readonly system?: boolean | undefined;
|
|
@@ -19260,10 +19466,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
19260
19466
|
readonly name?: string | undefined;
|
|
19261
19467
|
readonly precision?: number | undefined;
|
|
19262
19468
|
readonly required?: boolean | undefined;
|
|
19469
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19263
19470
|
readonly multiple?: boolean | undefined;
|
|
19264
19471
|
readonly dependencies?: string[] | undefined;
|
|
19265
19472
|
readonly externalId?: boolean | undefined;
|
|
19266
19473
|
readonly defaultValue?: unknown;
|
|
19474
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
19267
19475
|
readonly group?: string | undefined;
|
|
19268
19476
|
readonly hidden?: boolean | undefined;
|
|
19269
19477
|
readonly system?: boolean | undefined;
|
|
@@ -19434,10 +19642,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
19434
19642
|
readonly name?: string | undefined;
|
|
19435
19643
|
readonly precision?: number | undefined;
|
|
19436
19644
|
readonly required?: boolean | undefined;
|
|
19645
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19437
19646
|
readonly multiple?: boolean | undefined;
|
|
19438
19647
|
readonly dependencies?: string[] | undefined;
|
|
19439
19648
|
readonly externalId?: boolean | undefined;
|
|
19440
19649
|
readonly defaultValue?: unknown;
|
|
19650
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
19441
19651
|
readonly group?: string | undefined;
|
|
19442
19652
|
readonly hidden?: boolean | undefined;
|
|
19443
19653
|
readonly system?: boolean | undefined;
|
|
@@ -19608,10 +19818,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
19608
19818
|
readonly name?: string | undefined;
|
|
19609
19819
|
readonly precision?: number | undefined;
|
|
19610
19820
|
readonly required?: boolean | undefined;
|
|
19821
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19611
19822
|
readonly multiple?: boolean | undefined;
|
|
19612
19823
|
readonly dependencies?: string[] | undefined;
|
|
19613
19824
|
readonly externalId?: boolean | undefined;
|
|
19614
19825
|
readonly defaultValue?: unknown;
|
|
19826
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
19615
19827
|
readonly group?: string | undefined;
|
|
19616
19828
|
readonly hidden?: boolean | undefined;
|
|
19617
19829
|
readonly system?: boolean | undefined;
|
|
@@ -19782,10 +19994,12 @@ declare const SysReportSchedule: Omit<{
|
|
|
19782
19994
|
readonly name?: string | undefined;
|
|
19783
19995
|
readonly precision?: number | undefined;
|
|
19784
19996
|
readonly required?: boolean | undefined;
|
|
19997
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19785
19998
|
readonly multiple?: boolean | undefined;
|
|
19786
19999
|
readonly dependencies?: string[] | undefined;
|
|
19787
20000
|
readonly externalId?: boolean | undefined;
|
|
19788
20001
|
readonly defaultValue?: unknown;
|
|
20002
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
19789
20003
|
readonly group?: string | undefined;
|
|
19790
20004
|
readonly hidden?: boolean | undefined;
|
|
19791
20005
|
readonly system?: boolean | undefined;
|
|
@@ -19972,7 +20186,7 @@ declare const SysJob: Omit<{
|
|
|
19972
20186
|
abstract: boolean;
|
|
19973
20187
|
datasource: string;
|
|
19974
20188
|
fields: Record<string, {
|
|
19975
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
20189
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
19976
20190
|
required: boolean;
|
|
19977
20191
|
searchable: boolean;
|
|
19978
20192
|
multiple: boolean;
|
|
@@ -20046,6 +20260,7 @@ declare const SysJob: Omit<{
|
|
|
20046
20260
|
generatedBy?: string | undefined;
|
|
20047
20261
|
} | undefined;
|
|
20048
20262
|
} | undefined;
|
|
20263
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20049
20264
|
summaryOperations?: {
|
|
20050
20265
|
object: string;
|
|
20051
20266
|
field: string;
|
|
@@ -20180,6 +20395,7 @@ declare const SysJob: Omit<{
|
|
|
20180
20395
|
generatedBy?: string | undefined;
|
|
20181
20396
|
} | undefined;
|
|
20182
20397
|
} | undefined;
|
|
20398
|
+
requiredPermissions?: string[] | undefined;
|
|
20183
20399
|
system?: boolean | undefined;
|
|
20184
20400
|
inlineHelpText?: string | undefined;
|
|
20185
20401
|
caseSensitive?: boolean | undefined;
|
|
@@ -20255,6 +20471,10 @@ declare const SysJob: Omit<{
|
|
|
20255
20471
|
tenantField: string;
|
|
20256
20472
|
crossTenantAccess: boolean;
|
|
20257
20473
|
} | undefined;
|
|
20474
|
+
access?: {
|
|
20475
|
+
default: "public" | "private";
|
|
20476
|
+
} | undefined;
|
|
20477
|
+
requiredPermissions?: string[] | undefined;
|
|
20258
20478
|
softDelete?: {
|
|
20259
20479
|
enabled: boolean;
|
|
20260
20480
|
field: string;
|
|
@@ -20621,7 +20841,7 @@ declare const SysJob: Omit<{
|
|
|
20621
20841
|
clone: boolean;
|
|
20622
20842
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
20623
20843
|
} | undefined;
|
|
20624
|
-
sharingModel?: "full" | "
|
|
20844
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
20625
20845
|
publicSharing?: {
|
|
20626
20846
|
enabled: boolean;
|
|
20627
20847
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -20664,7 +20884,7 @@ declare const SysJob: Omit<{
|
|
|
20664
20884
|
field?: string | undefined;
|
|
20665
20885
|
objectOverride?: string | undefined;
|
|
20666
20886
|
label?: string | undefined;
|
|
20667
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
20887
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
20668
20888
|
options?: {
|
|
20669
20889
|
label: string;
|
|
20670
20890
|
value: string;
|
|
@@ -20708,6 +20928,7 @@ declare const SysJob: Omit<{
|
|
|
20708
20928
|
generatedBy?: string | undefined;
|
|
20709
20929
|
} | undefined;
|
|
20710
20930
|
} | undefined;
|
|
20931
|
+
requiredPermissions?: string[] | undefined;
|
|
20711
20932
|
shortcut?: string | undefined;
|
|
20712
20933
|
bulkEnabled?: boolean | undefined;
|
|
20713
20934
|
ai?: {
|
|
@@ -20770,10 +20991,12 @@ declare const SysJob: Omit<{
|
|
|
20770
20991
|
readonly name?: string | undefined;
|
|
20771
20992
|
readonly precision?: number | undefined;
|
|
20772
20993
|
readonly required?: boolean | undefined;
|
|
20994
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20773
20995
|
readonly multiple?: boolean | undefined;
|
|
20774
20996
|
readonly dependencies?: string[] | undefined;
|
|
20775
20997
|
readonly externalId?: boolean | undefined;
|
|
20776
20998
|
readonly defaultValue?: unknown;
|
|
20999
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
20777
21000
|
readonly group?: string | undefined;
|
|
20778
21001
|
readonly hidden?: boolean | undefined;
|
|
20779
21002
|
readonly system?: boolean | undefined;
|
|
@@ -20944,10 +21167,12 @@ declare const SysJob: Omit<{
|
|
|
20944
21167
|
readonly name?: string | undefined;
|
|
20945
21168
|
readonly precision?: number | undefined;
|
|
20946
21169
|
readonly required?: boolean | undefined;
|
|
21170
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20947
21171
|
readonly multiple?: boolean | undefined;
|
|
20948
21172
|
readonly dependencies?: string[] | undefined;
|
|
20949
21173
|
readonly externalId?: boolean | undefined;
|
|
20950
21174
|
readonly defaultValue?: unknown;
|
|
21175
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
20951
21176
|
readonly group?: string | undefined;
|
|
20952
21177
|
readonly hidden?: boolean | undefined;
|
|
20953
21178
|
readonly system?: boolean | undefined;
|
|
@@ -21118,10 +21343,12 @@ declare const SysJob: Omit<{
|
|
|
21118
21343
|
readonly name?: string | undefined;
|
|
21119
21344
|
readonly precision?: number | undefined;
|
|
21120
21345
|
readonly required?: boolean | undefined;
|
|
21346
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21121
21347
|
readonly multiple?: boolean | undefined;
|
|
21122
21348
|
readonly dependencies?: string[] | undefined;
|
|
21123
21349
|
readonly externalId?: boolean | undefined;
|
|
21124
21350
|
readonly defaultValue?: unknown;
|
|
21351
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
21125
21352
|
readonly group?: string | undefined;
|
|
21126
21353
|
readonly hidden?: boolean | undefined;
|
|
21127
21354
|
readonly system?: boolean | undefined;
|
|
@@ -21292,10 +21519,12 @@ declare const SysJob: Omit<{
|
|
|
21292
21519
|
readonly name?: string | undefined;
|
|
21293
21520
|
readonly precision?: number | undefined;
|
|
21294
21521
|
readonly required?: boolean | undefined;
|
|
21522
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21295
21523
|
readonly multiple?: boolean | undefined;
|
|
21296
21524
|
readonly dependencies?: string[] | undefined;
|
|
21297
21525
|
readonly externalId?: boolean | undefined;
|
|
21298
21526
|
readonly defaultValue?: unknown;
|
|
21527
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
21299
21528
|
readonly group?: string | undefined;
|
|
21300
21529
|
readonly hidden?: boolean | undefined;
|
|
21301
21530
|
readonly system?: boolean | undefined;
|
|
@@ -21466,10 +21695,12 @@ declare const SysJob: Omit<{
|
|
|
21466
21695
|
readonly name?: string | undefined;
|
|
21467
21696
|
readonly precision?: number | undefined;
|
|
21468
21697
|
readonly required?: boolean | undefined;
|
|
21698
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21469
21699
|
readonly multiple?: boolean | undefined;
|
|
21470
21700
|
readonly dependencies?: string[] | undefined;
|
|
21471
21701
|
readonly externalId?: boolean | undefined;
|
|
21472
21702
|
readonly defaultValue?: unknown;
|
|
21703
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
21473
21704
|
readonly group?: string | undefined;
|
|
21474
21705
|
readonly hidden?: boolean | undefined;
|
|
21475
21706
|
readonly system?: boolean | undefined;
|
|
@@ -21640,10 +21871,12 @@ declare const SysJob: Omit<{
|
|
|
21640
21871
|
readonly name?: string | undefined;
|
|
21641
21872
|
readonly precision?: number | undefined;
|
|
21642
21873
|
readonly required?: boolean | undefined;
|
|
21874
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21643
21875
|
readonly multiple?: boolean | undefined;
|
|
21644
21876
|
readonly dependencies?: string[] | undefined;
|
|
21645
21877
|
readonly externalId?: boolean | undefined;
|
|
21646
21878
|
readonly defaultValue?: unknown;
|
|
21879
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
21647
21880
|
readonly group?: string | undefined;
|
|
21648
21881
|
readonly hidden?: boolean | undefined;
|
|
21649
21882
|
readonly system?: boolean | undefined;
|
|
@@ -21814,10 +22047,12 @@ declare const SysJob: Omit<{
|
|
|
21814
22047
|
readonly name?: string | undefined;
|
|
21815
22048
|
readonly precision?: number | undefined;
|
|
21816
22049
|
readonly required?: boolean | undefined;
|
|
22050
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21817
22051
|
readonly multiple?: boolean | undefined;
|
|
21818
22052
|
readonly dependencies?: string[] | undefined;
|
|
21819
22053
|
readonly externalId?: boolean | undefined;
|
|
21820
22054
|
readonly defaultValue?: unknown;
|
|
22055
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
21821
22056
|
readonly group?: string | undefined;
|
|
21822
22057
|
readonly hidden?: boolean | undefined;
|
|
21823
22058
|
readonly system?: boolean | undefined;
|
|
@@ -21988,10 +22223,12 @@ declare const SysJob: Omit<{
|
|
|
21988
22223
|
readonly name?: string | undefined;
|
|
21989
22224
|
readonly precision?: number | undefined;
|
|
21990
22225
|
readonly required?: boolean | undefined;
|
|
22226
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21991
22227
|
readonly multiple?: boolean | undefined;
|
|
21992
22228
|
readonly dependencies?: string[] | undefined;
|
|
21993
22229
|
readonly externalId?: boolean | undefined;
|
|
21994
22230
|
readonly defaultValue?: unknown;
|
|
22231
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
21995
22232
|
readonly group?: string | undefined;
|
|
21996
22233
|
readonly hidden?: boolean | undefined;
|
|
21997
22234
|
readonly system?: boolean | undefined;
|
|
@@ -22162,10 +22399,12 @@ declare const SysJob: Omit<{
|
|
|
22162
22399
|
readonly name?: string | undefined;
|
|
22163
22400
|
readonly precision?: number | undefined;
|
|
22164
22401
|
readonly required?: boolean | undefined;
|
|
22402
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
22165
22403
|
readonly multiple?: boolean | undefined;
|
|
22166
22404
|
readonly dependencies?: string[] | undefined;
|
|
22167
22405
|
readonly externalId?: boolean | undefined;
|
|
22168
22406
|
readonly defaultValue?: unknown;
|
|
22407
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
22169
22408
|
readonly group?: string | undefined;
|
|
22170
22409
|
readonly hidden?: boolean | undefined;
|
|
22171
22410
|
readonly system?: boolean | undefined;
|
|
@@ -22336,10 +22575,12 @@ declare const SysJob: Omit<{
|
|
|
22336
22575
|
readonly name?: string | undefined;
|
|
22337
22576
|
readonly precision?: number | undefined;
|
|
22338
22577
|
readonly required?: boolean | undefined;
|
|
22578
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
22339
22579
|
readonly multiple?: boolean | undefined;
|
|
22340
22580
|
readonly dependencies?: string[] | undefined;
|
|
22341
22581
|
readonly externalId?: boolean | undefined;
|
|
22342
22582
|
readonly defaultValue?: unknown;
|
|
22583
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
22343
22584
|
readonly group?: string | undefined;
|
|
22344
22585
|
readonly hidden?: boolean | undefined;
|
|
22345
22586
|
readonly system?: boolean | undefined;
|
|
@@ -22510,10 +22751,12 @@ declare const SysJob: Omit<{
|
|
|
22510
22751
|
readonly name?: string | undefined;
|
|
22511
22752
|
readonly precision?: number | undefined;
|
|
22512
22753
|
readonly required?: boolean | undefined;
|
|
22754
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
22513
22755
|
readonly multiple?: boolean | undefined;
|
|
22514
22756
|
readonly dependencies?: string[] | undefined;
|
|
22515
22757
|
readonly externalId?: boolean | undefined;
|
|
22516
22758
|
readonly defaultValue?: unknown;
|
|
22759
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
22517
22760
|
readonly group?: string | undefined;
|
|
22518
22761
|
readonly hidden?: boolean | undefined;
|
|
22519
22762
|
readonly system?: boolean | undefined;
|
|
@@ -22684,10 +22927,12 @@ declare const SysJob: Omit<{
|
|
|
22684
22927
|
readonly name?: string | undefined;
|
|
22685
22928
|
readonly precision?: number | undefined;
|
|
22686
22929
|
readonly required?: boolean | undefined;
|
|
22930
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
22687
22931
|
readonly multiple?: boolean | undefined;
|
|
22688
22932
|
readonly dependencies?: string[] | undefined;
|
|
22689
22933
|
readonly externalId?: boolean | undefined;
|
|
22690
22934
|
readonly defaultValue?: unknown;
|
|
22935
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
22691
22936
|
readonly group?: string | undefined;
|
|
22692
22937
|
readonly hidden?: boolean | undefined;
|
|
22693
22938
|
readonly system?: boolean | undefined;
|
|
@@ -22858,10 +23103,12 @@ declare const SysJob: Omit<{
|
|
|
22858
23103
|
readonly name?: string | undefined;
|
|
22859
23104
|
readonly precision?: number | undefined;
|
|
22860
23105
|
readonly required?: boolean | undefined;
|
|
23106
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
22861
23107
|
readonly multiple?: boolean | undefined;
|
|
22862
23108
|
readonly dependencies?: string[] | undefined;
|
|
22863
23109
|
readonly externalId?: boolean | undefined;
|
|
22864
23110
|
readonly defaultValue?: unknown;
|
|
23111
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
22865
23112
|
readonly group?: string | undefined;
|
|
22866
23113
|
readonly hidden?: boolean | undefined;
|
|
22867
23114
|
readonly system?: boolean | undefined;
|
|
@@ -23047,7 +23294,7 @@ declare const SysJobRun: Omit<{
|
|
|
23047
23294
|
abstract: boolean;
|
|
23048
23295
|
datasource: string;
|
|
23049
23296
|
fields: Record<string, {
|
|
23050
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
23297
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
23051
23298
|
required: boolean;
|
|
23052
23299
|
searchable: boolean;
|
|
23053
23300
|
multiple: boolean;
|
|
@@ -23121,6 +23368,7 @@ declare const SysJobRun: Omit<{
|
|
|
23121
23368
|
generatedBy?: string | undefined;
|
|
23122
23369
|
} | undefined;
|
|
23123
23370
|
} | undefined;
|
|
23371
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
23124
23372
|
summaryOperations?: {
|
|
23125
23373
|
object: string;
|
|
23126
23374
|
field: string;
|
|
@@ -23255,6 +23503,7 @@ declare const SysJobRun: Omit<{
|
|
|
23255
23503
|
generatedBy?: string | undefined;
|
|
23256
23504
|
} | undefined;
|
|
23257
23505
|
} | undefined;
|
|
23506
|
+
requiredPermissions?: string[] | undefined;
|
|
23258
23507
|
system?: boolean | undefined;
|
|
23259
23508
|
inlineHelpText?: string | undefined;
|
|
23260
23509
|
caseSensitive?: boolean | undefined;
|
|
@@ -23330,6 +23579,10 @@ declare const SysJobRun: Omit<{
|
|
|
23330
23579
|
tenantField: string;
|
|
23331
23580
|
crossTenantAccess: boolean;
|
|
23332
23581
|
} | undefined;
|
|
23582
|
+
access?: {
|
|
23583
|
+
default: "public" | "private";
|
|
23584
|
+
} | undefined;
|
|
23585
|
+
requiredPermissions?: string[] | undefined;
|
|
23333
23586
|
softDelete?: {
|
|
23334
23587
|
enabled: boolean;
|
|
23335
23588
|
field: string;
|
|
@@ -23696,7 +23949,7 @@ declare const SysJobRun: Omit<{
|
|
|
23696
23949
|
clone: boolean;
|
|
23697
23950
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
23698
23951
|
} | undefined;
|
|
23699
|
-
sharingModel?: "full" | "
|
|
23952
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
23700
23953
|
publicSharing?: {
|
|
23701
23954
|
enabled: boolean;
|
|
23702
23955
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -23739,7 +23992,7 @@ declare const SysJobRun: Omit<{
|
|
|
23739
23992
|
field?: string | undefined;
|
|
23740
23993
|
objectOverride?: string | undefined;
|
|
23741
23994
|
label?: string | undefined;
|
|
23742
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
23995
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
23743
23996
|
options?: {
|
|
23744
23997
|
label: string;
|
|
23745
23998
|
value: string;
|
|
@@ -23783,6 +24036,7 @@ declare const SysJobRun: Omit<{
|
|
|
23783
24036
|
generatedBy?: string | undefined;
|
|
23784
24037
|
} | undefined;
|
|
23785
24038
|
} | undefined;
|
|
24039
|
+
requiredPermissions?: string[] | undefined;
|
|
23786
24040
|
shortcut?: string | undefined;
|
|
23787
24041
|
bulkEnabled?: boolean | undefined;
|
|
23788
24042
|
ai?: {
|
|
@@ -23845,10 +24099,12 @@ declare const SysJobRun: Omit<{
|
|
|
23845
24099
|
readonly name?: string | undefined;
|
|
23846
24100
|
readonly precision?: number | undefined;
|
|
23847
24101
|
readonly required?: boolean | undefined;
|
|
24102
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
23848
24103
|
readonly multiple?: boolean | undefined;
|
|
23849
24104
|
readonly dependencies?: string[] | undefined;
|
|
23850
24105
|
readonly externalId?: boolean | undefined;
|
|
23851
24106
|
readonly defaultValue?: unknown;
|
|
24107
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
23852
24108
|
readonly group?: string | undefined;
|
|
23853
24109
|
readonly hidden?: boolean | undefined;
|
|
23854
24110
|
readonly system?: boolean | undefined;
|
|
@@ -24019,10 +24275,12 @@ declare const SysJobRun: Omit<{
|
|
|
24019
24275
|
readonly name?: string | undefined;
|
|
24020
24276
|
readonly precision?: number | undefined;
|
|
24021
24277
|
readonly required?: boolean | undefined;
|
|
24278
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
24022
24279
|
readonly multiple?: boolean | undefined;
|
|
24023
24280
|
readonly dependencies?: string[] | undefined;
|
|
24024
24281
|
readonly externalId?: boolean | undefined;
|
|
24025
24282
|
readonly defaultValue?: unknown;
|
|
24283
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
24026
24284
|
readonly group?: string | undefined;
|
|
24027
24285
|
readonly hidden?: boolean | undefined;
|
|
24028
24286
|
readonly system?: boolean | undefined;
|
|
@@ -24193,10 +24451,12 @@ declare const SysJobRun: Omit<{
|
|
|
24193
24451
|
readonly name?: string | undefined;
|
|
24194
24452
|
readonly precision?: number | undefined;
|
|
24195
24453
|
readonly required?: boolean | undefined;
|
|
24454
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
24196
24455
|
readonly multiple?: boolean | undefined;
|
|
24197
24456
|
readonly dependencies?: string[] | undefined;
|
|
24198
24457
|
readonly externalId?: boolean | undefined;
|
|
24199
24458
|
readonly defaultValue?: unknown;
|
|
24459
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
24200
24460
|
readonly group?: string | undefined;
|
|
24201
24461
|
readonly hidden?: boolean | undefined;
|
|
24202
24462
|
readonly system?: boolean | undefined;
|
|
@@ -24367,10 +24627,12 @@ declare const SysJobRun: Omit<{
|
|
|
24367
24627
|
readonly name?: string | undefined;
|
|
24368
24628
|
readonly precision?: number | undefined;
|
|
24369
24629
|
readonly required?: boolean | undefined;
|
|
24630
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
24370
24631
|
readonly multiple?: boolean | undefined;
|
|
24371
24632
|
readonly dependencies?: string[] | undefined;
|
|
24372
24633
|
readonly externalId?: boolean | undefined;
|
|
24373
24634
|
readonly defaultValue?: unknown;
|
|
24635
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
24374
24636
|
readonly group?: string | undefined;
|
|
24375
24637
|
readonly hidden?: boolean | undefined;
|
|
24376
24638
|
readonly system?: boolean | undefined;
|
|
@@ -24541,10 +24803,12 @@ declare const SysJobRun: Omit<{
|
|
|
24541
24803
|
readonly name?: string | undefined;
|
|
24542
24804
|
readonly precision?: number | undefined;
|
|
24543
24805
|
readonly required?: boolean | undefined;
|
|
24806
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
24544
24807
|
readonly multiple?: boolean | undefined;
|
|
24545
24808
|
readonly dependencies?: string[] | undefined;
|
|
24546
24809
|
readonly externalId?: boolean | undefined;
|
|
24547
24810
|
readonly defaultValue?: unknown;
|
|
24811
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
24548
24812
|
readonly group?: string | undefined;
|
|
24549
24813
|
readonly hidden?: boolean | undefined;
|
|
24550
24814
|
readonly system?: boolean | undefined;
|
|
@@ -24715,10 +24979,12 @@ declare const SysJobRun: Omit<{
|
|
|
24715
24979
|
readonly name?: string | undefined;
|
|
24716
24980
|
readonly precision?: number | undefined;
|
|
24717
24981
|
readonly required?: boolean | undefined;
|
|
24982
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
24718
24983
|
readonly multiple?: boolean | undefined;
|
|
24719
24984
|
readonly dependencies?: string[] | undefined;
|
|
24720
24985
|
readonly externalId?: boolean | undefined;
|
|
24721
24986
|
readonly defaultValue?: unknown;
|
|
24987
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
24722
24988
|
readonly group?: string | undefined;
|
|
24723
24989
|
readonly hidden?: boolean | undefined;
|
|
24724
24990
|
readonly system?: boolean | undefined;
|
|
@@ -24889,10 +25155,12 @@ declare const SysJobRun: Omit<{
|
|
|
24889
25155
|
readonly name?: string | undefined;
|
|
24890
25156
|
readonly precision?: number | undefined;
|
|
24891
25157
|
readonly required?: boolean | undefined;
|
|
25158
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
24892
25159
|
readonly multiple?: boolean | undefined;
|
|
24893
25160
|
readonly dependencies?: string[] | undefined;
|
|
24894
25161
|
readonly externalId?: boolean | undefined;
|
|
24895
25162
|
readonly defaultValue?: unknown;
|
|
25163
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
24896
25164
|
readonly group?: string | undefined;
|
|
24897
25165
|
readonly hidden?: boolean | undefined;
|
|
24898
25166
|
readonly system?: boolean | undefined;
|
|
@@ -25063,10 +25331,12 @@ declare const SysJobRun: Omit<{
|
|
|
25063
25331
|
readonly name?: string | undefined;
|
|
25064
25332
|
readonly precision?: number | undefined;
|
|
25065
25333
|
readonly required?: boolean | undefined;
|
|
25334
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
25066
25335
|
readonly multiple?: boolean | undefined;
|
|
25067
25336
|
readonly dependencies?: string[] | undefined;
|
|
25068
25337
|
readonly externalId?: boolean | undefined;
|
|
25069
25338
|
readonly defaultValue?: unknown;
|
|
25339
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
25070
25340
|
readonly group?: string | undefined;
|
|
25071
25341
|
readonly hidden?: boolean | undefined;
|
|
25072
25342
|
readonly system?: boolean | undefined;
|
|
@@ -25237,10 +25507,12 @@ declare const SysJobRun: Omit<{
|
|
|
25237
25507
|
readonly name?: string | undefined;
|
|
25238
25508
|
readonly precision?: number | undefined;
|
|
25239
25509
|
readonly required?: boolean | undefined;
|
|
25510
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
25240
25511
|
readonly multiple?: boolean | undefined;
|
|
25241
25512
|
readonly dependencies?: string[] | undefined;
|
|
25242
25513
|
readonly externalId?: boolean | undefined;
|
|
25243
25514
|
readonly defaultValue?: unknown;
|
|
25515
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
25244
25516
|
readonly group?: string | undefined;
|
|
25245
25517
|
readonly hidden?: boolean | undefined;
|
|
25246
25518
|
readonly system?: boolean | undefined;
|
|
@@ -25411,10 +25683,12 @@ declare const SysJobRun: Omit<{
|
|
|
25411
25683
|
readonly name?: string | undefined;
|
|
25412
25684
|
readonly precision?: number | undefined;
|
|
25413
25685
|
readonly required?: boolean | undefined;
|
|
25686
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
25414
25687
|
readonly multiple?: boolean | undefined;
|
|
25415
25688
|
readonly dependencies?: string[] | undefined;
|
|
25416
25689
|
readonly externalId?: boolean | undefined;
|
|
25417
25690
|
readonly defaultValue?: unknown;
|
|
25691
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
25418
25692
|
readonly group?: string | undefined;
|
|
25419
25693
|
readonly hidden?: boolean | undefined;
|
|
25420
25694
|
readonly system?: boolean | undefined;
|
|
@@ -25608,7 +25882,7 @@ declare const SysJobQueue: Omit<{
|
|
|
25608
25882
|
abstract: boolean;
|
|
25609
25883
|
datasource: string;
|
|
25610
25884
|
fields: Record<string, {
|
|
25611
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
25885
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
25612
25886
|
required: boolean;
|
|
25613
25887
|
searchable: boolean;
|
|
25614
25888
|
multiple: boolean;
|
|
@@ -25682,6 +25956,7 @@ declare const SysJobQueue: Omit<{
|
|
|
25682
25956
|
generatedBy?: string | undefined;
|
|
25683
25957
|
} | undefined;
|
|
25684
25958
|
} | undefined;
|
|
25959
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
25685
25960
|
summaryOperations?: {
|
|
25686
25961
|
object: string;
|
|
25687
25962
|
field: string;
|
|
@@ -25816,6 +26091,7 @@ declare const SysJobQueue: Omit<{
|
|
|
25816
26091
|
generatedBy?: string | undefined;
|
|
25817
26092
|
} | undefined;
|
|
25818
26093
|
} | undefined;
|
|
26094
|
+
requiredPermissions?: string[] | undefined;
|
|
25819
26095
|
system?: boolean | undefined;
|
|
25820
26096
|
inlineHelpText?: string | undefined;
|
|
25821
26097
|
caseSensitive?: boolean | undefined;
|
|
@@ -25891,6 +26167,10 @@ declare const SysJobQueue: Omit<{
|
|
|
25891
26167
|
tenantField: string;
|
|
25892
26168
|
crossTenantAccess: boolean;
|
|
25893
26169
|
} | undefined;
|
|
26170
|
+
access?: {
|
|
26171
|
+
default: "public" | "private";
|
|
26172
|
+
} | undefined;
|
|
26173
|
+
requiredPermissions?: string[] | undefined;
|
|
25894
26174
|
softDelete?: {
|
|
25895
26175
|
enabled: boolean;
|
|
25896
26176
|
field: string;
|
|
@@ -26257,7 +26537,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26257
26537
|
clone: boolean;
|
|
26258
26538
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
26259
26539
|
} | undefined;
|
|
26260
|
-
sharingModel?: "full" | "
|
|
26540
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
26261
26541
|
publicSharing?: {
|
|
26262
26542
|
enabled: boolean;
|
|
26263
26543
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -26300,7 +26580,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26300
26580
|
field?: string | undefined;
|
|
26301
26581
|
objectOverride?: string | undefined;
|
|
26302
26582
|
label?: string | undefined;
|
|
26303
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
26583
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
26304
26584
|
options?: {
|
|
26305
26585
|
label: string;
|
|
26306
26586
|
value: string;
|
|
@@ -26344,6 +26624,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26344
26624
|
generatedBy?: string | undefined;
|
|
26345
26625
|
} | undefined;
|
|
26346
26626
|
} | undefined;
|
|
26627
|
+
requiredPermissions?: string[] | undefined;
|
|
26347
26628
|
shortcut?: string | undefined;
|
|
26348
26629
|
bulkEnabled?: boolean | undefined;
|
|
26349
26630
|
ai?: {
|
|
@@ -26406,10 +26687,12 @@ declare const SysJobQueue: Omit<{
|
|
|
26406
26687
|
readonly name?: string | undefined;
|
|
26407
26688
|
readonly precision?: number | undefined;
|
|
26408
26689
|
readonly required?: boolean | undefined;
|
|
26690
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
26409
26691
|
readonly multiple?: boolean | undefined;
|
|
26410
26692
|
readonly dependencies?: string[] | undefined;
|
|
26411
26693
|
readonly externalId?: boolean | undefined;
|
|
26412
26694
|
readonly defaultValue?: unknown;
|
|
26695
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
26413
26696
|
readonly group?: string | undefined;
|
|
26414
26697
|
readonly hidden?: boolean | undefined;
|
|
26415
26698
|
readonly system?: boolean | undefined;
|
|
@@ -26580,10 +26863,12 @@ declare const SysJobQueue: Omit<{
|
|
|
26580
26863
|
readonly name?: string | undefined;
|
|
26581
26864
|
readonly precision?: number | undefined;
|
|
26582
26865
|
readonly required?: boolean | undefined;
|
|
26866
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
26583
26867
|
readonly multiple?: boolean | undefined;
|
|
26584
26868
|
readonly dependencies?: string[] | undefined;
|
|
26585
26869
|
readonly externalId?: boolean | undefined;
|
|
26586
26870
|
readonly defaultValue?: unknown;
|
|
26871
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
26587
26872
|
readonly group?: string | undefined;
|
|
26588
26873
|
readonly hidden?: boolean | undefined;
|
|
26589
26874
|
readonly system?: boolean | undefined;
|
|
@@ -26754,10 +27039,12 @@ declare const SysJobQueue: Omit<{
|
|
|
26754
27039
|
readonly name?: string | undefined;
|
|
26755
27040
|
readonly precision?: number | undefined;
|
|
26756
27041
|
readonly required?: boolean | undefined;
|
|
27042
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
26757
27043
|
readonly multiple?: boolean | undefined;
|
|
26758
27044
|
readonly dependencies?: string[] | undefined;
|
|
26759
27045
|
readonly externalId?: boolean | undefined;
|
|
26760
27046
|
readonly defaultValue?: unknown;
|
|
27047
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
26761
27048
|
readonly group?: string | undefined;
|
|
26762
27049
|
readonly hidden?: boolean | undefined;
|
|
26763
27050
|
readonly system?: boolean | undefined;
|
|
@@ -26928,10 +27215,12 @@ declare const SysJobQueue: Omit<{
|
|
|
26928
27215
|
readonly name?: string | undefined;
|
|
26929
27216
|
readonly precision?: number | undefined;
|
|
26930
27217
|
readonly required?: boolean | undefined;
|
|
27218
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
26931
27219
|
readonly multiple?: boolean | undefined;
|
|
26932
27220
|
readonly dependencies?: string[] | undefined;
|
|
26933
27221
|
readonly externalId?: boolean | undefined;
|
|
26934
27222
|
readonly defaultValue?: unknown;
|
|
27223
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
26935
27224
|
readonly group?: string | undefined;
|
|
26936
27225
|
readonly hidden?: boolean | undefined;
|
|
26937
27226
|
readonly system?: boolean | undefined;
|
|
@@ -27102,10 +27391,12 @@ declare const SysJobQueue: Omit<{
|
|
|
27102
27391
|
readonly name?: string | undefined;
|
|
27103
27392
|
readonly precision?: number | undefined;
|
|
27104
27393
|
readonly required?: boolean | undefined;
|
|
27394
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27105
27395
|
readonly multiple?: boolean | undefined;
|
|
27106
27396
|
readonly dependencies?: string[] | undefined;
|
|
27107
27397
|
readonly externalId?: boolean | undefined;
|
|
27108
27398
|
readonly defaultValue?: unknown;
|
|
27399
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
27109
27400
|
readonly group?: string | undefined;
|
|
27110
27401
|
readonly hidden?: boolean | undefined;
|
|
27111
27402
|
readonly system?: boolean | undefined;
|
|
@@ -27276,10 +27567,12 @@ declare const SysJobQueue: Omit<{
|
|
|
27276
27567
|
readonly name?: string | undefined;
|
|
27277
27568
|
readonly precision?: number | undefined;
|
|
27278
27569
|
readonly required?: boolean | undefined;
|
|
27570
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27279
27571
|
readonly multiple?: boolean | undefined;
|
|
27280
27572
|
readonly dependencies?: string[] | undefined;
|
|
27281
27573
|
readonly externalId?: boolean | undefined;
|
|
27282
27574
|
readonly defaultValue?: unknown;
|
|
27575
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
27283
27576
|
readonly group?: string | undefined;
|
|
27284
27577
|
readonly hidden?: boolean | undefined;
|
|
27285
27578
|
readonly system?: boolean | undefined;
|
|
@@ -27450,10 +27743,12 @@ declare const SysJobQueue: Omit<{
|
|
|
27450
27743
|
readonly name?: string | undefined;
|
|
27451
27744
|
readonly precision?: number | undefined;
|
|
27452
27745
|
readonly required?: boolean | undefined;
|
|
27746
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27453
27747
|
readonly multiple?: boolean | undefined;
|
|
27454
27748
|
readonly dependencies?: string[] | undefined;
|
|
27455
27749
|
readonly externalId?: boolean | undefined;
|
|
27456
27750
|
readonly defaultValue?: unknown;
|
|
27751
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
27457
27752
|
readonly group?: string | undefined;
|
|
27458
27753
|
readonly hidden?: boolean | undefined;
|
|
27459
27754
|
readonly system?: boolean | undefined;
|
|
@@ -27624,10 +27919,12 @@ declare const SysJobQueue: Omit<{
|
|
|
27624
27919
|
readonly name?: string | undefined;
|
|
27625
27920
|
readonly precision?: number | undefined;
|
|
27626
27921
|
readonly required?: boolean | undefined;
|
|
27922
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27627
27923
|
readonly multiple?: boolean | undefined;
|
|
27628
27924
|
readonly dependencies?: string[] | undefined;
|
|
27629
27925
|
readonly externalId?: boolean | undefined;
|
|
27630
27926
|
readonly defaultValue?: unknown;
|
|
27927
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
27631
27928
|
readonly group?: string | undefined;
|
|
27632
27929
|
readonly hidden?: boolean | undefined;
|
|
27633
27930
|
readonly system?: boolean | undefined;
|
|
@@ -27798,10 +28095,12 @@ declare const SysJobQueue: Omit<{
|
|
|
27798
28095
|
readonly name?: string | undefined;
|
|
27799
28096
|
readonly precision?: number | undefined;
|
|
27800
28097
|
readonly required?: boolean | undefined;
|
|
28098
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27801
28099
|
readonly multiple?: boolean | undefined;
|
|
27802
28100
|
readonly dependencies?: string[] | undefined;
|
|
27803
28101
|
readonly externalId?: boolean | undefined;
|
|
27804
28102
|
readonly defaultValue?: unknown;
|
|
28103
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
27805
28104
|
readonly group?: string | undefined;
|
|
27806
28105
|
readonly hidden?: boolean | undefined;
|
|
27807
28106
|
readonly system?: boolean | undefined;
|
|
@@ -27972,10 +28271,12 @@ declare const SysJobQueue: Omit<{
|
|
|
27972
28271
|
readonly name?: string | undefined;
|
|
27973
28272
|
readonly precision?: number | undefined;
|
|
27974
28273
|
readonly required?: boolean | undefined;
|
|
28274
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27975
28275
|
readonly multiple?: boolean | undefined;
|
|
27976
28276
|
readonly dependencies?: string[] | undefined;
|
|
27977
28277
|
readonly externalId?: boolean | undefined;
|
|
27978
28278
|
readonly defaultValue?: unknown;
|
|
28279
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
27979
28280
|
readonly group?: string | undefined;
|
|
27980
28281
|
readonly hidden?: boolean | undefined;
|
|
27981
28282
|
readonly system?: boolean | undefined;
|
|
@@ -28146,10 +28447,12 @@ declare const SysJobQueue: Omit<{
|
|
|
28146
28447
|
readonly name?: string | undefined;
|
|
28147
28448
|
readonly precision?: number | undefined;
|
|
28148
28449
|
readonly required?: boolean | undefined;
|
|
28450
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
28149
28451
|
readonly multiple?: boolean | undefined;
|
|
28150
28452
|
readonly dependencies?: string[] | undefined;
|
|
28151
28453
|
readonly externalId?: boolean | undefined;
|
|
28152
28454
|
readonly defaultValue?: unknown;
|
|
28455
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
28153
28456
|
readonly group?: string | undefined;
|
|
28154
28457
|
readonly hidden?: boolean | undefined;
|
|
28155
28458
|
readonly system?: boolean | undefined;
|
|
@@ -28320,10 +28623,12 @@ declare const SysJobQueue: Omit<{
|
|
|
28320
28623
|
readonly name?: string | undefined;
|
|
28321
28624
|
readonly precision?: number | undefined;
|
|
28322
28625
|
readonly required?: boolean | undefined;
|
|
28626
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
28323
28627
|
readonly multiple?: boolean | undefined;
|
|
28324
28628
|
readonly dependencies?: string[] | undefined;
|
|
28325
28629
|
readonly externalId?: boolean | undefined;
|
|
28326
28630
|
readonly defaultValue?: unknown;
|
|
28631
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
28327
28632
|
readonly group?: string | undefined;
|
|
28328
28633
|
readonly hidden?: boolean | undefined;
|
|
28329
28634
|
readonly system?: boolean | undefined;
|
|
@@ -28494,10 +28799,12 @@ declare const SysJobQueue: Omit<{
|
|
|
28494
28799
|
readonly name?: string | undefined;
|
|
28495
28800
|
readonly precision?: number | undefined;
|
|
28496
28801
|
readonly required?: boolean | undefined;
|
|
28802
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
28497
28803
|
readonly multiple?: boolean | undefined;
|
|
28498
28804
|
readonly dependencies?: string[] | undefined;
|
|
28499
28805
|
readonly externalId?: boolean | undefined;
|
|
28500
28806
|
readonly defaultValue?: unknown;
|
|
28807
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
28501
28808
|
readonly group?: string | undefined;
|
|
28502
28809
|
readonly hidden?: boolean | undefined;
|
|
28503
28810
|
readonly system?: boolean | undefined;
|
|
@@ -28668,10 +28975,12 @@ declare const SysJobQueue: Omit<{
|
|
|
28668
28975
|
readonly name?: string | undefined;
|
|
28669
28976
|
readonly precision?: number | undefined;
|
|
28670
28977
|
readonly required?: boolean | undefined;
|
|
28978
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
28671
28979
|
readonly multiple?: boolean | undefined;
|
|
28672
28980
|
readonly dependencies?: string[] | undefined;
|
|
28673
28981
|
readonly externalId?: boolean | undefined;
|
|
28674
28982
|
readonly defaultValue?: unknown;
|
|
28983
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
28675
28984
|
readonly group?: string | undefined;
|
|
28676
28985
|
readonly hidden?: boolean | undefined;
|
|
28677
28986
|
readonly system?: boolean | undefined;
|
|
@@ -28842,10 +29151,12 @@ declare const SysJobQueue: Omit<{
|
|
|
28842
29151
|
readonly name?: string | undefined;
|
|
28843
29152
|
readonly precision?: number | undefined;
|
|
28844
29153
|
readonly required?: boolean | undefined;
|
|
29154
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
28845
29155
|
readonly multiple?: boolean | undefined;
|
|
28846
29156
|
readonly dependencies?: string[] | undefined;
|
|
28847
29157
|
readonly externalId?: boolean | undefined;
|
|
28848
29158
|
readonly defaultValue?: unknown;
|
|
29159
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
28849
29160
|
readonly group?: string | undefined;
|
|
28850
29161
|
readonly hidden?: boolean | undefined;
|
|
28851
29162
|
readonly system?: boolean | undefined;
|
|
@@ -29016,10 +29327,12 @@ declare const SysJobQueue: Omit<{
|
|
|
29016
29327
|
readonly name?: string | undefined;
|
|
29017
29328
|
readonly precision?: number | undefined;
|
|
29018
29329
|
readonly required?: boolean | undefined;
|
|
29330
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
29019
29331
|
readonly multiple?: boolean | undefined;
|
|
29020
29332
|
readonly dependencies?: string[] | undefined;
|
|
29021
29333
|
readonly externalId?: boolean | undefined;
|
|
29022
29334
|
readonly defaultValue?: unknown;
|
|
29335
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
29023
29336
|
readonly group?: string | undefined;
|
|
29024
29337
|
readonly hidden?: boolean | undefined;
|
|
29025
29338
|
readonly system?: boolean | undefined;
|
|
@@ -29190,10 +29503,12 @@ declare const SysJobQueue: Omit<{
|
|
|
29190
29503
|
readonly name?: string | undefined;
|
|
29191
29504
|
readonly precision?: number | undefined;
|
|
29192
29505
|
readonly required?: boolean | undefined;
|
|
29506
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
29193
29507
|
readonly multiple?: boolean | undefined;
|
|
29194
29508
|
readonly dependencies?: string[] | undefined;
|
|
29195
29509
|
readonly externalId?: boolean | undefined;
|
|
29196
29510
|
readonly defaultValue?: unknown;
|
|
29511
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
29197
29512
|
readonly group?: string | undefined;
|
|
29198
29513
|
readonly hidden?: boolean | undefined;
|
|
29199
29514
|
readonly system?: boolean | undefined;
|
|
@@ -29364,10 +29679,12 @@ declare const SysJobQueue: Omit<{
|
|
|
29364
29679
|
readonly name?: string | undefined;
|
|
29365
29680
|
readonly precision?: number | undefined;
|
|
29366
29681
|
readonly required?: boolean | undefined;
|
|
29682
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
29367
29683
|
readonly multiple?: boolean | undefined;
|
|
29368
29684
|
readonly dependencies?: string[] | undefined;
|
|
29369
29685
|
readonly externalId?: boolean | undefined;
|
|
29370
29686
|
readonly defaultValue?: unknown;
|
|
29687
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
29371
29688
|
readonly group?: string | undefined;
|
|
29372
29689
|
readonly hidden?: boolean | undefined;
|
|
29373
29690
|
readonly system?: boolean | undefined;
|
|
@@ -29538,10 +29855,12 @@ declare const SysJobQueue: Omit<{
|
|
|
29538
29855
|
readonly name?: string | undefined;
|
|
29539
29856
|
readonly precision?: number | undefined;
|
|
29540
29857
|
readonly required?: boolean | undefined;
|
|
29858
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
29541
29859
|
readonly multiple?: boolean | undefined;
|
|
29542
29860
|
readonly dependencies?: string[] | undefined;
|
|
29543
29861
|
readonly externalId?: boolean | undefined;
|
|
29544
29862
|
readonly defaultValue?: unknown;
|
|
29863
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
29545
29864
|
readonly group?: string | undefined;
|
|
29546
29865
|
readonly hidden?: boolean | undefined;
|
|
29547
29866
|
readonly system?: boolean | undefined;
|