@objectstack/platform-objects 10.3.0 → 11.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +173 -364
- package/dist/audit/index.d.ts +173 -364
- package/dist/identity/index.d.mts +23108 -16447
- package/dist/identity/index.d.ts +23108 -16447
- package/dist/identity/index.js +534 -8
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +533 -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 +569 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +568 -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 +50 -106
- package/dist/system/index.d.ts +50 -106
- package/package.json +3 -3
package/dist/audit/index.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ declare const SysNotification: Omit<{
|
|
|
30
30
|
abstract: boolean;
|
|
31
31
|
datasource: string;
|
|
32
32
|
fields: Record<string, {
|
|
33
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
33
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
34
34
|
required: boolean;
|
|
35
35
|
searchable: boolean;
|
|
36
36
|
multiple: boolean;
|
|
@@ -104,6 +104,7 @@ declare const SysNotification: Omit<{
|
|
|
104
104
|
generatedBy?: string | undefined;
|
|
105
105
|
} | undefined;
|
|
106
106
|
} | undefined;
|
|
107
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
107
108
|
summaryOperations?: {
|
|
108
109
|
object: string;
|
|
109
110
|
field: string;
|
|
@@ -111,7 +112,6 @@ declare const SysNotification: Omit<{
|
|
|
111
112
|
relationshipField?: string | undefined;
|
|
112
113
|
} | undefined;
|
|
113
114
|
language?: string | undefined;
|
|
114
|
-
maxRating?: number | undefined;
|
|
115
115
|
step?: number | undefined;
|
|
116
116
|
currencyConfig?: {
|
|
117
117
|
precision: number;
|
|
@@ -241,7 +241,6 @@ declare const SysNotification: Omit<{
|
|
|
241
241
|
requiredPermissions?: string[] | undefined;
|
|
242
242
|
system?: boolean | undefined;
|
|
243
243
|
inlineHelpText?: string | undefined;
|
|
244
|
-
caseSensitive?: boolean | undefined;
|
|
245
244
|
autonumberFormat?: string | undefined;
|
|
246
245
|
}>;
|
|
247
246
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -329,12 +328,6 @@ declare const SysNotification: Omit<{
|
|
|
329
328
|
versionField: string;
|
|
330
329
|
retentionDays?: number | undefined;
|
|
331
330
|
} | undefined;
|
|
332
|
-
partitioning?: {
|
|
333
|
-
enabled: boolean;
|
|
334
|
-
strategy: "hash" | "list" | "range";
|
|
335
|
-
key: string;
|
|
336
|
-
interval?: string | undefined;
|
|
337
|
-
} | undefined;
|
|
338
331
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
339
332
|
activityMilestones?: {
|
|
340
333
|
field: string;
|
|
@@ -665,7 +658,6 @@ declare const SysNotification: Omit<{
|
|
|
665
658
|
debounceMs?: number | undefined;
|
|
666
659
|
} | undefined;
|
|
667
660
|
}> | undefined;
|
|
668
|
-
defaultDetailForm?: string | undefined;
|
|
669
661
|
searchableFields?: string[] | undefined;
|
|
670
662
|
search?: {
|
|
671
663
|
fields: string[];
|
|
@@ -682,7 +674,7 @@ declare const SysNotification: Omit<{
|
|
|
682
674
|
trash: boolean;
|
|
683
675
|
mru: boolean;
|
|
684
676
|
clone: boolean;
|
|
685
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
677
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "get" | "update" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
686
678
|
} | undefined;
|
|
687
679
|
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
688
680
|
publicSharing?: {
|
|
@@ -710,6 +702,7 @@ declare const SysNotification: Omit<{
|
|
|
710
702
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
711
703
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
712
704
|
target?: string | undefined;
|
|
705
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
713
706
|
body?: {
|
|
714
707
|
language: "expression";
|
|
715
708
|
source: string;
|
|
@@ -727,7 +720,7 @@ declare const SysNotification: Omit<{
|
|
|
727
720
|
field?: string | undefined;
|
|
728
721
|
objectOverride?: string | undefined;
|
|
729
722
|
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;
|
|
723
|
+
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
724
|
options?: {
|
|
732
725
|
label: string;
|
|
733
726
|
value: string;
|
|
@@ -881,6 +874,7 @@ declare const SysNotification: Omit<{
|
|
|
881
874
|
readonly name?: string | undefined;
|
|
882
875
|
readonly precision?: number | undefined;
|
|
883
876
|
readonly required?: boolean | undefined;
|
|
877
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
884
878
|
readonly multiple?: boolean | undefined;
|
|
885
879
|
readonly dependencies?: string[] | undefined;
|
|
886
880
|
readonly externalId?: boolean | undefined;
|
|
@@ -943,7 +937,6 @@ declare const SysNotification: Omit<{
|
|
|
943
937
|
relationshipField?: string | undefined;
|
|
944
938
|
} | undefined;
|
|
945
939
|
readonly language?: string | undefined;
|
|
946
|
-
readonly maxRating?: number | undefined;
|
|
947
940
|
readonly step?: number | undefined;
|
|
948
941
|
readonly currencyConfig?: {
|
|
949
942
|
precision: number;
|
|
@@ -1037,7 +1030,6 @@ declare const SysNotification: Omit<{
|
|
|
1037
1030
|
} | undefined;
|
|
1038
1031
|
readonly sortable?: boolean | undefined;
|
|
1039
1032
|
readonly inlineHelpText?: string | undefined;
|
|
1040
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1041
1033
|
readonly autonumberFormat?: string | undefined;
|
|
1042
1034
|
readonly index?: boolean | undefined;
|
|
1043
1035
|
readonly type: "text";
|
|
@@ -1056,6 +1048,7 @@ declare const SysNotification: Omit<{
|
|
|
1056
1048
|
readonly name?: string | undefined;
|
|
1057
1049
|
readonly precision?: number | undefined;
|
|
1058
1050
|
readonly required?: boolean | undefined;
|
|
1051
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1059
1052
|
readonly multiple?: boolean | undefined;
|
|
1060
1053
|
readonly dependencies?: string[] | undefined;
|
|
1061
1054
|
readonly externalId?: boolean | undefined;
|
|
@@ -1118,7 +1111,6 @@ declare const SysNotification: Omit<{
|
|
|
1118
1111
|
relationshipField?: string | undefined;
|
|
1119
1112
|
} | undefined;
|
|
1120
1113
|
readonly language?: string | undefined;
|
|
1121
|
-
readonly maxRating?: number | undefined;
|
|
1122
1114
|
readonly step?: number | undefined;
|
|
1123
1115
|
readonly currencyConfig?: {
|
|
1124
1116
|
precision: number;
|
|
@@ -1212,7 +1204,6 @@ declare const SysNotification: Omit<{
|
|
|
1212
1204
|
} | undefined;
|
|
1213
1205
|
readonly sortable?: boolean | undefined;
|
|
1214
1206
|
readonly inlineHelpText?: string | undefined;
|
|
1215
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1216
1207
|
readonly autonumberFormat?: string | undefined;
|
|
1217
1208
|
readonly index?: boolean | undefined;
|
|
1218
1209
|
readonly type: "text";
|
|
@@ -1231,6 +1222,7 @@ declare const SysNotification: Omit<{
|
|
|
1231
1222
|
readonly name?: string | undefined;
|
|
1232
1223
|
readonly precision?: number | undefined;
|
|
1233
1224
|
readonly required?: boolean | undefined;
|
|
1225
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1234
1226
|
readonly multiple?: boolean | undefined;
|
|
1235
1227
|
readonly dependencies?: string[] | undefined;
|
|
1236
1228
|
readonly externalId?: boolean | undefined;
|
|
@@ -1293,7 +1285,6 @@ declare const SysNotification: Omit<{
|
|
|
1293
1285
|
relationshipField?: string | undefined;
|
|
1294
1286
|
} | undefined;
|
|
1295
1287
|
readonly language?: string | undefined;
|
|
1296
|
-
readonly maxRating?: number | undefined;
|
|
1297
1288
|
readonly step?: number | undefined;
|
|
1298
1289
|
readonly currencyConfig?: {
|
|
1299
1290
|
precision: number;
|
|
@@ -1387,7 +1378,6 @@ declare const SysNotification: Omit<{
|
|
|
1387
1378
|
} | undefined;
|
|
1388
1379
|
readonly sortable?: boolean | undefined;
|
|
1389
1380
|
readonly inlineHelpText?: string | undefined;
|
|
1390
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1391
1381
|
readonly autonumberFormat?: string | undefined;
|
|
1392
1382
|
readonly index?: boolean | undefined;
|
|
1393
1383
|
readonly type: "json";
|
|
@@ -1406,6 +1396,7 @@ declare const SysNotification: Omit<{
|
|
|
1406
1396
|
readonly name?: string | undefined;
|
|
1407
1397
|
readonly precision?: number | undefined;
|
|
1408
1398
|
readonly required?: boolean | undefined;
|
|
1399
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1409
1400
|
readonly multiple?: boolean | undefined;
|
|
1410
1401
|
readonly dependencies?: string[] | undefined;
|
|
1411
1402
|
readonly externalId?: boolean | undefined;
|
|
@@ -1468,7 +1459,6 @@ declare const SysNotification: Omit<{
|
|
|
1468
1459
|
relationshipField?: string | undefined;
|
|
1469
1460
|
} | undefined;
|
|
1470
1461
|
readonly language?: string | undefined;
|
|
1471
|
-
readonly maxRating?: number | undefined;
|
|
1472
1462
|
readonly step?: number | undefined;
|
|
1473
1463
|
readonly currencyConfig?: {
|
|
1474
1464
|
precision: number;
|
|
@@ -1562,7 +1552,6 @@ declare const SysNotification: Omit<{
|
|
|
1562
1552
|
} | undefined;
|
|
1563
1553
|
readonly sortable?: boolean | undefined;
|
|
1564
1554
|
readonly inlineHelpText?: string | undefined;
|
|
1565
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1566
1555
|
readonly autonumberFormat?: string | undefined;
|
|
1567
1556
|
readonly index?: boolean | undefined;
|
|
1568
1557
|
readonly type: "select";
|
|
@@ -1581,6 +1570,7 @@ declare const SysNotification: Omit<{
|
|
|
1581
1570
|
readonly name?: string | undefined;
|
|
1582
1571
|
readonly precision?: number | undefined;
|
|
1583
1572
|
readonly required?: boolean | undefined;
|
|
1573
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1584
1574
|
readonly multiple?: boolean | undefined;
|
|
1585
1575
|
readonly dependencies?: string[] | undefined;
|
|
1586
1576
|
readonly externalId?: boolean | undefined;
|
|
@@ -1643,7 +1633,6 @@ declare const SysNotification: Omit<{
|
|
|
1643
1633
|
relationshipField?: string | undefined;
|
|
1644
1634
|
} | undefined;
|
|
1645
1635
|
readonly language?: string | undefined;
|
|
1646
|
-
readonly maxRating?: number | undefined;
|
|
1647
1636
|
readonly step?: number | undefined;
|
|
1648
1637
|
readonly currencyConfig?: {
|
|
1649
1638
|
precision: number;
|
|
@@ -1737,7 +1726,6 @@ declare const SysNotification: Omit<{
|
|
|
1737
1726
|
} | undefined;
|
|
1738
1727
|
readonly sortable?: boolean | undefined;
|
|
1739
1728
|
readonly inlineHelpText?: string | undefined;
|
|
1740
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1741
1729
|
readonly autonumberFormat?: string | undefined;
|
|
1742
1730
|
readonly index?: boolean | undefined;
|
|
1743
1731
|
readonly type: "text";
|
|
@@ -1756,6 +1744,7 @@ declare const SysNotification: Omit<{
|
|
|
1756
1744
|
readonly name?: string | undefined;
|
|
1757
1745
|
readonly precision?: number | undefined;
|
|
1758
1746
|
readonly required?: boolean | undefined;
|
|
1747
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1759
1748
|
readonly multiple?: boolean | undefined;
|
|
1760
1749
|
readonly dependencies?: string[] | undefined;
|
|
1761
1750
|
readonly externalId?: boolean | undefined;
|
|
@@ -1818,7 +1807,6 @@ declare const SysNotification: Omit<{
|
|
|
1818
1807
|
relationshipField?: string | undefined;
|
|
1819
1808
|
} | undefined;
|
|
1820
1809
|
readonly language?: string | undefined;
|
|
1821
|
-
readonly maxRating?: number | undefined;
|
|
1822
1810
|
readonly step?: number | undefined;
|
|
1823
1811
|
readonly currencyConfig?: {
|
|
1824
1812
|
precision: number;
|
|
@@ -1912,7 +1900,6 @@ declare const SysNotification: Omit<{
|
|
|
1912
1900
|
} | undefined;
|
|
1913
1901
|
readonly sortable?: boolean | undefined;
|
|
1914
1902
|
readonly inlineHelpText?: string | undefined;
|
|
1915
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1916
1903
|
readonly autonumberFormat?: string | undefined;
|
|
1917
1904
|
readonly index?: boolean | undefined;
|
|
1918
1905
|
readonly type: "text";
|
|
@@ -1931,6 +1918,7 @@ declare const SysNotification: Omit<{
|
|
|
1931
1918
|
readonly name?: string | undefined;
|
|
1932
1919
|
readonly precision?: number | undefined;
|
|
1933
1920
|
readonly required?: boolean | undefined;
|
|
1921
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1934
1922
|
readonly multiple?: boolean | undefined;
|
|
1935
1923
|
readonly dependencies?: string[] | undefined;
|
|
1936
1924
|
readonly externalId?: boolean | undefined;
|
|
@@ -1993,7 +1981,6 @@ declare const SysNotification: Omit<{
|
|
|
1993
1981
|
relationshipField?: string | undefined;
|
|
1994
1982
|
} | undefined;
|
|
1995
1983
|
readonly language?: string | undefined;
|
|
1996
|
-
readonly maxRating?: number | undefined;
|
|
1997
1984
|
readonly step?: number | undefined;
|
|
1998
1985
|
readonly currencyConfig?: {
|
|
1999
1986
|
precision: number;
|
|
@@ -2087,7 +2074,6 @@ declare const SysNotification: Omit<{
|
|
|
2087
2074
|
} | undefined;
|
|
2088
2075
|
readonly sortable?: boolean | undefined;
|
|
2089
2076
|
readonly inlineHelpText?: string | undefined;
|
|
2090
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2091
2077
|
readonly autonumberFormat?: string | undefined;
|
|
2092
2078
|
readonly index?: boolean | undefined;
|
|
2093
2079
|
readonly type: "text";
|
|
@@ -2106,6 +2092,7 @@ declare const SysNotification: Omit<{
|
|
|
2106
2092
|
readonly name?: string | undefined;
|
|
2107
2093
|
readonly precision?: number | undefined;
|
|
2108
2094
|
readonly required?: boolean | undefined;
|
|
2095
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2109
2096
|
readonly multiple?: boolean | undefined;
|
|
2110
2097
|
readonly dependencies?: string[] | undefined;
|
|
2111
2098
|
readonly externalId?: boolean | undefined;
|
|
@@ -2168,7 +2155,6 @@ declare const SysNotification: Omit<{
|
|
|
2168
2155
|
relationshipField?: string | undefined;
|
|
2169
2156
|
} | undefined;
|
|
2170
2157
|
readonly language?: string | undefined;
|
|
2171
|
-
readonly maxRating?: number | undefined;
|
|
2172
2158
|
readonly step?: number | undefined;
|
|
2173
2159
|
readonly currencyConfig?: {
|
|
2174
2160
|
precision: number;
|
|
@@ -2262,7 +2248,6 @@ declare const SysNotification: Omit<{
|
|
|
2262
2248
|
} | undefined;
|
|
2263
2249
|
readonly sortable?: boolean | undefined;
|
|
2264
2250
|
readonly inlineHelpText?: string | undefined;
|
|
2265
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2266
2251
|
readonly autonumberFormat?: string | undefined;
|
|
2267
2252
|
readonly index?: boolean | undefined;
|
|
2268
2253
|
readonly type: "lookup";
|
|
@@ -2281,6 +2266,7 @@ declare const SysNotification: Omit<{
|
|
|
2281
2266
|
readonly name?: string | undefined;
|
|
2282
2267
|
readonly precision?: number | undefined;
|
|
2283
2268
|
readonly required?: boolean | undefined;
|
|
2269
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2284
2270
|
readonly multiple?: boolean | undefined;
|
|
2285
2271
|
readonly dependencies?: string[] | undefined;
|
|
2286
2272
|
readonly externalId?: boolean | undefined;
|
|
@@ -2343,7 +2329,6 @@ declare const SysNotification: Omit<{
|
|
|
2343
2329
|
relationshipField?: string | undefined;
|
|
2344
2330
|
} | undefined;
|
|
2345
2331
|
readonly language?: string | undefined;
|
|
2346
|
-
readonly maxRating?: number | undefined;
|
|
2347
2332
|
readonly step?: number | undefined;
|
|
2348
2333
|
readonly currencyConfig?: {
|
|
2349
2334
|
precision: number;
|
|
@@ -2437,7 +2422,6 @@ declare const SysNotification: Omit<{
|
|
|
2437
2422
|
} | undefined;
|
|
2438
2423
|
readonly sortable?: boolean | undefined;
|
|
2439
2424
|
readonly inlineHelpText?: string | undefined;
|
|
2440
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2441
2425
|
readonly autonumberFormat?: string | undefined;
|
|
2442
2426
|
readonly index?: boolean | undefined;
|
|
2443
2427
|
readonly type: "datetime";
|
|
@@ -2480,7 +2464,7 @@ declare const SysAttachment: Omit<{
|
|
|
2480
2464
|
abstract: boolean;
|
|
2481
2465
|
datasource: string;
|
|
2482
2466
|
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";
|
|
2467
|
+
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
2468
|
required: boolean;
|
|
2485
2469
|
searchable: boolean;
|
|
2486
2470
|
multiple: boolean;
|
|
@@ -2554,6 +2538,7 @@ declare const SysAttachment: Omit<{
|
|
|
2554
2538
|
generatedBy?: string | undefined;
|
|
2555
2539
|
} | undefined;
|
|
2556
2540
|
} | undefined;
|
|
2541
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2557
2542
|
summaryOperations?: {
|
|
2558
2543
|
object: string;
|
|
2559
2544
|
field: string;
|
|
@@ -2561,7 +2546,6 @@ declare const SysAttachment: Omit<{
|
|
|
2561
2546
|
relationshipField?: string | undefined;
|
|
2562
2547
|
} | undefined;
|
|
2563
2548
|
language?: string | undefined;
|
|
2564
|
-
maxRating?: number | undefined;
|
|
2565
2549
|
step?: number | undefined;
|
|
2566
2550
|
currencyConfig?: {
|
|
2567
2551
|
precision: number;
|
|
@@ -2691,7 +2675,6 @@ declare const SysAttachment: Omit<{
|
|
|
2691
2675
|
requiredPermissions?: string[] | undefined;
|
|
2692
2676
|
system?: boolean | undefined;
|
|
2693
2677
|
inlineHelpText?: string | undefined;
|
|
2694
|
-
caseSensitive?: boolean | undefined;
|
|
2695
2678
|
autonumberFormat?: string | undefined;
|
|
2696
2679
|
}>;
|
|
2697
2680
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -2779,12 +2762,6 @@ declare const SysAttachment: Omit<{
|
|
|
2779
2762
|
versionField: string;
|
|
2780
2763
|
retentionDays?: number | undefined;
|
|
2781
2764
|
} | undefined;
|
|
2782
|
-
partitioning?: {
|
|
2783
|
-
enabled: boolean;
|
|
2784
|
-
strategy: "hash" | "list" | "range";
|
|
2785
|
-
key: string;
|
|
2786
|
-
interval?: string | undefined;
|
|
2787
|
-
} | undefined;
|
|
2788
2765
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
2789
2766
|
activityMilestones?: {
|
|
2790
2767
|
field: string;
|
|
@@ -3115,7 +3092,6 @@ declare const SysAttachment: Omit<{
|
|
|
3115
3092
|
debounceMs?: number | undefined;
|
|
3116
3093
|
} | undefined;
|
|
3117
3094
|
}> | undefined;
|
|
3118
|
-
defaultDetailForm?: string | undefined;
|
|
3119
3095
|
searchableFields?: string[] | undefined;
|
|
3120
3096
|
search?: {
|
|
3121
3097
|
fields: string[];
|
|
@@ -3132,7 +3108,7 @@ declare const SysAttachment: Omit<{
|
|
|
3132
3108
|
trash: boolean;
|
|
3133
3109
|
mru: boolean;
|
|
3134
3110
|
clone: boolean;
|
|
3135
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
3111
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "get" | "update" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
3136
3112
|
} | undefined;
|
|
3137
3113
|
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
3138
3114
|
publicSharing?: {
|
|
@@ -3160,6 +3136,7 @@ declare const SysAttachment: Omit<{
|
|
|
3160
3136
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
3161
3137
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
3162
3138
|
target?: string | undefined;
|
|
3139
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
3163
3140
|
body?: {
|
|
3164
3141
|
language: "expression";
|
|
3165
3142
|
source: string;
|
|
@@ -3177,7 +3154,7 @@ declare const SysAttachment: Omit<{
|
|
|
3177
3154
|
field?: string | undefined;
|
|
3178
3155
|
objectOverride?: string | undefined;
|
|
3179
3156
|
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;
|
|
3157
|
+
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
3158
|
options?: {
|
|
3182
3159
|
label: string;
|
|
3183
3160
|
value: string;
|
|
@@ -3283,6 +3260,7 @@ declare const SysAttachment: Omit<{
|
|
|
3283
3260
|
readonly name?: string | undefined;
|
|
3284
3261
|
readonly precision?: number | undefined;
|
|
3285
3262
|
readonly required?: boolean | undefined;
|
|
3263
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3286
3264
|
readonly multiple?: boolean | undefined;
|
|
3287
3265
|
readonly dependencies?: string[] | undefined;
|
|
3288
3266
|
readonly externalId?: boolean | undefined;
|
|
@@ -3345,7 +3323,6 @@ declare const SysAttachment: Omit<{
|
|
|
3345
3323
|
relationshipField?: string | undefined;
|
|
3346
3324
|
} | undefined;
|
|
3347
3325
|
readonly language?: string | undefined;
|
|
3348
|
-
readonly maxRating?: number | undefined;
|
|
3349
3326
|
readonly step?: number | undefined;
|
|
3350
3327
|
readonly currencyConfig?: {
|
|
3351
3328
|
precision: number;
|
|
@@ -3439,7 +3416,6 @@ declare const SysAttachment: Omit<{
|
|
|
3439
3416
|
} | undefined;
|
|
3440
3417
|
readonly sortable?: boolean | undefined;
|
|
3441
3418
|
readonly inlineHelpText?: string | undefined;
|
|
3442
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3443
3419
|
readonly autonumberFormat?: string | undefined;
|
|
3444
3420
|
readonly index?: boolean | undefined;
|
|
3445
3421
|
readonly type: "text";
|
|
@@ -3458,6 +3434,7 @@ declare const SysAttachment: Omit<{
|
|
|
3458
3434
|
readonly name?: string | undefined;
|
|
3459
3435
|
readonly precision?: number | undefined;
|
|
3460
3436
|
readonly required?: boolean | undefined;
|
|
3437
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3461
3438
|
readonly multiple?: boolean | undefined;
|
|
3462
3439
|
readonly dependencies?: string[] | undefined;
|
|
3463
3440
|
readonly externalId?: boolean | undefined;
|
|
@@ -3520,7 +3497,6 @@ declare const SysAttachment: Omit<{
|
|
|
3520
3497
|
relationshipField?: string | undefined;
|
|
3521
3498
|
} | undefined;
|
|
3522
3499
|
readonly language?: string | undefined;
|
|
3523
|
-
readonly maxRating?: number | undefined;
|
|
3524
3500
|
readonly step?: number | undefined;
|
|
3525
3501
|
readonly currencyConfig?: {
|
|
3526
3502
|
precision: number;
|
|
@@ -3614,7 +3590,6 @@ declare const SysAttachment: Omit<{
|
|
|
3614
3590
|
} | undefined;
|
|
3615
3591
|
readonly sortable?: boolean | undefined;
|
|
3616
3592
|
readonly inlineHelpText?: string | undefined;
|
|
3617
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3618
3593
|
readonly autonumberFormat?: string | undefined;
|
|
3619
3594
|
readonly index?: boolean | undefined;
|
|
3620
3595
|
readonly type: "text";
|
|
@@ -3633,6 +3608,7 @@ declare const SysAttachment: Omit<{
|
|
|
3633
3608
|
readonly name?: string | undefined;
|
|
3634
3609
|
readonly precision?: number | undefined;
|
|
3635
3610
|
readonly required?: boolean | undefined;
|
|
3611
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3636
3612
|
readonly multiple?: boolean | undefined;
|
|
3637
3613
|
readonly dependencies?: string[] | undefined;
|
|
3638
3614
|
readonly externalId?: boolean | undefined;
|
|
@@ -3695,7 +3671,6 @@ declare const SysAttachment: Omit<{
|
|
|
3695
3671
|
relationshipField?: string | undefined;
|
|
3696
3672
|
} | undefined;
|
|
3697
3673
|
readonly language?: string | undefined;
|
|
3698
|
-
readonly maxRating?: number | undefined;
|
|
3699
3674
|
readonly step?: number | undefined;
|
|
3700
3675
|
readonly currencyConfig?: {
|
|
3701
3676
|
precision: number;
|
|
@@ -3789,7 +3764,6 @@ declare const SysAttachment: Omit<{
|
|
|
3789
3764
|
} | undefined;
|
|
3790
3765
|
readonly sortable?: boolean | undefined;
|
|
3791
3766
|
readonly inlineHelpText?: string | undefined;
|
|
3792
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3793
3767
|
readonly autonumberFormat?: string | undefined;
|
|
3794
3768
|
readonly index?: boolean | undefined;
|
|
3795
3769
|
readonly type: "text";
|
|
@@ -3808,6 +3782,7 @@ declare const SysAttachment: Omit<{
|
|
|
3808
3782
|
readonly name?: string | undefined;
|
|
3809
3783
|
readonly precision?: number | undefined;
|
|
3810
3784
|
readonly required?: boolean | undefined;
|
|
3785
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3811
3786
|
readonly multiple?: boolean | undefined;
|
|
3812
3787
|
readonly dependencies?: string[] | undefined;
|
|
3813
3788
|
readonly externalId?: boolean | undefined;
|
|
@@ -3870,7 +3845,6 @@ declare const SysAttachment: Omit<{
|
|
|
3870
3845
|
relationshipField?: string | undefined;
|
|
3871
3846
|
} | undefined;
|
|
3872
3847
|
readonly language?: string | undefined;
|
|
3873
|
-
readonly maxRating?: number | undefined;
|
|
3874
3848
|
readonly step?: number | undefined;
|
|
3875
3849
|
readonly currencyConfig?: {
|
|
3876
3850
|
precision: number;
|
|
@@ -3964,7 +3938,6 @@ declare const SysAttachment: Omit<{
|
|
|
3964
3938
|
} | undefined;
|
|
3965
3939
|
readonly sortable?: boolean | undefined;
|
|
3966
3940
|
readonly inlineHelpText?: string | undefined;
|
|
3967
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3968
3941
|
readonly autonumberFormat?: string | undefined;
|
|
3969
3942
|
readonly index?: boolean | undefined;
|
|
3970
3943
|
readonly type: "lookup";
|
|
@@ -3983,6 +3956,7 @@ declare const SysAttachment: Omit<{
|
|
|
3983
3956
|
readonly name?: string | undefined;
|
|
3984
3957
|
readonly precision?: number | undefined;
|
|
3985
3958
|
readonly required?: boolean | undefined;
|
|
3959
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3986
3960
|
readonly multiple?: boolean | undefined;
|
|
3987
3961
|
readonly dependencies?: string[] | undefined;
|
|
3988
3962
|
readonly externalId?: boolean | undefined;
|
|
@@ -4045,7 +4019,6 @@ declare const SysAttachment: Omit<{
|
|
|
4045
4019
|
relationshipField?: string | undefined;
|
|
4046
4020
|
} | undefined;
|
|
4047
4021
|
readonly language?: string | undefined;
|
|
4048
|
-
readonly maxRating?: number | undefined;
|
|
4049
4022
|
readonly step?: number | undefined;
|
|
4050
4023
|
readonly currencyConfig?: {
|
|
4051
4024
|
precision: number;
|
|
@@ -4139,7 +4112,6 @@ declare const SysAttachment: Omit<{
|
|
|
4139
4112
|
} | undefined;
|
|
4140
4113
|
readonly sortable?: boolean | undefined;
|
|
4141
4114
|
readonly inlineHelpText?: string | undefined;
|
|
4142
|
-
readonly caseSensitive?: boolean | undefined;
|
|
4143
4115
|
readonly autonumberFormat?: string | undefined;
|
|
4144
4116
|
readonly index?: boolean | undefined;
|
|
4145
4117
|
readonly type: "text";
|
|
@@ -4158,6 +4130,7 @@ declare const SysAttachment: Omit<{
|
|
|
4158
4130
|
readonly name?: string | undefined;
|
|
4159
4131
|
readonly precision?: number | undefined;
|
|
4160
4132
|
readonly required?: boolean | undefined;
|
|
4133
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4161
4134
|
readonly multiple?: boolean | undefined;
|
|
4162
4135
|
readonly dependencies?: string[] | undefined;
|
|
4163
4136
|
readonly externalId?: boolean | undefined;
|
|
@@ -4220,7 +4193,6 @@ declare const SysAttachment: Omit<{
|
|
|
4220
4193
|
relationshipField?: string | undefined;
|
|
4221
4194
|
} | undefined;
|
|
4222
4195
|
readonly language?: string | undefined;
|
|
4223
|
-
readonly maxRating?: number | undefined;
|
|
4224
4196
|
readonly step?: number | undefined;
|
|
4225
4197
|
readonly currencyConfig?: {
|
|
4226
4198
|
precision: number;
|
|
@@ -4314,7 +4286,6 @@ declare const SysAttachment: Omit<{
|
|
|
4314
4286
|
} | undefined;
|
|
4315
4287
|
readonly sortable?: boolean | undefined;
|
|
4316
4288
|
readonly inlineHelpText?: string | undefined;
|
|
4317
|
-
readonly caseSensitive?: boolean | undefined;
|
|
4318
4289
|
readonly autonumberFormat?: string | undefined;
|
|
4319
4290
|
readonly index?: boolean | undefined;
|
|
4320
4291
|
readonly type: "text";
|
|
@@ -4333,6 +4304,7 @@ declare const SysAttachment: Omit<{
|
|
|
4333
4304
|
readonly name?: string | undefined;
|
|
4334
4305
|
readonly precision?: number | undefined;
|
|
4335
4306
|
readonly required?: boolean | undefined;
|
|
4307
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4336
4308
|
readonly multiple?: boolean | undefined;
|
|
4337
4309
|
readonly dependencies?: string[] | undefined;
|
|
4338
4310
|
readonly externalId?: boolean | undefined;
|
|
@@ -4395,7 +4367,6 @@ declare const SysAttachment: Omit<{
|
|
|
4395
4367
|
relationshipField?: string | undefined;
|
|
4396
4368
|
} | undefined;
|
|
4397
4369
|
readonly language?: string | undefined;
|
|
4398
|
-
readonly maxRating?: number | undefined;
|
|
4399
4370
|
readonly step?: number | undefined;
|
|
4400
4371
|
readonly currencyConfig?: {
|
|
4401
4372
|
precision: number;
|
|
@@ -4489,7 +4460,6 @@ declare const SysAttachment: Omit<{
|
|
|
4489
4460
|
} | undefined;
|
|
4490
4461
|
readonly sortable?: boolean | undefined;
|
|
4491
4462
|
readonly inlineHelpText?: string | undefined;
|
|
4492
|
-
readonly caseSensitive?: boolean | undefined;
|
|
4493
4463
|
readonly autonumberFormat?: string | undefined;
|
|
4494
4464
|
readonly index?: boolean | undefined;
|
|
4495
4465
|
readonly type: "number";
|
|
@@ -4508,6 +4478,7 @@ declare const SysAttachment: Omit<{
|
|
|
4508
4478
|
readonly name?: string | undefined;
|
|
4509
4479
|
readonly precision?: number | undefined;
|
|
4510
4480
|
readonly required?: boolean | undefined;
|
|
4481
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4511
4482
|
readonly multiple?: boolean | undefined;
|
|
4512
4483
|
readonly dependencies?: string[] | undefined;
|
|
4513
4484
|
readonly externalId?: boolean | undefined;
|
|
@@ -4570,7 +4541,6 @@ declare const SysAttachment: Omit<{
|
|
|
4570
4541
|
relationshipField?: string | undefined;
|
|
4571
4542
|
} | undefined;
|
|
4572
4543
|
readonly language?: string | undefined;
|
|
4573
|
-
readonly maxRating?: number | undefined;
|
|
4574
4544
|
readonly step?: number | undefined;
|
|
4575
4545
|
readonly currencyConfig?: {
|
|
4576
4546
|
precision: number;
|
|
@@ -4664,7 +4634,6 @@ declare const SysAttachment: Omit<{
|
|
|
4664
4634
|
} | undefined;
|
|
4665
4635
|
readonly sortable?: boolean | undefined;
|
|
4666
4636
|
readonly inlineHelpText?: string | undefined;
|
|
4667
|
-
readonly caseSensitive?: boolean | undefined;
|
|
4668
4637
|
readonly autonumberFormat?: string | undefined;
|
|
4669
4638
|
readonly index?: boolean | undefined;
|
|
4670
4639
|
readonly type: "select";
|
|
@@ -4683,6 +4652,7 @@ declare const SysAttachment: Omit<{
|
|
|
4683
4652
|
readonly name?: string | undefined;
|
|
4684
4653
|
readonly precision?: number | undefined;
|
|
4685
4654
|
readonly required?: boolean | undefined;
|
|
4655
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4686
4656
|
readonly multiple?: boolean | undefined;
|
|
4687
4657
|
readonly dependencies?: string[] | undefined;
|
|
4688
4658
|
readonly externalId?: boolean | undefined;
|
|
@@ -4745,7 +4715,6 @@ declare const SysAttachment: Omit<{
|
|
|
4745
4715
|
relationshipField?: string | undefined;
|
|
4746
4716
|
} | undefined;
|
|
4747
4717
|
readonly language?: string | undefined;
|
|
4748
|
-
readonly maxRating?: number | undefined;
|
|
4749
4718
|
readonly step?: number | undefined;
|
|
4750
4719
|
readonly currencyConfig?: {
|
|
4751
4720
|
precision: number;
|
|
@@ -4839,7 +4808,6 @@ declare const SysAttachment: Omit<{
|
|
|
4839
4808
|
} | undefined;
|
|
4840
4809
|
readonly sortable?: boolean | undefined;
|
|
4841
4810
|
readonly inlineHelpText?: string | undefined;
|
|
4842
|
-
readonly caseSensitive?: boolean | undefined;
|
|
4843
4811
|
readonly autonumberFormat?: string | undefined;
|
|
4844
4812
|
readonly index?: boolean | undefined;
|
|
4845
4813
|
readonly type: "select";
|
|
@@ -4858,6 +4826,7 @@ declare const SysAttachment: Omit<{
|
|
|
4858
4826
|
readonly name?: string | undefined;
|
|
4859
4827
|
readonly precision?: number | undefined;
|
|
4860
4828
|
readonly required?: boolean | undefined;
|
|
4829
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4861
4830
|
readonly multiple?: boolean | undefined;
|
|
4862
4831
|
readonly dependencies?: string[] | undefined;
|
|
4863
4832
|
readonly externalId?: boolean | undefined;
|
|
@@ -4920,7 +4889,6 @@ declare const SysAttachment: Omit<{
|
|
|
4920
4889
|
relationshipField?: string | undefined;
|
|
4921
4890
|
} | undefined;
|
|
4922
4891
|
readonly language?: string | undefined;
|
|
4923
|
-
readonly maxRating?: number | undefined;
|
|
4924
4892
|
readonly step?: number | undefined;
|
|
4925
4893
|
readonly currencyConfig?: {
|
|
4926
4894
|
precision: number;
|
|
@@ -5014,7 +4982,6 @@ declare const SysAttachment: Omit<{
|
|
|
5014
4982
|
} | undefined;
|
|
5015
4983
|
readonly sortable?: boolean | undefined;
|
|
5016
4984
|
readonly inlineHelpText?: string | undefined;
|
|
5017
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5018
4985
|
readonly autonumberFormat?: string | undefined;
|
|
5019
4986
|
readonly index?: boolean | undefined;
|
|
5020
4987
|
readonly type: "lookup";
|
|
@@ -5033,6 +5000,7 @@ declare const SysAttachment: Omit<{
|
|
|
5033
5000
|
readonly name?: string | undefined;
|
|
5034
5001
|
readonly precision?: number | undefined;
|
|
5035
5002
|
readonly required?: boolean | undefined;
|
|
5003
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5036
5004
|
readonly multiple?: boolean | undefined;
|
|
5037
5005
|
readonly dependencies?: string[] | undefined;
|
|
5038
5006
|
readonly externalId?: boolean | undefined;
|
|
@@ -5095,7 +5063,6 @@ declare const SysAttachment: Omit<{
|
|
|
5095
5063
|
relationshipField?: string | undefined;
|
|
5096
5064
|
} | undefined;
|
|
5097
5065
|
readonly language?: string | undefined;
|
|
5098
|
-
readonly maxRating?: number | undefined;
|
|
5099
5066
|
readonly step?: number | undefined;
|
|
5100
5067
|
readonly currencyConfig?: {
|
|
5101
5068
|
precision: number;
|
|
@@ -5189,7 +5156,6 @@ declare const SysAttachment: Omit<{
|
|
|
5189
5156
|
} | undefined;
|
|
5190
5157
|
readonly sortable?: boolean | undefined;
|
|
5191
5158
|
readonly inlineHelpText?: string | undefined;
|
|
5192
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5193
5159
|
readonly autonumberFormat?: string | undefined;
|
|
5194
5160
|
readonly index?: boolean | undefined;
|
|
5195
5161
|
readonly type: "textarea";
|
|
@@ -5208,6 +5174,7 @@ declare const SysAttachment: Omit<{
|
|
|
5208
5174
|
readonly name?: string | undefined;
|
|
5209
5175
|
readonly precision?: number | undefined;
|
|
5210
5176
|
readonly required?: boolean | undefined;
|
|
5177
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5211
5178
|
readonly multiple?: boolean | undefined;
|
|
5212
5179
|
readonly dependencies?: string[] | undefined;
|
|
5213
5180
|
readonly externalId?: boolean | undefined;
|
|
@@ -5270,7 +5237,6 @@ declare const SysAttachment: Omit<{
|
|
|
5270
5237
|
relationshipField?: string | undefined;
|
|
5271
5238
|
} | undefined;
|
|
5272
5239
|
readonly language?: string | undefined;
|
|
5273
|
-
readonly maxRating?: number | undefined;
|
|
5274
5240
|
readonly step?: number | undefined;
|
|
5275
5241
|
readonly currencyConfig?: {
|
|
5276
5242
|
precision: number;
|
|
@@ -5364,7 +5330,6 @@ declare const SysAttachment: Omit<{
|
|
|
5364
5330
|
} | undefined;
|
|
5365
5331
|
readonly sortable?: boolean | undefined;
|
|
5366
5332
|
readonly inlineHelpText?: string | undefined;
|
|
5367
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5368
5333
|
readonly autonumberFormat?: string | undefined;
|
|
5369
5334
|
readonly index?: boolean | undefined;
|
|
5370
5335
|
readonly type: "datetime";
|
|
@@ -5383,6 +5348,7 @@ declare const SysAttachment: Omit<{
|
|
|
5383
5348
|
readonly name?: string | undefined;
|
|
5384
5349
|
readonly precision?: number | undefined;
|
|
5385
5350
|
readonly required?: boolean | undefined;
|
|
5351
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5386
5352
|
readonly multiple?: boolean | undefined;
|
|
5387
5353
|
readonly dependencies?: string[] | undefined;
|
|
5388
5354
|
readonly externalId?: boolean | undefined;
|
|
@@ -5445,7 +5411,6 @@ declare const SysAttachment: Omit<{
|
|
|
5445
5411
|
relationshipField?: string | undefined;
|
|
5446
5412
|
} | undefined;
|
|
5447
5413
|
readonly language?: string | undefined;
|
|
5448
|
-
readonly maxRating?: number | undefined;
|
|
5449
5414
|
readonly step?: number | undefined;
|
|
5450
5415
|
readonly currencyConfig?: {
|
|
5451
5416
|
precision: number;
|
|
@@ -5539,7 +5504,6 @@ declare const SysAttachment: Omit<{
|
|
|
5539
5504
|
} | undefined;
|
|
5540
5505
|
readonly sortable?: boolean | undefined;
|
|
5541
5506
|
readonly inlineHelpText?: string | undefined;
|
|
5542
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5543
5507
|
readonly autonumberFormat?: string | undefined;
|
|
5544
5508
|
readonly index?: boolean | undefined;
|
|
5545
5509
|
readonly type: "datetime";
|
|
@@ -5585,7 +5549,7 @@ declare const SysEmail: Omit<{
|
|
|
5585
5549
|
abstract: boolean;
|
|
5586
5550
|
datasource: string;
|
|
5587
5551
|
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";
|
|
5552
|
+
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
5553
|
required: boolean;
|
|
5590
5554
|
searchable: boolean;
|
|
5591
5555
|
multiple: boolean;
|
|
@@ -5659,6 +5623,7 @@ declare const SysEmail: Omit<{
|
|
|
5659
5623
|
generatedBy?: string | undefined;
|
|
5660
5624
|
} | undefined;
|
|
5661
5625
|
} | undefined;
|
|
5626
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5662
5627
|
summaryOperations?: {
|
|
5663
5628
|
object: string;
|
|
5664
5629
|
field: string;
|
|
@@ -5666,7 +5631,6 @@ declare const SysEmail: Omit<{
|
|
|
5666
5631
|
relationshipField?: string | undefined;
|
|
5667
5632
|
} | undefined;
|
|
5668
5633
|
language?: string | undefined;
|
|
5669
|
-
maxRating?: number | undefined;
|
|
5670
5634
|
step?: number | undefined;
|
|
5671
5635
|
currencyConfig?: {
|
|
5672
5636
|
precision: number;
|
|
@@ -5796,7 +5760,6 @@ declare const SysEmail: Omit<{
|
|
|
5796
5760
|
requiredPermissions?: string[] | undefined;
|
|
5797
5761
|
system?: boolean | undefined;
|
|
5798
5762
|
inlineHelpText?: string | undefined;
|
|
5799
|
-
caseSensitive?: boolean | undefined;
|
|
5800
5763
|
autonumberFormat?: string | undefined;
|
|
5801
5764
|
}>;
|
|
5802
5765
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -5884,12 +5847,6 @@ declare const SysEmail: Omit<{
|
|
|
5884
5847
|
versionField: string;
|
|
5885
5848
|
retentionDays?: number | undefined;
|
|
5886
5849
|
} | undefined;
|
|
5887
|
-
partitioning?: {
|
|
5888
|
-
enabled: boolean;
|
|
5889
|
-
strategy: "hash" | "list" | "range";
|
|
5890
|
-
key: string;
|
|
5891
|
-
interval?: string | undefined;
|
|
5892
|
-
} | undefined;
|
|
5893
5850
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
5894
5851
|
activityMilestones?: {
|
|
5895
5852
|
field: string;
|
|
@@ -6220,7 +6177,6 @@ declare const SysEmail: Omit<{
|
|
|
6220
6177
|
debounceMs?: number | undefined;
|
|
6221
6178
|
} | undefined;
|
|
6222
6179
|
}> | undefined;
|
|
6223
|
-
defaultDetailForm?: string | undefined;
|
|
6224
6180
|
searchableFields?: string[] | undefined;
|
|
6225
6181
|
search?: {
|
|
6226
6182
|
fields: string[];
|
|
@@ -6237,7 +6193,7 @@ declare const SysEmail: Omit<{
|
|
|
6237
6193
|
trash: boolean;
|
|
6238
6194
|
mru: boolean;
|
|
6239
6195
|
clone: boolean;
|
|
6240
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
6196
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "get" | "update" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
6241
6197
|
} | undefined;
|
|
6242
6198
|
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
6243
6199
|
publicSharing?: {
|
|
@@ -6265,6 +6221,7 @@ declare const SysEmail: Omit<{
|
|
|
6265
6221
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
6266
6222
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
6267
6223
|
target?: string | undefined;
|
|
6224
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
6268
6225
|
body?: {
|
|
6269
6226
|
language: "expression";
|
|
6270
6227
|
source: string;
|
|
@@ -6282,7 +6239,7 @@ declare const SysEmail: Omit<{
|
|
|
6282
6239
|
field?: string | undefined;
|
|
6283
6240
|
objectOverride?: string | undefined;
|
|
6284
6241
|
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;
|
|
6242
|
+
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
6243
|
options?: {
|
|
6287
6244
|
label: string;
|
|
6288
6245
|
value: string;
|
|
@@ -6389,6 +6346,7 @@ declare const SysEmail: Omit<{
|
|
|
6389
6346
|
readonly name?: string | undefined;
|
|
6390
6347
|
readonly precision?: number | undefined;
|
|
6391
6348
|
readonly required?: boolean | undefined;
|
|
6349
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6392
6350
|
readonly multiple?: boolean | undefined;
|
|
6393
6351
|
readonly dependencies?: string[] | undefined;
|
|
6394
6352
|
readonly externalId?: boolean | undefined;
|
|
@@ -6451,7 +6409,6 @@ declare const SysEmail: Omit<{
|
|
|
6451
6409
|
relationshipField?: string | undefined;
|
|
6452
6410
|
} | undefined;
|
|
6453
6411
|
readonly language?: string | undefined;
|
|
6454
|
-
readonly maxRating?: number | undefined;
|
|
6455
6412
|
readonly step?: number | undefined;
|
|
6456
6413
|
readonly currencyConfig?: {
|
|
6457
6414
|
precision: number;
|
|
@@ -6545,7 +6502,6 @@ declare const SysEmail: Omit<{
|
|
|
6545
6502
|
} | undefined;
|
|
6546
6503
|
readonly sortable?: boolean | undefined;
|
|
6547
6504
|
readonly inlineHelpText?: string | undefined;
|
|
6548
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6549
6505
|
readonly autonumberFormat?: string | undefined;
|
|
6550
6506
|
readonly index?: boolean | undefined;
|
|
6551
6507
|
readonly type: "text";
|
|
@@ -6564,6 +6520,7 @@ declare const SysEmail: Omit<{
|
|
|
6564
6520
|
readonly name?: string | undefined;
|
|
6565
6521
|
readonly precision?: number | undefined;
|
|
6566
6522
|
readonly required?: boolean | undefined;
|
|
6523
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6567
6524
|
readonly multiple?: boolean | undefined;
|
|
6568
6525
|
readonly dependencies?: string[] | undefined;
|
|
6569
6526
|
readonly externalId?: boolean | undefined;
|
|
@@ -6626,7 +6583,6 @@ declare const SysEmail: Omit<{
|
|
|
6626
6583
|
relationshipField?: string | undefined;
|
|
6627
6584
|
} | undefined;
|
|
6628
6585
|
readonly language?: string | undefined;
|
|
6629
|
-
readonly maxRating?: number | undefined;
|
|
6630
6586
|
readonly step?: number | undefined;
|
|
6631
6587
|
readonly currencyConfig?: {
|
|
6632
6588
|
precision: number;
|
|
@@ -6720,7 +6676,6 @@ declare const SysEmail: Omit<{
|
|
|
6720
6676
|
} | undefined;
|
|
6721
6677
|
readonly sortable?: boolean | undefined;
|
|
6722
6678
|
readonly inlineHelpText?: string | undefined;
|
|
6723
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6724
6679
|
readonly autonumberFormat?: string | undefined;
|
|
6725
6680
|
readonly index?: boolean | undefined;
|
|
6726
6681
|
readonly type: "text";
|
|
@@ -6739,6 +6694,7 @@ declare const SysEmail: Omit<{
|
|
|
6739
6694
|
readonly name?: string | undefined;
|
|
6740
6695
|
readonly precision?: number | undefined;
|
|
6741
6696
|
readonly required?: boolean | undefined;
|
|
6697
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6742
6698
|
readonly multiple?: boolean | undefined;
|
|
6743
6699
|
readonly dependencies?: string[] | undefined;
|
|
6744
6700
|
readonly externalId?: boolean | undefined;
|
|
@@ -6801,7 +6757,6 @@ declare const SysEmail: Omit<{
|
|
|
6801
6757
|
relationshipField?: string | undefined;
|
|
6802
6758
|
} | undefined;
|
|
6803
6759
|
readonly language?: string | undefined;
|
|
6804
|
-
readonly maxRating?: number | undefined;
|
|
6805
6760
|
readonly step?: number | undefined;
|
|
6806
6761
|
readonly currencyConfig?: {
|
|
6807
6762
|
precision: number;
|
|
@@ -6895,7 +6850,6 @@ declare const SysEmail: Omit<{
|
|
|
6895
6850
|
} | undefined;
|
|
6896
6851
|
readonly sortable?: boolean | undefined;
|
|
6897
6852
|
readonly inlineHelpText?: string | undefined;
|
|
6898
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6899
6853
|
readonly autonumberFormat?: string | undefined;
|
|
6900
6854
|
readonly index?: boolean | undefined;
|
|
6901
6855
|
readonly type: "text";
|
|
@@ -6914,6 +6868,7 @@ declare const SysEmail: Omit<{
|
|
|
6914
6868
|
readonly name?: string | undefined;
|
|
6915
6869
|
readonly precision?: number | undefined;
|
|
6916
6870
|
readonly required?: boolean | undefined;
|
|
6871
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6917
6872
|
readonly multiple?: boolean | undefined;
|
|
6918
6873
|
readonly dependencies?: string[] | undefined;
|
|
6919
6874
|
readonly externalId?: boolean | undefined;
|
|
@@ -6976,7 +6931,6 @@ declare const SysEmail: Omit<{
|
|
|
6976
6931
|
relationshipField?: string | undefined;
|
|
6977
6932
|
} | undefined;
|
|
6978
6933
|
readonly language?: string | undefined;
|
|
6979
|
-
readonly maxRating?: number | undefined;
|
|
6980
6934
|
readonly step?: number | undefined;
|
|
6981
6935
|
readonly currencyConfig?: {
|
|
6982
6936
|
precision: number;
|
|
@@ -7070,7 +7024,6 @@ declare const SysEmail: Omit<{
|
|
|
7070
7024
|
} | undefined;
|
|
7071
7025
|
readonly sortable?: boolean | undefined;
|
|
7072
7026
|
readonly inlineHelpText?: string | undefined;
|
|
7073
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7074
7027
|
readonly autonumberFormat?: string | undefined;
|
|
7075
7028
|
readonly index?: boolean | undefined;
|
|
7076
7029
|
readonly type: "text";
|
|
@@ -7089,6 +7042,7 @@ declare const SysEmail: Omit<{
|
|
|
7089
7042
|
readonly name?: string | undefined;
|
|
7090
7043
|
readonly precision?: number | undefined;
|
|
7091
7044
|
readonly required?: boolean | undefined;
|
|
7045
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7092
7046
|
readonly multiple?: boolean | undefined;
|
|
7093
7047
|
readonly dependencies?: string[] | undefined;
|
|
7094
7048
|
readonly externalId?: boolean | undefined;
|
|
@@ -7151,7 +7105,6 @@ declare const SysEmail: Omit<{
|
|
|
7151
7105
|
relationshipField?: string | undefined;
|
|
7152
7106
|
} | undefined;
|
|
7153
7107
|
readonly language?: string | undefined;
|
|
7154
|
-
readonly maxRating?: number | undefined;
|
|
7155
7108
|
readonly step?: number | undefined;
|
|
7156
7109
|
readonly currencyConfig?: {
|
|
7157
7110
|
precision: number;
|
|
@@ -7245,7 +7198,6 @@ declare const SysEmail: Omit<{
|
|
|
7245
7198
|
} | undefined;
|
|
7246
7199
|
readonly sortable?: boolean | undefined;
|
|
7247
7200
|
readonly inlineHelpText?: string | undefined;
|
|
7248
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7249
7201
|
readonly autonumberFormat?: string | undefined;
|
|
7250
7202
|
readonly index?: boolean | undefined;
|
|
7251
7203
|
readonly type: "text";
|
|
@@ -7264,6 +7216,7 @@ declare const SysEmail: Omit<{
|
|
|
7264
7216
|
readonly name?: string | undefined;
|
|
7265
7217
|
readonly precision?: number | undefined;
|
|
7266
7218
|
readonly required?: boolean | undefined;
|
|
7219
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7267
7220
|
readonly multiple?: boolean | undefined;
|
|
7268
7221
|
readonly dependencies?: string[] | undefined;
|
|
7269
7222
|
readonly externalId?: boolean | undefined;
|
|
@@ -7326,7 +7279,6 @@ declare const SysEmail: Omit<{
|
|
|
7326
7279
|
relationshipField?: string | undefined;
|
|
7327
7280
|
} | undefined;
|
|
7328
7281
|
readonly language?: string | undefined;
|
|
7329
|
-
readonly maxRating?: number | undefined;
|
|
7330
7282
|
readonly step?: number | undefined;
|
|
7331
7283
|
readonly currencyConfig?: {
|
|
7332
7284
|
precision: number;
|
|
@@ -7420,7 +7372,6 @@ declare const SysEmail: Omit<{
|
|
|
7420
7372
|
} | undefined;
|
|
7421
7373
|
readonly sortable?: boolean | undefined;
|
|
7422
7374
|
readonly inlineHelpText?: string | undefined;
|
|
7423
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7424
7375
|
readonly autonumberFormat?: string | undefined;
|
|
7425
7376
|
readonly index?: boolean | undefined;
|
|
7426
7377
|
readonly type: "text";
|
|
@@ -7439,6 +7390,7 @@ declare const SysEmail: Omit<{
|
|
|
7439
7390
|
readonly name?: string | undefined;
|
|
7440
7391
|
readonly precision?: number | undefined;
|
|
7441
7392
|
readonly required?: boolean | undefined;
|
|
7393
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7442
7394
|
readonly multiple?: boolean | undefined;
|
|
7443
7395
|
readonly dependencies?: string[] | undefined;
|
|
7444
7396
|
readonly externalId?: boolean | undefined;
|
|
@@ -7501,7 +7453,6 @@ declare const SysEmail: Omit<{
|
|
|
7501
7453
|
relationshipField?: string | undefined;
|
|
7502
7454
|
} | undefined;
|
|
7503
7455
|
readonly language?: string | undefined;
|
|
7504
|
-
readonly maxRating?: number | undefined;
|
|
7505
7456
|
readonly step?: number | undefined;
|
|
7506
7457
|
readonly currencyConfig?: {
|
|
7507
7458
|
precision: number;
|
|
@@ -7595,7 +7546,6 @@ declare const SysEmail: Omit<{
|
|
|
7595
7546
|
} | undefined;
|
|
7596
7547
|
readonly sortable?: boolean | undefined;
|
|
7597
7548
|
readonly inlineHelpText?: string | undefined;
|
|
7598
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7599
7549
|
readonly autonumberFormat?: string | undefined;
|
|
7600
7550
|
readonly index?: boolean | undefined;
|
|
7601
7551
|
readonly type: "text";
|
|
@@ -7614,6 +7564,7 @@ declare const SysEmail: Omit<{
|
|
|
7614
7564
|
readonly name?: string | undefined;
|
|
7615
7565
|
readonly precision?: number | undefined;
|
|
7616
7566
|
readonly required?: boolean | undefined;
|
|
7567
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7617
7568
|
readonly multiple?: boolean | undefined;
|
|
7618
7569
|
readonly dependencies?: string[] | undefined;
|
|
7619
7570
|
readonly externalId?: boolean | undefined;
|
|
@@ -7676,7 +7627,6 @@ declare const SysEmail: Omit<{
|
|
|
7676
7627
|
relationshipField?: string | undefined;
|
|
7677
7628
|
} | undefined;
|
|
7678
7629
|
readonly language?: string | undefined;
|
|
7679
|
-
readonly maxRating?: number | undefined;
|
|
7680
7630
|
readonly step?: number | undefined;
|
|
7681
7631
|
readonly currencyConfig?: {
|
|
7682
7632
|
precision: number;
|
|
@@ -7770,7 +7720,6 @@ declare const SysEmail: Omit<{
|
|
|
7770
7720
|
} | undefined;
|
|
7771
7721
|
readonly sortable?: boolean | undefined;
|
|
7772
7722
|
readonly inlineHelpText?: string | undefined;
|
|
7773
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7774
7723
|
readonly autonumberFormat?: string | undefined;
|
|
7775
7724
|
readonly index?: boolean | undefined;
|
|
7776
7725
|
readonly type: "text";
|
|
@@ -7789,6 +7738,7 @@ declare const SysEmail: Omit<{
|
|
|
7789
7738
|
readonly name?: string | undefined;
|
|
7790
7739
|
readonly precision?: number | undefined;
|
|
7791
7740
|
readonly required?: boolean | undefined;
|
|
7741
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7792
7742
|
readonly multiple?: boolean | undefined;
|
|
7793
7743
|
readonly dependencies?: string[] | undefined;
|
|
7794
7744
|
readonly externalId?: boolean | undefined;
|
|
@@ -7851,7 +7801,6 @@ declare const SysEmail: Omit<{
|
|
|
7851
7801
|
relationshipField?: string | undefined;
|
|
7852
7802
|
} | undefined;
|
|
7853
7803
|
readonly language?: string | undefined;
|
|
7854
|
-
readonly maxRating?: number | undefined;
|
|
7855
7804
|
readonly step?: number | undefined;
|
|
7856
7805
|
readonly currencyConfig?: {
|
|
7857
7806
|
precision: number;
|
|
@@ -7945,7 +7894,6 @@ declare const SysEmail: Omit<{
|
|
|
7945
7894
|
} | undefined;
|
|
7946
7895
|
readonly sortable?: boolean | undefined;
|
|
7947
7896
|
readonly inlineHelpText?: string | undefined;
|
|
7948
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7949
7897
|
readonly autonumberFormat?: string | undefined;
|
|
7950
7898
|
readonly index?: boolean | undefined;
|
|
7951
7899
|
readonly type: "textarea";
|
|
@@ -7964,6 +7912,7 @@ declare const SysEmail: Omit<{
|
|
|
7964
7912
|
readonly name?: string | undefined;
|
|
7965
7913
|
readonly precision?: number | undefined;
|
|
7966
7914
|
readonly required?: boolean | undefined;
|
|
7915
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7967
7916
|
readonly multiple?: boolean | undefined;
|
|
7968
7917
|
readonly dependencies?: string[] | undefined;
|
|
7969
7918
|
readonly externalId?: boolean | undefined;
|
|
@@ -8026,7 +7975,6 @@ declare const SysEmail: Omit<{
|
|
|
8026
7975
|
relationshipField?: string | undefined;
|
|
8027
7976
|
} | undefined;
|
|
8028
7977
|
readonly language?: string | undefined;
|
|
8029
|
-
readonly maxRating?: number | undefined;
|
|
8030
7978
|
readonly step?: number | undefined;
|
|
8031
7979
|
readonly currencyConfig?: {
|
|
8032
7980
|
precision: number;
|
|
@@ -8120,7 +8068,6 @@ declare const SysEmail: Omit<{
|
|
|
8120
8068
|
} | undefined;
|
|
8121
8069
|
readonly sortable?: boolean | undefined;
|
|
8122
8070
|
readonly inlineHelpText?: string | undefined;
|
|
8123
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8124
8071
|
readonly autonumberFormat?: string | undefined;
|
|
8125
8072
|
readonly index?: boolean | undefined;
|
|
8126
8073
|
readonly type: "textarea";
|
|
@@ -8139,6 +8086,7 @@ declare const SysEmail: Omit<{
|
|
|
8139
8086
|
readonly name?: string | undefined;
|
|
8140
8087
|
readonly precision?: number | undefined;
|
|
8141
8088
|
readonly required?: boolean | undefined;
|
|
8089
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8142
8090
|
readonly multiple?: boolean | undefined;
|
|
8143
8091
|
readonly dependencies?: string[] | undefined;
|
|
8144
8092
|
readonly externalId?: boolean | undefined;
|
|
@@ -8201,7 +8149,6 @@ declare const SysEmail: Omit<{
|
|
|
8201
8149
|
relationshipField?: string | undefined;
|
|
8202
8150
|
} | undefined;
|
|
8203
8151
|
readonly language?: string | undefined;
|
|
8204
|
-
readonly maxRating?: number | undefined;
|
|
8205
8152
|
readonly step?: number | undefined;
|
|
8206
8153
|
readonly currencyConfig?: {
|
|
8207
8154
|
precision: number;
|
|
@@ -8295,7 +8242,6 @@ declare const SysEmail: Omit<{
|
|
|
8295
8242
|
} | undefined;
|
|
8296
8243
|
readonly sortable?: boolean | undefined;
|
|
8297
8244
|
readonly inlineHelpText?: string | undefined;
|
|
8298
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8299
8245
|
readonly autonumberFormat?: string | undefined;
|
|
8300
8246
|
readonly index?: boolean | undefined;
|
|
8301
8247
|
readonly type: "select";
|
|
@@ -8314,6 +8260,7 @@ declare const SysEmail: Omit<{
|
|
|
8314
8260
|
readonly name?: string | undefined;
|
|
8315
8261
|
readonly precision?: number | undefined;
|
|
8316
8262
|
readonly required?: boolean | undefined;
|
|
8263
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8317
8264
|
readonly multiple?: boolean | undefined;
|
|
8318
8265
|
readonly dependencies?: string[] | undefined;
|
|
8319
8266
|
readonly externalId?: boolean | undefined;
|
|
@@ -8376,7 +8323,6 @@ declare const SysEmail: Omit<{
|
|
|
8376
8323
|
relationshipField?: string | undefined;
|
|
8377
8324
|
} | undefined;
|
|
8378
8325
|
readonly language?: string | undefined;
|
|
8379
|
-
readonly maxRating?: number | undefined;
|
|
8380
8326
|
readonly step?: number | undefined;
|
|
8381
8327
|
readonly currencyConfig?: {
|
|
8382
8328
|
precision: number;
|
|
@@ -8470,7 +8416,6 @@ declare const SysEmail: Omit<{
|
|
|
8470
8416
|
} | undefined;
|
|
8471
8417
|
readonly sortable?: boolean | undefined;
|
|
8472
8418
|
readonly inlineHelpText?: string | undefined;
|
|
8473
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8474
8419
|
readonly autonumberFormat?: string | undefined;
|
|
8475
8420
|
readonly index?: boolean | undefined;
|
|
8476
8421
|
readonly type: "textarea";
|
|
@@ -8489,6 +8434,7 @@ declare const SysEmail: Omit<{
|
|
|
8489
8434
|
readonly name?: string | undefined;
|
|
8490
8435
|
readonly precision?: number | undefined;
|
|
8491
8436
|
readonly required?: boolean | undefined;
|
|
8437
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8492
8438
|
readonly multiple?: boolean | undefined;
|
|
8493
8439
|
readonly dependencies?: string[] | undefined;
|
|
8494
8440
|
readonly externalId?: boolean | undefined;
|
|
@@ -8551,7 +8497,6 @@ declare const SysEmail: Omit<{
|
|
|
8551
8497
|
relationshipField?: string | undefined;
|
|
8552
8498
|
} | undefined;
|
|
8553
8499
|
readonly language?: string | undefined;
|
|
8554
|
-
readonly maxRating?: number | undefined;
|
|
8555
8500
|
readonly step?: number | undefined;
|
|
8556
8501
|
readonly currencyConfig?: {
|
|
8557
8502
|
precision: number;
|
|
@@ -8645,7 +8590,6 @@ declare const SysEmail: Omit<{
|
|
|
8645
8590
|
} | undefined;
|
|
8646
8591
|
readonly sortable?: boolean | undefined;
|
|
8647
8592
|
readonly inlineHelpText?: string | undefined;
|
|
8648
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8649
8593
|
readonly autonumberFormat?: string | undefined;
|
|
8650
8594
|
readonly index?: boolean | undefined;
|
|
8651
8595
|
readonly type: "number";
|
|
@@ -8664,6 +8608,7 @@ declare const SysEmail: Omit<{
|
|
|
8664
8608
|
readonly name?: string | undefined;
|
|
8665
8609
|
readonly precision?: number | undefined;
|
|
8666
8610
|
readonly required?: boolean | undefined;
|
|
8611
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8667
8612
|
readonly multiple?: boolean | undefined;
|
|
8668
8613
|
readonly dependencies?: string[] | undefined;
|
|
8669
8614
|
readonly externalId?: boolean | undefined;
|
|
@@ -8726,7 +8671,6 @@ declare const SysEmail: Omit<{
|
|
|
8726
8671
|
relationshipField?: string | undefined;
|
|
8727
8672
|
} | undefined;
|
|
8728
8673
|
readonly language?: string | undefined;
|
|
8729
|
-
readonly maxRating?: number | undefined;
|
|
8730
8674
|
readonly step?: number | undefined;
|
|
8731
8675
|
readonly currencyConfig?: {
|
|
8732
8676
|
precision: number;
|
|
@@ -8820,7 +8764,6 @@ declare const SysEmail: Omit<{
|
|
|
8820
8764
|
} | undefined;
|
|
8821
8765
|
readonly sortable?: boolean | undefined;
|
|
8822
8766
|
readonly inlineHelpText?: string | undefined;
|
|
8823
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8824
8767
|
readonly autonumberFormat?: string | undefined;
|
|
8825
8768
|
readonly index?: boolean | undefined;
|
|
8826
8769
|
readonly type: "datetime";
|
|
@@ -8839,6 +8782,7 @@ declare const SysEmail: Omit<{
|
|
|
8839
8782
|
readonly name?: string | undefined;
|
|
8840
8783
|
readonly precision?: number | undefined;
|
|
8841
8784
|
readonly required?: boolean | undefined;
|
|
8785
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8842
8786
|
readonly multiple?: boolean | undefined;
|
|
8843
8787
|
readonly dependencies?: string[] | undefined;
|
|
8844
8788
|
readonly externalId?: boolean | undefined;
|
|
@@ -8901,7 +8845,6 @@ declare const SysEmail: Omit<{
|
|
|
8901
8845
|
relationshipField?: string | undefined;
|
|
8902
8846
|
} | undefined;
|
|
8903
8847
|
readonly language?: string | undefined;
|
|
8904
|
-
readonly maxRating?: number | undefined;
|
|
8905
8848
|
readonly step?: number | undefined;
|
|
8906
8849
|
readonly currencyConfig?: {
|
|
8907
8850
|
precision: number;
|
|
@@ -8995,7 +8938,6 @@ declare const SysEmail: Omit<{
|
|
|
8995
8938
|
} | undefined;
|
|
8996
8939
|
readonly sortable?: boolean | undefined;
|
|
8997
8940
|
readonly inlineHelpText?: string | undefined;
|
|
8998
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8999
8941
|
readonly autonumberFormat?: string | undefined;
|
|
9000
8942
|
readonly index?: boolean | undefined;
|
|
9001
8943
|
readonly type: "text";
|
|
@@ -9014,6 +8956,7 @@ declare const SysEmail: Omit<{
|
|
|
9014
8956
|
readonly name?: string | undefined;
|
|
9015
8957
|
readonly precision?: number | undefined;
|
|
9016
8958
|
readonly required?: boolean | undefined;
|
|
8959
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9017
8960
|
readonly multiple?: boolean | undefined;
|
|
9018
8961
|
readonly dependencies?: string[] | undefined;
|
|
9019
8962
|
readonly externalId?: boolean | undefined;
|
|
@@ -9076,7 +9019,6 @@ declare const SysEmail: Omit<{
|
|
|
9076
9019
|
relationshipField?: string | undefined;
|
|
9077
9020
|
} | undefined;
|
|
9078
9021
|
readonly language?: string | undefined;
|
|
9079
|
-
readonly maxRating?: number | undefined;
|
|
9080
9022
|
readonly step?: number | undefined;
|
|
9081
9023
|
readonly currencyConfig?: {
|
|
9082
9024
|
precision: number;
|
|
@@ -9170,7 +9112,6 @@ declare const SysEmail: Omit<{
|
|
|
9170
9112
|
} | undefined;
|
|
9171
9113
|
readonly sortable?: boolean | undefined;
|
|
9172
9114
|
readonly inlineHelpText?: string | undefined;
|
|
9173
|
-
readonly caseSensitive?: boolean | undefined;
|
|
9174
9115
|
readonly autonumberFormat?: string | undefined;
|
|
9175
9116
|
readonly index?: boolean | undefined;
|
|
9176
9117
|
readonly type: "text";
|
|
@@ -9189,6 +9130,7 @@ declare const SysEmail: Omit<{
|
|
|
9189
9130
|
readonly name?: string | undefined;
|
|
9190
9131
|
readonly precision?: number | undefined;
|
|
9191
9132
|
readonly required?: boolean | undefined;
|
|
9133
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9192
9134
|
readonly multiple?: boolean | undefined;
|
|
9193
9135
|
readonly dependencies?: string[] | undefined;
|
|
9194
9136
|
readonly externalId?: boolean | undefined;
|
|
@@ -9251,7 +9193,6 @@ declare const SysEmail: Omit<{
|
|
|
9251
9193
|
relationshipField?: string | undefined;
|
|
9252
9194
|
} | undefined;
|
|
9253
9195
|
readonly language?: string | undefined;
|
|
9254
|
-
readonly maxRating?: number | undefined;
|
|
9255
9196
|
readonly step?: number | undefined;
|
|
9256
9197
|
readonly currencyConfig?: {
|
|
9257
9198
|
precision: number;
|
|
@@ -9345,7 +9286,6 @@ declare const SysEmail: Omit<{
|
|
|
9345
9286
|
} | undefined;
|
|
9346
9287
|
readonly sortable?: boolean | undefined;
|
|
9347
9288
|
readonly inlineHelpText?: string | undefined;
|
|
9348
|
-
readonly caseSensitive?: boolean | undefined;
|
|
9349
9289
|
readonly autonumberFormat?: string | undefined;
|
|
9350
9290
|
readonly index?: boolean | undefined;
|
|
9351
9291
|
readonly type: "lookup";
|
|
@@ -9364,6 +9304,7 @@ declare const SysEmail: Omit<{
|
|
|
9364
9304
|
readonly name?: string | undefined;
|
|
9365
9305
|
readonly precision?: number | undefined;
|
|
9366
9306
|
readonly required?: boolean | undefined;
|
|
9307
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9367
9308
|
readonly multiple?: boolean | undefined;
|
|
9368
9309
|
readonly dependencies?: string[] | undefined;
|
|
9369
9310
|
readonly externalId?: boolean | undefined;
|
|
@@ -9426,7 +9367,6 @@ declare const SysEmail: Omit<{
|
|
|
9426
9367
|
relationshipField?: string | undefined;
|
|
9427
9368
|
} | undefined;
|
|
9428
9369
|
readonly language?: string | undefined;
|
|
9429
|
-
readonly maxRating?: number | undefined;
|
|
9430
9370
|
readonly step?: number | undefined;
|
|
9431
9371
|
readonly currencyConfig?: {
|
|
9432
9372
|
precision: number;
|
|
@@ -9520,7 +9460,6 @@ declare const SysEmail: Omit<{
|
|
|
9520
9460
|
} | undefined;
|
|
9521
9461
|
readonly sortable?: boolean | undefined;
|
|
9522
9462
|
readonly inlineHelpText?: string | undefined;
|
|
9523
|
-
readonly caseSensitive?: boolean | undefined;
|
|
9524
9463
|
readonly autonumberFormat?: string | undefined;
|
|
9525
9464
|
readonly index?: boolean | undefined;
|
|
9526
9465
|
readonly type: "datetime";
|
|
@@ -9539,6 +9478,7 @@ declare const SysEmail: Omit<{
|
|
|
9539
9478
|
readonly name?: string | undefined;
|
|
9540
9479
|
readonly precision?: number | undefined;
|
|
9541
9480
|
readonly required?: boolean | undefined;
|
|
9481
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9542
9482
|
readonly multiple?: boolean | undefined;
|
|
9543
9483
|
readonly dependencies?: string[] | undefined;
|
|
9544
9484
|
readonly externalId?: boolean | undefined;
|
|
@@ -9601,7 +9541,6 @@ declare const SysEmail: Omit<{
|
|
|
9601
9541
|
relationshipField?: string | undefined;
|
|
9602
9542
|
} | undefined;
|
|
9603
9543
|
readonly language?: string | undefined;
|
|
9604
|
-
readonly maxRating?: number | undefined;
|
|
9605
9544
|
readonly step?: number | undefined;
|
|
9606
9545
|
readonly currencyConfig?: {
|
|
9607
9546
|
precision: number;
|
|
@@ -9695,7 +9634,6 @@ declare const SysEmail: Omit<{
|
|
|
9695
9634
|
} | undefined;
|
|
9696
9635
|
readonly sortable?: boolean | undefined;
|
|
9697
9636
|
readonly inlineHelpText?: string | undefined;
|
|
9698
|
-
readonly caseSensitive?: boolean | undefined;
|
|
9699
9637
|
readonly autonumberFormat?: string | undefined;
|
|
9700
9638
|
readonly index?: boolean | undefined;
|
|
9701
9639
|
readonly type: "datetime";
|
|
@@ -9731,7 +9669,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9731
9669
|
abstract: boolean;
|
|
9732
9670
|
datasource: string;
|
|
9733
9671
|
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";
|
|
9672
|
+
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
9673
|
required: boolean;
|
|
9736
9674
|
searchable: boolean;
|
|
9737
9675
|
multiple: boolean;
|
|
@@ -9805,6 +9743,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9805
9743
|
generatedBy?: string | undefined;
|
|
9806
9744
|
} | undefined;
|
|
9807
9745
|
} | undefined;
|
|
9746
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
9808
9747
|
summaryOperations?: {
|
|
9809
9748
|
object: string;
|
|
9810
9749
|
field: string;
|
|
@@ -9812,7 +9751,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9812
9751
|
relationshipField?: string | undefined;
|
|
9813
9752
|
} | undefined;
|
|
9814
9753
|
language?: string | undefined;
|
|
9815
|
-
maxRating?: number | undefined;
|
|
9816
9754
|
step?: number | undefined;
|
|
9817
9755
|
currencyConfig?: {
|
|
9818
9756
|
precision: number;
|
|
@@ -9942,7 +9880,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9942
9880
|
requiredPermissions?: string[] | undefined;
|
|
9943
9881
|
system?: boolean | undefined;
|
|
9944
9882
|
inlineHelpText?: string | undefined;
|
|
9945
|
-
caseSensitive?: boolean | undefined;
|
|
9946
9883
|
autonumberFormat?: string | undefined;
|
|
9947
9884
|
}>;
|
|
9948
9885
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -10030,12 +9967,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10030
9967
|
versionField: string;
|
|
10031
9968
|
retentionDays?: number | undefined;
|
|
10032
9969
|
} | undefined;
|
|
10033
|
-
partitioning?: {
|
|
10034
|
-
enabled: boolean;
|
|
10035
|
-
strategy: "hash" | "list" | "range";
|
|
10036
|
-
key: string;
|
|
10037
|
-
interval?: string | undefined;
|
|
10038
|
-
} | undefined;
|
|
10039
9970
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
10040
9971
|
activityMilestones?: {
|
|
10041
9972
|
field: string;
|
|
@@ -10366,7 +10297,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10366
10297
|
debounceMs?: number | undefined;
|
|
10367
10298
|
} | undefined;
|
|
10368
10299
|
}> | undefined;
|
|
10369
|
-
defaultDetailForm?: string | undefined;
|
|
10370
10300
|
searchableFields?: string[] | undefined;
|
|
10371
10301
|
search?: {
|
|
10372
10302
|
fields: string[];
|
|
@@ -10383,7 +10313,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10383
10313
|
trash: boolean;
|
|
10384
10314
|
mru: boolean;
|
|
10385
10315
|
clone: boolean;
|
|
10386
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
10316
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "get" | "update" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
10387
10317
|
} | undefined;
|
|
10388
10318
|
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
10389
10319
|
publicSharing?: {
|
|
@@ -10411,6 +10341,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10411
10341
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
10412
10342
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
10413
10343
|
target?: string | undefined;
|
|
10344
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
10414
10345
|
body?: {
|
|
10415
10346
|
language: "expression";
|
|
10416
10347
|
source: string;
|
|
@@ -10428,7 +10359,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10428
10359
|
field?: string | undefined;
|
|
10429
10360
|
objectOverride?: string | undefined;
|
|
10430
10361
|
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;
|
|
10362
|
+
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
10363
|
options?: {
|
|
10433
10364
|
label: string;
|
|
10434
10365
|
value: string;
|
|
@@ -10535,6 +10466,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10535
10466
|
readonly name?: string | undefined;
|
|
10536
10467
|
readonly precision?: number | undefined;
|
|
10537
10468
|
readonly required?: boolean | undefined;
|
|
10469
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10538
10470
|
readonly multiple?: boolean | undefined;
|
|
10539
10471
|
readonly dependencies?: string[] | undefined;
|
|
10540
10472
|
readonly externalId?: boolean | undefined;
|
|
@@ -10597,7 +10529,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10597
10529
|
relationshipField?: string | undefined;
|
|
10598
10530
|
} | undefined;
|
|
10599
10531
|
readonly language?: string | undefined;
|
|
10600
|
-
readonly maxRating?: number | undefined;
|
|
10601
10532
|
readonly step?: number | undefined;
|
|
10602
10533
|
readonly currencyConfig?: {
|
|
10603
10534
|
precision: number;
|
|
@@ -10691,7 +10622,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10691
10622
|
} | undefined;
|
|
10692
10623
|
readonly sortable?: boolean | undefined;
|
|
10693
10624
|
readonly inlineHelpText?: string | undefined;
|
|
10694
|
-
readonly caseSensitive?: boolean | undefined;
|
|
10695
10625
|
readonly autonumberFormat?: string | undefined;
|
|
10696
10626
|
readonly index?: boolean | undefined;
|
|
10697
10627
|
readonly type: "text";
|
|
@@ -10710,6 +10640,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10710
10640
|
readonly name?: string | undefined;
|
|
10711
10641
|
readonly precision?: number | undefined;
|
|
10712
10642
|
readonly required?: boolean | undefined;
|
|
10643
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10713
10644
|
readonly multiple?: boolean | undefined;
|
|
10714
10645
|
readonly dependencies?: string[] | undefined;
|
|
10715
10646
|
readonly externalId?: boolean | undefined;
|
|
@@ -10772,7 +10703,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10772
10703
|
relationshipField?: string | undefined;
|
|
10773
10704
|
} | undefined;
|
|
10774
10705
|
readonly language?: string | undefined;
|
|
10775
|
-
readonly maxRating?: number | undefined;
|
|
10776
10706
|
readonly step?: number | undefined;
|
|
10777
10707
|
readonly currencyConfig?: {
|
|
10778
10708
|
precision: number;
|
|
@@ -10866,7 +10796,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10866
10796
|
} | undefined;
|
|
10867
10797
|
readonly sortable?: boolean | undefined;
|
|
10868
10798
|
readonly inlineHelpText?: string | undefined;
|
|
10869
|
-
readonly caseSensitive?: boolean | undefined;
|
|
10870
10799
|
readonly autonumberFormat?: string | undefined;
|
|
10871
10800
|
readonly index?: boolean | undefined;
|
|
10872
10801
|
readonly type: "text";
|
|
@@ -10885,6 +10814,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10885
10814
|
readonly name?: string | undefined;
|
|
10886
10815
|
readonly precision?: number | undefined;
|
|
10887
10816
|
readonly required?: boolean | undefined;
|
|
10817
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
10888
10818
|
readonly multiple?: boolean | undefined;
|
|
10889
10819
|
readonly dependencies?: string[] | undefined;
|
|
10890
10820
|
readonly externalId?: boolean | undefined;
|
|
@@ -10947,7 +10877,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10947
10877
|
relationshipField?: string | undefined;
|
|
10948
10878
|
} | undefined;
|
|
10949
10879
|
readonly language?: string | undefined;
|
|
10950
|
-
readonly maxRating?: number | undefined;
|
|
10951
10880
|
readonly step?: number | undefined;
|
|
10952
10881
|
readonly currencyConfig?: {
|
|
10953
10882
|
precision: number;
|
|
@@ -11041,7 +10970,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11041
10970
|
} | undefined;
|
|
11042
10971
|
readonly sortable?: boolean | undefined;
|
|
11043
10972
|
readonly inlineHelpText?: string | undefined;
|
|
11044
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11045
10973
|
readonly autonumberFormat?: string | undefined;
|
|
11046
10974
|
readonly index?: boolean | undefined;
|
|
11047
10975
|
readonly type: "text";
|
|
@@ -11060,6 +10988,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11060
10988
|
readonly name?: string | undefined;
|
|
11061
10989
|
readonly precision?: number | undefined;
|
|
11062
10990
|
readonly required?: boolean | undefined;
|
|
10991
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11063
10992
|
readonly multiple?: boolean | undefined;
|
|
11064
10993
|
readonly dependencies?: string[] | undefined;
|
|
11065
10994
|
readonly externalId?: boolean | undefined;
|
|
@@ -11122,7 +11051,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11122
11051
|
relationshipField?: string | undefined;
|
|
11123
11052
|
} | undefined;
|
|
11124
11053
|
readonly language?: string | undefined;
|
|
11125
|
-
readonly maxRating?: number | undefined;
|
|
11126
11054
|
readonly step?: number | undefined;
|
|
11127
11055
|
readonly currencyConfig?: {
|
|
11128
11056
|
precision: number;
|
|
@@ -11216,7 +11144,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11216
11144
|
} | undefined;
|
|
11217
11145
|
readonly sortable?: boolean | undefined;
|
|
11218
11146
|
readonly inlineHelpText?: string | undefined;
|
|
11219
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11220
11147
|
readonly autonumberFormat?: string | undefined;
|
|
11221
11148
|
readonly index?: boolean | undefined;
|
|
11222
11149
|
readonly type: "select";
|
|
@@ -11235,6 +11162,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11235
11162
|
readonly name?: string | undefined;
|
|
11236
11163
|
readonly precision?: number | undefined;
|
|
11237
11164
|
readonly required?: boolean | undefined;
|
|
11165
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11238
11166
|
readonly multiple?: boolean | undefined;
|
|
11239
11167
|
readonly dependencies?: string[] | undefined;
|
|
11240
11168
|
readonly externalId?: boolean | undefined;
|
|
@@ -11297,7 +11225,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11297
11225
|
relationshipField?: string | undefined;
|
|
11298
11226
|
} | undefined;
|
|
11299
11227
|
readonly language?: string | undefined;
|
|
11300
|
-
readonly maxRating?: number | undefined;
|
|
11301
11228
|
readonly step?: number | undefined;
|
|
11302
11229
|
readonly currencyConfig?: {
|
|
11303
11230
|
precision: number;
|
|
@@ -11391,7 +11318,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11391
11318
|
} | undefined;
|
|
11392
11319
|
readonly sortable?: boolean | undefined;
|
|
11393
11320
|
readonly inlineHelpText?: string | undefined;
|
|
11394
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11395
11321
|
readonly autonumberFormat?: string | undefined;
|
|
11396
11322
|
readonly index?: boolean | undefined;
|
|
11397
11323
|
readonly type: "text";
|
|
@@ -11410,6 +11336,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11410
11336
|
readonly name?: string | undefined;
|
|
11411
11337
|
readonly precision?: number | undefined;
|
|
11412
11338
|
readonly required?: boolean | undefined;
|
|
11339
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11413
11340
|
readonly multiple?: boolean | undefined;
|
|
11414
11341
|
readonly dependencies?: string[] | undefined;
|
|
11415
11342
|
readonly externalId?: boolean | undefined;
|
|
@@ -11472,7 +11399,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11472
11399
|
relationshipField?: string | undefined;
|
|
11473
11400
|
} | undefined;
|
|
11474
11401
|
readonly language?: string | undefined;
|
|
11475
|
-
readonly maxRating?: number | undefined;
|
|
11476
11402
|
readonly step?: number | undefined;
|
|
11477
11403
|
readonly currencyConfig?: {
|
|
11478
11404
|
precision: number;
|
|
@@ -11566,7 +11492,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11566
11492
|
} | undefined;
|
|
11567
11493
|
readonly sortable?: boolean | undefined;
|
|
11568
11494
|
readonly inlineHelpText?: string | undefined;
|
|
11569
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11570
11495
|
readonly autonumberFormat?: string | undefined;
|
|
11571
11496
|
readonly index?: boolean | undefined;
|
|
11572
11497
|
readonly type: "textarea";
|
|
@@ -11585,6 +11510,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11585
11510
|
readonly name?: string | undefined;
|
|
11586
11511
|
readonly precision?: number | undefined;
|
|
11587
11512
|
readonly required?: boolean | undefined;
|
|
11513
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11588
11514
|
readonly multiple?: boolean | undefined;
|
|
11589
11515
|
readonly dependencies?: string[] | undefined;
|
|
11590
11516
|
readonly externalId?: boolean | undefined;
|
|
@@ -11647,7 +11573,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11647
11573
|
relationshipField?: string | undefined;
|
|
11648
11574
|
} | undefined;
|
|
11649
11575
|
readonly language?: string | undefined;
|
|
11650
|
-
readonly maxRating?: number | undefined;
|
|
11651
11576
|
readonly step?: number | undefined;
|
|
11652
11577
|
readonly currencyConfig?: {
|
|
11653
11578
|
precision: number;
|
|
@@ -11741,7 +11666,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11741
11666
|
} | undefined;
|
|
11742
11667
|
readonly sortable?: boolean | undefined;
|
|
11743
11668
|
readonly inlineHelpText?: string | undefined;
|
|
11744
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11745
11669
|
readonly autonumberFormat?: string | undefined;
|
|
11746
11670
|
readonly index?: boolean | undefined;
|
|
11747
11671
|
readonly type: "text";
|
|
@@ -11760,6 +11684,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11760
11684
|
readonly name?: string | undefined;
|
|
11761
11685
|
readonly precision?: number | undefined;
|
|
11762
11686
|
readonly required?: boolean | undefined;
|
|
11687
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11763
11688
|
readonly multiple?: boolean | undefined;
|
|
11764
11689
|
readonly dependencies?: string[] | undefined;
|
|
11765
11690
|
readonly externalId?: boolean | undefined;
|
|
@@ -11822,7 +11747,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11822
11747
|
relationshipField?: string | undefined;
|
|
11823
11748
|
} | undefined;
|
|
11824
11749
|
readonly language?: string | undefined;
|
|
11825
|
-
readonly maxRating?: number | undefined;
|
|
11826
11750
|
readonly step?: number | undefined;
|
|
11827
11751
|
readonly currencyConfig?: {
|
|
11828
11752
|
precision: number;
|
|
@@ -11916,7 +11840,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11916
11840
|
} | undefined;
|
|
11917
11841
|
readonly sortable?: boolean | undefined;
|
|
11918
11842
|
readonly inlineHelpText?: string | undefined;
|
|
11919
|
-
readonly caseSensitive?: boolean | undefined;
|
|
11920
11843
|
readonly autonumberFormat?: string | undefined;
|
|
11921
11844
|
readonly index?: boolean | undefined;
|
|
11922
11845
|
readonly type: "textarea";
|
|
@@ -11935,6 +11858,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11935
11858
|
readonly name?: string | undefined;
|
|
11936
11859
|
readonly precision?: number | undefined;
|
|
11937
11860
|
readonly required?: boolean | undefined;
|
|
11861
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
11938
11862
|
readonly multiple?: boolean | undefined;
|
|
11939
11863
|
readonly dependencies?: string[] | undefined;
|
|
11940
11864
|
readonly externalId?: boolean | undefined;
|
|
@@ -11997,7 +11921,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11997
11921
|
relationshipField?: string | undefined;
|
|
11998
11922
|
} | undefined;
|
|
11999
11923
|
readonly language?: string | undefined;
|
|
12000
|
-
readonly maxRating?: number | undefined;
|
|
12001
11924
|
readonly step?: number | undefined;
|
|
12002
11925
|
readonly currencyConfig?: {
|
|
12003
11926
|
precision: number;
|
|
@@ -12091,7 +12014,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12091
12014
|
} | undefined;
|
|
12092
12015
|
readonly sortable?: boolean | undefined;
|
|
12093
12016
|
readonly inlineHelpText?: string | undefined;
|
|
12094
|
-
readonly caseSensitive?: boolean | undefined;
|
|
12095
12017
|
readonly autonumberFormat?: string | undefined;
|
|
12096
12018
|
readonly index?: boolean | undefined;
|
|
12097
12019
|
readonly type: "textarea";
|
|
@@ -12110,6 +12032,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12110
12032
|
readonly name?: string | undefined;
|
|
12111
12033
|
readonly precision?: number | undefined;
|
|
12112
12034
|
readonly required?: boolean | undefined;
|
|
12035
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12113
12036
|
readonly multiple?: boolean | undefined;
|
|
12114
12037
|
readonly dependencies?: string[] | undefined;
|
|
12115
12038
|
readonly externalId?: boolean | undefined;
|
|
@@ -12172,7 +12095,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12172
12095
|
relationshipField?: string | undefined;
|
|
12173
12096
|
} | undefined;
|
|
12174
12097
|
readonly language?: string | undefined;
|
|
12175
|
-
readonly maxRating?: number | undefined;
|
|
12176
12098
|
readonly step?: number | undefined;
|
|
12177
12099
|
readonly currencyConfig?: {
|
|
12178
12100
|
precision: number;
|
|
@@ -12266,7 +12188,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12266
12188
|
} | undefined;
|
|
12267
12189
|
readonly sortable?: boolean | undefined;
|
|
12268
12190
|
readonly inlineHelpText?: string | undefined;
|
|
12269
|
-
readonly caseSensitive?: boolean | undefined;
|
|
12270
12191
|
readonly autonumberFormat?: string | undefined;
|
|
12271
12192
|
readonly index?: boolean | undefined;
|
|
12272
12193
|
readonly type: "text";
|
|
@@ -12285,6 +12206,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12285
12206
|
readonly name?: string | undefined;
|
|
12286
12207
|
readonly precision?: number | undefined;
|
|
12287
12208
|
readonly required?: boolean | undefined;
|
|
12209
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12288
12210
|
readonly multiple?: boolean | undefined;
|
|
12289
12211
|
readonly dependencies?: string[] | undefined;
|
|
12290
12212
|
readonly externalId?: boolean | undefined;
|
|
@@ -12347,7 +12269,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12347
12269
|
relationshipField?: string | undefined;
|
|
12348
12270
|
} | undefined;
|
|
12349
12271
|
readonly language?: string | undefined;
|
|
12350
|
-
readonly maxRating?: number | undefined;
|
|
12351
12272
|
readonly step?: number | undefined;
|
|
12352
12273
|
readonly currencyConfig?: {
|
|
12353
12274
|
precision: number;
|
|
@@ -12441,7 +12362,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12441
12362
|
} | undefined;
|
|
12442
12363
|
readonly sortable?: boolean | undefined;
|
|
12443
12364
|
readonly inlineHelpText?: string | undefined;
|
|
12444
|
-
readonly caseSensitive?: boolean | undefined;
|
|
12445
12365
|
readonly autonumberFormat?: string | undefined;
|
|
12446
12366
|
readonly index?: boolean | undefined;
|
|
12447
12367
|
readonly type: "text";
|
|
@@ -12460,6 +12380,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12460
12380
|
readonly name?: string | undefined;
|
|
12461
12381
|
readonly precision?: number | undefined;
|
|
12462
12382
|
readonly required?: boolean | undefined;
|
|
12383
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12463
12384
|
readonly multiple?: boolean | undefined;
|
|
12464
12385
|
readonly dependencies?: string[] | undefined;
|
|
12465
12386
|
readonly externalId?: boolean | undefined;
|
|
@@ -12522,7 +12443,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12522
12443
|
relationshipField?: string | undefined;
|
|
12523
12444
|
} | undefined;
|
|
12524
12445
|
readonly language?: string | undefined;
|
|
12525
|
-
readonly maxRating?: number | undefined;
|
|
12526
12446
|
readonly step?: number | undefined;
|
|
12527
12447
|
readonly currencyConfig?: {
|
|
12528
12448
|
precision: number;
|
|
@@ -12616,7 +12536,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12616
12536
|
} | undefined;
|
|
12617
12537
|
readonly sortable?: boolean | undefined;
|
|
12618
12538
|
readonly inlineHelpText?: string | undefined;
|
|
12619
|
-
readonly caseSensitive?: boolean | undefined;
|
|
12620
12539
|
readonly autonumberFormat?: string | undefined;
|
|
12621
12540
|
readonly index?: boolean | undefined;
|
|
12622
12541
|
readonly type: "text";
|
|
@@ -12635,6 +12554,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12635
12554
|
readonly name?: string | undefined;
|
|
12636
12555
|
readonly precision?: number | undefined;
|
|
12637
12556
|
readonly required?: boolean | undefined;
|
|
12557
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12638
12558
|
readonly multiple?: boolean | undefined;
|
|
12639
12559
|
readonly dependencies?: string[] | undefined;
|
|
12640
12560
|
readonly externalId?: boolean | undefined;
|
|
@@ -12697,7 +12617,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12697
12617
|
relationshipField?: string | undefined;
|
|
12698
12618
|
} | undefined;
|
|
12699
12619
|
readonly language?: string | undefined;
|
|
12700
|
-
readonly maxRating?: number | undefined;
|
|
12701
12620
|
readonly step?: number | undefined;
|
|
12702
12621
|
readonly currencyConfig?: {
|
|
12703
12622
|
precision: number;
|
|
@@ -12791,7 +12710,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12791
12710
|
} | undefined;
|
|
12792
12711
|
readonly sortable?: boolean | undefined;
|
|
12793
12712
|
readonly inlineHelpText?: string | undefined;
|
|
12794
|
-
readonly caseSensitive?: boolean | undefined;
|
|
12795
12713
|
readonly autonumberFormat?: string | undefined;
|
|
12796
12714
|
readonly index?: boolean | undefined;
|
|
12797
12715
|
readonly type: "boolean";
|
|
@@ -12810,6 +12728,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12810
12728
|
readonly name?: string | undefined;
|
|
12811
12729
|
readonly precision?: number | undefined;
|
|
12812
12730
|
readonly required?: boolean | undefined;
|
|
12731
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12813
12732
|
readonly multiple?: boolean | undefined;
|
|
12814
12733
|
readonly dependencies?: string[] | undefined;
|
|
12815
12734
|
readonly externalId?: boolean | undefined;
|
|
@@ -12872,7 +12791,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12872
12791
|
relationshipField?: string | undefined;
|
|
12873
12792
|
} | undefined;
|
|
12874
12793
|
readonly language?: string | undefined;
|
|
12875
|
-
readonly maxRating?: number | undefined;
|
|
12876
12794
|
readonly step?: number | undefined;
|
|
12877
12795
|
readonly currencyConfig?: {
|
|
12878
12796
|
precision: number;
|
|
@@ -12966,7 +12884,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12966
12884
|
} | undefined;
|
|
12967
12885
|
readonly sortable?: boolean | undefined;
|
|
12968
12886
|
readonly inlineHelpText?: string | undefined;
|
|
12969
|
-
readonly caseSensitive?: boolean | undefined;
|
|
12970
12887
|
readonly autonumberFormat?: string | undefined;
|
|
12971
12888
|
readonly index?: boolean | undefined;
|
|
12972
12889
|
readonly type: "boolean";
|
|
@@ -12991,6 +12908,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12991
12908
|
readonly name?: string | undefined;
|
|
12992
12909
|
readonly precision?: number | undefined;
|
|
12993
12910
|
readonly required?: boolean | undefined;
|
|
12911
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
12994
12912
|
readonly multiple?: boolean | undefined;
|
|
12995
12913
|
readonly dependencies?: string[] | undefined;
|
|
12996
12914
|
readonly externalId?: boolean | undefined;
|
|
@@ -13053,7 +12971,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
13053
12971
|
relationshipField?: string | undefined;
|
|
13054
12972
|
} | undefined;
|
|
13055
12973
|
readonly language?: string | undefined;
|
|
13056
|
-
readonly maxRating?: number | undefined;
|
|
13057
12974
|
readonly step?: number | undefined;
|
|
13058
12975
|
readonly currencyConfig?: {
|
|
13059
12976
|
precision: number;
|
|
@@ -13147,7 +13064,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
13147
13064
|
} | undefined;
|
|
13148
13065
|
readonly sortable?: boolean | undefined;
|
|
13149
13066
|
readonly inlineHelpText?: string | undefined;
|
|
13150
|
-
readonly caseSensitive?: boolean | undefined;
|
|
13151
13067
|
readonly autonumberFormat?: string | undefined;
|
|
13152
13068
|
readonly index?: boolean | undefined;
|
|
13153
13069
|
readonly type: "textarea";
|
|
@@ -13166,6 +13082,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
13166
13082
|
readonly name?: string | undefined;
|
|
13167
13083
|
readonly precision?: number | undefined;
|
|
13168
13084
|
readonly required?: boolean | undefined;
|
|
13085
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13169
13086
|
readonly multiple?: boolean | undefined;
|
|
13170
13087
|
readonly dependencies?: string[] | undefined;
|
|
13171
13088
|
readonly externalId?: boolean | undefined;
|
|
@@ -13228,7 +13145,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
13228
13145
|
relationshipField?: string | undefined;
|
|
13229
13146
|
} | undefined;
|
|
13230
13147
|
readonly language?: string | undefined;
|
|
13231
|
-
readonly maxRating?: number | undefined;
|
|
13232
13148
|
readonly step?: number | undefined;
|
|
13233
13149
|
readonly currencyConfig?: {
|
|
13234
13150
|
precision: number;
|
|
@@ -13322,7 +13238,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
13322
13238
|
} | undefined;
|
|
13323
13239
|
readonly sortable?: boolean | undefined;
|
|
13324
13240
|
readonly inlineHelpText?: string | undefined;
|
|
13325
|
-
readonly caseSensitive?: boolean | undefined;
|
|
13326
13241
|
readonly autonumberFormat?: string | undefined;
|
|
13327
13242
|
readonly index?: boolean | undefined;
|
|
13328
13243
|
readonly type: "datetime";
|
|
@@ -13341,6 +13256,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
13341
13256
|
readonly name?: string | undefined;
|
|
13342
13257
|
readonly precision?: number | undefined;
|
|
13343
13258
|
readonly required?: boolean | undefined;
|
|
13259
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13344
13260
|
readonly multiple?: boolean | undefined;
|
|
13345
13261
|
readonly dependencies?: string[] | undefined;
|
|
13346
13262
|
readonly externalId?: boolean | undefined;
|
|
@@ -13403,7 +13319,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
13403
13319
|
relationshipField?: string | undefined;
|
|
13404
13320
|
} | undefined;
|
|
13405
13321
|
readonly language?: string | undefined;
|
|
13406
|
-
readonly maxRating?: number | undefined;
|
|
13407
13322
|
readonly step?: number | undefined;
|
|
13408
13323
|
readonly currencyConfig?: {
|
|
13409
13324
|
precision: number;
|
|
@@ -13497,7 +13412,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
13497
13412
|
} | undefined;
|
|
13498
13413
|
readonly sortable?: boolean | undefined;
|
|
13499
13414
|
readonly inlineHelpText?: string | undefined;
|
|
13500
|
-
readonly caseSensitive?: boolean | undefined;
|
|
13501
13415
|
readonly autonumberFormat?: string | undefined;
|
|
13502
13416
|
readonly index?: boolean | undefined;
|
|
13503
13417
|
readonly type: "datetime";
|
|
@@ -13541,7 +13455,7 @@ declare const SysSavedReport: Omit<{
|
|
|
13541
13455
|
abstract: boolean;
|
|
13542
13456
|
datasource: string;
|
|
13543
13457
|
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";
|
|
13458
|
+
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
13459
|
required: boolean;
|
|
13546
13460
|
searchable: boolean;
|
|
13547
13461
|
multiple: boolean;
|
|
@@ -13615,6 +13529,7 @@ declare const SysSavedReport: Omit<{
|
|
|
13615
13529
|
generatedBy?: string | undefined;
|
|
13616
13530
|
} | undefined;
|
|
13617
13531
|
} | undefined;
|
|
13532
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
13618
13533
|
summaryOperations?: {
|
|
13619
13534
|
object: string;
|
|
13620
13535
|
field: string;
|
|
@@ -13622,7 +13537,6 @@ declare const SysSavedReport: Omit<{
|
|
|
13622
13537
|
relationshipField?: string | undefined;
|
|
13623
13538
|
} | undefined;
|
|
13624
13539
|
language?: string | undefined;
|
|
13625
|
-
maxRating?: number | undefined;
|
|
13626
13540
|
step?: number | undefined;
|
|
13627
13541
|
currencyConfig?: {
|
|
13628
13542
|
precision: number;
|
|
@@ -13752,7 +13666,6 @@ declare const SysSavedReport: Omit<{
|
|
|
13752
13666
|
requiredPermissions?: string[] | undefined;
|
|
13753
13667
|
system?: boolean | undefined;
|
|
13754
13668
|
inlineHelpText?: string | undefined;
|
|
13755
|
-
caseSensitive?: boolean | undefined;
|
|
13756
13669
|
autonumberFormat?: string | undefined;
|
|
13757
13670
|
}>;
|
|
13758
13671
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -13840,12 +13753,6 @@ declare const SysSavedReport: Omit<{
|
|
|
13840
13753
|
versionField: string;
|
|
13841
13754
|
retentionDays?: number | undefined;
|
|
13842
13755
|
} | undefined;
|
|
13843
|
-
partitioning?: {
|
|
13844
|
-
enabled: boolean;
|
|
13845
|
-
strategy: "hash" | "list" | "range";
|
|
13846
|
-
key: string;
|
|
13847
|
-
interval?: string | undefined;
|
|
13848
|
-
} | undefined;
|
|
13849
13756
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
13850
13757
|
activityMilestones?: {
|
|
13851
13758
|
field: string;
|
|
@@ -14176,7 +14083,6 @@ declare const SysSavedReport: Omit<{
|
|
|
14176
14083
|
debounceMs?: number | undefined;
|
|
14177
14084
|
} | undefined;
|
|
14178
14085
|
}> | undefined;
|
|
14179
|
-
defaultDetailForm?: string | undefined;
|
|
14180
14086
|
searchableFields?: string[] | undefined;
|
|
14181
14087
|
search?: {
|
|
14182
14088
|
fields: string[];
|
|
@@ -14193,7 +14099,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14193
14099
|
trash: boolean;
|
|
14194
14100
|
mru: boolean;
|
|
14195
14101
|
clone: boolean;
|
|
14196
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
14102
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "get" | "update" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
14197
14103
|
} | undefined;
|
|
14198
14104
|
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
14199
14105
|
publicSharing?: {
|
|
@@ -14221,6 +14127,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14221
14127
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
14222
14128
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
14223
14129
|
target?: string | undefined;
|
|
14130
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
14224
14131
|
body?: {
|
|
14225
14132
|
language: "expression";
|
|
14226
14133
|
source: string;
|
|
@@ -14238,7 +14145,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14238
14145
|
field?: string | undefined;
|
|
14239
14146
|
objectOverride?: string | undefined;
|
|
14240
14147
|
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;
|
|
14148
|
+
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
14149
|
options?: {
|
|
14243
14150
|
label: string;
|
|
14244
14151
|
value: string;
|
|
@@ -14345,6 +14252,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14345
14252
|
readonly name?: string | undefined;
|
|
14346
14253
|
readonly precision?: number | undefined;
|
|
14347
14254
|
readonly required?: boolean | undefined;
|
|
14255
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14348
14256
|
readonly multiple?: boolean | undefined;
|
|
14349
14257
|
readonly dependencies?: string[] | undefined;
|
|
14350
14258
|
readonly externalId?: boolean | undefined;
|
|
@@ -14407,7 +14315,6 @@ declare const SysSavedReport: Omit<{
|
|
|
14407
14315
|
relationshipField?: string | undefined;
|
|
14408
14316
|
} | undefined;
|
|
14409
14317
|
readonly language?: string | undefined;
|
|
14410
|
-
readonly maxRating?: number | undefined;
|
|
14411
14318
|
readonly step?: number | undefined;
|
|
14412
14319
|
readonly currencyConfig?: {
|
|
14413
14320
|
precision: number;
|
|
@@ -14501,7 +14408,6 @@ declare const SysSavedReport: Omit<{
|
|
|
14501
14408
|
} | undefined;
|
|
14502
14409
|
readonly sortable?: boolean | undefined;
|
|
14503
14410
|
readonly inlineHelpText?: string | undefined;
|
|
14504
|
-
readonly caseSensitive?: boolean | undefined;
|
|
14505
14411
|
readonly autonumberFormat?: string | undefined;
|
|
14506
14412
|
readonly index?: boolean | undefined;
|
|
14507
14413
|
readonly type: "text";
|
|
@@ -14520,6 +14426,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14520
14426
|
readonly name?: string | undefined;
|
|
14521
14427
|
readonly precision?: number | undefined;
|
|
14522
14428
|
readonly required?: boolean | undefined;
|
|
14429
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14523
14430
|
readonly multiple?: boolean | undefined;
|
|
14524
14431
|
readonly dependencies?: string[] | undefined;
|
|
14525
14432
|
readonly externalId?: boolean | undefined;
|
|
@@ -14582,7 +14489,6 @@ declare const SysSavedReport: Omit<{
|
|
|
14582
14489
|
relationshipField?: string | undefined;
|
|
14583
14490
|
} | undefined;
|
|
14584
14491
|
readonly language?: string | undefined;
|
|
14585
|
-
readonly maxRating?: number | undefined;
|
|
14586
14492
|
readonly step?: number | undefined;
|
|
14587
14493
|
readonly currencyConfig?: {
|
|
14588
14494
|
precision: number;
|
|
@@ -14676,7 +14582,6 @@ declare const SysSavedReport: Omit<{
|
|
|
14676
14582
|
} | undefined;
|
|
14677
14583
|
readonly sortable?: boolean | undefined;
|
|
14678
14584
|
readonly inlineHelpText?: string | undefined;
|
|
14679
|
-
readonly caseSensitive?: boolean | undefined;
|
|
14680
14585
|
readonly autonumberFormat?: string | undefined;
|
|
14681
14586
|
readonly index?: boolean | undefined;
|
|
14682
14587
|
readonly type: "text";
|
|
@@ -14695,6 +14600,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14695
14600
|
readonly name?: string | undefined;
|
|
14696
14601
|
readonly precision?: number | undefined;
|
|
14697
14602
|
readonly required?: boolean | undefined;
|
|
14603
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14698
14604
|
readonly multiple?: boolean | undefined;
|
|
14699
14605
|
readonly dependencies?: string[] | undefined;
|
|
14700
14606
|
readonly externalId?: boolean | undefined;
|
|
@@ -14757,7 +14663,6 @@ declare const SysSavedReport: Omit<{
|
|
|
14757
14663
|
relationshipField?: string | undefined;
|
|
14758
14664
|
} | undefined;
|
|
14759
14665
|
readonly language?: string | undefined;
|
|
14760
|
-
readonly maxRating?: number | undefined;
|
|
14761
14666
|
readonly step?: number | undefined;
|
|
14762
14667
|
readonly currencyConfig?: {
|
|
14763
14668
|
precision: number;
|
|
@@ -14851,7 +14756,6 @@ declare const SysSavedReport: Omit<{
|
|
|
14851
14756
|
} | undefined;
|
|
14852
14757
|
readonly sortable?: boolean | undefined;
|
|
14853
14758
|
readonly inlineHelpText?: string | undefined;
|
|
14854
|
-
readonly caseSensitive?: boolean | undefined;
|
|
14855
14759
|
readonly autonumberFormat?: string | undefined;
|
|
14856
14760
|
readonly index?: boolean | undefined;
|
|
14857
14761
|
readonly type: "textarea";
|
|
@@ -14870,6 +14774,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14870
14774
|
readonly name?: string | undefined;
|
|
14871
14775
|
readonly precision?: number | undefined;
|
|
14872
14776
|
readonly required?: boolean | undefined;
|
|
14777
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
14873
14778
|
readonly multiple?: boolean | undefined;
|
|
14874
14779
|
readonly dependencies?: string[] | undefined;
|
|
14875
14780
|
readonly externalId?: boolean | undefined;
|
|
@@ -14932,7 +14837,6 @@ declare const SysSavedReport: Omit<{
|
|
|
14932
14837
|
relationshipField?: string | undefined;
|
|
14933
14838
|
} | undefined;
|
|
14934
14839
|
readonly language?: string | undefined;
|
|
14935
|
-
readonly maxRating?: number | undefined;
|
|
14936
14840
|
readonly step?: number | undefined;
|
|
14937
14841
|
readonly currencyConfig?: {
|
|
14938
14842
|
precision: number;
|
|
@@ -15026,7 +14930,6 @@ declare const SysSavedReport: Omit<{
|
|
|
15026
14930
|
} | undefined;
|
|
15027
14931
|
readonly sortable?: boolean | undefined;
|
|
15028
14932
|
readonly inlineHelpText?: string | undefined;
|
|
15029
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15030
14933
|
readonly autonumberFormat?: string | undefined;
|
|
15031
14934
|
readonly index?: boolean | undefined;
|
|
15032
14935
|
readonly type: "text";
|
|
@@ -15045,6 +14948,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15045
14948
|
readonly name?: string | undefined;
|
|
15046
14949
|
readonly precision?: number | undefined;
|
|
15047
14950
|
readonly required?: boolean | undefined;
|
|
14951
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15048
14952
|
readonly multiple?: boolean | undefined;
|
|
15049
14953
|
readonly dependencies?: string[] | undefined;
|
|
15050
14954
|
readonly externalId?: boolean | undefined;
|
|
@@ -15107,7 +15011,6 @@ declare const SysSavedReport: Omit<{
|
|
|
15107
15011
|
relationshipField?: string | undefined;
|
|
15108
15012
|
} | undefined;
|
|
15109
15013
|
readonly language?: string | undefined;
|
|
15110
|
-
readonly maxRating?: number | undefined;
|
|
15111
15014
|
readonly step?: number | undefined;
|
|
15112
15015
|
readonly currencyConfig?: {
|
|
15113
15016
|
precision: number;
|
|
@@ -15201,7 +15104,6 @@ declare const SysSavedReport: Omit<{
|
|
|
15201
15104
|
} | undefined;
|
|
15202
15105
|
readonly sortable?: boolean | undefined;
|
|
15203
15106
|
readonly inlineHelpText?: string | undefined;
|
|
15204
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15205
15107
|
readonly autonumberFormat?: string | undefined;
|
|
15206
15108
|
readonly index?: boolean | undefined;
|
|
15207
15109
|
readonly type: "textarea";
|
|
@@ -15220,6 +15122,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15220
15122
|
readonly name?: string | undefined;
|
|
15221
15123
|
readonly precision?: number | undefined;
|
|
15222
15124
|
readonly required?: boolean | undefined;
|
|
15125
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15223
15126
|
readonly multiple?: boolean | undefined;
|
|
15224
15127
|
readonly dependencies?: string[] | undefined;
|
|
15225
15128
|
readonly externalId?: boolean | undefined;
|
|
@@ -15282,7 +15185,6 @@ declare const SysSavedReport: Omit<{
|
|
|
15282
15185
|
relationshipField?: string | undefined;
|
|
15283
15186
|
} | undefined;
|
|
15284
15187
|
readonly language?: string | undefined;
|
|
15285
|
-
readonly maxRating?: number | undefined;
|
|
15286
15188
|
readonly step?: number | undefined;
|
|
15287
15189
|
readonly currencyConfig?: {
|
|
15288
15190
|
precision: number;
|
|
@@ -15376,7 +15278,6 @@ declare const SysSavedReport: Omit<{
|
|
|
15376
15278
|
} | undefined;
|
|
15377
15279
|
readonly sortable?: boolean | undefined;
|
|
15378
15280
|
readonly inlineHelpText?: string | undefined;
|
|
15379
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15380
15281
|
readonly autonumberFormat?: string | undefined;
|
|
15381
15282
|
readonly index?: boolean | undefined;
|
|
15382
15283
|
readonly type: "select";
|
|
@@ -15395,6 +15296,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15395
15296
|
readonly name?: string | undefined;
|
|
15396
15297
|
readonly precision?: number | undefined;
|
|
15397
15298
|
readonly required?: boolean | undefined;
|
|
15299
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15398
15300
|
readonly multiple?: boolean | undefined;
|
|
15399
15301
|
readonly dependencies?: string[] | undefined;
|
|
15400
15302
|
readonly externalId?: boolean | undefined;
|
|
@@ -15457,7 +15359,6 @@ declare const SysSavedReport: Omit<{
|
|
|
15457
15359
|
relationshipField?: string | undefined;
|
|
15458
15360
|
} | undefined;
|
|
15459
15361
|
readonly language?: string | undefined;
|
|
15460
|
-
readonly maxRating?: number | undefined;
|
|
15461
15362
|
readonly step?: number | undefined;
|
|
15462
15363
|
readonly currencyConfig?: {
|
|
15463
15364
|
precision: number;
|
|
@@ -15551,7 +15452,6 @@ declare const SysSavedReport: Omit<{
|
|
|
15551
15452
|
} | undefined;
|
|
15552
15453
|
readonly sortable?: boolean | undefined;
|
|
15553
15454
|
readonly inlineHelpText?: string | undefined;
|
|
15554
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15555
15455
|
readonly autonumberFormat?: string | undefined;
|
|
15556
15456
|
readonly index?: boolean | undefined;
|
|
15557
15457
|
readonly type: "lookup";
|
|
@@ -15570,6 +15470,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15570
15470
|
readonly name?: string | undefined;
|
|
15571
15471
|
readonly precision?: number | undefined;
|
|
15572
15472
|
readonly required?: boolean | undefined;
|
|
15473
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15573
15474
|
readonly multiple?: boolean | undefined;
|
|
15574
15475
|
readonly dependencies?: string[] | undefined;
|
|
15575
15476
|
readonly externalId?: boolean | undefined;
|
|
@@ -15632,7 +15533,6 @@ declare const SysSavedReport: Omit<{
|
|
|
15632
15533
|
relationshipField?: string | undefined;
|
|
15633
15534
|
} | undefined;
|
|
15634
15535
|
readonly language?: string | undefined;
|
|
15635
|
-
readonly maxRating?: number | undefined;
|
|
15636
15536
|
readonly step?: number | undefined;
|
|
15637
15537
|
readonly currencyConfig?: {
|
|
15638
15538
|
precision: number;
|
|
@@ -15726,7 +15626,6 @@ declare const SysSavedReport: Omit<{
|
|
|
15726
15626
|
} | undefined;
|
|
15727
15627
|
readonly sortable?: boolean | undefined;
|
|
15728
15628
|
readonly inlineHelpText?: string | undefined;
|
|
15729
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15730
15629
|
readonly autonumberFormat?: string | undefined;
|
|
15731
15630
|
readonly index?: boolean | undefined;
|
|
15732
15631
|
readonly type: "datetime";
|
|
@@ -15745,6 +15644,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15745
15644
|
readonly name?: string | undefined;
|
|
15746
15645
|
readonly precision?: number | undefined;
|
|
15747
15646
|
readonly required?: boolean | undefined;
|
|
15647
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15748
15648
|
readonly multiple?: boolean | undefined;
|
|
15749
15649
|
readonly dependencies?: string[] | undefined;
|
|
15750
15650
|
readonly externalId?: boolean | undefined;
|
|
@@ -15807,7 +15707,6 @@ declare const SysSavedReport: Omit<{
|
|
|
15807
15707
|
relationshipField?: string | undefined;
|
|
15808
15708
|
} | undefined;
|
|
15809
15709
|
readonly language?: string | undefined;
|
|
15810
|
-
readonly maxRating?: number | undefined;
|
|
15811
15710
|
readonly step?: number | undefined;
|
|
15812
15711
|
readonly currencyConfig?: {
|
|
15813
15712
|
precision: number;
|
|
@@ -15901,7 +15800,6 @@ declare const SysSavedReport: Omit<{
|
|
|
15901
15800
|
} | undefined;
|
|
15902
15801
|
readonly sortable?: boolean | undefined;
|
|
15903
15802
|
readonly inlineHelpText?: string | undefined;
|
|
15904
|
-
readonly caseSensitive?: boolean | undefined;
|
|
15905
15803
|
readonly autonumberFormat?: string | undefined;
|
|
15906
15804
|
readonly index?: boolean | undefined;
|
|
15907
15805
|
readonly type: "number";
|
|
@@ -15920,6 +15818,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15920
15818
|
readonly name?: string | undefined;
|
|
15921
15819
|
readonly precision?: number | undefined;
|
|
15922
15820
|
readonly required?: boolean | undefined;
|
|
15821
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
15923
15822
|
readonly multiple?: boolean | undefined;
|
|
15924
15823
|
readonly dependencies?: string[] | undefined;
|
|
15925
15824
|
readonly externalId?: boolean | undefined;
|
|
@@ -15982,7 +15881,6 @@ declare const SysSavedReport: Omit<{
|
|
|
15982
15881
|
relationshipField?: string | undefined;
|
|
15983
15882
|
} | undefined;
|
|
15984
15883
|
readonly language?: string | undefined;
|
|
15985
|
-
readonly maxRating?: number | undefined;
|
|
15986
15884
|
readonly step?: number | undefined;
|
|
15987
15885
|
readonly currencyConfig?: {
|
|
15988
15886
|
precision: number;
|
|
@@ -16076,7 +15974,6 @@ declare const SysSavedReport: Omit<{
|
|
|
16076
15974
|
} | undefined;
|
|
16077
15975
|
readonly sortable?: boolean | undefined;
|
|
16078
15976
|
readonly inlineHelpText?: string | undefined;
|
|
16079
|
-
readonly caseSensitive?: boolean | undefined;
|
|
16080
15977
|
readonly autonumberFormat?: string | undefined;
|
|
16081
15978
|
readonly index?: boolean | undefined;
|
|
16082
15979
|
readonly type: "datetime";
|
|
@@ -16095,6 +15992,7 @@ declare const SysSavedReport: Omit<{
|
|
|
16095
15992
|
readonly name?: string | undefined;
|
|
16096
15993
|
readonly precision?: number | undefined;
|
|
16097
15994
|
readonly required?: boolean | undefined;
|
|
15995
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16098
15996
|
readonly multiple?: boolean | undefined;
|
|
16099
15997
|
readonly dependencies?: string[] | undefined;
|
|
16100
15998
|
readonly externalId?: boolean | undefined;
|
|
@@ -16157,7 +16055,6 @@ declare const SysSavedReport: Omit<{
|
|
|
16157
16055
|
relationshipField?: string | undefined;
|
|
16158
16056
|
} | undefined;
|
|
16159
16057
|
readonly language?: string | undefined;
|
|
16160
|
-
readonly maxRating?: number | undefined;
|
|
16161
16058
|
readonly step?: number | undefined;
|
|
16162
16059
|
readonly currencyConfig?: {
|
|
16163
16060
|
precision: number;
|
|
@@ -16251,7 +16148,6 @@ declare const SysSavedReport: Omit<{
|
|
|
16251
16148
|
} | undefined;
|
|
16252
16149
|
readonly sortable?: boolean | undefined;
|
|
16253
16150
|
readonly inlineHelpText?: string | undefined;
|
|
16254
|
-
readonly caseSensitive?: boolean | undefined;
|
|
16255
16151
|
readonly autonumberFormat?: string | undefined;
|
|
16256
16152
|
readonly index?: boolean | undefined;
|
|
16257
16153
|
readonly type: "datetime";
|
|
@@ -16300,7 +16196,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16300
16196
|
abstract: boolean;
|
|
16301
16197
|
datasource: string;
|
|
16302
16198
|
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";
|
|
16199
|
+
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
16200
|
required: boolean;
|
|
16305
16201
|
searchable: boolean;
|
|
16306
16202
|
multiple: boolean;
|
|
@@ -16374,6 +16270,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16374
16270
|
generatedBy?: string | undefined;
|
|
16375
16271
|
} | undefined;
|
|
16376
16272
|
} | undefined;
|
|
16273
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
16377
16274
|
summaryOperations?: {
|
|
16378
16275
|
object: string;
|
|
16379
16276
|
field: string;
|
|
@@ -16381,7 +16278,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
16381
16278
|
relationshipField?: string | undefined;
|
|
16382
16279
|
} | undefined;
|
|
16383
16280
|
language?: string | undefined;
|
|
16384
|
-
maxRating?: number | undefined;
|
|
16385
16281
|
step?: number | undefined;
|
|
16386
16282
|
currencyConfig?: {
|
|
16387
16283
|
precision: number;
|
|
@@ -16511,7 +16407,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
16511
16407
|
requiredPermissions?: string[] | undefined;
|
|
16512
16408
|
system?: boolean | undefined;
|
|
16513
16409
|
inlineHelpText?: string | undefined;
|
|
16514
|
-
caseSensitive?: boolean | undefined;
|
|
16515
16410
|
autonumberFormat?: string | undefined;
|
|
16516
16411
|
}>;
|
|
16517
16412
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -16599,12 +16494,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
16599
16494
|
versionField: string;
|
|
16600
16495
|
retentionDays?: number | undefined;
|
|
16601
16496
|
} | undefined;
|
|
16602
|
-
partitioning?: {
|
|
16603
|
-
enabled: boolean;
|
|
16604
|
-
strategy: "hash" | "list" | "range";
|
|
16605
|
-
key: string;
|
|
16606
|
-
interval?: string | undefined;
|
|
16607
|
-
} | undefined;
|
|
16608
16497
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
16609
16498
|
activityMilestones?: {
|
|
16610
16499
|
field: string;
|
|
@@ -16935,7 +16824,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
16935
16824
|
debounceMs?: number | undefined;
|
|
16936
16825
|
} | undefined;
|
|
16937
16826
|
}> | undefined;
|
|
16938
|
-
defaultDetailForm?: string | undefined;
|
|
16939
16827
|
searchableFields?: string[] | undefined;
|
|
16940
16828
|
search?: {
|
|
16941
16829
|
fields: string[];
|
|
@@ -16952,7 +16840,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16952
16840
|
trash: boolean;
|
|
16953
16841
|
mru: boolean;
|
|
16954
16842
|
clone: boolean;
|
|
16955
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
16843
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "get" | "update" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
16956
16844
|
} | undefined;
|
|
16957
16845
|
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
16958
16846
|
publicSharing?: {
|
|
@@ -16980,6 +16868,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16980
16868
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
16981
16869
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
16982
16870
|
target?: string | undefined;
|
|
16871
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
16983
16872
|
body?: {
|
|
16984
16873
|
language: "expression";
|
|
16985
16874
|
source: string;
|
|
@@ -16997,7 +16886,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16997
16886
|
field?: string | undefined;
|
|
16998
16887
|
objectOverride?: string | undefined;
|
|
16999
16888
|
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;
|
|
16889
|
+
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
16890
|
options?: {
|
|
17002
16891
|
label: string;
|
|
17003
16892
|
value: string;
|
|
@@ -17103,6 +16992,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17103
16992
|
readonly name?: string | undefined;
|
|
17104
16993
|
readonly precision?: number | undefined;
|
|
17105
16994
|
readonly required?: boolean | undefined;
|
|
16995
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17106
16996
|
readonly multiple?: boolean | undefined;
|
|
17107
16997
|
readonly dependencies?: string[] | undefined;
|
|
17108
16998
|
readonly externalId?: boolean | undefined;
|
|
@@ -17165,7 +17055,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
17165
17055
|
relationshipField?: string | undefined;
|
|
17166
17056
|
} | undefined;
|
|
17167
17057
|
readonly language?: string | undefined;
|
|
17168
|
-
readonly maxRating?: number | undefined;
|
|
17169
17058
|
readonly step?: number | undefined;
|
|
17170
17059
|
readonly currencyConfig?: {
|
|
17171
17060
|
precision: number;
|
|
@@ -17259,7 +17148,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
17259
17148
|
} | undefined;
|
|
17260
17149
|
readonly sortable?: boolean | undefined;
|
|
17261
17150
|
readonly inlineHelpText?: string | undefined;
|
|
17262
|
-
readonly caseSensitive?: boolean | undefined;
|
|
17263
17151
|
readonly autonumberFormat?: string | undefined;
|
|
17264
17152
|
readonly index?: boolean | undefined;
|
|
17265
17153
|
readonly type: "text";
|
|
@@ -17278,6 +17166,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17278
17166
|
readonly name?: string | undefined;
|
|
17279
17167
|
readonly precision?: number | undefined;
|
|
17280
17168
|
readonly required?: boolean | undefined;
|
|
17169
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17281
17170
|
readonly multiple?: boolean | undefined;
|
|
17282
17171
|
readonly dependencies?: string[] | undefined;
|
|
17283
17172
|
readonly externalId?: boolean | undefined;
|
|
@@ -17340,7 +17229,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
17340
17229
|
relationshipField?: string | undefined;
|
|
17341
17230
|
} | undefined;
|
|
17342
17231
|
readonly language?: string | undefined;
|
|
17343
|
-
readonly maxRating?: number | undefined;
|
|
17344
17232
|
readonly step?: number | undefined;
|
|
17345
17233
|
readonly currencyConfig?: {
|
|
17346
17234
|
precision: number;
|
|
@@ -17434,7 +17322,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
17434
17322
|
} | undefined;
|
|
17435
17323
|
readonly sortable?: boolean | undefined;
|
|
17436
17324
|
readonly inlineHelpText?: string | undefined;
|
|
17437
|
-
readonly caseSensitive?: boolean | undefined;
|
|
17438
17325
|
readonly autonumberFormat?: string | undefined;
|
|
17439
17326
|
readonly index?: boolean | undefined;
|
|
17440
17327
|
readonly type: "lookup";
|
|
@@ -17453,6 +17340,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17453
17340
|
readonly name?: string | undefined;
|
|
17454
17341
|
readonly precision?: number | undefined;
|
|
17455
17342
|
readonly required?: boolean | undefined;
|
|
17343
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17456
17344
|
readonly multiple?: boolean | undefined;
|
|
17457
17345
|
readonly dependencies?: string[] | undefined;
|
|
17458
17346
|
readonly externalId?: boolean | undefined;
|
|
@@ -17515,7 +17403,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
17515
17403
|
relationshipField?: string | undefined;
|
|
17516
17404
|
} | undefined;
|
|
17517
17405
|
readonly language?: string | undefined;
|
|
17518
|
-
readonly maxRating?: number | undefined;
|
|
17519
17406
|
readonly step?: number | undefined;
|
|
17520
17407
|
readonly currencyConfig?: {
|
|
17521
17408
|
precision: number;
|
|
@@ -17609,7 +17496,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
17609
17496
|
} | undefined;
|
|
17610
17497
|
readonly sortable?: boolean | undefined;
|
|
17611
17498
|
readonly inlineHelpText?: string | undefined;
|
|
17612
|
-
readonly caseSensitive?: boolean | undefined;
|
|
17613
17499
|
readonly autonumberFormat?: string | undefined;
|
|
17614
17500
|
readonly index?: boolean | undefined;
|
|
17615
17501
|
readonly type: "text";
|
|
@@ -17628,6 +17514,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17628
17514
|
readonly name?: string | undefined;
|
|
17629
17515
|
readonly precision?: number | undefined;
|
|
17630
17516
|
readonly required?: boolean | undefined;
|
|
17517
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17631
17518
|
readonly multiple?: boolean | undefined;
|
|
17632
17519
|
readonly dependencies?: string[] | undefined;
|
|
17633
17520
|
readonly externalId?: boolean | undefined;
|
|
@@ -17690,7 +17577,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
17690
17577
|
relationshipField?: string | undefined;
|
|
17691
17578
|
} | undefined;
|
|
17692
17579
|
readonly language?: string | undefined;
|
|
17693
|
-
readonly maxRating?: number | undefined;
|
|
17694
17580
|
readonly step?: number | undefined;
|
|
17695
17581
|
readonly currencyConfig?: {
|
|
17696
17582
|
precision: number;
|
|
@@ -17784,7 +17670,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
17784
17670
|
} | undefined;
|
|
17785
17671
|
readonly sortable?: boolean | undefined;
|
|
17786
17672
|
readonly inlineHelpText?: string | undefined;
|
|
17787
|
-
readonly caseSensitive?: boolean | undefined;
|
|
17788
17673
|
readonly autonumberFormat?: string | undefined;
|
|
17789
17674
|
readonly index?: boolean | undefined;
|
|
17790
17675
|
readonly type: "number";
|
|
@@ -17803,6 +17688,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17803
17688
|
readonly name?: string | undefined;
|
|
17804
17689
|
readonly precision?: number | undefined;
|
|
17805
17690
|
readonly required?: boolean | undefined;
|
|
17691
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17806
17692
|
readonly multiple?: boolean | undefined;
|
|
17807
17693
|
readonly dependencies?: string[] | undefined;
|
|
17808
17694
|
readonly externalId?: boolean | undefined;
|
|
@@ -17865,7 +17751,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
17865
17751
|
relationshipField?: string | undefined;
|
|
17866
17752
|
} | undefined;
|
|
17867
17753
|
readonly language?: string | undefined;
|
|
17868
|
-
readonly maxRating?: number | undefined;
|
|
17869
17754
|
readonly step?: number | undefined;
|
|
17870
17755
|
readonly currencyConfig?: {
|
|
17871
17756
|
precision: number;
|
|
@@ -17959,7 +17844,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
17959
17844
|
} | undefined;
|
|
17960
17845
|
readonly sortable?: boolean | undefined;
|
|
17961
17846
|
readonly inlineHelpText?: string | undefined;
|
|
17962
|
-
readonly caseSensitive?: boolean | undefined;
|
|
17963
17847
|
readonly autonumberFormat?: string | undefined;
|
|
17964
17848
|
readonly index?: boolean | undefined;
|
|
17965
17849
|
readonly type: "text";
|
|
@@ -17978,6 +17862,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17978
17862
|
readonly name?: string | undefined;
|
|
17979
17863
|
readonly precision?: number | undefined;
|
|
17980
17864
|
readonly required?: boolean | undefined;
|
|
17865
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
17981
17866
|
readonly multiple?: boolean | undefined;
|
|
17982
17867
|
readonly dependencies?: string[] | undefined;
|
|
17983
17868
|
readonly externalId?: boolean | undefined;
|
|
@@ -18040,7 +17925,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
18040
17925
|
relationshipField?: string | undefined;
|
|
18041
17926
|
} | undefined;
|
|
18042
17927
|
readonly language?: string | undefined;
|
|
18043
|
-
readonly maxRating?: number | undefined;
|
|
18044
17928
|
readonly step?: number | undefined;
|
|
18045
17929
|
readonly currencyConfig?: {
|
|
18046
17930
|
precision: number;
|
|
@@ -18134,7 +18018,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
18134
18018
|
} | undefined;
|
|
18135
18019
|
readonly sortable?: boolean | undefined;
|
|
18136
18020
|
readonly inlineHelpText?: string | undefined;
|
|
18137
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18138
18021
|
readonly autonumberFormat?: string | undefined;
|
|
18139
18022
|
readonly index?: boolean | undefined;
|
|
18140
18023
|
readonly type: "text";
|
|
@@ -18153,6 +18036,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18153
18036
|
readonly name?: string | undefined;
|
|
18154
18037
|
readonly precision?: number | undefined;
|
|
18155
18038
|
readonly required?: boolean | undefined;
|
|
18039
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18156
18040
|
readonly multiple?: boolean | undefined;
|
|
18157
18041
|
readonly dependencies?: string[] | undefined;
|
|
18158
18042
|
readonly externalId?: boolean | undefined;
|
|
@@ -18215,7 +18099,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
18215
18099
|
relationshipField?: string | undefined;
|
|
18216
18100
|
} | undefined;
|
|
18217
18101
|
readonly language?: string | undefined;
|
|
18218
|
-
readonly maxRating?: number | undefined;
|
|
18219
18102
|
readonly step?: number | undefined;
|
|
18220
18103
|
readonly currencyConfig?: {
|
|
18221
18104
|
precision: number;
|
|
@@ -18309,7 +18192,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
18309
18192
|
} | undefined;
|
|
18310
18193
|
readonly sortable?: boolean | undefined;
|
|
18311
18194
|
readonly inlineHelpText?: string | undefined;
|
|
18312
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18313
18195
|
readonly autonumberFormat?: string | undefined;
|
|
18314
18196
|
readonly index?: boolean | undefined;
|
|
18315
18197
|
readonly type: "boolean";
|
|
@@ -18328,6 +18210,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18328
18210
|
readonly name?: string | undefined;
|
|
18329
18211
|
readonly precision?: number | undefined;
|
|
18330
18212
|
readonly required?: boolean | undefined;
|
|
18213
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18331
18214
|
readonly multiple?: boolean | undefined;
|
|
18332
18215
|
readonly dependencies?: string[] | undefined;
|
|
18333
18216
|
readonly externalId?: boolean | undefined;
|
|
@@ -18390,7 +18273,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
18390
18273
|
relationshipField?: string | undefined;
|
|
18391
18274
|
} | undefined;
|
|
18392
18275
|
readonly language?: string | undefined;
|
|
18393
|
-
readonly maxRating?: number | undefined;
|
|
18394
18276
|
readonly step?: number | undefined;
|
|
18395
18277
|
readonly currencyConfig?: {
|
|
18396
18278
|
precision: number;
|
|
@@ -18484,7 +18366,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
18484
18366
|
} | undefined;
|
|
18485
18367
|
readonly sortable?: boolean | undefined;
|
|
18486
18368
|
readonly inlineHelpText?: string | undefined;
|
|
18487
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18488
18369
|
readonly autonumberFormat?: string | undefined;
|
|
18489
18370
|
readonly index?: boolean | undefined;
|
|
18490
18371
|
readonly type: "text";
|
|
@@ -18503,6 +18384,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18503
18384
|
readonly name?: string | undefined;
|
|
18504
18385
|
readonly precision?: number | undefined;
|
|
18505
18386
|
readonly required?: boolean | undefined;
|
|
18387
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18506
18388
|
readonly multiple?: boolean | undefined;
|
|
18507
18389
|
readonly dependencies?: string[] | undefined;
|
|
18508
18390
|
readonly externalId?: boolean | undefined;
|
|
@@ -18565,7 +18447,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
18565
18447
|
relationshipField?: string | undefined;
|
|
18566
18448
|
} | undefined;
|
|
18567
18449
|
readonly language?: string | undefined;
|
|
18568
|
-
readonly maxRating?: number | undefined;
|
|
18569
18450
|
readonly step?: number | undefined;
|
|
18570
18451
|
readonly currencyConfig?: {
|
|
18571
18452
|
precision: number;
|
|
@@ -18659,7 +18540,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
18659
18540
|
} | undefined;
|
|
18660
18541
|
readonly sortable?: boolean | undefined;
|
|
18661
18542
|
readonly inlineHelpText?: string | undefined;
|
|
18662
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18663
18543
|
readonly autonumberFormat?: string | undefined;
|
|
18664
18544
|
readonly index?: boolean | undefined;
|
|
18665
18545
|
readonly type: "select";
|
|
@@ -18678,6 +18558,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18678
18558
|
readonly name?: string | undefined;
|
|
18679
18559
|
readonly precision?: number | undefined;
|
|
18680
18560
|
readonly required?: boolean | undefined;
|
|
18561
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18681
18562
|
readonly multiple?: boolean | undefined;
|
|
18682
18563
|
readonly dependencies?: string[] | undefined;
|
|
18683
18564
|
readonly externalId?: boolean | undefined;
|
|
@@ -18740,7 +18621,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
18740
18621
|
relationshipField?: string | undefined;
|
|
18741
18622
|
} | undefined;
|
|
18742
18623
|
readonly language?: string | undefined;
|
|
18743
|
-
readonly maxRating?: number | undefined;
|
|
18744
18624
|
readonly step?: number | undefined;
|
|
18745
18625
|
readonly currencyConfig?: {
|
|
18746
18626
|
precision: number;
|
|
@@ -18834,7 +18714,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
18834
18714
|
} | undefined;
|
|
18835
18715
|
readonly sortable?: boolean | undefined;
|
|
18836
18716
|
readonly inlineHelpText?: string | undefined;
|
|
18837
|
-
readonly caseSensitive?: boolean | undefined;
|
|
18838
18717
|
readonly autonumberFormat?: string | undefined;
|
|
18839
18718
|
readonly index?: boolean | undefined;
|
|
18840
18719
|
readonly type: "text";
|
|
@@ -18853,6 +18732,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18853
18732
|
readonly name?: string | undefined;
|
|
18854
18733
|
readonly precision?: number | undefined;
|
|
18855
18734
|
readonly required?: boolean | undefined;
|
|
18735
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
18856
18736
|
readonly multiple?: boolean | undefined;
|
|
18857
18737
|
readonly dependencies?: string[] | undefined;
|
|
18858
18738
|
readonly externalId?: boolean | undefined;
|
|
@@ -18915,7 +18795,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
18915
18795
|
relationshipField?: string | undefined;
|
|
18916
18796
|
} | undefined;
|
|
18917
18797
|
readonly language?: string | undefined;
|
|
18918
|
-
readonly maxRating?: number | undefined;
|
|
18919
18798
|
readonly step?: number | undefined;
|
|
18920
18799
|
readonly currencyConfig?: {
|
|
18921
18800
|
precision: number;
|
|
@@ -19009,7 +18888,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
19009
18888
|
} | undefined;
|
|
19010
18889
|
readonly sortable?: boolean | undefined;
|
|
19011
18890
|
readonly inlineHelpText?: string | undefined;
|
|
19012
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19013
18891
|
readonly autonumberFormat?: string | undefined;
|
|
19014
18892
|
readonly index?: boolean | undefined;
|
|
19015
18893
|
readonly type: "lookup";
|
|
@@ -19028,6 +18906,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19028
18906
|
readonly name?: string | undefined;
|
|
19029
18907
|
readonly precision?: number | undefined;
|
|
19030
18908
|
readonly required?: boolean | undefined;
|
|
18909
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19031
18910
|
readonly multiple?: boolean | undefined;
|
|
19032
18911
|
readonly dependencies?: string[] | undefined;
|
|
19033
18912
|
readonly externalId?: boolean | undefined;
|
|
@@ -19090,7 +18969,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
19090
18969
|
relationshipField?: string | undefined;
|
|
19091
18970
|
} | undefined;
|
|
19092
18971
|
readonly language?: string | undefined;
|
|
19093
|
-
readonly maxRating?: number | undefined;
|
|
19094
18972
|
readonly step?: number | undefined;
|
|
19095
18973
|
readonly currencyConfig?: {
|
|
19096
18974
|
precision: number;
|
|
@@ -19184,7 +19062,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
19184
19062
|
} | undefined;
|
|
19185
19063
|
readonly sortable?: boolean | undefined;
|
|
19186
19064
|
readonly inlineHelpText?: string | undefined;
|
|
19187
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19188
19065
|
readonly autonumberFormat?: string | undefined;
|
|
19189
19066
|
readonly index?: boolean | undefined;
|
|
19190
19067
|
readonly type: "datetime";
|
|
@@ -19203,6 +19080,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19203
19080
|
readonly name?: string | undefined;
|
|
19204
19081
|
readonly precision?: number | undefined;
|
|
19205
19082
|
readonly required?: boolean | undefined;
|
|
19083
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19206
19084
|
readonly multiple?: boolean | undefined;
|
|
19207
19085
|
readonly dependencies?: string[] | undefined;
|
|
19208
19086
|
readonly externalId?: boolean | undefined;
|
|
@@ -19265,7 +19143,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
19265
19143
|
relationshipField?: string | undefined;
|
|
19266
19144
|
} | undefined;
|
|
19267
19145
|
readonly language?: string | undefined;
|
|
19268
|
-
readonly maxRating?: number | undefined;
|
|
19269
19146
|
readonly step?: number | undefined;
|
|
19270
19147
|
readonly currencyConfig?: {
|
|
19271
19148
|
precision: number;
|
|
@@ -19359,7 +19236,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
19359
19236
|
} | undefined;
|
|
19360
19237
|
readonly sortable?: boolean | undefined;
|
|
19361
19238
|
readonly inlineHelpText?: string | undefined;
|
|
19362
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19363
19239
|
readonly autonumberFormat?: string | undefined;
|
|
19364
19240
|
readonly index?: boolean | undefined;
|
|
19365
19241
|
readonly type: "datetime";
|
|
@@ -19378,6 +19254,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19378
19254
|
readonly name?: string | undefined;
|
|
19379
19255
|
readonly precision?: number | undefined;
|
|
19380
19256
|
readonly required?: boolean | undefined;
|
|
19257
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19381
19258
|
readonly multiple?: boolean | undefined;
|
|
19382
19259
|
readonly dependencies?: string[] | undefined;
|
|
19383
19260
|
readonly externalId?: boolean | undefined;
|
|
@@ -19440,7 +19317,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
19440
19317
|
relationshipField?: string | undefined;
|
|
19441
19318
|
} | undefined;
|
|
19442
19319
|
readonly language?: string | undefined;
|
|
19443
|
-
readonly maxRating?: number | undefined;
|
|
19444
19320
|
readonly step?: number | undefined;
|
|
19445
19321
|
readonly currencyConfig?: {
|
|
19446
19322
|
precision: number;
|
|
@@ -19534,7 +19410,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
19534
19410
|
} | undefined;
|
|
19535
19411
|
readonly sortable?: boolean | undefined;
|
|
19536
19412
|
readonly inlineHelpText?: string | undefined;
|
|
19537
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19538
19413
|
readonly autonumberFormat?: string | undefined;
|
|
19539
19414
|
readonly index?: boolean | undefined;
|
|
19540
19415
|
readonly type: "select";
|
|
@@ -19553,6 +19428,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19553
19428
|
readonly name?: string | undefined;
|
|
19554
19429
|
readonly precision?: number | undefined;
|
|
19555
19430
|
readonly required?: boolean | undefined;
|
|
19431
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19556
19432
|
readonly multiple?: boolean | undefined;
|
|
19557
19433
|
readonly dependencies?: string[] | undefined;
|
|
19558
19434
|
readonly externalId?: boolean | undefined;
|
|
@@ -19615,7 +19491,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
19615
19491
|
relationshipField?: string | undefined;
|
|
19616
19492
|
} | undefined;
|
|
19617
19493
|
readonly language?: string | undefined;
|
|
19618
|
-
readonly maxRating?: number | undefined;
|
|
19619
19494
|
readonly step?: number | undefined;
|
|
19620
19495
|
readonly currencyConfig?: {
|
|
19621
19496
|
precision: number;
|
|
@@ -19709,7 +19584,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
19709
19584
|
} | undefined;
|
|
19710
19585
|
readonly sortable?: boolean | undefined;
|
|
19711
19586
|
readonly inlineHelpText?: string | undefined;
|
|
19712
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19713
19587
|
readonly autonumberFormat?: string | undefined;
|
|
19714
19588
|
readonly index?: boolean | undefined;
|
|
19715
19589
|
readonly type: "textarea";
|
|
@@ -19728,6 +19602,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19728
19602
|
readonly name?: string | undefined;
|
|
19729
19603
|
readonly precision?: number | undefined;
|
|
19730
19604
|
readonly required?: boolean | undefined;
|
|
19605
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19731
19606
|
readonly multiple?: boolean | undefined;
|
|
19732
19607
|
readonly dependencies?: string[] | undefined;
|
|
19733
19608
|
readonly externalId?: boolean | undefined;
|
|
@@ -19790,7 +19665,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
19790
19665
|
relationshipField?: string | undefined;
|
|
19791
19666
|
} | undefined;
|
|
19792
19667
|
readonly language?: string | undefined;
|
|
19793
|
-
readonly maxRating?: number | undefined;
|
|
19794
19668
|
readonly step?: number | undefined;
|
|
19795
19669
|
readonly currencyConfig?: {
|
|
19796
19670
|
precision: number;
|
|
@@ -19884,7 +19758,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
19884
19758
|
} | undefined;
|
|
19885
19759
|
readonly sortable?: boolean | undefined;
|
|
19886
19760
|
readonly inlineHelpText?: string | undefined;
|
|
19887
|
-
readonly caseSensitive?: boolean | undefined;
|
|
19888
19761
|
readonly autonumberFormat?: string | undefined;
|
|
19889
19762
|
readonly index?: boolean | undefined;
|
|
19890
19763
|
readonly type: "datetime";
|
|
@@ -19903,6 +19776,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19903
19776
|
readonly name?: string | undefined;
|
|
19904
19777
|
readonly precision?: number | undefined;
|
|
19905
19778
|
readonly required?: boolean | undefined;
|
|
19779
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
19906
19780
|
readonly multiple?: boolean | undefined;
|
|
19907
19781
|
readonly dependencies?: string[] | undefined;
|
|
19908
19782
|
readonly externalId?: boolean | undefined;
|
|
@@ -19965,7 +19839,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
19965
19839
|
relationshipField?: string | undefined;
|
|
19966
19840
|
} | undefined;
|
|
19967
19841
|
readonly language?: string | undefined;
|
|
19968
|
-
readonly maxRating?: number | undefined;
|
|
19969
19842
|
readonly step?: number | undefined;
|
|
19970
19843
|
readonly currencyConfig?: {
|
|
19971
19844
|
precision: number;
|
|
@@ -20059,7 +19932,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
20059
19932
|
} | undefined;
|
|
20060
19933
|
readonly sortable?: boolean | undefined;
|
|
20061
19934
|
readonly inlineHelpText?: string | undefined;
|
|
20062
|
-
readonly caseSensitive?: boolean | undefined;
|
|
20063
19935
|
readonly autonumberFormat?: string | undefined;
|
|
20064
19936
|
readonly index?: boolean | undefined;
|
|
20065
19937
|
readonly type: "datetime";
|
|
@@ -20094,7 +19966,7 @@ declare const SysJob: Omit<{
|
|
|
20094
19966
|
abstract: boolean;
|
|
20095
19967
|
datasource: string;
|
|
20096
19968
|
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";
|
|
19969
|
+
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
19970
|
required: boolean;
|
|
20099
19971
|
searchable: boolean;
|
|
20100
19972
|
multiple: boolean;
|
|
@@ -20168,6 +20040,7 @@ declare const SysJob: Omit<{
|
|
|
20168
20040
|
generatedBy?: string | undefined;
|
|
20169
20041
|
} | undefined;
|
|
20170
20042
|
} | undefined;
|
|
20043
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20171
20044
|
summaryOperations?: {
|
|
20172
20045
|
object: string;
|
|
20173
20046
|
field: string;
|
|
@@ -20175,7 +20048,6 @@ declare const SysJob: Omit<{
|
|
|
20175
20048
|
relationshipField?: string | undefined;
|
|
20176
20049
|
} | undefined;
|
|
20177
20050
|
language?: string | undefined;
|
|
20178
|
-
maxRating?: number | undefined;
|
|
20179
20051
|
step?: number | undefined;
|
|
20180
20052
|
currencyConfig?: {
|
|
20181
20053
|
precision: number;
|
|
@@ -20305,7 +20177,6 @@ declare const SysJob: Omit<{
|
|
|
20305
20177
|
requiredPermissions?: string[] | undefined;
|
|
20306
20178
|
system?: boolean | undefined;
|
|
20307
20179
|
inlineHelpText?: string | undefined;
|
|
20308
|
-
caseSensitive?: boolean | undefined;
|
|
20309
20180
|
autonumberFormat?: string | undefined;
|
|
20310
20181
|
}>;
|
|
20311
20182
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -20393,12 +20264,6 @@ declare const SysJob: Omit<{
|
|
|
20393
20264
|
versionField: string;
|
|
20394
20265
|
retentionDays?: number | undefined;
|
|
20395
20266
|
} | undefined;
|
|
20396
|
-
partitioning?: {
|
|
20397
|
-
enabled: boolean;
|
|
20398
|
-
strategy: "hash" | "list" | "range";
|
|
20399
|
-
key: string;
|
|
20400
|
-
interval?: string | undefined;
|
|
20401
|
-
} | undefined;
|
|
20402
20267
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
20403
20268
|
activityMilestones?: {
|
|
20404
20269
|
field: string;
|
|
@@ -20729,7 +20594,6 @@ declare const SysJob: Omit<{
|
|
|
20729
20594
|
debounceMs?: number | undefined;
|
|
20730
20595
|
} | undefined;
|
|
20731
20596
|
}> | undefined;
|
|
20732
|
-
defaultDetailForm?: string | undefined;
|
|
20733
20597
|
searchableFields?: string[] | undefined;
|
|
20734
20598
|
search?: {
|
|
20735
20599
|
fields: string[];
|
|
@@ -20746,7 +20610,7 @@ declare const SysJob: Omit<{
|
|
|
20746
20610
|
trash: boolean;
|
|
20747
20611
|
mru: boolean;
|
|
20748
20612
|
clone: boolean;
|
|
20749
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
20613
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "get" | "update" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
20750
20614
|
} | undefined;
|
|
20751
20615
|
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
20752
20616
|
publicSharing?: {
|
|
@@ -20774,6 +20638,7 @@ declare const SysJob: Omit<{
|
|
|
20774
20638
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
20775
20639
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
20776
20640
|
target?: string | undefined;
|
|
20641
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
20777
20642
|
body?: {
|
|
20778
20643
|
language: "expression";
|
|
20779
20644
|
source: string;
|
|
@@ -20791,7 +20656,7 @@ declare const SysJob: Omit<{
|
|
|
20791
20656
|
field?: string | undefined;
|
|
20792
20657
|
objectOverride?: string | undefined;
|
|
20793
20658
|
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;
|
|
20659
|
+
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
20660
|
options?: {
|
|
20796
20661
|
label: string;
|
|
20797
20662
|
value: string;
|
|
@@ -20898,6 +20763,7 @@ declare const SysJob: Omit<{
|
|
|
20898
20763
|
readonly name?: string | undefined;
|
|
20899
20764
|
readonly precision?: number | undefined;
|
|
20900
20765
|
readonly required?: boolean | undefined;
|
|
20766
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
20901
20767
|
readonly multiple?: boolean | undefined;
|
|
20902
20768
|
readonly dependencies?: string[] | undefined;
|
|
20903
20769
|
readonly externalId?: boolean | undefined;
|
|
@@ -20960,7 +20826,6 @@ declare const SysJob: Omit<{
|
|
|
20960
20826
|
relationshipField?: string | undefined;
|
|
20961
20827
|
} | undefined;
|
|
20962
20828
|
readonly language?: string | undefined;
|
|
20963
|
-
readonly maxRating?: number | undefined;
|
|
20964
20829
|
readonly step?: number | undefined;
|
|
20965
20830
|
readonly currencyConfig?: {
|
|
20966
20831
|
precision: number;
|
|
@@ -21054,7 +20919,6 @@ declare const SysJob: Omit<{
|
|
|
21054
20919
|
} | undefined;
|
|
21055
20920
|
readonly sortable?: boolean | undefined;
|
|
21056
20921
|
readonly inlineHelpText?: string | undefined;
|
|
21057
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21058
20922
|
readonly autonumberFormat?: string | undefined;
|
|
21059
20923
|
readonly index?: boolean | undefined;
|
|
21060
20924
|
readonly type: "text";
|
|
@@ -21073,6 +20937,7 @@ declare const SysJob: Omit<{
|
|
|
21073
20937
|
readonly name?: string | undefined;
|
|
21074
20938
|
readonly precision?: number | undefined;
|
|
21075
20939
|
readonly required?: boolean | undefined;
|
|
20940
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21076
20941
|
readonly multiple?: boolean | undefined;
|
|
21077
20942
|
readonly dependencies?: string[] | undefined;
|
|
21078
20943
|
readonly externalId?: boolean | undefined;
|
|
@@ -21135,7 +21000,6 @@ declare const SysJob: Omit<{
|
|
|
21135
21000
|
relationshipField?: string | undefined;
|
|
21136
21001
|
} | undefined;
|
|
21137
21002
|
readonly language?: string | undefined;
|
|
21138
|
-
readonly maxRating?: number | undefined;
|
|
21139
21003
|
readonly step?: number | undefined;
|
|
21140
21004
|
readonly currencyConfig?: {
|
|
21141
21005
|
precision: number;
|
|
@@ -21229,7 +21093,6 @@ declare const SysJob: Omit<{
|
|
|
21229
21093
|
} | undefined;
|
|
21230
21094
|
readonly sortable?: boolean | undefined;
|
|
21231
21095
|
readonly inlineHelpText?: string | undefined;
|
|
21232
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21233
21096
|
readonly autonumberFormat?: string | undefined;
|
|
21234
21097
|
readonly index?: boolean | undefined;
|
|
21235
21098
|
readonly type: "text";
|
|
@@ -21248,6 +21111,7 @@ declare const SysJob: Omit<{
|
|
|
21248
21111
|
readonly name?: string | undefined;
|
|
21249
21112
|
readonly precision?: number | undefined;
|
|
21250
21113
|
readonly required?: boolean | undefined;
|
|
21114
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21251
21115
|
readonly multiple?: boolean | undefined;
|
|
21252
21116
|
readonly dependencies?: string[] | undefined;
|
|
21253
21117
|
readonly externalId?: boolean | undefined;
|
|
@@ -21310,7 +21174,6 @@ declare const SysJob: Omit<{
|
|
|
21310
21174
|
relationshipField?: string | undefined;
|
|
21311
21175
|
} | undefined;
|
|
21312
21176
|
readonly language?: string | undefined;
|
|
21313
|
-
readonly maxRating?: number | undefined;
|
|
21314
21177
|
readonly step?: number | undefined;
|
|
21315
21178
|
readonly currencyConfig?: {
|
|
21316
21179
|
precision: number;
|
|
@@ -21404,7 +21267,6 @@ declare const SysJob: Omit<{
|
|
|
21404
21267
|
} | undefined;
|
|
21405
21268
|
readonly sortable?: boolean | undefined;
|
|
21406
21269
|
readonly inlineHelpText?: string | undefined;
|
|
21407
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21408
21270
|
readonly autonumberFormat?: string | undefined;
|
|
21409
21271
|
readonly index?: boolean | undefined;
|
|
21410
21272
|
readonly type: "select";
|
|
@@ -21423,6 +21285,7 @@ declare const SysJob: Omit<{
|
|
|
21423
21285
|
readonly name?: string | undefined;
|
|
21424
21286
|
readonly precision?: number | undefined;
|
|
21425
21287
|
readonly required?: boolean | undefined;
|
|
21288
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21426
21289
|
readonly multiple?: boolean | undefined;
|
|
21427
21290
|
readonly dependencies?: string[] | undefined;
|
|
21428
21291
|
readonly externalId?: boolean | undefined;
|
|
@@ -21485,7 +21348,6 @@ declare const SysJob: Omit<{
|
|
|
21485
21348
|
relationshipField?: string | undefined;
|
|
21486
21349
|
} | undefined;
|
|
21487
21350
|
readonly language?: string | undefined;
|
|
21488
|
-
readonly maxRating?: number | undefined;
|
|
21489
21351
|
readonly step?: number | undefined;
|
|
21490
21352
|
readonly currencyConfig?: {
|
|
21491
21353
|
precision: number;
|
|
@@ -21579,7 +21441,6 @@ declare const SysJob: Omit<{
|
|
|
21579
21441
|
} | undefined;
|
|
21580
21442
|
readonly sortable?: boolean | undefined;
|
|
21581
21443
|
readonly inlineHelpText?: string | undefined;
|
|
21582
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21583
21444
|
readonly autonumberFormat?: string | undefined;
|
|
21584
21445
|
readonly index?: boolean | undefined;
|
|
21585
21446
|
readonly type: "text";
|
|
@@ -21598,6 +21459,7 @@ declare const SysJob: Omit<{
|
|
|
21598
21459
|
readonly name?: string | undefined;
|
|
21599
21460
|
readonly precision?: number | undefined;
|
|
21600
21461
|
readonly required?: boolean | undefined;
|
|
21462
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21601
21463
|
readonly multiple?: boolean | undefined;
|
|
21602
21464
|
readonly dependencies?: string[] | undefined;
|
|
21603
21465
|
readonly externalId?: boolean | undefined;
|
|
@@ -21660,7 +21522,6 @@ declare const SysJob: Omit<{
|
|
|
21660
21522
|
relationshipField?: string | undefined;
|
|
21661
21523
|
} | undefined;
|
|
21662
21524
|
readonly language?: string | undefined;
|
|
21663
|
-
readonly maxRating?: number | undefined;
|
|
21664
21525
|
readonly step?: number | undefined;
|
|
21665
21526
|
readonly currencyConfig?: {
|
|
21666
21527
|
precision: number;
|
|
@@ -21754,7 +21615,6 @@ declare const SysJob: Omit<{
|
|
|
21754
21615
|
} | undefined;
|
|
21755
21616
|
readonly sortable?: boolean | undefined;
|
|
21756
21617
|
readonly inlineHelpText?: string | undefined;
|
|
21757
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21758
21618
|
readonly autonumberFormat?: string | undefined;
|
|
21759
21619
|
readonly index?: boolean | undefined;
|
|
21760
21620
|
readonly type: "text";
|
|
@@ -21773,6 +21633,7 @@ declare const SysJob: Omit<{
|
|
|
21773
21633
|
readonly name?: string | undefined;
|
|
21774
21634
|
readonly precision?: number | undefined;
|
|
21775
21635
|
readonly required?: boolean | undefined;
|
|
21636
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21776
21637
|
readonly multiple?: boolean | undefined;
|
|
21777
21638
|
readonly dependencies?: string[] | undefined;
|
|
21778
21639
|
readonly externalId?: boolean | undefined;
|
|
@@ -21835,7 +21696,6 @@ declare const SysJob: Omit<{
|
|
|
21835
21696
|
relationshipField?: string | undefined;
|
|
21836
21697
|
} | undefined;
|
|
21837
21698
|
readonly language?: string | undefined;
|
|
21838
|
-
readonly maxRating?: number | undefined;
|
|
21839
21699
|
readonly step?: number | undefined;
|
|
21840
21700
|
readonly currencyConfig?: {
|
|
21841
21701
|
precision: number;
|
|
@@ -21929,7 +21789,6 @@ declare const SysJob: Omit<{
|
|
|
21929
21789
|
} | undefined;
|
|
21930
21790
|
readonly sortable?: boolean | undefined;
|
|
21931
21791
|
readonly inlineHelpText?: string | undefined;
|
|
21932
|
-
readonly caseSensitive?: boolean | undefined;
|
|
21933
21792
|
readonly autonumberFormat?: string | undefined;
|
|
21934
21793
|
readonly index?: boolean | undefined;
|
|
21935
21794
|
readonly type: "boolean";
|
|
@@ -21948,6 +21807,7 @@ declare const SysJob: Omit<{
|
|
|
21948
21807
|
readonly name?: string | undefined;
|
|
21949
21808
|
readonly precision?: number | undefined;
|
|
21950
21809
|
readonly required?: boolean | undefined;
|
|
21810
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
21951
21811
|
readonly multiple?: boolean | undefined;
|
|
21952
21812
|
readonly dependencies?: string[] | undefined;
|
|
21953
21813
|
readonly externalId?: boolean | undefined;
|
|
@@ -22010,7 +21870,6 @@ declare const SysJob: Omit<{
|
|
|
22010
21870
|
relationshipField?: string | undefined;
|
|
22011
21871
|
} | undefined;
|
|
22012
21872
|
readonly language?: string | undefined;
|
|
22013
|
-
readonly maxRating?: number | undefined;
|
|
22014
21873
|
readonly step?: number | undefined;
|
|
22015
21874
|
readonly currencyConfig?: {
|
|
22016
21875
|
precision: number;
|
|
@@ -22104,7 +21963,6 @@ declare const SysJob: Omit<{
|
|
|
22104
21963
|
} | undefined;
|
|
22105
21964
|
readonly sortable?: boolean | undefined;
|
|
22106
21965
|
readonly inlineHelpText?: string | undefined;
|
|
22107
|
-
readonly caseSensitive?: boolean | undefined;
|
|
22108
21966
|
readonly autonumberFormat?: string | undefined;
|
|
22109
21967
|
readonly index?: boolean | undefined;
|
|
22110
21968
|
readonly type: "datetime";
|
|
@@ -22123,6 +21981,7 @@ declare const SysJob: Omit<{
|
|
|
22123
21981
|
readonly name?: string | undefined;
|
|
22124
21982
|
readonly precision?: number | undefined;
|
|
22125
21983
|
readonly required?: boolean | undefined;
|
|
21984
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
22126
21985
|
readonly multiple?: boolean | undefined;
|
|
22127
21986
|
readonly dependencies?: string[] | undefined;
|
|
22128
21987
|
readonly externalId?: boolean | undefined;
|
|
@@ -22185,7 +22044,6 @@ declare const SysJob: Omit<{
|
|
|
22185
22044
|
relationshipField?: string | undefined;
|
|
22186
22045
|
} | undefined;
|
|
22187
22046
|
readonly language?: string | undefined;
|
|
22188
|
-
readonly maxRating?: number | undefined;
|
|
22189
22047
|
readonly step?: number | undefined;
|
|
22190
22048
|
readonly currencyConfig?: {
|
|
22191
22049
|
precision: number;
|
|
@@ -22279,7 +22137,6 @@ declare const SysJob: Omit<{
|
|
|
22279
22137
|
} | undefined;
|
|
22280
22138
|
readonly sortable?: boolean | undefined;
|
|
22281
22139
|
readonly inlineHelpText?: string | undefined;
|
|
22282
|
-
readonly caseSensitive?: boolean | undefined;
|
|
22283
22140
|
readonly autonumberFormat?: string | undefined;
|
|
22284
22141
|
readonly index?: boolean | undefined;
|
|
22285
22142
|
readonly type: "select";
|
|
@@ -22298,6 +22155,7 @@ declare const SysJob: Omit<{
|
|
|
22298
22155
|
readonly name?: string | undefined;
|
|
22299
22156
|
readonly precision?: number | undefined;
|
|
22300
22157
|
readonly required?: boolean | undefined;
|
|
22158
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
22301
22159
|
readonly multiple?: boolean | undefined;
|
|
22302
22160
|
readonly dependencies?: string[] | undefined;
|
|
22303
22161
|
readonly externalId?: boolean | undefined;
|
|
@@ -22360,7 +22218,6 @@ declare const SysJob: Omit<{
|
|
|
22360
22218
|
relationshipField?: string | undefined;
|
|
22361
22219
|
} | undefined;
|
|
22362
22220
|
readonly language?: string | undefined;
|
|
22363
|
-
readonly maxRating?: number | undefined;
|
|
22364
22221
|
readonly step?: number | undefined;
|
|
22365
22222
|
readonly currencyConfig?: {
|
|
22366
22223
|
precision: number;
|
|
@@ -22454,7 +22311,6 @@ declare const SysJob: Omit<{
|
|
|
22454
22311
|
} | undefined;
|
|
22455
22312
|
readonly sortable?: boolean | undefined;
|
|
22456
22313
|
readonly inlineHelpText?: string | undefined;
|
|
22457
|
-
readonly caseSensitive?: boolean | undefined;
|
|
22458
22314
|
readonly autonumberFormat?: string | undefined;
|
|
22459
22315
|
readonly index?: boolean | undefined;
|
|
22460
22316
|
readonly type: "textarea";
|
|
@@ -22473,6 +22329,7 @@ declare const SysJob: Omit<{
|
|
|
22473
22329
|
readonly name?: string | undefined;
|
|
22474
22330
|
readonly precision?: number | undefined;
|
|
22475
22331
|
readonly required?: boolean | undefined;
|
|
22332
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
22476
22333
|
readonly multiple?: boolean | undefined;
|
|
22477
22334
|
readonly dependencies?: string[] | undefined;
|
|
22478
22335
|
readonly externalId?: boolean | undefined;
|
|
@@ -22535,7 +22392,6 @@ declare const SysJob: Omit<{
|
|
|
22535
22392
|
relationshipField?: string | undefined;
|
|
22536
22393
|
} | undefined;
|
|
22537
22394
|
readonly language?: string | undefined;
|
|
22538
|
-
readonly maxRating?: number | undefined;
|
|
22539
22395
|
readonly step?: number | undefined;
|
|
22540
22396
|
readonly currencyConfig?: {
|
|
22541
22397
|
precision: number;
|
|
@@ -22629,7 +22485,6 @@ declare const SysJob: Omit<{
|
|
|
22629
22485
|
} | undefined;
|
|
22630
22486
|
readonly sortable?: boolean | undefined;
|
|
22631
22487
|
readonly inlineHelpText?: string | undefined;
|
|
22632
|
-
readonly caseSensitive?: boolean | undefined;
|
|
22633
22488
|
readonly autonumberFormat?: string | undefined;
|
|
22634
22489
|
readonly index?: boolean | undefined;
|
|
22635
22490
|
readonly type: "number";
|
|
@@ -22648,6 +22503,7 @@ declare const SysJob: Omit<{
|
|
|
22648
22503
|
readonly name?: string | undefined;
|
|
22649
22504
|
readonly precision?: number | undefined;
|
|
22650
22505
|
readonly required?: boolean | undefined;
|
|
22506
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
22651
22507
|
readonly multiple?: boolean | undefined;
|
|
22652
22508
|
readonly dependencies?: string[] | undefined;
|
|
22653
22509
|
readonly externalId?: boolean | undefined;
|
|
@@ -22710,7 +22566,6 @@ declare const SysJob: Omit<{
|
|
|
22710
22566
|
relationshipField?: string | undefined;
|
|
22711
22567
|
} | undefined;
|
|
22712
22568
|
readonly language?: string | undefined;
|
|
22713
|
-
readonly maxRating?: number | undefined;
|
|
22714
22569
|
readonly step?: number | undefined;
|
|
22715
22570
|
readonly currencyConfig?: {
|
|
22716
22571
|
precision: number;
|
|
@@ -22804,7 +22659,6 @@ declare const SysJob: Omit<{
|
|
|
22804
22659
|
} | undefined;
|
|
22805
22660
|
readonly sortable?: boolean | undefined;
|
|
22806
22661
|
readonly inlineHelpText?: string | undefined;
|
|
22807
|
-
readonly caseSensitive?: boolean | undefined;
|
|
22808
22662
|
readonly autonumberFormat?: string | undefined;
|
|
22809
22663
|
readonly index?: boolean | undefined;
|
|
22810
22664
|
readonly type: "number";
|
|
@@ -22823,6 +22677,7 @@ declare const SysJob: Omit<{
|
|
|
22823
22677
|
readonly name?: string | undefined;
|
|
22824
22678
|
readonly precision?: number | undefined;
|
|
22825
22679
|
readonly required?: boolean | undefined;
|
|
22680
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
22826
22681
|
readonly multiple?: boolean | undefined;
|
|
22827
22682
|
readonly dependencies?: string[] | undefined;
|
|
22828
22683
|
readonly externalId?: boolean | undefined;
|
|
@@ -22885,7 +22740,6 @@ declare const SysJob: Omit<{
|
|
|
22885
22740
|
relationshipField?: string | undefined;
|
|
22886
22741
|
} | undefined;
|
|
22887
22742
|
readonly language?: string | undefined;
|
|
22888
|
-
readonly maxRating?: number | undefined;
|
|
22889
22743
|
readonly step?: number | undefined;
|
|
22890
22744
|
readonly currencyConfig?: {
|
|
22891
22745
|
precision: number;
|
|
@@ -22979,7 +22833,6 @@ declare const SysJob: Omit<{
|
|
|
22979
22833
|
} | undefined;
|
|
22980
22834
|
readonly sortable?: boolean | undefined;
|
|
22981
22835
|
readonly inlineHelpText?: string | undefined;
|
|
22982
|
-
readonly caseSensitive?: boolean | undefined;
|
|
22983
22836
|
readonly autonumberFormat?: string | undefined;
|
|
22984
22837
|
readonly index?: boolean | undefined;
|
|
22985
22838
|
readonly type: "datetime";
|
|
@@ -22998,6 +22851,7 @@ declare const SysJob: Omit<{
|
|
|
22998
22851
|
readonly name?: string | undefined;
|
|
22999
22852
|
readonly precision?: number | undefined;
|
|
23000
22853
|
readonly required?: boolean | undefined;
|
|
22854
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
23001
22855
|
readonly multiple?: boolean | undefined;
|
|
23002
22856
|
readonly dependencies?: string[] | undefined;
|
|
23003
22857
|
readonly externalId?: boolean | undefined;
|
|
@@ -23060,7 +22914,6 @@ declare const SysJob: Omit<{
|
|
|
23060
22914
|
relationshipField?: string | undefined;
|
|
23061
22915
|
} | undefined;
|
|
23062
22916
|
readonly language?: string | undefined;
|
|
23063
|
-
readonly maxRating?: number | undefined;
|
|
23064
22917
|
readonly step?: number | undefined;
|
|
23065
22918
|
readonly currencyConfig?: {
|
|
23066
22919
|
precision: number;
|
|
@@ -23154,7 +23007,6 @@ declare const SysJob: Omit<{
|
|
|
23154
23007
|
} | undefined;
|
|
23155
23008
|
readonly sortable?: boolean | undefined;
|
|
23156
23009
|
readonly inlineHelpText?: string | undefined;
|
|
23157
|
-
readonly caseSensitive?: boolean | undefined;
|
|
23158
23010
|
readonly autonumberFormat?: string | undefined;
|
|
23159
23011
|
readonly index?: boolean | undefined;
|
|
23160
23012
|
readonly type: "datetime";
|
|
@@ -23188,7 +23040,7 @@ declare const SysJobRun: Omit<{
|
|
|
23188
23040
|
abstract: boolean;
|
|
23189
23041
|
datasource: string;
|
|
23190
23042
|
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";
|
|
23043
|
+
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
23044
|
required: boolean;
|
|
23193
23045
|
searchable: boolean;
|
|
23194
23046
|
multiple: boolean;
|
|
@@ -23262,6 +23114,7 @@ declare const SysJobRun: Omit<{
|
|
|
23262
23114
|
generatedBy?: string | undefined;
|
|
23263
23115
|
} | undefined;
|
|
23264
23116
|
} | undefined;
|
|
23117
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
23265
23118
|
summaryOperations?: {
|
|
23266
23119
|
object: string;
|
|
23267
23120
|
field: string;
|
|
@@ -23269,7 +23122,6 @@ declare const SysJobRun: Omit<{
|
|
|
23269
23122
|
relationshipField?: string | undefined;
|
|
23270
23123
|
} | undefined;
|
|
23271
23124
|
language?: string | undefined;
|
|
23272
|
-
maxRating?: number | undefined;
|
|
23273
23125
|
step?: number | undefined;
|
|
23274
23126
|
currencyConfig?: {
|
|
23275
23127
|
precision: number;
|
|
@@ -23399,7 +23251,6 @@ declare const SysJobRun: Omit<{
|
|
|
23399
23251
|
requiredPermissions?: string[] | undefined;
|
|
23400
23252
|
system?: boolean | undefined;
|
|
23401
23253
|
inlineHelpText?: string | undefined;
|
|
23402
|
-
caseSensitive?: boolean | undefined;
|
|
23403
23254
|
autonumberFormat?: string | undefined;
|
|
23404
23255
|
}>;
|
|
23405
23256
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -23487,12 +23338,6 @@ declare const SysJobRun: Omit<{
|
|
|
23487
23338
|
versionField: string;
|
|
23488
23339
|
retentionDays?: number | undefined;
|
|
23489
23340
|
} | undefined;
|
|
23490
|
-
partitioning?: {
|
|
23491
|
-
enabled: boolean;
|
|
23492
|
-
strategy: "hash" | "list" | "range";
|
|
23493
|
-
key: string;
|
|
23494
|
-
interval?: string | undefined;
|
|
23495
|
-
} | undefined;
|
|
23496
23341
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
23497
23342
|
activityMilestones?: {
|
|
23498
23343
|
field: string;
|
|
@@ -23823,7 +23668,6 @@ declare const SysJobRun: Omit<{
|
|
|
23823
23668
|
debounceMs?: number | undefined;
|
|
23824
23669
|
} | undefined;
|
|
23825
23670
|
}> | undefined;
|
|
23826
|
-
defaultDetailForm?: string | undefined;
|
|
23827
23671
|
searchableFields?: string[] | undefined;
|
|
23828
23672
|
search?: {
|
|
23829
23673
|
fields: string[];
|
|
@@ -23840,7 +23684,7 @@ declare const SysJobRun: Omit<{
|
|
|
23840
23684
|
trash: boolean;
|
|
23841
23685
|
mru: boolean;
|
|
23842
23686
|
clone: boolean;
|
|
23843
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
23687
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "get" | "update" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
23844
23688
|
} | undefined;
|
|
23845
23689
|
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
23846
23690
|
publicSharing?: {
|
|
@@ -23868,6 +23712,7 @@ declare const SysJobRun: Omit<{
|
|
|
23868
23712
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
23869
23713
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
23870
23714
|
target?: string | undefined;
|
|
23715
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
23871
23716
|
body?: {
|
|
23872
23717
|
language: "expression";
|
|
23873
23718
|
source: string;
|
|
@@ -23885,7 +23730,7 @@ declare const SysJobRun: Omit<{
|
|
|
23885
23730
|
field?: string | undefined;
|
|
23886
23731
|
objectOverride?: string | undefined;
|
|
23887
23732
|
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;
|
|
23733
|
+
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
23734
|
options?: {
|
|
23890
23735
|
label: string;
|
|
23891
23736
|
value: string;
|
|
@@ -23992,6 +23837,7 @@ declare const SysJobRun: Omit<{
|
|
|
23992
23837
|
readonly name?: string | undefined;
|
|
23993
23838
|
readonly precision?: number | undefined;
|
|
23994
23839
|
readonly required?: boolean | undefined;
|
|
23840
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
23995
23841
|
readonly multiple?: boolean | undefined;
|
|
23996
23842
|
readonly dependencies?: string[] | undefined;
|
|
23997
23843
|
readonly externalId?: boolean | undefined;
|
|
@@ -24054,7 +23900,6 @@ declare const SysJobRun: Omit<{
|
|
|
24054
23900
|
relationshipField?: string | undefined;
|
|
24055
23901
|
} | undefined;
|
|
24056
23902
|
readonly language?: string | undefined;
|
|
24057
|
-
readonly maxRating?: number | undefined;
|
|
24058
23903
|
readonly step?: number | undefined;
|
|
24059
23904
|
readonly currencyConfig?: {
|
|
24060
23905
|
precision: number;
|
|
@@ -24148,7 +23993,6 @@ declare const SysJobRun: Omit<{
|
|
|
24148
23993
|
} | undefined;
|
|
24149
23994
|
readonly sortable?: boolean | undefined;
|
|
24150
23995
|
readonly inlineHelpText?: string | undefined;
|
|
24151
|
-
readonly caseSensitive?: boolean | undefined;
|
|
24152
23996
|
readonly autonumberFormat?: string | undefined;
|
|
24153
23997
|
readonly index?: boolean | undefined;
|
|
24154
23998
|
readonly type: "text";
|
|
@@ -24167,6 +24011,7 @@ declare const SysJobRun: Omit<{
|
|
|
24167
24011
|
readonly name?: string | undefined;
|
|
24168
24012
|
readonly precision?: number | undefined;
|
|
24169
24013
|
readonly required?: boolean | undefined;
|
|
24014
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
24170
24015
|
readonly multiple?: boolean | undefined;
|
|
24171
24016
|
readonly dependencies?: string[] | undefined;
|
|
24172
24017
|
readonly externalId?: boolean | undefined;
|
|
@@ -24229,7 +24074,6 @@ declare const SysJobRun: Omit<{
|
|
|
24229
24074
|
relationshipField?: string | undefined;
|
|
24230
24075
|
} | undefined;
|
|
24231
24076
|
readonly language?: string | undefined;
|
|
24232
|
-
readonly maxRating?: number | undefined;
|
|
24233
24077
|
readonly step?: number | undefined;
|
|
24234
24078
|
readonly currencyConfig?: {
|
|
24235
24079
|
precision: number;
|
|
@@ -24323,7 +24167,6 @@ declare const SysJobRun: Omit<{
|
|
|
24323
24167
|
} | undefined;
|
|
24324
24168
|
readonly sortable?: boolean | undefined;
|
|
24325
24169
|
readonly inlineHelpText?: string | undefined;
|
|
24326
|
-
readonly caseSensitive?: boolean | undefined;
|
|
24327
24170
|
readonly autonumberFormat?: string | undefined;
|
|
24328
24171
|
readonly index?: boolean | undefined;
|
|
24329
24172
|
readonly type: "text";
|
|
@@ -24342,6 +24185,7 @@ declare const SysJobRun: Omit<{
|
|
|
24342
24185
|
readonly name?: string | undefined;
|
|
24343
24186
|
readonly precision?: number | undefined;
|
|
24344
24187
|
readonly required?: boolean | undefined;
|
|
24188
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
24345
24189
|
readonly multiple?: boolean | undefined;
|
|
24346
24190
|
readonly dependencies?: string[] | undefined;
|
|
24347
24191
|
readonly externalId?: boolean | undefined;
|
|
@@ -24404,7 +24248,6 @@ declare const SysJobRun: Omit<{
|
|
|
24404
24248
|
relationshipField?: string | undefined;
|
|
24405
24249
|
} | undefined;
|
|
24406
24250
|
readonly language?: string | undefined;
|
|
24407
|
-
readonly maxRating?: number | undefined;
|
|
24408
24251
|
readonly step?: number | undefined;
|
|
24409
24252
|
readonly currencyConfig?: {
|
|
24410
24253
|
precision: number;
|
|
@@ -24498,7 +24341,6 @@ declare const SysJobRun: Omit<{
|
|
|
24498
24341
|
} | undefined;
|
|
24499
24342
|
readonly sortable?: boolean | undefined;
|
|
24500
24343
|
readonly inlineHelpText?: string | undefined;
|
|
24501
|
-
readonly caseSensitive?: boolean | undefined;
|
|
24502
24344
|
readonly autonumberFormat?: string | undefined;
|
|
24503
24345
|
readonly index?: boolean | undefined;
|
|
24504
24346
|
readonly type: "select";
|
|
@@ -24517,6 +24359,7 @@ declare const SysJobRun: Omit<{
|
|
|
24517
24359
|
readonly name?: string | undefined;
|
|
24518
24360
|
readonly precision?: number | undefined;
|
|
24519
24361
|
readonly required?: boolean | undefined;
|
|
24362
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
24520
24363
|
readonly multiple?: boolean | undefined;
|
|
24521
24364
|
readonly dependencies?: string[] | undefined;
|
|
24522
24365
|
readonly externalId?: boolean | undefined;
|
|
@@ -24579,7 +24422,6 @@ declare const SysJobRun: Omit<{
|
|
|
24579
24422
|
relationshipField?: string | undefined;
|
|
24580
24423
|
} | undefined;
|
|
24581
24424
|
readonly language?: string | undefined;
|
|
24582
|
-
readonly maxRating?: number | undefined;
|
|
24583
24425
|
readonly step?: number | undefined;
|
|
24584
24426
|
readonly currencyConfig?: {
|
|
24585
24427
|
precision: number;
|
|
@@ -24673,7 +24515,6 @@ declare const SysJobRun: Omit<{
|
|
|
24673
24515
|
} | undefined;
|
|
24674
24516
|
readonly sortable?: boolean | undefined;
|
|
24675
24517
|
readonly inlineHelpText?: string | undefined;
|
|
24676
|
-
readonly caseSensitive?: boolean | undefined;
|
|
24677
24518
|
readonly autonumberFormat?: string | undefined;
|
|
24678
24519
|
readonly index?: boolean | undefined;
|
|
24679
24520
|
readonly type: "datetime";
|
|
@@ -24692,6 +24533,7 @@ declare const SysJobRun: Omit<{
|
|
|
24692
24533
|
readonly name?: string | undefined;
|
|
24693
24534
|
readonly precision?: number | undefined;
|
|
24694
24535
|
readonly required?: boolean | undefined;
|
|
24536
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
24695
24537
|
readonly multiple?: boolean | undefined;
|
|
24696
24538
|
readonly dependencies?: string[] | undefined;
|
|
24697
24539
|
readonly externalId?: boolean | undefined;
|
|
@@ -24754,7 +24596,6 @@ declare const SysJobRun: Omit<{
|
|
|
24754
24596
|
relationshipField?: string | undefined;
|
|
24755
24597
|
} | undefined;
|
|
24756
24598
|
readonly language?: string | undefined;
|
|
24757
|
-
readonly maxRating?: number | undefined;
|
|
24758
24599
|
readonly step?: number | undefined;
|
|
24759
24600
|
readonly currencyConfig?: {
|
|
24760
24601
|
precision: number;
|
|
@@ -24848,7 +24689,6 @@ declare const SysJobRun: Omit<{
|
|
|
24848
24689
|
} | undefined;
|
|
24849
24690
|
readonly sortable?: boolean | undefined;
|
|
24850
24691
|
readonly inlineHelpText?: string | undefined;
|
|
24851
|
-
readonly caseSensitive?: boolean | undefined;
|
|
24852
24692
|
readonly autonumberFormat?: string | undefined;
|
|
24853
24693
|
readonly index?: boolean | undefined;
|
|
24854
24694
|
readonly type: "datetime";
|
|
@@ -24867,6 +24707,7 @@ declare const SysJobRun: Omit<{
|
|
|
24867
24707
|
readonly name?: string | undefined;
|
|
24868
24708
|
readonly precision?: number | undefined;
|
|
24869
24709
|
readonly required?: boolean | undefined;
|
|
24710
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
24870
24711
|
readonly multiple?: boolean | undefined;
|
|
24871
24712
|
readonly dependencies?: string[] | undefined;
|
|
24872
24713
|
readonly externalId?: boolean | undefined;
|
|
@@ -24929,7 +24770,6 @@ declare const SysJobRun: Omit<{
|
|
|
24929
24770
|
relationshipField?: string | undefined;
|
|
24930
24771
|
} | undefined;
|
|
24931
24772
|
readonly language?: string | undefined;
|
|
24932
|
-
readonly maxRating?: number | undefined;
|
|
24933
24773
|
readonly step?: number | undefined;
|
|
24934
24774
|
readonly currencyConfig?: {
|
|
24935
24775
|
precision: number;
|
|
@@ -25023,7 +24863,6 @@ declare const SysJobRun: Omit<{
|
|
|
25023
24863
|
} | undefined;
|
|
25024
24864
|
readonly sortable?: boolean | undefined;
|
|
25025
24865
|
readonly inlineHelpText?: string | undefined;
|
|
25026
|
-
readonly caseSensitive?: boolean | undefined;
|
|
25027
24866
|
readonly autonumberFormat?: string | undefined;
|
|
25028
24867
|
readonly index?: boolean | undefined;
|
|
25029
24868
|
readonly type: "number";
|
|
@@ -25042,6 +24881,7 @@ declare const SysJobRun: Omit<{
|
|
|
25042
24881
|
readonly name?: string | undefined;
|
|
25043
24882
|
readonly precision?: number | undefined;
|
|
25044
24883
|
readonly required?: boolean | undefined;
|
|
24884
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
25045
24885
|
readonly multiple?: boolean | undefined;
|
|
25046
24886
|
readonly dependencies?: string[] | undefined;
|
|
25047
24887
|
readonly externalId?: boolean | undefined;
|
|
@@ -25104,7 +24944,6 @@ declare const SysJobRun: Omit<{
|
|
|
25104
24944
|
relationshipField?: string | undefined;
|
|
25105
24945
|
} | undefined;
|
|
25106
24946
|
readonly language?: string | undefined;
|
|
25107
|
-
readonly maxRating?: number | undefined;
|
|
25108
24947
|
readonly step?: number | undefined;
|
|
25109
24948
|
readonly currencyConfig?: {
|
|
25110
24949
|
precision: number;
|
|
@@ -25198,7 +25037,6 @@ declare const SysJobRun: Omit<{
|
|
|
25198
25037
|
} | undefined;
|
|
25199
25038
|
readonly sortable?: boolean | undefined;
|
|
25200
25039
|
readonly inlineHelpText?: string | undefined;
|
|
25201
|
-
readonly caseSensitive?: boolean | undefined;
|
|
25202
25040
|
readonly autonumberFormat?: string | undefined;
|
|
25203
25041
|
readonly index?: boolean | undefined;
|
|
25204
25042
|
readonly type: "number";
|
|
@@ -25217,6 +25055,7 @@ declare const SysJobRun: Omit<{
|
|
|
25217
25055
|
readonly name?: string | undefined;
|
|
25218
25056
|
readonly precision?: number | undefined;
|
|
25219
25057
|
readonly required?: boolean | undefined;
|
|
25058
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
25220
25059
|
readonly multiple?: boolean | undefined;
|
|
25221
25060
|
readonly dependencies?: string[] | undefined;
|
|
25222
25061
|
readonly externalId?: boolean | undefined;
|
|
@@ -25279,7 +25118,6 @@ declare const SysJobRun: Omit<{
|
|
|
25279
25118
|
relationshipField?: string | undefined;
|
|
25280
25119
|
} | undefined;
|
|
25281
25120
|
readonly language?: string | undefined;
|
|
25282
|
-
readonly maxRating?: number | undefined;
|
|
25283
25121
|
readonly step?: number | undefined;
|
|
25284
25122
|
readonly currencyConfig?: {
|
|
25285
25123
|
precision: number;
|
|
@@ -25373,7 +25211,6 @@ declare const SysJobRun: Omit<{
|
|
|
25373
25211
|
} | undefined;
|
|
25374
25212
|
readonly sortable?: boolean | undefined;
|
|
25375
25213
|
readonly inlineHelpText?: string | undefined;
|
|
25376
|
-
readonly caseSensitive?: boolean | undefined;
|
|
25377
25214
|
readonly autonumberFormat?: string | undefined;
|
|
25378
25215
|
readonly index?: boolean | undefined;
|
|
25379
25216
|
readonly type: "select";
|
|
@@ -25392,6 +25229,7 @@ declare const SysJobRun: Omit<{
|
|
|
25392
25229
|
readonly name?: string | undefined;
|
|
25393
25230
|
readonly precision?: number | undefined;
|
|
25394
25231
|
readonly required?: boolean | undefined;
|
|
25232
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
25395
25233
|
readonly multiple?: boolean | undefined;
|
|
25396
25234
|
readonly dependencies?: string[] | undefined;
|
|
25397
25235
|
readonly externalId?: boolean | undefined;
|
|
@@ -25454,7 +25292,6 @@ declare const SysJobRun: Omit<{
|
|
|
25454
25292
|
relationshipField?: string | undefined;
|
|
25455
25293
|
} | undefined;
|
|
25456
25294
|
readonly language?: string | undefined;
|
|
25457
|
-
readonly maxRating?: number | undefined;
|
|
25458
25295
|
readonly step?: number | undefined;
|
|
25459
25296
|
readonly currencyConfig?: {
|
|
25460
25297
|
precision: number;
|
|
@@ -25548,7 +25385,6 @@ declare const SysJobRun: Omit<{
|
|
|
25548
25385
|
} | undefined;
|
|
25549
25386
|
readonly sortable?: boolean | undefined;
|
|
25550
25387
|
readonly inlineHelpText?: string | undefined;
|
|
25551
|
-
readonly caseSensitive?: boolean | undefined;
|
|
25552
25388
|
readonly autonumberFormat?: string | undefined;
|
|
25553
25389
|
readonly index?: boolean | undefined;
|
|
25554
25390
|
readonly type: "textarea";
|
|
@@ -25567,6 +25403,7 @@ declare const SysJobRun: Omit<{
|
|
|
25567
25403
|
readonly name?: string | undefined;
|
|
25568
25404
|
readonly precision?: number | undefined;
|
|
25569
25405
|
readonly required?: boolean | undefined;
|
|
25406
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
25570
25407
|
readonly multiple?: boolean | undefined;
|
|
25571
25408
|
readonly dependencies?: string[] | undefined;
|
|
25572
25409
|
readonly externalId?: boolean | undefined;
|
|
@@ -25629,7 +25466,6 @@ declare const SysJobRun: Omit<{
|
|
|
25629
25466
|
relationshipField?: string | undefined;
|
|
25630
25467
|
} | undefined;
|
|
25631
25468
|
readonly language?: string | undefined;
|
|
25632
|
-
readonly maxRating?: number | undefined;
|
|
25633
25469
|
readonly step?: number | undefined;
|
|
25634
25470
|
readonly currencyConfig?: {
|
|
25635
25471
|
precision: number;
|
|
@@ -25723,7 +25559,6 @@ declare const SysJobRun: Omit<{
|
|
|
25723
25559
|
} | undefined;
|
|
25724
25560
|
readonly sortable?: boolean | undefined;
|
|
25725
25561
|
readonly inlineHelpText?: string | undefined;
|
|
25726
|
-
readonly caseSensitive?: boolean | undefined;
|
|
25727
25562
|
readonly autonumberFormat?: string | undefined;
|
|
25728
25563
|
readonly index?: boolean | undefined;
|
|
25729
25564
|
readonly type: "datetime";
|
|
@@ -25765,7 +25600,7 @@ declare const SysJobQueue: Omit<{
|
|
|
25765
25600
|
abstract: boolean;
|
|
25766
25601
|
datasource: string;
|
|
25767
25602
|
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";
|
|
25603
|
+
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
25604
|
required: boolean;
|
|
25770
25605
|
searchable: boolean;
|
|
25771
25606
|
multiple: boolean;
|
|
@@ -25839,6 +25674,7 @@ declare const SysJobQueue: Omit<{
|
|
|
25839
25674
|
generatedBy?: string | undefined;
|
|
25840
25675
|
} | undefined;
|
|
25841
25676
|
} | undefined;
|
|
25677
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
25842
25678
|
summaryOperations?: {
|
|
25843
25679
|
object: string;
|
|
25844
25680
|
field: string;
|
|
@@ -25846,7 +25682,6 @@ declare const SysJobQueue: Omit<{
|
|
|
25846
25682
|
relationshipField?: string | undefined;
|
|
25847
25683
|
} | undefined;
|
|
25848
25684
|
language?: string | undefined;
|
|
25849
|
-
maxRating?: number | undefined;
|
|
25850
25685
|
step?: number | undefined;
|
|
25851
25686
|
currencyConfig?: {
|
|
25852
25687
|
precision: number;
|
|
@@ -25976,7 +25811,6 @@ declare const SysJobQueue: Omit<{
|
|
|
25976
25811
|
requiredPermissions?: string[] | undefined;
|
|
25977
25812
|
system?: boolean | undefined;
|
|
25978
25813
|
inlineHelpText?: string | undefined;
|
|
25979
|
-
caseSensitive?: boolean | undefined;
|
|
25980
25814
|
autonumberFormat?: string | undefined;
|
|
25981
25815
|
}>;
|
|
25982
25816
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -26064,12 +25898,6 @@ declare const SysJobQueue: Omit<{
|
|
|
26064
25898
|
versionField: string;
|
|
26065
25899
|
retentionDays?: number | undefined;
|
|
26066
25900
|
} | undefined;
|
|
26067
|
-
partitioning?: {
|
|
26068
|
-
enabled: boolean;
|
|
26069
|
-
strategy: "hash" | "list" | "range";
|
|
26070
|
-
key: string;
|
|
26071
|
-
interval?: string | undefined;
|
|
26072
|
-
} | undefined;
|
|
26073
25901
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
26074
25902
|
activityMilestones?: {
|
|
26075
25903
|
field: string;
|
|
@@ -26400,7 +26228,6 @@ declare const SysJobQueue: Omit<{
|
|
|
26400
26228
|
debounceMs?: number | undefined;
|
|
26401
26229
|
} | undefined;
|
|
26402
26230
|
}> | undefined;
|
|
26403
|
-
defaultDetailForm?: string | undefined;
|
|
26404
26231
|
searchableFields?: string[] | undefined;
|
|
26405
26232
|
search?: {
|
|
26406
26233
|
fields: string[];
|
|
@@ -26417,7 +26244,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26417
26244
|
trash: boolean;
|
|
26418
26245
|
mru: boolean;
|
|
26419
26246
|
clone: boolean;
|
|
26420
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
26247
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "get" | "update" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
26421
26248
|
} | undefined;
|
|
26422
26249
|
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
26423
26250
|
publicSharing?: {
|
|
@@ -26445,6 +26272,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26445
26272
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
26446
26273
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
26447
26274
|
target?: string | undefined;
|
|
26275
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
26448
26276
|
body?: {
|
|
26449
26277
|
language: "expression";
|
|
26450
26278
|
source: string;
|
|
@@ -26462,7 +26290,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26462
26290
|
field?: string | undefined;
|
|
26463
26291
|
objectOverride?: string | undefined;
|
|
26464
26292
|
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;
|
|
26293
|
+
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
26294
|
options?: {
|
|
26467
26295
|
label: string;
|
|
26468
26296
|
value: string;
|
|
@@ -26569,6 +26397,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26569
26397
|
readonly name?: string | undefined;
|
|
26570
26398
|
readonly precision?: number | undefined;
|
|
26571
26399
|
readonly required?: boolean | undefined;
|
|
26400
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
26572
26401
|
readonly multiple?: boolean | undefined;
|
|
26573
26402
|
readonly dependencies?: string[] | undefined;
|
|
26574
26403
|
readonly externalId?: boolean | undefined;
|
|
@@ -26631,7 +26460,6 @@ declare const SysJobQueue: Omit<{
|
|
|
26631
26460
|
relationshipField?: string | undefined;
|
|
26632
26461
|
} | undefined;
|
|
26633
26462
|
readonly language?: string | undefined;
|
|
26634
|
-
readonly maxRating?: number | undefined;
|
|
26635
26463
|
readonly step?: number | undefined;
|
|
26636
26464
|
readonly currencyConfig?: {
|
|
26637
26465
|
precision: number;
|
|
@@ -26725,7 +26553,6 @@ declare const SysJobQueue: Omit<{
|
|
|
26725
26553
|
} | undefined;
|
|
26726
26554
|
readonly sortable?: boolean | undefined;
|
|
26727
26555
|
readonly inlineHelpText?: string | undefined;
|
|
26728
|
-
readonly caseSensitive?: boolean | undefined;
|
|
26729
26556
|
readonly autonumberFormat?: string | undefined;
|
|
26730
26557
|
readonly index?: boolean | undefined;
|
|
26731
26558
|
readonly type: "text";
|
|
@@ -26744,6 +26571,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26744
26571
|
readonly name?: string | undefined;
|
|
26745
26572
|
readonly precision?: number | undefined;
|
|
26746
26573
|
readonly required?: boolean | undefined;
|
|
26574
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
26747
26575
|
readonly multiple?: boolean | undefined;
|
|
26748
26576
|
readonly dependencies?: string[] | undefined;
|
|
26749
26577
|
readonly externalId?: boolean | undefined;
|
|
@@ -26806,7 +26634,6 @@ declare const SysJobQueue: Omit<{
|
|
|
26806
26634
|
relationshipField?: string | undefined;
|
|
26807
26635
|
} | undefined;
|
|
26808
26636
|
readonly language?: string | undefined;
|
|
26809
|
-
readonly maxRating?: number | undefined;
|
|
26810
26637
|
readonly step?: number | undefined;
|
|
26811
26638
|
readonly currencyConfig?: {
|
|
26812
26639
|
precision: number;
|
|
@@ -26900,7 +26727,6 @@ declare const SysJobQueue: Omit<{
|
|
|
26900
26727
|
} | undefined;
|
|
26901
26728
|
readonly sortable?: boolean | undefined;
|
|
26902
26729
|
readonly inlineHelpText?: string | undefined;
|
|
26903
|
-
readonly caseSensitive?: boolean | undefined;
|
|
26904
26730
|
readonly autonumberFormat?: string | undefined;
|
|
26905
26731
|
readonly index?: boolean | undefined;
|
|
26906
26732
|
readonly type: "text";
|
|
@@ -26919,6 +26745,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26919
26745
|
readonly name?: string | undefined;
|
|
26920
26746
|
readonly precision?: number | undefined;
|
|
26921
26747
|
readonly required?: boolean | undefined;
|
|
26748
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
26922
26749
|
readonly multiple?: boolean | undefined;
|
|
26923
26750
|
readonly dependencies?: string[] | undefined;
|
|
26924
26751
|
readonly externalId?: boolean | undefined;
|
|
@@ -26981,7 +26808,6 @@ declare const SysJobQueue: Omit<{
|
|
|
26981
26808
|
relationshipField?: string | undefined;
|
|
26982
26809
|
} | undefined;
|
|
26983
26810
|
readonly language?: string | undefined;
|
|
26984
|
-
readonly maxRating?: number | undefined;
|
|
26985
26811
|
readonly step?: number | undefined;
|
|
26986
26812
|
readonly currencyConfig?: {
|
|
26987
26813
|
precision: number;
|
|
@@ -27075,7 +26901,6 @@ declare const SysJobQueue: Omit<{
|
|
|
27075
26901
|
} | undefined;
|
|
27076
26902
|
readonly sortable?: boolean | undefined;
|
|
27077
26903
|
readonly inlineHelpText?: string | undefined;
|
|
27078
|
-
readonly caseSensitive?: boolean | undefined;
|
|
27079
26904
|
readonly autonumberFormat?: string | undefined;
|
|
27080
26905
|
readonly index?: boolean | undefined;
|
|
27081
26906
|
readonly type: "text";
|
|
@@ -27094,6 +26919,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27094
26919
|
readonly name?: string | undefined;
|
|
27095
26920
|
readonly precision?: number | undefined;
|
|
27096
26921
|
readonly required?: boolean | undefined;
|
|
26922
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27097
26923
|
readonly multiple?: boolean | undefined;
|
|
27098
26924
|
readonly dependencies?: string[] | undefined;
|
|
27099
26925
|
readonly externalId?: boolean | undefined;
|
|
@@ -27156,7 +26982,6 @@ declare const SysJobQueue: Omit<{
|
|
|
27156
26982
|
relationshipField?: string | undefined;
|
|
27157
26983
|
} | undefined;
|
|
27158
26984
|
readonly language?: string | undefined;
|
|
27159
|
-
readonly maxRating?: number | undefined;
|
|
27160
26985
|
readonly step?: number | undefined;
|
|
27161
26986
|
readonly currencyConfig?: {
|
|
27162
26987
|
precision: number;
|
|
@@ -27250,7 +27075,6 @@ declare const SysJobQueue: Omit<{
|
|
|
27250
27075
|
} | undefined;
|
|
27251
27076
|
readonly sortable?: boolean | undefined;
|
|
27252
27077
|
readonly inlineHelpText?: string | undefined;
|
|
27253
|
-
readonly caseSensitive?: boolean | undefined;
|
|
27254
27078
|
readonly autonumberFormat?: string | undefined;
|
|
27255
27079
|
readonly index?: boolean | undefined;
|
|
27256
27080
|
readonly type: "textarea";
|
|
@@ -27269,6 +27093,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27269
27093
|
readonly name?: string | undefined;
|
|
27270
27094
|
readonly precision?: number | undefined;
|
|
27271
27095
|
readonly required?: boolean | undefined;
|
|
27096
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27272
27097
|
readonly multiple?: boolean | undefined;
|
|
27273
27098
|
readonly dependencies?: string[] | undefined;
|
|
27274
27099
|
readonly externalId?: boolean | undefined;
|
|
@@ -27331,7 +27156,6 @@ declare const SysJobQueue: Omit<{
|
|
|
27331
27156
|
relationshipField?: string | undefined;
|
|
27332
27157
|
} | undefined;
|
|
27333
27158
|
readonly language?: string | undefined;
|
|
27334
|
-
readonly maxRating?: number | undefined;
|
|
27335
27159
|
readonly step?: number | undefined;
|
|
27336
27160
|
readonly currencyConfig?: {
|
|
27337
27161
|
precision: number;
|
|
@@ -27425,7 +27249,6 @@ declare const SysJobQueue: Omit<{
|
|
|
27425
27249
|
} | undefined;
|
|
27426
27250
|
readonly sortable?: boolean | undefined;
|
|
27427
27251
|
readonly inlineHelpText?: string | undefined;
|
|
27428
|
-
readonly caseSensitive?: boolean | undefined;
|
|
27429
27252
|
readonly autonumberFormat?: string | undefined;
|
|
27430
27253
|
readonly index?: boolean | undefined;
|
|
27431
27254
|
readonly type: "textarea";
|
|
@@ -27444,6 +27267,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27444
27267
|
readonly name?: string | undefined;
|
|
27445
27268
|
readonly precision?: number | undefined;
|
|
27446
27269
|
readonly required?: boolean | undefined;
|
|
27270
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27447
27271
|
readonly multiple?: boolean | undefined;
|
|
27448
27272
|
readonly dependencies?: string[] | undefined;
|
|
27449
27273
|
readonly externalId?: boolean | undefined;
|
|
@@ -27506,7 +27330,6 @@ declare const SysJobQueue: Omit<{
|
|
|
27506
27330
|
relationshipField?: string | undefined;
|
|
27507
27331
|
} | undefined;
|
|
27508
27332
|
readonly language?: string | undefined;
|
|
27509
|
-
readonly maxRating?: number | undefined;
|
|
27510
27333
|
readonly step?: number | undefined;
|
|
27511
27334
|
readonly currencyConfig?: {
|
|
27512
27335
|
precision: number;
|
|
@@ -27600,7 +27423,6 @@ declare const SysJobQueue: Omit<{
|
|
|
27600
27423
|
} | undefined;
|
|
27601
27424
|
readonly sortable?: boolean | undefined;
|
|
27602
27425
|
readonly inlineHelpText?: string | undefined;
|
|
27603
|
-
readonly caseSensitive?: boolean | undefined;
|
|
27604
27426
|
readonly autonumberFormat?: string | undefined;
|
|
27605
27427
|
readonly index?: boolean | undefined;
|
|
27606
27428
|
readonly type: "select";
|
|
@@ -27619,6 +27441,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27619
27441
|
readonly name?: string | undefined;
|
|
27620
27442
|
readonly precision?: number | undefined;
|
|
27621
27443
|
readonly required?: boolean | undefined;
|
|
27444
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27622
27445
|
readonly multiple?: boolean | undefined;
|
|
27623
27446
|
readonly dependencies?: string[] | undefined;
|
|
27624
27447
|
readonly externalId?: boolean | undefined;
|
|
@@ -27681,7 +27504,6 @@ declare const SysJobQueue: Omit<{
|
|
|
27681
27504
|
relationshipField?: string | undefined;
|
|
27682
27505
|
} | undefined;
|
|
27683
27506
|
readonly language?: string | undefined;
|
|
27684
|
-
readonly maxRating?: number | undefined;
|
|
27685
27507
|
readonly step?: number | undefined;
|
|
27686
27508
|
readonly currencyConfig?: {
|
|
27687
27509
|
precision: number;
|
|
@@ -27775,7 +27597,6 @@ declare const SysJobQueue: Omit<{
|
|
|
27775
27597
|
} | undefined;
|
|
27776
27598
|
readonly sortable?: boolean | undefined;
|
|
27777
27599
|
readonly inlineHelpText?: string | undefined;
|
|
27778
|
-
readonly caseSensitive?: boolean | undefined;
|
|
27779
27600
|
readonly autonumberFormat?: string | undefined;
|
|
27780
27601
|
readonly index?: boolean | undefined;
|
|
27781
27602
|
readonly type: "number";
|
|
@@ -27794,6 +27615,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27794
27615
|
readonly name?: string | undefined;
|
|
27795
27616
|
readonly precision?: number | undefined;
|
|
27796
27617
|
readonly required?: boolean | undefined;
|
|
27618
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27797
27619
|
readonly multiple?: boolean | undefined;
|
|
27798
27620
|
readonly dependencies?: string[] | undefined;
|
|
27799
27621
|
readonly externalId?: boolean | undefined;
|
|
@@ -27856,7 +27678,6 @@ declare const SysJobQueue: Omit<{
|
|
|
27856
27678
|
relationshipField?: string | undefined;
|
|
27857
27679
|
} | undefined;
|
|
27858
27680
|
readonly language?: string | undefined;
|
|
27859
|
-
readonly maxRating?: number | undefined;
|
|
27860
27681
|
readonly step?: number | undefined;
|
|
27861
27682
|
readonly currencyConfig?: {
|
|
27862
27683
|
precision: number;
|
|
@@ -27950,7 +27771,6 @@ declare const SysJobQueue: Omit<{
|
|
|
27950
27771
|
} | undefined;
|
|
27951
27772
|
readonly sortable?: boolean | undefined;
|
|
27952
27773
|
readonly inlineHelpText?: string | undefined;
|
|
27953
|
-
readonly caseSensitive?: boolean | undefined;
|
|
27954
27774
|
readonly autonumberFormat?: string | undefined;
|
|
27955
27775
|
readonly index?: boolean | undefined;
|
|
27956
27776
|
readonly type: "number";
|
|
@@ -27969,6 +27789,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27969
27789
|
readonly name?: string | undefined;
|
|
27970
27790
|
readonly precision?: number | undefined;
|
|
27971
27791
|
readonly required?: boolean | undefined;
|
|
27792
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
27972
27793
|
readonly multiple?: boolean | undefined;
|
|
27973
27794
|
readonly dependencies?: string[] | undefined;
|
|
27974
27795
|
readonly externalId?: boolean | undefined;
|
|
@@ -28031,7 +27852,6 @@ declare const SysJobQueue: Omit<{
|
|
|
28031
27852
|
relationshipField?: string | undefined;
|
|
28032
27853
|
} | undefined;
|
|
28033
27854
|
readonly language?: string | undefined;
|
|
28034
|
-
readonly maxRating?: number | undefined;
|
|
28035
27855
|
readonly step?: number | undefined;
|
|
28036
27856
|
readonly currencyConfig?: {
|
|
28037
27857
|
precision: number;
|
|
@@ -28125,7 +27945,6 @@ declare const SysJobQueue: Omit<{
|
|
|
28125
27945
|
} | undefined;
|
|
28126
27946
|
readonly sortable?: boolean | undefined;
|
|
28127
27947
|
readonly inlineHelpText?: string | undefined;
|
|
28128
|
-
readonly caseSensitive?: boolean | undefined;
|
|
28129
27948
|
readonly autonumberFormat?: string | undefined;
|
|
28130
27949
|
readonly index?: boolean | undefined;
|
|
28131
27950
|
readonly type: "number";
|
|
@@ -28144,6 +27963,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28144
27963
|
readonly name?: string | undefined;
|
|
28145
27964
|
readonly precision?: number | undefined;
|
|
28146
27965
|
readonly required?: boolean | undefined;
|
|
27966
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
28147
27967
|
readonly multiple?: boolean | undefined;
|
|
28148
27968
|
readonly dependencies?: string[] | undefined;
|
|
28149
27969
|
readonly externalId?: boolean | undefined;
|
|
@@ -28206,7 +28026,6 @@ declare const SysJobQueue: Omit<{
|
|
|
28206
28026
|
relationshipField?: string | undefined;
|
|
28207
28027
|
} | undefined;
|
|
28208
28028
|
readonly language?: string | undefined;
|
|
28209
|
-
readonly maxRating?: number | undefined;
|
|
28210
28029
|
readonly step?: number | undefined;
|
|
28211
28030
|
readonly currencyConfig?: {
|
|
28212
28031
|
precision: number;
|
|
@@ -28300,7 +28119,6 @@ declare const SysJobQueue: Omit<{
|
|
|
28300
28119
|
} | undefined;
|
|
28301
28120
|
readonly sortable?: boolean | undefined;
|
|
28302
28121
|
readonly inlineHelpText?: string | undefined;
|
|
28303
|
-
readonly caseSensitive?: boolean | undefined;
|
|
28304
28122
|
readonly autonumberFormat?: string | undefined;
|
|
28305
28123
|
readonly index?: boolean | undefined;
|
|
28306
28124
|
readonly type: "select";
|
|
@@ -28319,6 +28137,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28319
28137
|
readonly name?: string | undefined;
|
|
28320
28138
|
readonly precision?: number | undefined;
|
|
28321
28139
|
readonly required?: boolean | undefined;
|
|
28140
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
28322
28141
|
readonly multiple?: boolean | undefined;
|
|
28323
28142
|
readonly dependencies?: string[] | undefined;
|
|
28324
28143
|
readonly externalId?: boolean | undefined;
|
|
@@ -28381,7 +28200,6 @@ declare const SysJobQueue: Omit<{
|
|
|
28381
28200
|
relationshipField?: string | undefined;
|
|
28382
28201
|
} | undefined;
|
|
28383
28202
|
readonly language?: string | undefined;
|
|
28384
|
-
readonly maxRating?: number | undefined;
|
|
28385
28203
|
readonly step?: number | undefined;
|
|
28386
28204
|
readonly currencyConfig?: {
|
|
28387
28205
|
precision: number;
|
|
@@ -28475,7 +28293,6 @@ declare const SysJobQueue: Omit<{
|
|
|
28475
28293
|
} | undefined;
|
|
28476
28294
|
readonly sortable?: boolean | undefined;
|
|
28477
28295
|
readonly inlineHelpText?: string | undefined;
|
|
28478
|
-
readonly caseSensitive?: boolean | undefined;
|
|
28479
28296
|
readonly autonumberFormat?: string | undefined;
|
|
28480
28297
|
readonly index?: boolean | undefined;
|
|
28481
28298
|
readonly type: "number";
|
|
@@ -28494,6 +28311,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28494
28311
|
readonly name?: string | undefined;
|
|
28495
28312
|
readonly precision?: number | undefined;
|
|
28496
28313
|
readonly required?: boolean | undefined;
|
|
28314
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
28497
28315
|
readonly multiple?: boolean | undefined;
|
|
28498
28316
|
readonly dependencies?: string[] | undefined;
|
|
28499
28317
|
readonly externalId?: boolean | undefined;
|
|
@@ -28556,7 +28374,6 @@ declare const SysJobQueue: Omit<{
|
|
|
28556
28374
|
relationshipField?: string | undefined;
|
|
28557
28375
|
} | undefined;
|
|
28558
28376
|
readonly language?: string | undefined;
|
|
28559
|
-
readonly maxRating?: number | undefined;
|
|
28560
28377
|
readonly step?: number | undefined;
|
|
28561
28378
|
readonly currencyConfig?: {
|
|
28562
28379
|
precision: number;
|
|
@@ -28650,7 +28467,6 @@ declare const SysJobQueue: Omit<{
|
|
|
28650
28467
|
} | undefined;
|
|
28651
28468
|
readonly sortable?: boolean | undefined;
|
|
28652
28469
|
readonly inlineHelpText?: string | undefined;
|
|
28653
|
-
readonly caseSensitive?: boolean | undefined;
|
|
28654
28470
|
readonly autonumberFormat?: string | undefined;
|
|
28655
28471
|
readonly index?: boolean | undefined;
|
|
28656
28472
|
readonly type: "number";
|
|
@@ -28669,6 +28485,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28669
28485
|
readonly name?: string | undefined;
|
|
28670
28486
|
readonly precision?: number | undefined;
|
|
28671
28487
|
readonly required?: boolean | undefined;
|
|
28488
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
28672
28489
|
readonly multiple?: boolean | undefined;
|
|
28673
28490
|
readonly dependencies?: string[] | undefined;
|
|
28674
28491
|
readonly externalId?: boolean | undefined;
|
|
@@ -28731,7 +28548,6 @@ declare const SysJobQueue: Omit<{
|
|
|
28731
28548
|
relationshipField?: string | undefined;
|
|
28732
28549
|
} | undefined;
|
|
28733
28550
|
readonly language?: string | undefined;
|
|
28734
|
-
readonly maxRating?: number | undefined;
|
|
28735
28551
|
readonly step?: number | undefined;
|
|
28736
28552
|
readonly currencyConfig?: {
|
|
28737
28553
|
precision: number;
|
|
@@ -28825,7 +28641,6 @@ declare const SysJobQueue: Omit<{
|
|
|
28825
28641
|
} | undefined;
|
|
28826
28642
|
readonly sortable?: boolean | undefined;
|
|
28827
28643
|
readonly inlineHelpText?: string | undefined;
|
|
28828
|
-
readonly caseSensitive?: boolean | undefined;
|
|
28829
28644
|
readonly autonumberFormat?: string | undefined;
|
|
28830
28645
|
readonly index?: boolean | undefined;
|
|
28831
28646
|
readonly type: "datetime";
|
|
@@ -28844,6 +28659,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28844
28659
|
readonly name?: string | undefined;
|
|
28845
28660
|
readonly precision?: number | undefined;
|
|
28846
28661
|
readonly required?: boolean | undefined;
|
|
28662
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
28847
28663
|
readonly multiple?: boolean | undefined;
|
|
28848
28664
|
readonly dependencies?: string[] | undefined;
|
|
28849
28665
|
readonly externalId?: boolean | undefined;
|
|
@@ -28906,7 +28722,6 @@ declare const SysJobQueue: Omit<{
|
|
|
28906
28722
|
relationshipField?: string | undefined;
|
|
28907
28723
|
} | undefined;
|
|
28908
28724
|
readonly language?: string | undefined;
|
|
28909
|
-
readonly maxRating?: number | undefined;
|
|
28910
28725
|
readonly step?: number | undefined;
|
|
28911
28726
|
readonly currencyConfig?: {
|
|
28912
28727
|
precision: number;
|
|
@@ -29000,7 +28815,6 @@ declare const SysJobQueue: Omit<{
|
|
|
29000
28815
|
} | undefined;
|
|
29001
28816
|
readonly sortable?: boolean | undefined;
|
|
29002
28817
|
readonly inlineHelpText?: string | undefined;
|
|
29003
|
-
readonly caseSensitive?: boolean | undefined;
|
|
29004
28818
|
readonly autonumberFormat?: string | undefined;
|
|
29005
28819
|
readonly index?: boolean | undefined;
|
|
29006
28820
|
readonly type: "text";
|
|
@@ -29019,6 +28833,7 @@ declare const SysJobQueue: Omit<{
|
|
|
29019
28833
|
readonly name?: string | undefined;
|
|
29020
28834
|
readonly precision?: number | undefined;
|
|
29021
28835
|
readonly required?: boolean | undefined;
|
|
28836
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
29022
28837
|
readonly multiple?: boolean | undefined;
|
|
29023
28838
|
readonly dependencies?: string[] | undefined;
|
|
29024
28839
|
readonly externalId?: boolean | undefined;
|
|
@@ -29081,7 +28896,6 @@ declare const SysJobQueue: Omit<{
|
|
|
29081
28896
|
relationshipField?: string | undefined;
|
|
29082
28897
|
} | undefined;
|
|
29083
28898
|
readonly language?: string | undefined;
|
|
29084
|
-
readonly maxRating?: number | undefined;
|
|
29085
28899
|
readonly step?: number | undefined;
|
|
29086
28900
|
readonly currencyConfig?: {
|
|
29087
28901
|
precision: number;
|
|
@@ -29175,7 +28989,6 @@ declare const SysJobQueue: Omit<{
|
|
|
29175
28989
|
} | undefined;
|
|
29176
28990
|
readonly sortable?: boolean | undefined;
|
|
29177
28991
|
readonly inlineHelpText?: string | undefined;
|
|
29178
|
-
readonly caseSensitive?: boolean | undefined;
|
|
29179
28992
|
readonly autonumberFormat?: string | undefined;
|
|
29180
28993
|
readonly index?: boolean | undefined;
|
|
29181
28994
|
readonly type: "datetime";
|
|
@@ -29194,6 +29007,7 @@ declare const SysJobQueue: Omit<{
|
|
|
29194
29007
|
readonly name?: string | undefined;
|
|
29195
29008
|
readonly precision?: number | undefined;
|
|
29196
29009
|
readonly required?: boolean | undefined;
|
|
29010
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
29197
29011
|
readonly multiple?: boolean | undefined;
|
|
29198
29012
|
readonly dependencies?: string[] | undefined;
|
|
29199
29013
|
readonly externalId?: boolean | undefined;
|
|
@@ -29256,7 +29070,6 @@ declare const SysJobQueue: Omit<{
|
|
|
29256
29070
|
relationshipField?: string | undefined;
|
|
29257
29071
|
} | undefined;
|
|
29258
29072
|
readonly language?: string | undefined;
|
|
29259
|
-
readonly maxRating?: number | undefined;
|
|
29260
29073
|
readonly step?: number | undefined;
|
|
29261
29074
|
readonly currencyConfig?: {
|
|
29262
29075
|
precision: number;
|
|
@@ -29350,7 +29163,6 @@ declare const SysJobQueue: Omit<{
|
|
|
29350
29163
|
} | undefined;
|
|
29351
29164
|
readonly sortable?: boolean | undefined;
|
|
29352
29165
|
readonly inlineHelpText?: string | undefined;
|
|
29353
|
-
readonly caseSensitive?: boolean | undefined;
|
|
29354
29166
|
readonly autonumberFormat?: string | undefined;
|
|
29355
29167
|
readonly index?: boolean | undefined;
|
|
29356
29168
|
readonly type: "textarea";
|
|
@@ -29369,6 +29181,7 @@ declare const SysJobQueue: Omit<{
|
|
|
29369
29181
|
readonly name?: string | undefined;
|
|
29370
29182
|
readonly precision?: number | undefined;
|
|
29371
29183
|
readonly required?: boolean | undefined;
|
|
29184
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
29372
29185
|
readonly multiple?: boolean | undefined;
|
|
29373
29186
|
readonly dependencies?: string[] | undefined;
|
|
29374
29187
|
readonly externalId?: boolean | undefined;
|
|
@@ -29431,7 +29244,6 @@ declare const SysJobQueue: Omit<{
|
|
|
29431
29244
|
relationshipField?: string | undefined;
|
|
29432
29245
|
} | undefined;
|
|
29433
29246
|
readonly language?: string | undefined;
|
|
29434
|
-
readonly maxRating?: number | undefined;
|
|
29435
29247
|
readonly step?: number | undefined;
|
|
29436
29248
|
readonly currencyConfig?: {
|
|
29437
29249
|
precision: number;
|
|
@@ -29525,7 +29337,6 @@ declare const SysJobQueue: Omit<{
|
|
|
29525
29337
|
} | undefined;
|
|
29526
29338
|
readonly sortable?: boolean | undefined;
|
|
29527
29339
|
readonly inlineHelpText?: string | undefined;
|
|
29528
|
-
readonly caseSensitive?: boolean | undefined;
|
|
29529
29340
|
readonly autonumberFormat?: string | undefined;
|
|
29530
29341
|
readonly index?: boolean | undefined;
|
|
29531
29342
|
readonly type: "datetime";
|
|
@@ -29544,6 +29355,7 @@ declare const SysJobQueue: Omit<{
|
|
|
29544
29355
|
readonly name?: string | undefined;
|
|
29545
29356
|
readonly precision?: number | undefined;
|
|
29546
29357
|
readonly required?: boolean | undefined;
|
|
29358
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
29547
29359
|
readonly multiple?: boolean | undefined;
|
|
29548
29360
|
readonly dependencies?: string[] | undefined;
|
|
29549
29361
|
readonly externalId?: boolean | undefined;
|
|
@@ -29606,7 +29418,6 @@ declare const SysJobQueue: Omit<{
|
|
|
29606
29418
|
relationshipField?: string | undefined;
|
|
29607
29419
|
} | undefined;
|
|
29608
29420
|
readonly language?: string | undefined;
|
|
29609
|
-
readonly maxRating?: number | undefined;
|
|
29610
29421
|
readonly step?: number | undefined;
|
|
29611
29422
|
readonly currencyConfig?: {
|
|
29612
29423
|
precision: number;
|
|
@@ -29700,7 +29511,6 @@ declare const SysJobQueue: Omit<{
|
|
|
29700
29511
|
} | undefined;
|
|
29701
29512
|
readonly sortable?: boolean | undefined;
|
|
29702
29513
|
readonly inlineHelpText?: string | undefined;
|
|
29703
|
-
readonly caseSensitive?: boolean | undefined;
|
|
29704
29514
|
readonly autonumberFormat?: string | undefined;
|
|
29705
29515
|
readonly index?: boolean | undefined;
|
|
29706
29516
|
readonly type: "datetime";
|
|
@@ -29719,6 +29529,7 @@ declare const SysJobQueue: Omit<{
|
|
|
29719
29529
|
readonly name?: string | undefined;
|
|
29720
29530
|
readonly precision?: number | undefined;
|
|
29721
29531
|
readonly required?: boolean | undefined;
|
|
29532
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
29722
29533
|
readonly multiple?: boolean | undefined;
|
|
29723
29534
|
readonly dependencies?: string[] | undefined;
|
|
29724
29535
|
readonly externalId?: boolean | undefined;
|
|
@@ -29781,7 +29592,6 @@ declare const SysJobQueue: Omit<{
|
|
|
29781
29592
|
relationshipField?: string | undefined;
|
|
29782
29593
|
} | undefined;
|
|
29783
29594
|
readonly language?: string | undefined;
|
|
29784
|
-
readonly maxRating?: number | undefined;
|
|
29785
29595
|
readonly step?: number | undefined;
|
|
29786
29596
|
readonly currencyConfig?: {
|
|
29787
29597
|
precision: number;
|
|
@@ -29875,7 +29685,6 @@ declare const SysJobQueue: Omit<{
|
|
|
29875
29685
|
} | undefined;
|
|
29876
29686
|
readonly sortable?: boolean | undefined;
|
|
29877
29687
|
readonly inlineHelpText?: string | undefined;
|
|
29878
|
-
readonly caseSensitive?: boolean | undefined;
|
|
29879
29688
|
readonly autonumberFormat?: string | undefined;
|
|
29880
29689
|
readonly index?: boolean | undefined;
|
|
29881
29690
|
readonly type: "datetime";
|