@objectstack/platform-objects 10.3.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 +155 -18
- package/dist/audit/index.d.ts +155 -18
- package/dist/identity/index.d.mts +19777 -13874
- package/dist/identity/index.d.ts +19777 -13874
- 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 +44 -6
- package/dist/system/index.d.ts +44 -6
- package/package.json +3 -3
package/dist/audit/index.d.mts
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;
|
|
@@ -727,7 +728,7 @@ declare const SysNotification: Omit<{
|
|
|
727
728
|
field?: string | undefined;
|
|
728
729
|
objectOverride?: string | undefined;
|
|
729
730
|
label?: string | undefined;
|
|
730
|
-
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;
|
|
731
732
|
options?: {
|
|
732
733
|
label: string;
|
|
733
734
|
value: string;
|
|
@@ -881,6 +882,7 @@ declare const SysNotification: Omit<{
|
|
|
881
882
|
readonly name?: string | undefined;
|
|
882
883
|
readonly precision?: number | undefined;
|
|
883
884
|
readonly required?: boolean | undefined;
|
|
885
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
884
886
|
readonly multiple?: boolean | undefined;
|
|
885
887
|
readonly dependencies?: string[] | undefined;
|
|
886
888
|
readonly externalId?: boolean | undefined;
|
|
@@ -1056,6 +1058,7 @@ declare const SysNotification: Omit<{
|
|
|
1056
1058
|
readonly name?: string | undefined;
|
|
1057
1059
|
readonly precision?: number | undefined;
|
|
1058
1060
|
readonly required?: boolean | undefined;
|
|
1061
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1059
1062
|
readonly multiple?: boolean | undefined;
|
|
1060
1063
|
readonly dependencies?: string[] | undefined;
|
|
1061
1064
|
readonly externalId?: boolean | undefined;
|
|
@@ -1231,6 +1234,7 @@ declare const SysNotification: Omit<{
|
|
|
1231
1234
|
readonly name?: string | undefined;
|
|
1232
1235
|
readonly precision?: number | undefined;
|
|
1233
1236
|
readonly required?: boolean | undefined;
|
|
1237
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1234
1238
|
readonly multiple?: boolean | undefined;
|
|
1235
1239
|
readonly dependencies?: string[] | undefined;
|
|
1236
1240
|
readonly externalId?: boolean | undefined;
|
|
@@ -1406,6 +1410,7 @@ declare const SysNotification: Omit<{
|
|
|
1406
1410
|
readonly name?: string | undefined;
|
|
1407
1411
|
readonly precision?: number | undefined;
|
|
1408
1412
|
readonly required?: boolean | undefined;
|
|
1413
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1409
1414
|
readonly multiple?: boolean | undefined;
|
|
1410
1415
|
readonly dependencies?: string[] | undefined;
|
|
1411
1416
|
readonly externalId?: boolean | undefined;
|
|
@@ -1581,6 +1586,7 @@ declare const SysNotification: Omit<{
|
|
|
1581
1586
|
readonly name?: string | undefined;
|
|
1582
1587
|
readonly precision?: number | undefined;
|
|
1583
1588
|
readonly required?: boolean | undefined;
|
|
1589
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1584
1590
|
readonly multiple?: boolean | undefined;
|
|
1585
1591
|
readonly dependencies?: string[] | undefined;
|
|
1586
1592
|
readonly externalId?: boolean | undefined;
|
|
@@ -1756,6 +1762,7 @@ declare const SysNotification: Omit<{
|
|
|
1756
1762
|
readonly name?: string | undefined;
|
|
1757
1763
|
readonly precision?: number | undefined;
|
|
1758
1764
|
readonly required?: boolean | undefined;
|
|
1765
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1759
1766
|
readonly multiple?: boolean | undefined;
|
|
1760
1767
|
readonly dependencies?: string[] | undefined;
|
|
1761
1768
|
readonly externalId?: boolean | undefined;
|
|
@@ -1931,6 +1938,7 @@ declare const SysNotification: Omit<{
|
|
|
1931
1938
|
readonly name?: string | undefined;
|
|
1932
1939
|
readonly precision?: number | undefined;
|
|
1933
1940
|
readonly required?: boolean | undefined;
|
|
1941
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1934
1942
|
readonly multiple?: boolean | undefined;
|
|
1935
1943
|
readonly dependencies?: string[] | undefined;
|
|
1936
1944
|
readonly externalId?: boolean | undefined;
|
|
@@ -2106,6 +2114,7 @@ declare const SysNotification: Omit<{
|
|
|
2106
2114
|
readonly name?: string | undefined;
|
|
2107
2115
|
readonly precision?: number | undefined;
|
|
2108
2116
|
readonly required?: boolean | undefined;
|
|
2117
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2109
2118
|
readonly multiple?: boolean | undefined;
|
|
2110
2119
|
readonly dependencies?: string[] | undefined;
|
|
2111
2120
|
readonly externalId?: boolean | undefined;
|
|
@@ -2281,6 +2290,7 @@ declare const SysNotification: Omit<{
|
|
|
2281
2290
|
readonly name?: string | undefined;
|
|
2282
2291
|
readonly precision?: number | undefined;
|
|
2283
2292
|
readonly required?: boolean | undefined;
|
|
2293
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2284
2294
|
readonly multiple?: boolean | undefined;
|
|
2285
2295
|
readonly dependencies?: string[] | undefined;
|
|
2286
2296
|
readonly externalId?: boolean | undefined;
|
|
@@ -2480,7 +2490,7 @@ declare const SysAttachment: Omit<{
|
|
|
2480
2490
|
abstract: boolean;
|
|
2481
2491
|
datasource: string;
|
|
2482
2492
|
fields: Record<string, {
|
|
2483
|
-
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";
|
|
2484
2494
|
required: boolean;
|
|
2485
2495
|
searchable: boolean;
|
|
2486
2496
|
multiple: boolean;
|
|
@@ -2554,6 +2564,7 @@ declare const SysAttachment: Omit<{
|
|
|
2554
2564
|
generatedBy?: string | undefined;
|
|
2555
2565
|
} | undefined;
|
|
2556
2566
|
} | undefined;
|
|
2567
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2557
2568
|
summaryOperations?: {
|
|
2558
2569
|
object: string;
|
|
2559
2570
|
field: string;
|
|
@@ -3177,7 +3188,7 @@ declare const SysAttachment: Omit<{
|
|
|
3177
3188
|
field?: string | undefined;
|
|
3178
3189
|
objectOverride?: string | undefined;
|
|
3179
3190
|
label?: string | undefined;
|
|
3180
|
-
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;
|
|
3181
3192
|
options?: {
|
|
3182
3193
|
label: string;
|
|
3183
3194
|
value: string;
|
|
@@ -3283,6 +3294,7 @@ declare const SysAttachment: Omit<{
|
|
|
3283
3294
|
readonly name?: string | undefined;
|
|
3284
3295
|
readonly precision?: number | undefined;
|
|
3285
3296
|
readonly required?: boolean | undefined;
|
|
3297
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3286
3298
|
readonly multiple?: boolean | undefined;
|
|
3287
3299
|
readonly dependencies?: string[] | undefined;
|
|
3288
3300
|
readonly externalId?: boolean | undefined;
|
|
@@ -3458,6 +3470,7 @@ declare const SysAttachment: Omit<{
|
|
|
3458
3470
|
readonly name?: string | undefined;
|
|
3459
3471
|
readonly precision?: number | undefined;
|
|
3460
3472
|
readonly required?: boolean | undefined;
|
|
3473
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3461
3474
|
readonly multiple?: boolean | undefined;
|
|
3462
3475
|
readonly dependencies?: string[] | undefined;
|
|
3463
3476
|
readonly externalId?: boolean | undefined;
|
|
@@ -3633,6 +3646,7 @@ declare const SysAttachment: Omit<{
|
|
|
3633
3646
|
readonly name?: string | undefined;
|
|
3634
3647
|
readonly precision?: number | undefined;
|
|
3635
3648
|
readonly required?: boolean | undefined;
|
|
3649
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3636
3650
|
readonly multiple?: boolean | undefined;
|
|
3637
3651
|
readonly dependencies?: string[] | undefined;
|
|
3638
3652
|
readonly externalId?: boolean | undefined;
|
|
@@ -3808,6 +3822,7 @@ declare const SysAttachment: Omit<{
|
|
|
3808
3822
|
readonly name?: string | undefined;
|
|
3809
3823
|
readonly precision?: number | undefined;
|
|
3810
3824
|
readonly required?: boolean | undefined;
|
|
3825
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3811
3826
|
readonly multiple?: boolean | undefined;
|
|
3812
3827
|
readonly dependencies?: string[] | undefined;
|
|
3813
3828
|
readonly externalId?: boolean | undefined;
|
|
@@ -3983,6 +3998,7 @@ declare const SysAttachment: Omit<{
|
|
|
3983
3998
|
readonly name?: string | undefined;
|
|
3984
3999
|
readonly precision?: number | undefined;
|
|
3985
4000
|
readonly required?: boolean | undefined;
|
|
4001
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3986
4002
|
readonly multiple?: boolean | undefined;
|
|
3987
4003
|
readonly dependencies?: string[] | undefined;
|
|
3988
4004
|
readonly externalId?: boolean | undefined;
|
|
@@ -4158,6 +4174,7 @@ declare const SysAttachment: Omit<{
|
|
|
4158
4174
|
readonly name?: string | undefined;
|
|
4159
4175
|
readonly precision?: number | undefined;
|
|
4160
4176
|
readonly required?: boolean | undefined;
|
|
4177
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4161
4178
|
readonly multiple?: boolean | undefined;
|
|
4162
4179
|
readonly dependencies?: string[] | undefined;
|
|
4163
4180
|
readonly externalId?: boolean | undefined;
|
|
@@ -4333,6 +4350,7 @@ declare const SysAttachment: Omit<{
|
|
|
4333
4350
|
readonly name?: string | undefined;
|
|
4334
4351
|
readonly precision?: number | undefined;
|
|
4335
4352
|
readonly required?: boolean | undefined;
|
|
4353
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4336
4354
|
readonly multiple?: boolean | undefined;
|
|
4337
4355
|
readonly dependencies?: string[] | undefined;
|
|
4338
4356
|
readonly externalId?: boolean | undefined;
|
|
@@ -4508,6 +4526,7 @@ declare const SysAttachment: Omit<{
|
|
|
4508
4526
|
readonly name?: string | undefined;
|
|
4509
4527
|
readonly precision?: number | undefined;
|
|
4510
4528
|
readonly required?: boolean | undefined;
|
|
4529
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4511
4530
|
readonly multiple?: boolean | undefined;
|
|
4512
4531
|
readonly dependencies?: string[] | undefined;
|
|
4513
4532
|
readonly externalId?: boolean | undefined;
|
|
@@ -4683,6 +4702,7 @@ declare const SysAttachment: Omit<{
|
|
|
4683
4702
|
readonly name?: string | undefined;
|
|
4684
4703
|
readonly precision?: number | undefined;
|
|
4685
4704
|
readonly required?: boolean | undefined;
|
|
4705
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4686
4706
|
readonly multiple?: boolean | undefined;
|
|
4687
4707
|
readonly dependencies?: string[] | undefined;
|
|
4688
4708
|
readonly externalId?: boolean | undefined;
|
|
@@ -4858,6 +4878,7 @@ declare const SysAttachment: Omit<{
|
|
|
4858
4878
|
readonly name?: string | undefined;
|
|
4859
4879
|
readonly precision?: number | undefined;
|
|
4860
4880
|
readonly required?: boolean | undefined;
|
|
4881
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4861
4882
|
readonly multiple?: boolean | undefined;
|
|
4862
4883
|
readonly dependencies?: string[] | undefined;
|
|
4863
4884
|
readonly externalId?: boolean | undefined;
|
|
@@ -5033,6 +5054,7 @@ declare const SysAttachment: Omit<{
|
|
|
5033
5054
|
readonly name?: string | undefined;
|
|
5034
5055
|
readonly precision?: number | undefined;
|
|
5035
5056
|
readonly required?: boolean | undefined;
|
|
5057
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5036
5058
|
readonly multiple?: boolean | undefined;
|
|
5037
5059
|
readonly dependencies?: string[] | undefined;
|
|
5038
5060
|
readonly externalId?: boolean | undefined;
|
|
@@ -5208,6 +5230,7 @@ declare const SysAttachment: Omit<{
|
|
|
5208
5230
|
readonly name?: string | undefined;
|
|
5209
5231
|
readonly precision?: number | undefined;
|
|
5210
5232
|
readonly required?: boolean | undefined;
|
|
5233
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5211
5234
|
readonly multiple?: boolean | undefined;
|
|
5212
5235
|
readonly dependencies?: string[] | undefined;
|
|
5213
5236
|
readonly externalId?: boolean | undefined;
|
|
@@ -5383,6 +5406,7 @@ declare const SysAttachment: Omit<{
|
|
|
5383
5406
|
readonly name?: string | undefined;
|
|
5384
5407
|
readonly precision?: number | undefined;
|
|
5385
5408
|
readonly required?: boolean | undefined;
|
|
5409
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5386
5410
|
readonly multiple?: boolean | undefined;
|
|
5387
5411
|
readonly dependencies?: string[] | undefined;
|
|
5388
5412
|
readonly externalId?: boolean | undefined;
|
|
@@ -5585,7 +5609,7 @@ declare const SysEmail: Omit<{
|
|
|
5585
5609
|
abstract: boolean;
|
|
5586
5610
|
datasource: string;
|
|
5587
5611
|
fields: Record<string, {
|
|
5588
|
-
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";
|
|
5589
5613
|
required: boolean;
|
|
5590
5614
|
searchable: boolean;
|
|
5591
5615
|
multiple: boolean;
|
|
@@ -5659,6 +5683,7 @@ declare const SysEmail: Omit<{
|
|
|
5659
5683
|
generatedBy?: string | undefined;
|
|
5660
5684
|
} | undefined;
|
|
5661
5685
|
} | undefined;
|
|
5686
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5662
5687
|
summaryOperations?: {
|
|
5663
5688
|
object: string;
|
|
5664
5689
|
field: string;
|
|
@@ -6282,7 +6307,7 @@ declare const SysEmail: Omit<{
|
|
|
6282
6307
|
field?: string | undefined;
|
|
6283
6308
|
objectOverride?: string | undefined;
|
|
6284
6309
|
label?: string | undefined;
|
|
6285
|
-
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;
|
|
6286
6311
|
options?: {
|
|
6287
6312
|
label: string;
|
|
6288
6313
|
value: string;
|
|
@@ -6389,6 +6414,7 @@ declare const SysEmail: Omit<{
|
|
|
6389
6414
|
readonly name?: string | undefined;
|
|
6390
6415
|
readonly precision?: number | undefined;
|
|
6391
6416
|
readonly required?: boolean | undefined;
|
|
6417
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6392
6418
|
readonly multiple?: boolean | undefined;
|
|
6393
6419
|
readonly dependencies?: string[] | undefined;
|
|
6394
6420
|
readonly externalId?: boolean | undefined;
|
|
@@ -6564,6 +6590,7 @@ declare const SysEmail: Omit<{
|
|
|
6564
6590
|
readonly name?: string | undefined;
|
|
6565
6591
|
readonly precision?: number | undefined;
|
|
6566
6592
|
readonly required?: boolean | undefined;
|
|
6593
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6567
6594
|
readonly multiple?: boolean | undefined;
|
|
6568
6595
|
readonly dependencies?: string[] | undefined;
|
|
6569
6596
|
readonly externalId?: boolean | undefined;
|
|
@@ -6739,6 +6766,7 @@ declare const SysEmail: Omit<{
|
|
|
6739
6766
|
readonly name?: string | undefined;
|
|
6740
6767
|
readonly precision?: number | undefined;
|
|
6741
6768
|
readonly required?: boolean | undefined;
|
|
6769
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6742
6770
|
readonly multiple?: boolean | undefined;
|
|
6743
6771
|
readonly dependencies?: string[] | undefined;
|
|
6744
6772
|
readonly externalId?: boolean | undefined;
|
|
@@ -6914,6 +6942,7 @@ declare const SysEmail: Omit<{
|
|
|
6914
6942
|
readonly name?: string | undefined;
|
|
6915
6943
|
readonly precision?: number | undefined;
|
|
6916
6944
|
readonly required?: boolean | undefined;
|
|
6945
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6917
6946
|
readonly multiple?: boolean | undefined;
|
|
6918
6947
|
readonly dependencies?: string[] | undefined;
|
|
6919
6948
|
readonly externalId?: boolean | undefined;
|
|
@@ -7089,6 +7118,7 @@ declare const SysEmail: Omit<{
|
|
|
7089
7118
|
readonly name?: string | undefined;
|
|
7090
7119
|
readonly precision?: number | undefined;
|
|
7091
7120
|
readonly required?: boolean | undefined;
|
|
7121
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7092
7122
|
readonly multiple?: boolean | undefined;
|
|
7093
7123
|
readonly dependencies?: string[] | undefined;
|
|
7094
7124
|
readonly externalId?: boolean | undefined;
|
|
@@ -7264,6 +7294,7 @@ declare const SysEmail: Omit<{
|
|
|
7264
7294
|
readonly name?: string | undefined;
|
|
7265
7295
|
readonly precision?: number | undefined;
|
|
7266
7296
|
readonly required?: boolean | undefined;
|
|
7297
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7267
7298
|
readonly multiple?: boolean | undefined;
|
|
7268
7299
|
readonly dependencies?: string[] | undefined;
|
|
7269
7300
|
readonly externalId?: boolean | undefined;
|
|
@@ -7439,6 +7470,7 @@ declare const SysEmail: Omit<{
|
|
|
7439
7470
|
readonly name?: string | undefined;
|
|
7440
7471
|
readonly precision?: number | undefined;
|
|
7441
7472
|
readonly required?: boolean | undefined;
|
|
7473
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7442
7474
|
readonly multiple?: boolean | undefined;
|
|
7443
7475
|
readonly dependencies?: string[] | undefined;
|
|
7444
7476
|
readonly externalId?: boolean | undefined;
|
|
@@ -7614,6 +7646,7 @@ declare const SysEmail: Omit<{
|
|
|
7614
7646
|
readonly name?: string | undefined;
|
|
7615
7647
|
readonly precision?: number | undefined;
|
|
7616
7648
|
readonly required?: boolean | undefined;
|
|
7649
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7617
7650
|
readonly multiple?: boolean | undefined;
|
|
7618
7651
|
readonly dependencies?: string[] | undefined;
|
|
7619
7652
|
readonly externalId?: boolean | undefined;
|
|
@@ -7789,6 +7822,7 @@ declare const SysEmail: Omit<{
|
|
|
7789
7822
|
readonly name?: string | undefined;
|
|
7790
7823
|
readonly precision?: number | undefined;
|
|
7791
7824
|
readonly required?: boolean | undefined;
|
|
7825
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7792
7826
|
readonly multiple?: boolean | undefined;
|
|
7793
7827
|
readonly dependencies?: string[] | undefined;
|
|
7794
7828
|
readonly externalId?: boolean | undefined;
|
|
@@ -7964,6 +7998,7 @@ declare const SysEmail: Omit<{
|
|
|
7964
7998
|
readonly name?: string | undefined;
|
|
7965
7999
|
readonly precision?: number | undefined;
|
|
7966
8000
|
readonly required?: boolean | undefined;
|
|
8001
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7967
8002
|
readonly multiple?: boolean | undefined;
|
|
7968
8003
|
readonly dependencies?: string[] | undefined;
|
|
7969
8004
|
readonly externalId?: boolean | undefined;
|
|
@@ -8139,6 +8174,7 @@ declare const SysEmail: Omit<{
|
|
|
8139
8174
|
readonly name?: string | undefined;
|
|
8140
8175
|
readonly precision?: number | undefined;
|
|
8141
8176
|
readonly required?: boolean | undefined;
|
|
8177
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8142
8178
|
readonly multiple?: boolean | undefined;
|
|
8143
8179
|
readonly dependencies?: string[] | undefined;
|
|
8144
8180
|
readonly externalId?: boolean | undefined;
|
|
@@ -8314,6 +8350,7 @@ declare const SysEmail: Omit<{
|
|
|
8314
8350
|
readonly name?: string | undefined;
|
|
8315
8351
|
readonly precision?: number | undefined;
|
|
8316
8352
|
readonly required?: boolean | undefined;
|
|
8353
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8317
8354
|
readonly multiple?: boolean | undefined;
|
|
8318
8355
|
readonly dependencies?: string[] | undefined;
|
|
8319
8356
|
readonly externalId?: boolean | undefined;
|
|
@@ -8489,6 +8526,7 @@ declare const SysEmail: Omit<{
|
|
|
8489
8526
|
readonly name?: string | undefined;
|
|
8490
8527
|
readonly precision?: number | undefined;
|
|
8491
8528
|
readonly required?: boolean | undefined;
|
|
8529
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8492
8530
|
readonly multiple?: boolean | undefined;
|
|
8493
8531
|
readonly dependencies?: string[] | undefined;
|
|
8494
8532
|
readonly externalId?: boolean | undefined;
|
|
@@ -8664,6 +8702,7 @@ declare const SysEmail: Omit<{
|
|
|
8664
8702
|
readonly name?: string | undefined;
|
|
8665
8703
|
readonly precision?: number | undefined;
|
|
8666
8704
|
readonly required?: boolean | undefined;
|
|
8705
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8667
8706
|
readonly multiple?: boolean | undefined;
|
|
8668
8707
|
readonly dependencies?: string[] | undefined;
|
|
8669
8708
|
readonly externalId?: boolean | undefined;
|
|
@@ -8839,6 +8878,7 @@ declare const SysEmail: Omit<{
|
|
|
8839
8878
|
readonly name?: string | undefined;
|
|
8840
8879
|
readonly precision?: number | undefined;
|
|
8841
8880
|
readonly required?: boolean | undefined;
|
|
8881
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8842
8882
|
readonly multiple?: boolean | undefined;
|
|
8843
8883
|
readonly dependencies?: string[] | undefined;
|
|
8844
8884
|
readonly externalId?: boolean | undefined;
|
|
@@ -9014,6 +9054,7 @@ declare const SysEmail: Omit<{
|
|
|
9014
9054
|
readonly name?: string | undefined;
|
|
9015
9055
|
readonly precision?: number | undefined;
|
|
9016
9056
|
readonly required?: boolean | undefined;
|
|
9057
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9017
9058
|
readonly multiple?: boolean | undefined;
|
|
9018
9059
|
readonly dependencies?: string[] | undefined;
|
|
9019
9060
|
readonly externalId?: boolean | undefined;
|
|
@@ -9189,6 +9230,7 @@ declare const SysEmail: Omit<{
|
|
|
9189
9230
|
readonly name?: string | undefined;
|
|
9190
9231
|
readonly precision?: number | undefined;
|
|
9191
9232
|
readonly required?: boolean | undefined;
|
|
9233
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9192
9234
|
readonly multiple?: boolean | undefined;
|
|
9193
9235
|
readonly dependencies?: string[] | undefined;
|
|
9194
9236
|
readonly externalId?: boolean | undefined;
|
|
@@ -9364,6 +9406,7 @@ declare const SysEmail: Omit<{
|
|
|
9364
9406
|
readonly name?: string | undefined;
|
|
9365
9407
|
readonly precision?: number | undefined;
|
|
9366
9408
|
readonly required?: boolean | undefined;
|
|
9409
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9367
9410
|
readonly multiple?: boolean | undefined;
|
|
9368
9411
|
readonly dependencies?: string[] | undefined;
|
|
9369
9412
|
readonly externalId?: boolean | undefined;
|
|
@@ -9539,6 +9582,7 @@ declare const SysEmail: Omit<{
|
|
|
9539
9582
|
readonly name?: string | undefined;
|
|
9540
9583
|
readonly precision?: number | undefined;
|
|
9541
9584
|
readonly required?: boolean | undefined;
|
|
9585
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9542
9586
|
readonly multiple?: boolean | undefined;
|
|
9543
9587
|
readonly dependencies?: string[] | undefined;
|
|
9544
9588
|
readonly externalId?: boolean | undefined;
|
|
@@ -9731,7 +9775,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9731
9775
|
abstract: boolean;
|
|
9732
9776
|
datasource: string;
|
|
9733
9777
|
fields: Record<string, {
|
|
9734
|
-
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";
|
|
9735
9779
|
required: boolean;
|
|
9736
9780
|
searchable: boolean;
|
|
9737
9781
|
multiple: boolean;
|
|
@@ -9805,6 +9849,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9805
9849
|
generatedBy?: string | undefined;
|
|
9806
9850
|
} | undefined;
|
|
9807
9851
|
} | undefined;
|
|
9852
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9808
9853
|
summaryOperations?: {
|
|
9809
9854
|
object: string;
|
|
9810
9855
|
field: string;
|
|
@@ -10428,7 +10473,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10428
10473
|
field?: string | undefined;
|
|
10429
10474
|
objectOverride?: string | undefined;
|
|
10430
10475
|
label?: string | undefined;
|
|
10431
|
-
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;
|
|
10432
10477
|
options?: {
|
|
10433
10478
|
label: string;
|
|
10434
10479
|
value: string;
|
|
@@ -10535,6 +10580,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10535
10580
|
readonly name?: string | undefined;
|
|
10536
10581
|
readonly precision?: number | undefined;
|
|
10537
10582
|
readonly required?: boolean | undefined;
|
|
10583
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10538
10584
|
readonly multiple?: boolean | undefined;
|
|
10539
10585
|
readonly dependencies?: string[] | undefined;
|
|
10540
10586
|
readonly externalId?: boolean | undefined;
|
|
@@ -10710,6 +10756,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10710
10756
|
readonly name?: string | undefined;
|
|
10711
10757
|
readonly precision?: number | undefined;
|
|
10712
10758
|
readonly required?: boolean | undefined;
|
|
10759
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10713
10760
|
readonly multiple?: boolean | undefined;
|
|
10714
10761
|
readonly dependencies?: string[] | undefined;
|
|
10715
10762
|
readonly externalId?: boolean | undefined;
|
|
@@ -10885,6 +10932,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10885
10932
|
readonly name?: string | undefined;
|
|
10886
10933
|
readonly precision?: number | undefined;
|
|
10887
10934
|
readonly required?: boolean | undefined;
|
|
10935
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10888
10936
|
readonly multiple?: boolean | undefined;
|
|
10889
10937
|
readonly dependencies?: string[] | undefined;
|
|
10890
10938
|
readonly externalId?: boolean | undefined;
|
|
@@ -11060,6 +11108,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11060
11108
|
readonly name?: string | undefined;
|
|
11061
11109
|
readonly precision?: number | undefined;
|
|
11062
11110
|
readonly required?: boolean | undefined;
|
|
11111
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11063
11112
|
readonly multiple?: boolean | undefined;
|
|
11064
11113
|
readonly dependencies?: string[] | undefined;
|
|
11065
11114
|
readonly externalId?: boolean | undefined;
|
|
@@ -11235,6 +11284,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11235
11284
|
readonly name?: string | undefined;
|
|
11236
11285
|
readonly precision?: number | undefined;
|
|
11237
11286
|
readonly required?: boolean | undefined;
|
|
11287
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11238
11288
|
readonly multiple?: boolean | undefined;
|
|
11239
11289
|
readonly dependencies?: string[] | undefined;
|
|
11240
11290
|
readonly externalId?: boolean | undefined;
|
|
@@ -11410,6 +11460,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11410
11460
|
readonly name?: string | undefined;
|
|
11411
11461
|
readonly precision?: number | undefined;
|
|
11412
11462
|
readonly required?: boolean | undefined;
|
|
11463
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11413
11464
|
readonly multiple?: boolean | undefined;
|
|
11414
11465
|
readonly dependencies?: string[] | undefined;
|
|
11415
11466
|
readonly externalId?: boolean | undefined;
|
|
@@ -11585,6 +11636,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11585
11636
|
readonly name?: string | undefined;
|
|
11586
11637
|
readonly precision?: number | undefined;
|
|
11587
11638
|
readonly required?: boolean | undefined;
|
|
11639
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11588
11640
|
readonly multiple?: boolean | undefined;
|
|
11589
11641
|
readonly dependencies?: string[] | undefined;
|
|
11590
11642
|
readonly externalId?: boolean | undefined;
|
|
@@ -11760,6 +11812,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11760
11812
|
readonly name?: string | undefined;
|
|
11761
11813
|
readonly precision?: number | undefined;
|
|
11762
11814
|
readonly required?: boolean | undefined;
|
|
11815
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11763
11816
|
readonly multiple?: boolean | undefined;
|
|
11764
11817
|
readonly dependencies?: string[] | undefined;
|
|
11765
11818
|
readonly externalId?: boolean | undefined;
|
|
@@ -11935,6 +11988,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11935
11988
|
readonly name?: string | undefined;
|
|
11936
11989
|
readonly precision?: number | undefined;
|
|
11937
11990
|
readonly required?: boolean | undefined;
|
|
11991
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11938
11992
|
readonly multiple?: boolean | undefined;
|
|
11939
11993
|
readonly dependencies?: string[] | undefined;
|
|
11940
11994
|
readonly externalId?: boolean | undefined;
|
|
@@ -12110,6 +12164,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12110
12164
|
readonly name?: string | undefined;
|
|
12111
12165
|
readonly precision?: number | undefined;
|
|
12112
12166
|
readonly required?: boolean | undefined;
|
|
12167
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12113
12168
|
readonly multiple?: boolean | undefined;
|
|
12114
12169
|
readonly dependencies?: string[] | undefined;
|
|
12115
12170
|
readonly externalId?: boolean | undefined;
|
|
@@ -12285,6 +12340,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12285
12340
|
readonly name?: string | undefined;
|
|
12286
12341
|
readonly precision?: number | undefined;
|
|
12287
12342
|
readonly required?: boolean | undefined;
|
|
12343
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12288
12344
|
readonly multiple?: boolean | undefined;
|
|
12289
12345
|
readonly dependencies?: string[] | undefined;
|
|
12290
12346
|
readonly externalId?: boolean | undefined;
|
|
@@ -12460,6 +12516,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12460
12516
|
readonly name?: string | undefined;
|
|
12461
12517
|
readonly precision?: number | undefined;
|
|
12462
12518
|
readonly required?: boolean | undefined;
|
|
12519
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12463
12520
|
readonly multiple?: boolean | undefined;
|
|
12464
12521
|
readonly dependencies?: string[] | undefined;
|
|
12465
12522
|
readonly externalId?: boolean | undefined;
|
|
@@ -12635,6 +12692,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12635
12692
|
readonly name?: string | undefined;
|
|
12636
12693
|
readonly precision?: number | undefined;
|
|
12637
12694
|
readonly required?: boolean | undefined;
|
|
12695
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12638
12696
|
readonly multiple?: boolean | undefined;
|
|
12639
12697
|
readonly dependencies?: string[] | undefined;
|
|
12640
12698
|
readonly externalId?: boolean | undefined;
|
|
@@ -12810,6 +12868,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12810
12868
|
readonly name?: string | undefined;
|
|
12811
12869
|
readonly precision?: number | undefined;
|
|
12812
12870
|
readonly required?: boolean | undefined;
|
|
12871
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12813
12872
|
readonly multiple?: boolean | undefined;
|
|
12814
12873
|
readonly dependencies?: string[] | undefined;
|
|
12815
12874
|
readonly externalId?: boolean | undefined;
|
|
@@ -12991,6 +13050,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12991
13050
|
readonly name?: string | undefined;
|
|
12992
13051
|
readonly precision?: number | undefined;
|
|
12993
13052
|
readonly required?: boolean | undefined;
|
|
13053
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12994
13054
|
readonly multiple?: boolean | undefined;
|
|
12995
13055
|
readonly dependencies?: string[] | undefined;
|
|
12996
13056
|
readonly externalId?: boolean | undefined;
|
|
@@ -13166,6 +13226,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
13166
13226
|
readonly name?: string | undefined;
|
|
13167
13227
|
readonly precision?: number | undefined;
|
|
13168
13228
|
readonly required?: boolean | undefined;
|
|
13229
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13169
13230
|
readonly multiple?: boolean | undefined;
|
|
13170
13231
|
readonly dependencies?: string[] | undefined;
|
|
13171
13232
|
readonly externalId?: boolean | undefined;
|
|
@@ -13341,6 +13402,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
13341
13402
|
readonly name?: string | undefined;
|
|
13342
13403
|
readonly precision?: number | undefined;
|
|
13343
13404
|
readonly required?: boolean | undefined;
|
|
13405
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13344
13406
|
readonly multiple?: boolean | undefined;
|
|
13345
13407
|
readonly dependencies?: string[] | undefined;
|
|
13346
13408
|
readonly externalId?: boolean | undefined;
|
|
@@ -13541,7 +13603,7 @@ declare const SysSavedReport: Omit<{
|
|
|
13541
13603
|
abstract: boolean;
|
|
13542
13604
|
datasource: string;
|
|
13543
13605
|
fields: Record<string, {
|
|
13544
|
-
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";
|
|
13545
13607
|
required: boolean;
|
|
13546
13608
|
searchable: boolean;
|
|
13547
13609
|
multiple: boolean;
|
|
@@ -13615,6 +13677,7 @@ declare const SysSavedReport: Omit<{
|
|
|
13615
13677
|
generatedBy?: string | undefined;
|
|
13616
13678
|
} | undefined;
|
|
13617
13679
|
} | undefined;
|
|
13680
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13618
13681
|
summaryOperations?: {
|
|
13619
13682
|
object: string;
|
|
13620
13683
|
field: string;
|
|
@@ -14238,7 +14301,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14238
14301
|
field?: string | undefined;
|
|
14239
14302
|
objectOverride?: string | undefined;
|
|
14240
14303
|
label?: string | undefined;
|
|
14241
|
-
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;
|
|
14242
14305
|
options?: {
|
|
14243
14306
|
label: string;
|
|
14244
14307
|
value: string;
|
|
@@ -14345,6 +14408,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14345
14408
|
readonly name?: string | undefined;
|
|
14346
14409
|
readonly precision?: number | undefined;
|
|
14347
14410
|
readonly required?: boolean | undefined;
|
|
14411
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14348
14412
|
readonly multiple?: boolean | undefined;
|
|
14349
14413
|
readonly dependencies?: string[] | undefined;
|
|
14350
14414
|
readonly externalId?: boolean | undefined;
|
|
@@ -14520,6 +14584,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14520
14584
|
readonly name?: string | undefined;
|
|
14521
14585
|
readonly precision?: number | undefined;
|
|
14522
14586
|
readonly required?: boolean | undefined;
|
|
14587
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14523
14588
|
readonly multiple?: boolean | undefined;
|
|
14524
14589
|
readonly dependencies?: string[] | undefined;
|
|
14525
14590
|
readonly externalId?: boolean | undefined;
|
|
@@ -14695,6 +14760,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14695
14760
|
readonly name?: string | undefined;
|
|
14696
14761
|
readonly precision?: number | undefined;
|
|
14697
14762
|
readonly required?: boolean | undefined;
|
|
14763
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14698
14764
|
readonly multiple?: boolean | undefined;
|
|
14699
14765
|
readonly dependencies?: string[] | undefined;
|
|
14700
14766
|
readonly externalId?: boolean | undefined;
|
|
@@ -14870,6 +14936,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14870
14936
|
readonly name?: string | undefined;
|
|
14871
14937
|
readonly precision?: number | undefined;
|
|
14872
14938
|
readonly required?: boolean | undefined;
|
|
14939
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14873
14940
|
readonly multiple?: boolean | undefined;
|
|
14874
14941
|
readonly dependencies?: string[] | undefined;
|
|
14875
14942
|
readonly externalId?: boolean | undefined;
|
|
@@ -15045,6 +15112,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15045
15112
|
readonly name?: string | undefined;
|
|
15046
15113
|
readonly precision?: number | undefined;
|
|
15047
15114
|
readonly required?: boolean | undefined;
|
|
15115
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15048
15116
|
readonly multiple?: boolean | undefined;
|
|
15049
15117
|
readonly dependencies?: string[] | undefined;
|
|
15050
15118
|
readonly externalId?: boolean | undefined;
|
|
@@ -15220,6 +15288,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15220
15288
|
readonly name?: string | undefined;
|
|
15221
15289
|
readonly precision?: number | undefined;
|
|
15222
15290
|
readonly required?: boolean | undefined;
|
|
15291
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15223
15292
|
readonly multiple?: boolean | undefined;
|
|
15224
15293
|
readonly dependencies?: string[] | undefined;
|
|
15225
15294
|
readonly externalId?: boolean | undefined;
|
|
@@ -15395,6 +15464,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15395
15464
|
readonly name?: string | undefined;
|
|
15396
15465
|
readonly precision?: number | undefined;
|
|
15397
15466
|
readonly required?: boolean | undefined;
|
|
15467
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15398
15468
|
readonly multiple?: boolean | undefined;
|
|
15399
15469
|
readonly dependencies?: string[] | undefined;
|
|
15400
15470
|
readonly externalId?: boolean | undefined;
|
|
@@ -15570,6 +15640,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15570
15640
|
readonly name?: string | undefined;
|
|
15571
15641
|
readonly precision?: number | undefined;
|
|
15572
15642
|
readonly required?: boolean | undefined;
|
|
15643
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15573
15644
|
readonly multiple?: boolean | undefined;
|
|
15574
15645
|
readonly dependencies?: string[] | undefined;
|
|
15575
15646
|
readonly externalId?: boolean | undefined;
|
|
@@ -15745,6 +15816,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15745
15816
|
readonly name?: string | undefined;
|
|
15746
15817
|
readonly precision?: number | undefined;
|
|
15747
15818
|
readonly required?: boolean | undefined;
|
|
15819
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15748
15820
|
readonly multiple?: boolean | undefined;
|
|
15749
15821
|
readonly dependencies?: string[] | undefined;
|
|
15750
15822
|
readonly externalId?: boolean | undefined;
|
|
@@ -15920,6 +15992,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15920
15992
|
readonly name?: string | undefined;
|
|
15921
15993
|
readonly precision?: number | undefined;
|
|
15922
15994
|
readonly required?: boolean | undefined;
|
|
15995
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15923
15996
|
readonly multiple?: boolean | undefined;
|
|
15924
15997
|
readonly dependencies?: string[] | undefined;
|
|
15925
15998
|
readonly externalId?: boolean | undefined;
|
|
@@ -16095,6 +16168,7 @@ declare const SysSavedReport: Omit<{
|
|
|
16095
16168
|
readonly name?: string | undefined;
|
|
16096
16169
|
readonly precision?: number | undefined;
|
|
16097
16170
|
readonly required?: boolean | undefined;
|
|
16171
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16098
16172
|
readonly multiple?: boolean | undefined;
|
|
16099
16173
|
readonly dependencies?: string[] | undefined;
|
|
16100
16174
|
readonly externalId?: boolean | undefined;
|
|
@@ -16300,7 +16374,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16300
16374
|
abstract: boolean;
|
|
16301
16375
|
datasource: string;
|
|
16302
16376
|
fields: Record<string, {
|
|
16303
|
-
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";
|
|
16304
16378
|
required: boolean;
|
|
16305
16379
|
searchable: boolean;
|
|
16306
16380
|
multiple: boolean;
|
|
@@ -16374,6 +16448,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16374
16448
|
generatedBy?: string | undefined;
|
|
16375
16449
|
} | undefined;
|
|
16376
16450
|
} | undefined;
|
|
16451
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16377
16452
|
summaryOperations?: {
|
|
16378
16453
|
object: string;
|
|
16379
16454
|
field: string;
|
|
@@ -16997,7 +17072,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16997
17072
|
field?: string | undefined;
|
|
16998
17073
|
objectOverride?: string | undefined;
|
|
16999
17074
|
label?: string | undefined;
|
|
17000
|
-
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;
|
|
17001
17076
|
options?: {
|
|
17002
17077
|
label: string;
|
|
17003
17078
|
value: string;
|
|
@@ -17103,6 +17178,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17103
17178
|
readonly name?: string | undefined;
|
|
17104
17179
|
readonly precision?: number | undefined;
|
|
17105
17180
|
readonly required?: boolean | undefined;
|
|
17181
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17106
17182
|
readonly multiple?: boolean | undefined;
|
|
17107
17183
|
readonly dependencies?: string[] | undefined;
|
|
17108
17184
|
readonly externalId?: boolean | undefined;
|
|
@@ -17278,6 +17354,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17278
17354
|
readonly name?: string | undefined;
|
|
17279
17355
|
readonly precision?: number | undefined;
|
|
17280
17356
|
readonly required?: boolean | undefined;
|
|
17357
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17281
17358
|
readonly multiple?: boolean | undefined;
|
|
17282
17359
|
readonly dependencies?: string[] | undefined;
|
|
17283
17360
|
readonly externalId?: boolean | undefined;
|
|
@@ -17453,6 +17530,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17453
17530
|
readonly name?: string | undefined;
|
|
17454
17531
|
readonly precision?: number | undefined;
|
|
17455
17532
|
readonly required?: boolean | undefined;
|
|
17533
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17456
17534
|
readonly multiple?: boolean | undefined;
|
|
17457
17535
|
readonly dependencies?: string[] | undefined;
|
|
17458
17536
|
readonly externalId?: boolean | undefined;
|
|
@@ -17628,6 +17706,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17628
17706
|
readonly name?: string | undefined;
|
|
17629
17707
|
readonly precision?: number | undefined;
|
|
17630
17708
|
readonly required?: boolean | undefined;
|
|
17709
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17631
17710
|
readonly multiple?: boolean | undefined;
|
|
17632
17711
|
readonly dependencies?: string[] | undefined;
|
|
17633
17712
|
readonly externalId?: boolean | undefined;
|
|
@@ -17803,6 +17882,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17803
17882
|
readonly name?: string | undefined;
|
|
17804
17883
|
readonly precision?: number | undefined;
|
|
17805
17884
|
readonly required?: boolean | undefined;
|
|
17885
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17806
17886
|
readonly multiple?: boolean | undefined;
|
|
17807
17887
|
readonly dependencies?: string[] | undefined;
|
|
17808
17888
|
readonly externalId?: boolean | undefined;
|
|
@@ -17978,6 +18058,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17978
18058
|
readonly name?: string | undefined;
|
|
17979
18059
|
readonly precision?: number | undefined;
|
|
17980
18060
|
readonly required?: boolean | undefined;
|
|
18061
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17981
18062
|
readonly multiple?: boolean | undefined;
|
|
17982
18063
|
readonly dependencies?: string[] | undefined;
|
|
17983
18064
|
readonly externalId?: boolean | undefined;
|
|
@@ -18153,6 +18234,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18153
18234
|
readonly name?: string | undefined;
|
|
18154
18235
|
readonly precision?: number | undefined;
|
|
18155
18236
|
readonly required?: boolean | undefined;
|
|
18237
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18156
18238
|
readonly multiple?: boolean | undefined;
|
|
18157
18239
|
readonly dependencies?: string[] | undefined;
|
|
18158
18240
|
readonly externalId?: boolean | undefined;
|
|
@@ -18328,6 +18410,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18328
18410
|
readonly name?: string | undefined;
|
|
18329
18411
|
readonly precision?: number | undefined;
|
|
18330
18412
|
readonly required?: boolean | undefined;
|
|
18413
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18331
18414
|
readonly multiple?: boolean | undefined;
|
|
18332
18415
|
readonly dependencies?: string[] | undefined;
|
|
18333
18416
|
readonly externalId?: boolean | undefined;
|
|
@@ -18503,6 +18586,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18503
18586
|
readonly name?: string | undefined;
|
|
18504
18587
|
readonly precision?: number | undefined;
|
|
18505
18588
|
readonly required?: boolean | undefined;
|
|
18589
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18506
18590
|
readonly multiple?: boolean | undefined;
|
|
18507
18591
|
readonly dependencies?: string[] | undefined;
|
|
18508
18592
|
readonly externalId?: boolean | undefined;
|
|
@@ -18678,6 +18762,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18678
18762
|
readonly name?: string | undefined;
|
|
18679
18763
|
readonly precision?: number | undefined;
|
|
18680
18764
|
readonly required?: boolean | undefined;
|
|
18765
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18681
18766
|
readonly multiple?: boolean | undefined;
|
|
18682
18767
|
readonly dependencies?: string[] | undefined;
|
|
18683
18768
|
readonly externalId?: boolean | undefined;
|
|
@@ -18853,6 +18938,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18853
18938
|
readonly name?: string | undefined;
|
|
18854
18939
|
readonly precision?: number | undefined;
|
|
18855
18940
|
readonly required?: boolean | undefined;
|
|
18941
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18856
18942
|
readonly multiple?: boolean | undefined;
|
|
18857
18943
|
readonly dependencies?: string[] | undefined;
|
|
18858
18944
|
readonly externalId?: boolean | undefined;
|
|
@@ -19028,6 +19114,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19028
19114
|
readonly name?: string | undefined;
|
|
19029
19115
|
readonly precision?: number | undefined;
|
|
19030
19116
|
readonly required?: boolean | undefined;
|
|
19117
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19031
19118
|
readonly multiple?: boolean | undefined;
|
|
19032
19119
|
readonly dependencies?: string[] | undefined;
|
|
19033
19120
|
readonly externalId?: boolean | undefined;
|
|
@@ -19203,6 +19290,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19203
19290
|
readonly name?: string | undefined;
|
|
19204
19291
|
readonly precision?: number | undefined;
|
|
19205
19292
|
readonly required?: boolean | undefined;
|
|
19293
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19206
19294
|
readonly multiple?: boolean | undefined;
|
|
19207
19295
|
readonly dependencies?: string[] | undefined;
|
|
19208
19296
|
readonly externalId?: boolean | undefined;
|
|
@@ -19378,6 +19466,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19378
19466
|
readonly name?: string | undefined;
|
|
19379
19467
|
readonly precision?: number | undefined;
|
|
19380
19468
|
readonly required?: boolean | undefined;
|
|
19469
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19381
19470
|
readonly multiple?: boolean | undefined;
|
|
19382
19471
|
readonly dependencies?: string[] | undefined;
|
|
19383
19472
|
readonly externalId?: boolean | undefined;
|
|
@@ -19553,6 +19642,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19553
19642
|
readonly name?: string | undefined;
|
|
19554
19643
|
readonly precision?: number | undefined;
|
|
19555
19644
|
readonly required?: boolean | undefined;
|
|
19645
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19556
19646
|
readonly multiple?: boolean | undefined;
|
|
19557
19647
|
readonly dependencies?: string[] | undefined;
|
|
19558
19648
|
readonly externalId?: boolean | undefined;
|
|
@@ -19728,6 +19818,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19728
19818
|
readonly name?: string | undefined;
|
|
19729
19819
|
readonly precision?: number | undefined;
|
|
19730
19820
|
readonly required?: boolean | undefined;
|
|
19821
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19731
19822
|
readonly multiple?: boolean | undefined;
|
|
19732
19823
|
readonly dependencies?: string[] | undefined;
|
|
19733
19824
|
readonly externalId?: boolean | undefined;
|
|
@@ -19903,6 +19994,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19903
19994
|
readonly name?: string | undefined;
|
|
19904
19995
|
readonly precision?: number | undefined;
|
|
19905
19996
|
readonly required?: boolean | undefined;
|
|
19997
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19906
19998
|
readonly multiple?: boolean | undefined;
|
|
19907
19999
|
readonly dependencies?: string[] | undefined;
|
|
19908
20000
|
readonly externalId?: boolean | undefined;
|
|
@@ -20094,7 +20186,7 @@ declare const SysJob: Omit<{
|
|
|
20094
20186
|
abstract: boolean;
|
|
20095
20187
|
datasource: string;
|
|
20096
20188
|
fields: Record<string, {
|
|
20097
|
-
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";
|
|
20098
20190
|
required: boolean;
|
|
20099
20191
|
searchable: boolean;
|
|
20100
20192
|
multiple: boolean;
|
|
@@ -20168,6 +20260,7 @@ declare const SysJob: Omit<{
|
|
|
20168
20260
|
generatedBy?: string | undefined;
|
|
20169
20261
|
} | undefined;
|
|
20170
20262
|
} | undefined;
|
|
20263
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20171
20264
|
summaryOperations?: {
|
|
20172
20265
|
object: string;
|
|
20173
20266
|
field: string;
|
|
@@ -20791,7 +20884,7 @@ declare const SysJob: Omit<{
|
|
|
20791
20884
|
field?: string | undefined;
|
|
20792
20885
|
objectOverride?: string | undefined;
|
|
20793
20886
|
label?: string | undefined;
|
|
20794
|
-
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;
|
|
20795
20888
|
options?: {
|
|
20796
20889
|
label: string;
|
|
20797
20890
|
value: string;
|
|
@@ -20898,6 +20991,7 @@ declare const SysJob: Omit<{
|
|
|
20898
20991
|
readonly name?: string | undefined;
|
|
20899
20992
|
readonly precision?: number | undefined;
|
|
20900
20993
|
readonly required?: boolean | undefined;
|
|
20994
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20901
20995
|
readonly multiple?: boolean | undefined;
|
|
20902
20996
|
readonly dependencies?: string[] | undefined;
|
|
20903
20997
|
readonly externalId?: boolean | undefined;
|
|
@@ -21073,6 +21167,7 @@ declare const SysJob: Omit<{
|
|
|
21073
21167
|
readonly name?: string | undefined;
|
|
21074
21168
|
readonly precision?: number | undefined;
|
|
21075
21169
|
readonly required?: boolean | undefined;
|
|
21170
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21076
21171
|
readonly multiple?: boolean | undefined;
|
|
21077
21172
|
readonly dependencies?: string[] | undefined;
|
|
21078
21173
|
readonly externalId?: boolean | undefined;
|
|
@@ -21248,6 +21343,7 @@ declare const SysJob: Omit<{
|
|
|
21248
21343
|
readonly name?: string | undefined;
|
|
21249
21344
|
readonly precision?: number | undefined;
|
|
21250
21345
|
readonly required?: boolean | undefined;
|
|
21346
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21251
21347
|
readonly multiple?: boolean | undefined;
|
|
21252
21348
|
readonly dependencies?: string[] | undefined;
|
|
21253
21349
|
readonly externalId?: boolean | undefined;
|
|
@@ -21423,6 +21519,7 @@ declare const SysJob: Omit<{
|
|
|
21423
21519
|
readonly name?: string | undefined;
|
|
21424
21520
|
readonly precision?: number | undefined;
|
|
21425
21521
|
readonly required?: boolean | undefined;
|
|
21522
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21426
21523
|
readonly multiple?: boolean | undefined;
|
|
21427
21524
|
readonly dependencies?: string[] | undefined;
|
|
21428
21525
|
readonly externalId?: boolean | undefined;
|
|
@@ -21598,6 +21695,7 @@ declare const SysJob: Omit<{
|
|
|
21598
21695
|
readonly name?: string | undefined;
|
|
21599
21696
|
readonly precision?: number | undefined;
|
|
21600
21697
|
readonly required?: boolean | undefined;
|
|
21698
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21601
21699
|
readonly multiple?: boolean | undefined;
|
|
21602
21700
|
readonly dependencies?: string[] | undefined;
|
|
21603
21701
|
readonly externalId?: boolean | undefined;
|
|
@@ -21773,6 +21871,7 @@ declare const SysJob: Omit<{
|
|
|
21773
21871
|
readonly name?: string | undefined;
|
|
21774
21872
|
readonly precision?: number | undefined;
|
|
21775
21873
|
readonly required?: boolean | undefined;
|
|
21874
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21776
21875
|
readonly multiple?: boolean | undefined;
|
|
21777
21876
|
readonly dependencies?: string[] | undefined;
|
|
21778
21877
|
readonly externalId?: boolean | undefined;
|
|
@@ -21948,6 +22047,7 @@ declare const SysJob: Omit<{
|
|
|
21948
22047
|
readonly name?: string | undefined;
|
|
21949
22048
|
readonly precision?: number | undefined;
|
|
21950
22049
|
readonly required?: boolean | undefined;
|
|
22050
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21951
22051
|
readonly multiple?: boolean | undefined;
|
|
21952
22052
|
readonly dependencies?: string[] | undefined;
|
|
21953
22053
|
readonly externalId?: boolean | undefined;
|
|
@@ -22123,6 +22223,7 @@ declare const SysJob: Omit<{
|
|
|
22123
22223
|
readonly name?: string | undefined;
|
|
22124
22224
|
readonly precision?: number | undefined;
|
|
22125
22225
|
readonly required?: boolean | undefined;
|
|
22226
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
22126
22227
|
readonly multiple?: boolean | undefined;
|
|
22127
22228
|
readonly dependencies?: string[] | undefined;
|
|
22128
22229
|
readonly externalId?: boolean | undefined;
|
|
@@ -22298,6 +22399,7 @@ declare const SysJob: Omit<{
|
|
|
22298
22399
|
readonly name?: string | undefined;
|
|
22299
22400
|
readonly precision?: number | undefined;
|
|
22300
22401
|
readonly required?: boolean | undefined;
|
|
22402
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
22301
22403
|
readonly multiple?: boolean | undefined;
|
|
22302
22404
|
readonly dependencies?: string[] | undefined;
|
|
22303
22405
|
readonly externalId?: boolean | undefined;
|
|
@@ -22473,6 +22575,7 @@ declare const SysJob: Omit<{
|
|
|
22473
22575
|
readonly name?: string | undefined;
|
|
22474
22576
|
readonly precision?: number | undefined;
|
|
22475
22577
|
readonly required?: boolean | undefined;
|
|
22578
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
22476
22579
|
readonly multiple?: boolean | undefined;
|
|
22477
22580
|
readonly dependencies?: string[] | undefined;
|
|
22478
22581
|
readonly externalId?: boolean | undefined;
|
|
@@ -22648,6 +22751,7 @@ declare const SysJob: Omit<{
|
|
|
22648
22751
|
readonly name?: string | undefined;
|
|
22649
22752
|
readonly precision?: number | undefined;
|
|
22650
22753
|
readonly required?: boolean | undefined;
|
|
22754
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
22651
22755
|
readonly multiple?: boolean | undefined;
|
|
22652
22756
|
readonly dependencies?: string[] | undefined;
|
|
22653
22757
|
readonly externalId?: boolean | undefined;
|
|
@@ -22823,6 +22927,7 @@ declare const SysJob: Omit<{
|
|
|
22823
22927
|
readonly name?: string | undefined;
|
|
22824
22928
|
readonly precision?: number | undefined;
|
|
22825
22929
|
readonly required?: boolean | undefined;
|
|
22930
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
22826
22931
|
readonly multiple?: boolean | undefined;
|
|
22827
22932
|
readonly dependencies?: string[] | undefined;
|
|
22828
22933
|
readonly externalId?: boolean | undefined;
|
|
@@ -22998,6 +23103,7 @@ declare const SysJob: Omit<{
|
|
|
22998
23103
|
readonly name?: string | undefined;
|
|
22999
23104
|
readonly precision?: number | undefined;
|
|
23000
23105
|
readonly required?: boolean | undefined;
|
|
23106
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
23001
23107
|
readonly multiple?: boolean | undefined;
|
|
23002
23108
|
readonly dependencies?: string[] | undefined;
|
|
23003
23109
|
readonly externalId?: boolean | undefined;
|
|
@@ -23188,7 +23294,7 @@ declare const SysJobRun: Omit<{
|
|
|
23188
23294
|
abstract: boolean;
|
|
23189
23295
|
datasource: string;
|
|
23190
23296
|
fields: Record<string, {
|
|
23191
|
-
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";
|
|
23192
23298
|
required: boolean;
|
|
23193
23299
|
searchable: boolean;
|
|
23194
23300
|
multiple: boolean;
|
|
@@ -23262,6 +23368,7 @@ declare const SysJobRun: Omit<{
|
|
|
23262
23368
|
generatedBy?: string | undefined;
|
|
23263
23369
|
} | undefined;
|
|
23264
23370
|
} | undefined;
|
|
23371
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
23265
23372
|
summaryOperations?: {
|
|
23266
23373
|
object: string;
|
|
23267
23374
|
field: string;
|
|
@@ -23885,7 +23992,7 @@ declare const SysJobRun: Omit<{
|
|
|
23885
23992
|
field?: string | undefined;
|
|
23886
23993
|
objectOverride?: string | undefined;
|
|
23887
23994
|
label?: string | undefined;
|
|
23888
|
-
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;
|
|
23889
23996
|
options?: {
|
|
23890
23997
|
label: string;
|
|
23891
23998
|
value: string;
|
|
@@ -23992,6 +24099,7 @@ declare const SysJobRun: Omit<{
|
|
|
23992
24099
|
readonly name?: string | undefined;
|
|
23993
24100
|
readonly precision?: number | undefined;
|
|
23994
24101
|
readonly required?: boolean | undefined;
|
|
24102
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
23995
24103
|
readonly multiple?: boolean | undefined;
|
|
23996
24104
|
readonly dependencies?: string[] | undefined;
|
|
23997
24105
|
readonly externalId?: boolean | undefined;
|
|
@@ -24167,6 +24275,7 @@ declare const SysJobRun: Omit<{
|
|
|
24167
24275
|
readonly name?: string | undefined;
|
|
24168
24276
|
readonly precision?: number | undefined;
|
|
24169
24277
|
readonly required?: boolean | undefined;
|
|
24278
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
24170
24279
|
readonly multiple?: boolean | undefined;
|
|
24171
24280
|
readonly dependencies?: string[] | undefined;
|
|
24172
24281
|
readonly externalId?: boolean | undefined;
|
|
@@ -24342,6 +24451,7 @@ declare const SysJobRun: Omit<{
|
|
|
24342
24451
|
readonly name?: string | undefined;
|
|
24343
24452
|
readonly precision?: number | undefined;
|
|
24344
24453
|
readonly required?: boolean | undefined;
|
|
24454
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
24345
24455
|
readonly multiple?: boolean | undefined;
|
|
24346
24456
|
readonly dependencies?: string[] | undefined;
|
|
24347
24457
|
readonly externalId?: boolean | undefined;
|
|
@@ -24517,6 +24627,7 @@ declare const SysJobRun: Omit<{
|
|
|
24517
24627
|
readonly name?: string | undefined;
|
|
24518
24628
|
readonly precision?: number | undefined;
|
|
24519
24629
|
readonly required?: boolean | undefined;
|
|
24630
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
24520
24631
|
readonly multiple?: boolean | undefined;
|
|
24521
24632
|
readonly dependencies?: string[] | undefined;
|
|
24522
24633
|
readonly externalId?: boolean | undefined;
|
|
@@ -24692,6 +24803,7 @@ declare const SysJobRun: Omit<{
|
|
|
24692
24803
|
readonly name?: string | undefined;
|
|
24693
24804
|
readonly precision?: number | undefined;
|
|
24694
24805
|
readonly required?: boolean | undefined;
|
|
24806
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
24695
24807
|
readonly multiple?: boolean | undefined;
|
|
24696
24808
|
readonly dependencies?: string[] | undefined;
|
|
24697
24809
|
readonly externalId?: boolean | undefined;
|
|
@@ -24867,6 +24979,7 @@ declare const SysJobRun: Omit<{
|
|
|
24867
24979
|
readonly name?: string | undefined;
|
|
24868
24980
|
readonly precision?: number | undefined;
|
|
24869
24981
|
readonly required?: boolean | undefined;
|
|
24982
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
24870
24983
|
readonly multiple?: boolean | undefined;
|
|
24871
24984
|
readonly dependencies?: string[] | undefined;
|
|
24872
24985
|
readonly externalId?: boolean | undefined;
|
|
@@ -25042,6 +25155,7 @@ declare const SysJobRun: Omit<{
|
|
|
25042
25155
|
readonly name?: string | undefined;
|
|
25043
25156
|
readonly precision?: number | undefined;
|
|
25044
25157
|
readonly required?: boolean | undefined;
|
|
25158
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
25045
25159
|
readonly multiple?: boolean | undefined;
|
|
25046
25160
|
readonly dependencies?: string[] | undefined;
|
|
25047
25161
|
readonly externalId?: boolean | undefined;
|
|
@@ -25217,6 +25331,7 @@ declare const SysJobRun: Omit<{
|
|
|
25217
25331
|
readonly name?: string | undefined;
|
|
25218
25332
|
readonly precision?: number | undefined;
|
|
25219
25333
|
readonly required?: boolean | undefined;
|
|
25334
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
25220
25335
|
readonly multiple?: boolean | undefined;
|
|
25221
25336
|
readonly dependencies?: string[] | undefined;
|
|
25222
25337
|
readonly externalId?: boolean | undefined;
|
|
@@ -25392,6 +25507,7 @@ declare const SysJobRun: Omit<{
|
|
|
25392
25507
|
readonly name?: string | undefined;
|
|
25393
25508
|
readonly precision?: number | undefined;
|
|
25394
25509
|
readonly required?: boolean | undefined;
|
|
25510
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
25395
25511
|
readonly multiple?: boolean | undefined;
|
|
25396
25512
|
readonly dependencies?: string[] | undefined;
|
|
25397
25513
|
readonly externalId?: boolean | undefined;
|
|
@@ -25567,6 +25683,7 @@ declare const SysJobRun: Omit<{
|
|
|
25567
25683
|
readonly name?: string | undefined;
|
|
25568
25684
|
readonly precision?: number | undefined;
|
|
25569
25685
|
readonly required?: boolean | undefined;
|
|
25686
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
25570
25687
|
readonly multiple?: boolean | undefined;
|
|
25571
25688
|
readonly dependencies?: string[] | undefined;
|
|
25572
25689
|
readonly externalId?: boolean | undefined;
|
|
@@ -25765,7 +25882,7 @@ declare const SysJobQueue: Omit<{
|
|
|
25765
25882
|
abstract: boolean;
|
|
25766
25883
|
datasource: string;
|
|
25767
25884
|
fields: Record<string, {
|
|
25768
|
-
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";
|
|
25769
25886
|
required: boolean;
|
|
25770
25887
|
searchable: boolean;
|
|
25771
25888
|
multiple: boolean;
|
|
@@ -25839,6 +25956,7 @@ declare const SysJobQueue: Omit<{
|
|
|
25839
25956
|
generatedBy?: string | undefined;
|
|
25840
25957
|
} | undefined;
|
|
25841
25958
|
} | undefined;
|
|
25959
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
25842
25960
|
summaryOperations?: {
|
|
25843
25961
|
object: string;
|
|
25844
25962
|
field: string;
|
|
@@ -26462,7 +26580,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26462
26580
|
field?: string | undefined;
|
|
26463
26581
|
objectOverride?: string | undefined;
|
|
26464
26582
|
label?: string | undefined;
|
|
26465
|
-
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;
|
|
26466
26584
|
options?: {
|
|
26467
26585
|
label: string;
|
|
26468
26586
|
value: string;
|
|
@@ -26569,6 +26687,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26569
26687
|
readonly name?: string | undefined;
|
|
26570
26688
|
readonly precision?: number | undefined;
|
|
26571
26689
|
readonly required?: boolean | undefined;
|
|
26690
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
26572
26691
|
readonly multiple?: boolean | undefined;
|
|
26573
26692
|
readonly dependencies?: string[] | undefined;
|
|
26574
26693
|
readonly externalId?: boolean | undefined;
|
|
@@ -26744,6 +26863,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26744
26863
|
readonly name?: string | undefined;
|
|
26745
26864
|
readonly precision?: number | undefined;
|
|
26746
26865
|
readonly required?: boolean | undefined;
|
|
26866
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
26747
26867
|
readonly multiple?: boolean | undefined;
|
|
26748
26868
|
readonly dependencies?: string[] | undefined;
|
|
26749
26869
|
readonly externalId?: boolean | undefined;
|
|
@@ -26919,6 +27039,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26919
27039
|
readonly name?: string | undefined;
|
|
26920
27040
|
readonly precision?: number | undefined;
|
|
26921
27041
|
readonly required?: boolean | undefined;
|
|
27042
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
26922
27043
|
readonly multiple?: boolean | undefined;
|
|
26923
27044
|
readonly dependencies?: string[] | undefined;
|
|
26924
27045
|
readonly externalId?: boolean | undefined;
|
|
@@ -27094,6 +27215,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27094
27215
|
readonly name?: string | undefined;
|
|
27095
27216
|
readonly precision?: number | undefined;
|
|
27096
27217
|
readonly required?: boolean | undefined;
|
|
27218
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27097
27219
|
readonly multiple?: boolean | undefined;
|
|
27098
27220
|
readonly dependencies?: string[] | undefined;
|
|
27099
27221
|
readonly externalId?: boolean | undefined;
|
|
@@ -27269,6 +27391,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27269
27391
|
readonly name?: string | undefined;
|
|
27270
27392
|
readonly precision?: number | undefined;
|
|
27271
27393
|
readonly required?: boolean | undefined;
|
|
27394
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27272
27395
|
readonly multiple?: boolean | undefined;
|
|
27273
27396
|
readonly dependencies?: string[] | undefined;
|
|
27274
27397
|
readonly externalId?: boolean | undefined;
|
|
@@ -27444,6 +27567,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27444
27567
|
readonly name?: string | undefined;
|
|
27445
27568
|
readonly precision?: number | undefined;
|
|
27446
27569
|
readonly required?: boolean | undefined;
|
|
27570
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27447
27571
|
readonly multiple?: boolean | undefined;
|
|
27448
27572
|
readonly dependencies?: string[] | undefined;
|
|
27449
27573
|
readonly externalId?: boolean | undefined;
|
|
@@ -27619,6 +27743,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27619
27743
|
readonly name?: string | undefined;
|
|
27620
27744
|
readonly precision?: number | undefined;
|
|
27621
27745
|
readonly required?: boolean | undefined;
|
|
27746
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27622
27747
|
readonly multiple?: boolean | undefined;
|
|
27623
27748
|
readonly dependencies?: string[] | undefined;
|
|
27624
27749
|
readonly externalId?: boolean | undefined;
|
|
@@ -27794,6 +27919,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27794
27919
|
readonly name?: string | undefined;
|
|
27795
27920
|
readonly precision?: number | undefined;
|
|
27796
27921
|
readonly required?: boolean | undefined;
|
|
27922
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27797
27923
|
readonly multiple?: boolean | undefined;
|
|
27798
27924
|
readonly dependencies?: string[] | undefined;
|
|
27799
27925
|
readonly externalId?: boolean | undefined;
|
|
@@ -27969,6 +28095,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27969
28095
|
readonly name?: string | undefined;
|
|
27970
28096
|
readonly precision?: number | undefined;
|
|
27971
28097
|
readonly required?: boolean | undefined;
|
|
28098
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27972
28099
|
readonly multiple?: boolean | undefined;
|
|
27973
28100
|
readonly dependencies?: string[] | undefined;
|
|
27974
28101
|
readonly externalId?: boolean | undefined;
|
|
@@ -28144,6 +28271,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28144
28271
|
readonly name?: string | undefined;
|
|
28145
28272
|
readonly precision?: number | undefined;
|
|
28146
28273
|
readonly required?: boolean | undefined;
|
|
28274
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
28147
28275
|
readonly multiple?: boolean | undefined;
|
|
28148
28276
|
readonly dependencies?: string[] | undefined;
|
|
28149
28277
|
readonly externalId?: boolean | undefined;
|
|
@@ -28319,6 +28447,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28319
28447
|
readonly name?: string | undefined;
|
|
28320
28448
|
readonly precision?: number | undefined;
|
|
28321
28449
|
readonly required?: boolean | undefined;
|
|
28450
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
28322
28451
|
readonly multiple?: boolean | undefined;
|
|
28323
28452
|
readonly dependencies?: string[] | undefined;
|
|
28324
28453
|
readonly externalId?: boolean | undefined;
|
|
@@ -28494,6 +28623,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28494
28623
|
readonly name?: string | undefined;
|
|
28495
28624
|
readonly precision?: number | undefined;
|
|
28496
28625
|
readonly required?: boolean | undefined;
|
|
28626
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
28497
28627
|
readonly multiple?: boolean | undefined;
|
|
28498
28628
|
readonly dependencies?: string[] | undefined;
|
|
28499
28629
|
readonly externalId?: boolean | undefined;
|
|
@@ -28669,6 +28799,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28669
28799
|
readonly name?: string | undefined;
|
|
28670
28800
|
readonly precision?: number | undefined;
|
|
28671
28801
|
readonly required?: boolean | undefined;
|
|
28802
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
28672
28803
|
readonly multiple?: boolean | undefined;
|
|
28673
28804
|
readonly dependencies?: string[] | undefined;
|
|
28674
28805
|
readonly externalId?: boolean | undefined;
|
|
@@ -28844,6 +28975,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28844
28975
|
readonly name?: string | undefined;
|
|
28845
28976
|
readonly precision?: number | undefined;
|
|
28846
28977
|
readonly required?: boolean | undefined;
|
|
28978
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
28847
28979
|
readonly multiple?: boolean | undefined;
|
|
28848
28980
|
readonly dependencies?: string[] | undefined;
|
|
28849
28981
|
readonly externalId?: boolean | undefined;
|
|
@@ -29019,6 +29151,7 @@ declare const SysJobQueue: Omit<{
|
|
|
29019
29151
|
readonly name?: string | undefined;
|
|
29020
29152
|
readonly precision?: number | undefined;
|
|
29021
29153
|
readonly required?: boolean | undefined;
|
|
29154
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
29022
29155
|
readonly multiple?: boolean | undefined;
|
|
29023
29156
|
readonly dependencies?: string[] | undefined;
|
|
29024
29157
|
readonly externalId?: boolean | undefined;
|
|
@@ -29194,6 +29327,7 @@ declare const SysJobQueue: Omit<{
|
|
|
29194
29327
|
readonly name?: string | undefined;
|
|
29195
29328
|
readonly precision?: number | undefined;
|
|
29196
29329
|
readonly required?: boolean | undefined;
|
|
29330
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
29197
29331
|
readonly multiple?: boolean | undefined;
|
|
29198
29332
|
readonly dependencies?: string[] | undefined;
|
|
29199
29333
|
readonly externalId?: boolean | undefined;
|
|
@@ -29369,6 +29503,7 @@ declare const SysJobQueue: Omit<{
|
|
|
29369
29503
|
readonly name?: string | undefined;
|
|
29370
29504
|
readonly precision?: number | undefined;
|
|
29371
29505
|
readonly required?: boolean | undefined;
|
|
29506
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
29372
29507
|
readonly multiple?: boolean | undefined;
|
|
29373
29508
|
readonly dependencies?: string[] | undefined;
|
|
29374
29509
|
readonly externalId?: boolean | undefined;
|
|
@@ -29544,6 +29679,7 @@ declare const SysJobQueue: Omit<{
|
|
|
29544
29679
|
readonly name?: string | undefined;
|
|
29545
29680
|
readonly precision?: number | undefined;
|
|
29546
29681
|
readonly required?: boolean | undefined;
|
|
29682
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
29547
29683
|
readonly multiple?: boolean | undefined;
|
|
29548
29684
|
readonly dependencies?: string[] | undefined;
|
|
29549
29685
|
readonly externalId?: boolean | undefined;
|
|
@@ -29719,6 +29855,7 @@ declare const SysJobQueue: Omit<{
|
|
|
29719
29855
|
readonly name?: string | undefined;
|
|
29720
29856
|
readonly precision?: number | undefined;
|
|
29721
29857
|
readonly required?: boolean | undefined;
|
|
29858
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
29722
29859
|
readonly multiple?: boolean | undefined;
|
|
29723
29860
|
readonly dependencies?: string[] | undefined;
|
|
29724
29861
|
readonly externalId?: boolean | undefined;
|