@objectstack/plugin-approvals 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/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +101 -0
- package/LICENSE +202 -93
- package/dist/index.d.mts +47 -100
- package/dist/index.d.ts +47 -100
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
- package/src/approval-service.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
31
31
|
abstract: boolean;
|
|
32
32
|
datasource: string;
|
|
33
33
|
fields: Record<string, {
|
|
34
|
-
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";
|
|
34
|
+
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";
|
|
35
35
|
required: boolean;
|
|
36
36
|
searchable: boolean;
|
|
37
37
|
multiple: boolean;
|
|
@@ -105,6 +105,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
105
105
|
generatedBy?: string | undefined;
|
|
106
106
|
} | undefined;
|
|
107
107
|
} | undefined;
|
|
108
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
108
109
|
summaryOperations?: {
|
|
109
110
|
object: string;
|
|
110
111
|
field: string;
|
|
@@ -112,7 +113,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
112
113
|
relationshipField?: string | undefined;
|
|
113
114
|
} | undefined;
|
|
114
115
|
language?: string | undefined;
|
|
115
|
-
maxRating?: number | undefined;
|
|
116
116
|
step?: number | undefined;
|
|
117
117
|
currencyConfig?: {
|
|
118
118
|
precision: number;
|
|
@@ -242,7 +242,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
242
242
|
requiredPermissions?: string[] | undefined;
|
|
243
243
|
system?: boolean | undefined;
|
|
244
244
|
inlineHelpText?: string | undefined;
|
|
245
|
-
caseSensitive?: boolean | undefined;
|
|
246
245
|
autonumberFormat?: string | undefined;
|
|
247
246
|
}>;
|
|
248
247
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -330,12 +329,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
330
329
|
versionField: string;
|
|
331
330
|
retentionDays?: number | undefined;
|
|
332
331
|
} | undefined;
|
|
333
|
-
partitioning?: {
|
|
334
|
-
enabled: boolean;
|
|
335
|
-
strategy: "hash" | "list" | "range";
|
|
336
|
-
key: string;
|
|
337
|
-
interval?: string | undefined;
|
|
338
|
-
} | undefined;
|
|
339
332
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
340
333
|
activityMilestones?: {
|
|
341
334
|
field: string;
|
|
@@ -666,7 +659,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
666
659
|
debounceMs?: number | undefined;
|
|
667
660
|
} | undefined;
|
|
668
661
|
}> | undefined;
|
|
669
|
-
defaultDetailForm?: string | undefined;
|
|
670
662
|
searchableFields?: string[] | undefined;
|
|
671
663
|
search?: {
|
|
672
664
|
fields: string[];
|
|
@@ -683,7 +675,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
683
675
|
trash: boolean;
|
|
684
676
|
mru: boolean;
|
|
685
677
|
clone: boolean;
|
|
686
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
678
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "get" | "update" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
687
679
|
} | undefined;
|
|
688
680
|
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
689
681
|
publicSharing?: {
|
|
@@ -711,6 +703,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
711
703
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
712
704
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
713
705
|
target?: string | undefined;
|
|
706
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
714
707
|
body?: {
|
|
715
708
|
language: "expression";
|
|
716
709
|
source: string;
|
|
@@ -728,7 +721,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
728
721
|
field?: string | undefined;
|
|
729
722
|
objectOverride?: string | undefined;
|
|
730
723
|
label?: string | undefined;
|
|
731
|
-
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;
|
|
724
|
+
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;
|
|
732
725
|
options?: {
|
|
733
726
|
label: string;
|
|
734
727
|
value: string;
|
|
@@ -928,6 +921,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
928
921
|
readonly name?: string | undefined;
|
|
929
922
|
readonly precision?: number | undefined;
|
|
930
923
|
readonly required?: boolean | undefined;
|
|
924
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
931
925
|
readonly multiple?: boolean | undefined;
|
|
932
926
|
readonly dependencies?: string[] | undefined;
|
|
933
927
|
readonly externalId?: boolean | undefined;
|
|
@@ -990,7 +984,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
990
984
|
relationshipField?: string | undefined;
|
|
991
985
|
} | undefined;
|
|
992
986
|
readonly language?: string | undefined;
|
|
993
|
-
readonly maxRating?: number | undefined;
|
|
994
987
|
readonly step?: number | undefined;
|
|
995
988
|
readonly currencyConfig?: {
|
|
996
989
|
precision: number;
|
|
@@ -1084,7 +1077,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1084
1077
|
} | undefined;
|
|
1085
1078
|
readonly sortable?: boolean | undefined;
|
|
1086
1079
|
readonly inlineHelpText?: string | undefined;
|
|
1087
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1088
1080
|
readonly autonumberFormat?: string | undefined;
|
|
1089
1081
|
readonly index?: boolean | undefined;
|
|
1090
1082
|
readonly type: "text";
|
|
@@ -1103,6 +1095,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1103
1095
|
readonly name?: string | undefined;
|
|
1104
1096
|
readonly precision?: number | undefined;
|
|
1105
1097
|
readonly required?: boolean | undefined;
|
|
1098
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1106
1099
|
readonly multiple?: boolean | undefined;
|
|
1107
1100
|
readonly dependencies?: string[] | undefined;
|
|
1108
1101
|
readonly externalId?: boolean | undefined;
|
|
@@ -1165,7 +1158,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1165
1158
|
relationshipField?: string | undefined;
|
|
1166
1159
|
} | undefined;
|
|
1167
1160
|
readonly language?: string | undefined;
|
|
1168
|
-
readonly maxRating?: number | undefined;
|
|
1169
1161
|
readonly step?: number | undefined;
|
|
1170
1162
|
readonly currencyConfig?: {
|
|
1171
1163
|
precision: number;
|
|
@@ -1259,7 +1251,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1259
1251
|
} | undefined;
|
|
1260
1252
|
readonly sortable?: boolean | undefined;
|
|
1261
1253
|
readonly inlineHelpText?: string | undefined;
|
|
1262
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1263
1254
|
readonly autonumberFormat?: string | undefined;
|
|
1264
1255
|
readonly index?: boolean | undefined;
|
|
1265
1256
|
readonly type: "lookup";
|
|
@@ -1278,6 +1269,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1278
1269
|
readonly name?: string | undefined;
|
|
1279
1270
|
readonly precision?: number | undefined;
|
|
1280
1271
|
readonly required?: boolean | undefined;
|
|
1272
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1281
1273
|
readonly multiple?: boolean | undefined;
|
|
1282
1274
|
readonly dependencies?: string[] | undefined;
|
|
1283
1275
|
readonly externalId?: boolean | undefined;
|
|
@@ -1340,7 +1332,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1340
1332
|
relationshipField?: string | undefined;
|
|
1341
1333
|
} | undefined;
|
|
1342
1334
|
readonly language?: string | undefined;
|
|
1343
|
-
readonly maxRating?: number | undefined;
|
|
1344
1335
|
readonly step?: number | undefined;
|
|
1345
1336
|
readonly currencyConfig?: {
|
|
1346
1337
|
precision: number;
|
|
@@ -1434,7 +1425,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1434
1425
|
} | undefined;
|
|
1435
1426
|
readonly sortable?: boolean | undefined;
|
|
1436
1427
|
readonly inlineHelpText?: string | undefined;
|
|
1437
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1438
1428
|
readonly autonumberFormat?: string | undefined;
|
|
1439
1429
|
readonly index?: boolean | undefined;
|
|
1440
1430
|
readonly type: "text";
|
|
@@ -1453,6 +1443,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1453
1443
|
readonly name?: string | undefined;
|
|
1454
1444
|
readonly precision?: number | undefined;
|
|
1455
1445
|
readonly required?: boolean | undefined;
|
|
1446
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1456
1447
|
readonly multiple?: boolean | undefined;
|
|
1457
1448
|
readonly dependencies?: string[] | undefined;
|
|
1458
1449
|
readonly externalId?: boolean | undefined;
|
|
@@ -1515,7 +1506,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1515
1506
|
relationshipField?: string | undefined;
|
|
1516
1507
|
} | undefined;
|
|
1517
1508
|
readonly language?: string | undefined;
|
|
1518
|
-
readonly maxRating?: number | undefined;
|
|
1519
1509
|
readonly step?: number | undefined;
|
|
1520
1510
|
readonly currencyConfig?: {
|
|
1521
1511
|
precision: number;
|
|
@@ -1609,7 +1599,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1609
1599
|
} | undefined;
|
|
1610
1600
|
readonly sortable?: boolean | undefined;
|
|
1611
1601
|
readonly inlineHelpText?: string | undefined;
|
|
1612
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1613
1602
|
readonly autonumberFormat?: string | undefined;
|
|
1614
1603
|
readonly index?: boolean | undefined;
|
|
1615
1604
|
readonly type: "text";
|
|
@@ -1628,6 +1617,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1628
1617
|
readonly name?: string | undefined;
|
|
1629
1618
|
readonly precision?: number | undefined;
|
|
1630
1619
|
readonly required?: boolean | undefined;
|
|
1620
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1631
1621
|
readonly multiple?: boolean | undefined;
|
|
1632
1622
|
readonly dependencies?: string[] | undefined;
|
|
1633
1623
|
readonly externalId?: boolean | undefined;
|
|
@@ -1690,7 +1680,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1690
1680
|
relationshipField?: string | undefined;
|
|
1691
1681
|
} | undefined;
|
|
1692
1682
|
readonly language?: string | undefined;
|
|
1693
|
-
readonly maxRating?: number | undefined;
|
|
1694
1683
|
readonly step?: number | undefined;
|
|
1695
1684
|
readonly currencyConfig?: {
|
|
1696
1685
|
precision: number;
|
|
@@ -1784,7 +1773,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1784
1773
|
} | undefined;
|
|
1785
1774
|
readonly sortable?: boolean | undefined;
|
|
1786
1775
|
readonly inlineHelpText?: string | undefined;
|
|
1787
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1788
1776
|
readonly autonumberFormat?: string | undefined;
|
|
1789
1777
|
readonly index?: boolean | undefined;
|
|
1790
1778
|
readonly type: "text";
|
|
@@ -1803,6 +1791,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1803
1791
|
readonly name?: string | undefined;
|
|
1804
1792
|
readonly precision?: number | undefined;
|
|
1805
1793
|
readonly required?: boolean | undefined;
|
|
1794
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1806
1795
|
readonly multiple?: boolean | undefined;
|
|
1807
1796
|
readonly dependencies?: string[] | undefined;
|
|
1808
1797
|
readonly externalId?: boolean | undefined;
|
|
@@ -1865,7 +1854,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1865
1854
|
relationshipField?: string | undefined;
|
|
1866
1855
|
} | undefined;
|
|
1867
1856
|
readonly language?: string | undefined;
|
|
1868
|
-
readonly maxRating?: number | undefined;
|
|
1869
1857
|
readonly step?: number | undefined;
|
|
1870
1858
|
readonly currencyConfig?: {
|
|
1871
1859
|
precision: number;
|
|
@@ -1959,7 +1947,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1959
1947
|
} | undefined;
|
|
1960
1948
|
readonly sortable?: boolean | undefined;
|
|
1961
1949
|
readonly inlineHelpText?: string | undefined;
|
|
1962
|
-
readonly caseSensitive?: boolean | undefined;
|
|
1963
1950
|
readonly autonumberFormat?: string | undefined;
|
|
1964
1951
|
readonly index?: boolean | undefined;
|
|
1965
1952
|
readonly type: "lookup";
|
|
@@ -1978,6 +1965,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1978
1965
|
readonly name?: string | undefined;
|
|
1979
1966
|
readonly precision?: number | undefined;
|
|
1980
1967
|
readonly required?: boolean | undefined;
|
|
1968
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1981
1969
|
readonly multiple?: boolean | undefined;
|
|
1982
1970
|
readonly dependencies?: string[] | undefined;
|
|
1983
1971
|
readonly externalId?: boolean | undefined;
|
|
@@ -2040,7 +2028,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2040
2028
|
relationshipField?: string | undefined;
|
|
2041
2029
|
} | undefined;
|
|
2042
2030
|
readonly language?: string | undefined;
|
|
2043
|
-
readonly maxRating?: number | undefined;
|
|
2044
2031
|
readonly step?: number | undefined;
|
|
2045
2032
|
readonly currencyConfig?: {
|
|
2046
2033
|
precision: number;
|
|
@@ -2134,7 +2121,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2134
2121
|
} | undefined;
|
|
2135
2122
|
readonly sortable?: boolean | undefined;
|
|
2136
2123
|
readonly inlineHelpText?: string | undefined;
|
|
2137
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2138
2124
|
readonly autonumberFormat?: string | undefined;
|
|
2139
2125
|
readonly index?: boolean | undefined;
|
|
2140
2126
|
readonly type: "textarea";
|
|
@@ -2153,6 +2139,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2153
2139
|
readonly name?: string | undefined;
|
|
2154
2140
|
readonly precision?: number | undefined;
|
|
2155
2141
|
readonly required?: boolean | undefined;
|
|
2142
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2156
2143
|
readonly multiple?: boolean | undefined;
|
|
2157
2144
|
readonly dependencies?: string[] | undefined;
|
|
2158
2145
|
readonly externalId?: boolean | undefined;
|
|
@@ -2215,7 +2202,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2215
2202
|
relationshipField?: string | undefined;
|
|
2216
2203
|
} | undefined;
|
|
2217
2204
|
readonly language?: string | undefined;
|
|
2218
|
-
readonly maxRating?: number | undefined;
|
|
2219
2205
|
readonly step?: number | undefined;
|
|
2220
2206
|
readonly currencyConfig?: {
|
|
2221
2207
|
precision: number;
|
|
@@ -2309,7 +2295,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2309
2295
|
} | undefined;
|
|
2310
2296
|
readonly sortable?: boolean | undefined;
|
|
2311
2297
|
readonly inlineHelpText?: string | undefined;
|
|
2312
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2313
2298
|
readonly autonumberFormat?: string | undefined;
|
|
2314
2299
|
readonly index?: boolean | undefined;
|
|
2315
2300
|
readonly type: "select";
|
|
@@ -2328,6 +2313,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2328
2313
|
readonly name?: string | undefined;
|
|
2329
2314
|
readonly precision?: number | undefined;
|
|
2330
2315
|
readonly required?: boolean | undefined;
|
|
2316
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2331
2317
|
readonly multiple?: boolean | undefined;
|
|
2332
2318
|
readonly dependencies?: string[] | undefined;
|
|
2333
2319
|
readonly externalId?: boolean | undefined;
|
|
@@ -2390,7 +2376,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2390
2376
|
relationshipField?: string | undefined;
|
|
2391
2377
|
} | undefined;
|
|
2392
2378
|
readonly language?: string | undefined;
|
|
2393
|
-
readonly maxRating?: number | undefined;
|
|
2394
2379
|
readonly step?: number | undefined;
|
|
2395
2380
|
readonly currencyConfig?: {
|
|
2396
2381
|
precision: number;
|
|
@@ -2484,7 +2469,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2484
2469
|
} | undefined;
|
|
2485
2470
|
readonly sortable?: boolean | undefined;
|
|
2486
2471
|
readonly inlineHelpText?: string | undefined;
|
|
2487
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2488
2472
|
readonly autonumberFormat?: string | undefined;
|
|
2489
2473
|
readonly index?: boolean | undefined;
|
|
2490
2474
|
readonly type: "text";
|
|
@@ -2503,6 +2487,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2503
2487
|
readonly name?: string | undefined;
|
|
2504
2488
|
readonly precision?: number | undefined;
|
|
2505
2489
|
readonly required?: boolean | undefined;
|
|
2490
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2506
2491
|
readonly multiple?: boolean | undefined;
|
|
2507
2492
|
readonly dependencies?: string[] | undefined;
|
|
2508
2493
|
readonly externalId?: boolean | undefined;
|
|
@@ -2565,7 +2550,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2565
2550
|
relationshipField?: string | undefined;
|
|
2566
2551
|
} | undefined;
|
|
2567
2552
|
readonly language?: string | undefined;
|
|
2568
|
-
readonly maxRating?: number | undefined;
|
|
2569
2553
|
readonly step?: number | undefined;
|
|
2570
2554
|
readonly currencyConfig?: {
|
|
2571
2555
|
precision: number;
|
|
@@ -2659,7 +2643,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2659
2643
|
} | undefined;
|
|
2660
2644
|
readonly sortable?: boolean | undefined;
|
|
2661
2645
|
readonly inlineHelpText?: string | undefined;
|
|
2662
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2663
2646
|
readonly autonumberFormat?: string | undefined;
|
|
2664
2647
|
readonly index?: boolean | undefined;
|
|
2665
2648
|
readonly type: "number";
|
|
@@ -2678,6 +2661,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2678
2661
|
readonly name?: string | undefined;
|
|
2679
2662
|
readonly precision?: number | undefined;
|
|
2680
2663
|
readonly required?: boolean | undefined;
|
|
2664
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2681
2665
|
readonly multiple?: boolean | undefined;
|
|
2682
2666
|
readonly dependencies?: string[] | undefined;
|
|
2683
2667
|
readonly externalId?: boolean | undefined;
|
|
@@ -2740,7 +2724,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2740
2724
|
relationshipField?: string | undefined;
|
|
2741
2725
|
} | undefined;
|
|
2742
2726
|
readonly language?: string | undefined;
|
|
2743
|
-
readonly maxRating?: number | undefined;
|
|
2744
2727
|
readonly step?: number | undefined;
|
|
2745
2728
|
readonly currencyConfig?: {
|
|
2746
2729
|
precision: number;
|
|
@@ -2834,7 +2817,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2834
2817
|
} | undefined;
|
|
2835
2818
|
readonly sortable?: boolean | undefined;
|
|
2836
2819
|
readonly inlineHelpText?: string | undefined;
|
|
2837
|
-
readonly caseSensitive?: boolean | undefined;
|
|
2838
2820
|
readonly autonumberFormat?: string | undefined;
|
|
2839
2821
|
readonly index?: boolean | undefined;
|
|
2840
2822
|
readonly type: "textarea";
|
|
@@ -2853,6 +2835,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2853
2835
|
readonly name?: string | undefined;
|
|
2854
2836
|
readonly precision?: number | undefined;
|
|
2855
2837
|
readonly required?: boolean | undefined;
|
|
2838
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2856
2839
|
readonly multiple?: boolean | undefined;
|
|
2857
2840
|
readonly dependencies?: string[] | undefined;
|
|
2858
2841
|
readonly externalId?: boolean | undefined;
|
|
@@ -2915,7 +2898,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2915
2898
|
relationshipField?: string | undefined;
|
|
2916
2899
|
} | undefined;
|
|
2917
2900
|
readonly language?: string | undefined;
|
|
2918
|
-
readonly maxRating?: number | undefined;
|
|
2919
2901
|
readonly step?: number | undefined;
|
|
2920
2902
|
readonly currencyConfig?: {
|
|
2921
2903
|
precision: number;
|
|
@@ -3009,7 +2991,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3009
2991
|
} | undefined;
|
|
3010
2992
|
readonly sortable?: boolean | undefined;
|
|
3011
2993
|
readonly inlineHelpText?: string | undefined;
|
|
3012
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3013
2994
|
readonly autonumberFormat?: string | undefined;
|
|
3014
2995
|
readonly index?: boolean | undefined;
|
|
3015
2996
|
readonly type: "textarea";
|
|
@@ -3028,6 +3009,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3028
3009
|
readonly name?: string | undefined;
|
|
3029
3010
|
readonly precision?: number | undefined;
|
|
3030
3011
|
readonly required?: boolean | undefined;
|
|
3012
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3031
3013
|
readonly multiple?: boolean | undefined;
|
|
3032
3014
|
readonly dependencies?: string[] | undefined;
|
|
3033
3015
|
readonly externalId?: boolean | undefined;
|
|
@@ -3090,7 +3072,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3090
3072
|
relationshipField?: string | undefined;
|
|
3091
3073
|
} | undefined;
|
|
3092
3074
|
readonly language?: string | undefined;
|
|
3093
|
-
readonly maxRating?: number | undefined;
|
|
3094
3075
|
readonly step?: number | undefined;
|
|
3095
3076
|
readonly currencyConfig?: {
|
|
3096
3077
|
precision: number;
|
|
@@ -3184,7 +3165,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3184
3165
|
} | undefined;
|
|
3185
3166
|
readonly sortable?: boolean | undefined;
|
|
3186
3167
|
readonly inlineHelpText?: string | undefined;
|
|
3187
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3188
3168
|
readonly autonumberFormat?: string | undefined;
|
|
3189
3169
|
readonly index?: boolean | undefined;
|
|
3190
3170
|
readonly type: "text";
|
|
@@ -3203,6 +3183,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3203
3183
|
readonly name?: string | undefined;
|
|
3204
3184
|
readonly precision?: number | undefined;
|
|
3205
3185
|
readonly required?: boolean | undefined;
|
|
3186
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3206
3187
|
readonly multiple?: boolean | undefined;
|
|
3207
3188
|
readonly dependencies?: string[] | undefined;
|
|
3208
3189
|
readonly externalId?: boolean | undefined;
|
|
@@ -3265,7 +3246,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3265
3246
|
relationshipField?: string | undefined;
|
|
3266
3247
|
} | undefined;
|
|
3267
3248
|
readonly language?: string | undefined;
|
|
3268
|
-
readonly maxRating?: number | undefined;
|
|
3269
3249
|
readonly step?: number | undefined;
|
|
3270
3250
|
readonly currencyConfig?: {
|
|
3271
3251
|
precision: number;
|
|
@@ -3359,7 +3339,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3359
3339
|
} | undefined;
|
|
3360
3340
|
readonly sortable?: boolean | undefined;
|
|
3361
3341
|
readonly inlineHelpText?: string | undefined;
|
|
3362
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3363
3342
|
readonly autonumberFormat?: string | undefined;
|
|
3364
3343
|
readonly index?: boolean | undefined;
|
|
3365
3344
|
readonly type: "text";
|
|
@@ -3378,6 +3357,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3378
3357
|
readonly name?: string | undefined;
|
|
3379
3358
|
readonly precision?: number | undefined;
|
|
3380
3359
|
readonly required?: boolean | undefined;
|
|
3360
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3381
3361
|
readonly multiple?: boolean | undefined;
|
|
3382
3362
|
readonly dependencies?: string[] | undefined;
|
|
3383
3363
|
readonly externalId?: boolean | undefined;
|
|
@@ -3440,7 +3420,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3440
3420
|
relationshipField?: string | undefined;
|
|
3441
3421
|
} | undefined;
|
|
3442
3422
|
readonly language?: string | undefined;
|
|
3443
|
-
readonly maxRating?: number | undefined;
|
|
3444
3423
|
readonly step?: number | undefined;
|
|
3445
3424
|
readonly currencyConfig?: {
|
|
3446
3425
|
precision: number;
|
|
@@ -3534,7 +3513,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3534
3513
|
} | undefined;
|
|
3535
3514
|
readonly sortable?: boolean | undefined;
|
|
3536
3515
|
readonly inlineHelpText?: string | undefined;
|
|
3537
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3538
3516
|
readonly autonumberFormat?: string | undefined;
|
|
3539
3517
|
readonly index?: boolean | undefined;
|
|
3540
3518
|
readonly type: "textarea";
|
|
@@ -3553,6 +3531,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3553
3531
|
readonly name?: string | undefined;
|
|
3554
3532
|
readonly precision?: number | undefined;
|
|
3555
3533
|
readonly required?: boolean | undefined;
|
|
3534
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3556
3535
|
readonly multiple?: boolean | undefined;
|
|
3557
3536
|
readonly dependencies?: string[] | undefined;
|
|
3558
3537
|
readonly externalId?: boolean | undefined;
|
|
@@ -3615,7 +3594,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3615
3594
|
relationshipField?: string | undefined;
|
|
3616
3595
|
} | undefined;
|
|
3617
3596
|
readonly language?: string | undefined;
|
|
3618
|
-
readonly maxRating?: number | undefined;
|
|
3619
3597
|
readonly step?: number | undefined;
|
|
3620
3598
|
readonly currencyConfig?: {
|
|
3621
3599
|
precision: number;
|
|
@@ -3709,7 +3687,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3709
3687
|
} | undefined;
|
|
3710
3688
|
readonly sortable?: boolean | undefined;
|
|
3711
3689
|
readonly inlineHelpText?: string | undefined;
|
|
3712
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3713
3690
|
readonly autonumberFormat?: string | undefined;
|
|
3714
3691
|
readonly index?: boolean | undefined;
|
|
3715
3692
|
readonly type: "datetime";
|
|
@@ -3728,6 +3705,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3728
3705
|
readonly name?: string | undefined;
|
|
3729
3706
|
readonly precision?: number | undefined;
|
|
3730
3707
|
readonly required?: boolean | undefined;
|
|
3708
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3731
3709
|
readonly multiple?: boolean | undefined;
|
|
3732
3710
|
readonly dependencies?: string[] | undefined;
|
|
3733
3711
|
readonly externalId?: boolean | undefined;
|
|
@@ -3790,7 +3768,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3790
3768
|
relationshipField?: string | undefined;
|
|
3791
3769
|
} | undefined;
|
|
3792
3770
|
readonly language?: string | undefined;
|
|
3793
|
-
readonly maxRating?: number | undefined;
|
|
3794
3771
|
readonly step?: number | undefined;
|
|
3795
3772
|
readonly currencyConfig?: {
|
|
3796
3773
|
precision: number;
|
|
@@ -3884,7 +3861,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3884
3861
|
} | undefined;
|
|
3885
3862
|
readonly sortable?: boolean | undefined;
|
|
3886
3863
|
readonly inlineHelpText?: string | undefined;
|
|
3887
|
-
readonly caseSensitive?: boolean | undefined;
|
|
3888
3864
|
readonly autonumberFormat?: string | undefined;
|
|
3889
3865
|
readonly index?: boolean | undefined;
|
|
3890
3866
|
readonly type: "datetime";
|
|
@@ -3903,6 +3879,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3903
3879
|
readonly name?: string | undefined;
|
|
3904
3880
|
readonly precision?: number | undefined;
|
|
3905
3881
|
readonly required?: boolean | undefined;
|
|
3882
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3906
3883
|
readonly multiple?: boolean | undefined;
|
|
3907
3884
|
readonly dependencies?: string[] | undefined;
|
|
3908
3885
|
readonly externalId?: boolean | undefined;
|
|
@@ -3965,7 +3942,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3965
3942
|
relationshipField?: string | undefined;
|
|
3966
3943
|
} | undefined;
|
|
3967
3944
|
readonly language?: string | undefined;
|
|
3968
|
-
readonly maxRating?: number | undefined;
|
|
3969
3945
|
readonly step?: number | undefined;
|
|
3970
3946
|
readonly currencyConfig?: {
|
|
3971
3947
|
precision: number;
|
|
@@ -4059,7 +4035,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4059
4035
|
} | undefined;
|
|
4060
4036
|
readonly sortable?: boolean | undefined;
|
|
4061
4037
|
readonly inlineHelpText?: string | undefined;
|
|
4062
|
-
readonly caseSensitive?: boolean | undefined;
|
|
4063
4038
|
readonly autonumberFormat?: string | undefined;
|
|
4064
4039
|
readonly index?: boolean | undefined;
|
|
4065
4040
|
readonly type: "datetime";
|
|
@@ -4094,7 +4069,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4094
4069
|
abstract: boolean;
|
|
4095
4070
|
datasource: string;
|
|
4096
4071
|
fields: Record<string, {
|
|
4097
|
-
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";
|
|
4072
|
+
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";
|
|
4098
4073
|
required: boolean;
|
|
4099
4074
|
searchable: boolean;
|
|
4100
4075
|
multiple: boolean;
|
|
@@ -4168,6 +4143,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4168
4143
|
generatedBy?: string | undefined;
|
|
4169
4144
|
} | undefined;
|
|
4170
4145
|
} | undefined;
|
|
4146
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4171
4147
|
summaryOperations?: {
|
|
4172
4148
|
object: string;
|
|
4173
4149
|
field: string;
|
|
@@ -4175,7 +4151,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4175
4151
|
relationshipField?: string | undefined;
|
|
4176
4152
|
} | undefined;
|
|
4177
4153
|
language?: string | undefined;
|
|
4178
|
-
maxRating?: number | undefined;
|
|
4179
4154
|
step?: number | undefined;
|
|
4180
4155
|
currencyConfig?: {
|
|
4181
4156
|
precision: number;
|
|
@@ -4305,7 +4280,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4305
4280
|
requiredPermissions?: string[] | undefined;
|
|
4306
4281
|
system?: boolean | undefined;
|
|
4307
4282
|
inlineHelpText?: string | undefined;
|
|
4308
|
-
caseSensitive?: boolean | undefined;
|
|
4309
4283
|
autonumberFormat?: string | undefined;
|
|
4310
4284
|
}>;
|
|
4311
4285
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -4393,12 +4367,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4393
4367
|
versionField: string;
|
|
4394
4368
|
retentionDays?: number | undefined;
|
|
4395
4369
|
} | undefined;
|
|
4396
|
-
partitioning?: {
|
|
4397
|
-
enabled: boolean;
|
|
4398
|
-
strategy: "hash" | "list" | "range";
|
|
4399
|
-
key: string;
|
|
4400
|
-
interval?: string | undefined;
|
|
4401
|
-
} | undefined;
|
|
4402
4370
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
4403
4371
|
activityMilestones?: {
|
|
4404
4372
|
field: string;
|
|
@@ -4729,7 +4697,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4729
4697
|
debounceMs?: number | undefined;
|
|
4730
4698
|
} | undefined;
|
|
4731
4699
|
}> | undefined;
|
|
4732
|
-
defaultDetailForm?: string | undefined;
|
|
4733
4700
|
searchableFields?: string[] | undefined;
|
|
4734
4701
|
search?: {
|
|
4735
4702
|
fields: string[];
|
|
@@ -4746,7 +4713,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4746
4713
|
trash: boolean;
|
|
4747
4714
|
mru: boolean;
|
|
4748
4715
|
clone: boolean;
|
|
4749
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
4716
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "get" | "update" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
4750
4717
|
} | undefined;
|
|
4751
4718
|
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
4752
4719
|
publicSharing?: {
|
|
@@ -4774,6 +4741,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4774
4741
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
4775
4742
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
4776
4743
|
target?: string | undefined;
|
|
4744
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
4777
4745
|
body?: {
|
|
4778
4746
|
language: "expression";
|
|
4779
4747
|
source: string;
|
|
@@ -4791,7 +4759,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4791
4759
|
field?: string | undefined;
|
|
4792
4760
|
objectOverride?: string | undefined;
|
|
4793
4761
|
label?: string | undefined;
|
|
4794
|
-
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;
|
|
4762
|
+
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;
|
|
4795
4763
|
options?: {
|
|
4796
4764
|
label: string;
|
|
4797
4765
|
value: string;
|
|
@@ -4965,6 +4933,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4965
4933
|
readonly name?: string | undefined;
|
|
4966
4934
|
readonly precision?: number | undefined;
|
|
4967
4935
|
readonly required?: boolean | undefined;
|
|
4936
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4968
4937
|
readonly multiple?: boolean | undefined;
|
|
4969
4938
|
readonly dependencies?: string[] | undefined;
|
|
4970
4939
|
readonly externalId?: boolean | undefined;
|
|
@@ -5027,7 +4996,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5027
4996
|
relationshipField?: string | undefined;
|
|
5028
4997
|
} | undefined;
|
|
5029
4998
|
readonly language?: string | undefined;
|
|
5030
|
-
readonly maxRating?: number | undefined;
|
|
5031
4999
|
readonly step?: number | undefined;
|
|
5032
5000
|
readonly currencyConfig?: {
|
|
5033
5001
|
precision: number;
|
|
@@ -5121,7 +5089,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5121
5089
|
} | undefined;
|
|
5122
5090
|
readonly sortable?: boolean | undefined;
|
|
5123
5091
|
readonly inlineHelpText?: string | undefined;
|
|
5124
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5125
5092
|
readonly autonumberFormat?: string | undefined;
|
|
5126
5093
|
readonly index?: boolean | undefined;
|
|
5127
5094
|
readonly type: "text";
|
|
@@ -5140,6 +5107,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5140
5107
|
readonly name?: string | undefined;
|
|
5141
5108
|
readonly precision?: number | undefined;
|
|
5142
5109
|
readonly required?: boolean | undefined;
|
|
5110
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5143
5111
|
readonly multiple?: boolean | undefined;
|
|
5144
5112
|
readonly dependencies?: string[] | undefined;
|
|
5145
5113
|
readonly externalId?: boolean | undefined;
|
|
@@ -5202,7 +5170,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5202
5170
|
relationshipField?: string | undefined;
|
|
5203
5171
|
} | undefined;
|
|
5204
5172
|
readonly language?: string | undefined;
|
|
5205
|
-
readonly maxRating?: number | undefined;
|
|
5206
5173
|
readonly step?: number | undefined;
|
|
5207
5174
|
readonly currencyConfig?: {
|
|
5208
5175
|
precision: number;
|
|
@@ -5296,7 +5263,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5296
5263
|
} | undefined;
|
|
5297
5264
|
readonly sortable?: boolean | undefined;
|
|
5298
5265
|
readonly inlineHelpText?: string | undefined;
|
|
5299
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5300
5266
|
readonly autonumberFormat?: string | undefined;
|
|
5301
5267
|
readonly index?: boolean | undefined;
|
|
5302
5268
|
readonly type: "lookup";
|
|
@@ -5315,6 +5281,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5315
5281
|
readonly name?: string | undefined;
|
|
5316
5282
|
readonly precision?: number | undefined;
|
|
5317
5283
|
readonly required?: boolean | undefined;
|
|
5284
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5318
5285
|
readonly multiple?: boolean | undefined;
|
|
5319
5286
|
readonly dependencies?: string[] | undefined;
|
|
5320
5287
|
readonly externalId?: boolean | undefined;
|
|
@@ -5377,7 +5344,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5377
5344
|
relationshipField?: string | undefined;
|
|
5378
5345
|
} | undefined;
|
|
5379
5346
|
readonly language?: string | undefined;
|
|
5380
|
-
readonly maxRating?: number | undefined;
|
|
5381
5347
|
readonly step?: number | undefined;
|
|
5382
5348
|
readonly currencyConfig?: {
|
|
5383
5349
|
precision: number;
|
|
@@ -5471,7 +5437,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5471
5437
|
} | undefined;
|
|
5472
5438
|
readonly sortable?: boolean | undefined;
|
|
5473
5439
|
readonly inlineHelpText?: string | undefined;
|
|
5474
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5475
5440
|
readonly autonumberFormat?: string | undefined;
|
|
5476
5441
|
readonly index?: boolean | undefined;
|
|
5477
5442
|
readonly type: "lookup";
|
|
@@ -5490,6 +5455,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5490
5455
|
readonly name?: string | undefined;
|
|
5491
5456
|
readonly precision?: number | undefined;
|
|
5492
5457
|
readonly required?: boolean | undefined;
|
|
5458
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5493
5459
|
readonly multiple?: boolean | undefined;
|
|
5494
5460
|
readonly dependencies?: string[] | undefined;
|
|
5495
5461
|
readonly externalId?: boolean | undefined;
|
|
@@ -5552,7 +5518,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5552
5518
|
relationshipField?: string | undefined;
|
|
5553
5519
|
} | undefined;
|
|
5554
5520
|
readonly language?: string | undefined;
|
|
5555
|
-
readonly maxRating?: number | undefined;
|
|
5556
5521
|
readonly step?: number | undefined;
|
|
5557
5522
|
readonly currencyConfig?: {
|
|
5558
5523
|
precision: number;
|
|
@@ -5646,7 +5611,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5646
5611
|
} | undefined;
|
|
5647
5612
|
readonly sortable?: boolean | undefined;
|
|
5648
5613
|
readonly inlineHelpText?: string | undefined;
|
|
5649
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5650
5614
|
readonly autonumberFormat?: string | undefined;
|
|
5651
5615
|
readonly index?: boolean | undefined;
|
|
5652
5616
|
readonly type: "text";
|
|
@@ -5665,6 +5629,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5665
5629
|
readonly name?: string | undefined;
|
|
5666
5630
|
readonly precision?: number | undefined;
|
|
5667
5631
|
readonly required?: boolean | undefined;
|
|
5632
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5668
5633
|
readonly multiple?: boolean | undefined;
|
|
5669
5634
|
readonly dependencies?: string[] | undefined;
|
|
5670
5635
|
readonly externalId?: boolean | undefined;
|
|
@@ -5727,7 +5692,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5727
5692
|
relationshipField?: string | undefined;
|
|
5728
5693
|
} | undefined;
|
|
5729
5694
|
readonly language?: string | undefined;
|
|
5730
|
-
readonly maxRating?: number | undefined;
|
|
5731
5695
|
readonly step?: number | undefined;
|
|
5732
5696
|
readonly currencyConfig?: {
|
|
5733
5697
|
precision: number;
|
|
@@ -5821,7 +5785,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5821
5785
|
} | undefined;
|
|
5822
5786
|
readonly sortable?: boolean | undefined;
|
|
5823
5787
|
readonly inlineHelpText?: string | undefined;
|
|
5824
|
-
readonly caseSensitive?: boolean | undefined;
|
|
5825
5788
|
readonly autonumberFormat?: string | undefined;
|
|
5826
5789
|
readonly index?: boolean | undefined;
|
|
5827
5790
|
readonly type: "number";
|
|
@@ -5840,6 +5803,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5840
5803
|
readonly name?: string | undefined;
|
|
5841
5804
|
readonly precision?: number | undefined;
|
|
5842
5805
|
readonly required?: boolean | undefined;
|
|
5806
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5843
5807
|
readonly multiple?: boolean | undefined;
|
|
5844
5808
|
readonly dependencies?: string[] | undefined;
|
|
5845
5809
|
readonly externalId?: boolean | undefined;
|
|
@@ -5902,7 +5866,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5902
5866
|
relationshipField?: string | undefined;
|
|
5903
5867
|
} | undefined;
|
|
5904
5868
|
readonly language?: string | undefined;
|
|
5905
|
-
readonly maxRating?: number | undefined;
|
|
5906
5869
|
readonly step?: number | undefined;
|
|
5907
5870
|
readonly currencyConfig?: {
|
|
5908
5871
|
precision: number;
|
|
@@ -5996,7 +5959,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5996
5959
|
} | undefined;
|
|
5997
5960
|
readonly sortable?: boolean | undefined;
|
|
5998
5961
|
readonly inlineHelpText?: string | undefined;
|
|
5999
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6000
5962
|
readonly autonumberFormat?: string | undefined;
|
|
6001
5963
|
readonly index?: boolean | undefined;
|
|
6002
5964
|
readonly type: "select";
|
|
@@ -6015,6 +5977,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6015
5977
|
readonly name?: string | undefined;
|
|
6016
5978
|
readonly precision?: number | undefined;
|
|
6017
5979
|
readonly required?: boolean | undefined;
|
|
5980
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6018
5981
|
readonly multiple?: boolean | undefined;
|
|
6019
5982
|
readonly dependencies?: string[] | undefined;
|
|
6020
5983
|
readonly externalId?: boolean | undefined;
|
|
@@ -6077,7 +6040,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6077
6040
|
relationshipField?: string | undefined;
|
|
6078
6041
|
} | undefined;
|
|
6079
6042
|
readonly language?: string | undefined;
|
|
6080
|
-
readonly maxRating?: number | undefined;
|
|
6081
6043
|
readonly step?: number | undefined;
|
|
6082
6044
|
readonly currencyConfig?: {
|
|
6083
6045
|
precision: number;
|
|
@@ -6171,7 +6133,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6171
6133
|
} | undefined;
|
|
6172
6134
|
readonly sortable?: boolean | undefined;
|
|
6173
6135
|
readonly inlineHelpText?: string | undefined;
|
|
6174
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6175
6136
|
readonly autonumberFormat?: string | undefined;
|
|
6176
6137
|
readonly index?: boolean | undefined;
|
|
6177
6138
|
readonly type: "lookup";
|
|
@@ -6190,6 +6151,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6190
6151
|
readonly name?: string | undefined;
|
|
6191
6152
|
readonly precision?: number | undefined;
|
|
6192
6153
|
readonly required?: boolean | undefined;
|
|
6154
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6193
6155
|
readonly multiple?: boolean | undefined;
|
|
6194
6156
|
readonly dependencies?: string[] | undefined;
|
|
6195
6157
|
readonly externalId?: boolean | undefined;
|
|
@@ -6252,7 +6214,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6252
6214
|
relationshipField?: string | undefined;
|
|
6253
6215
|
} | undefined;
|
|
6254
6216
|
readonly language?: string | undefined;
|
|
6255
|
-
readonly maxRating?: number | undefined;
|
|
6256
6217
|
readonly step?: number | undefined;
|
|
6257
6218
|
readonly currencyConfig?: {
|
|
6258
6219
|
precision: number;
|
|
@@ -6346,7 +6307,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6346
6307
|
} | undefined;
|
|
6347
6308
|
readonly sortable?: boolean | undefined;
|
|
6348
6309
|
readonly inlineHelpText?: string | undefined;
|
|
6349
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6350
6310
|
readonly autonumberFormat?: string | undefined;
|
|
6351
6311
|
readonly index?: boolean | undefined;
|
|
6352
6312
|
readonly type: "textarea";
|
|
@@ -6365,6 +6325,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6365
6325
|
readonly name?: string | undefined;
|
|
6366
6326
|
readonly precision?: number | undefined;
|
|
6367
6327
|
readonly required?: boolean | undefined;
|
|
6328
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6368
6329
|
readonly multiple?: boolean | undefined;
|
|
6369
6330
|
readonly dependencies?: string[] | undefined;
|
|
6370
6331
|
readonly externalId?: boolean | undefined;
|
|
@@ -6427,7 +6388,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6427
6388
|
relationshipField?: string | undefined;
|
|
6428
6389
|
} | undefined;
|
|
6429
6390
|
readonly language?: string | undefined;
|
|
6430
|
-
readonly maxRating?: number | undefined;
|
|
6431
6391
|
readonly step?: number | undefined;
|
|
6432
6392
|
readonly currencyConfig?: {
|
|
6433
6393
|
precision: number;
|
|
@@ -6521,7 +6481,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6521
6481
|
} | undefined;
|
|
6522
6482
|
readonly sortable?: boolean | undefined;
|
|
6523
6483
|
readonly inlineHelpText?: string | undefined;
|
|
6524
|
-
readonly caseSensitive?: boolean | undefined;
|
|
6525
6484
|
readonly autonumberFormat?: string | undefined;
|
|
6526
6485
|
readonly index?: boolean | undefined;
|
|
6527
6486
|
readonly type: "datetime";
|
|
@@ -6563,7 +6522,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6563
6522
|
abstract: boolean;
|
|
6564
6523
|
datasource: string;
|
|
6565
6524
|
fields: Record<string, {
|
|
6566
|
-
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";
|
|
6525
|
+
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";
|
|
6567
6526
|
required: boolean;
|
|
6568
6527
|
searchable: boolean;
|
|
6569
6528
|
multiple: boolean;
|
|
@@ -6637,6 +6596,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6637
6596
|
generatedBy?: string | undefined;
|
|
6638
6597
|
} | undefined;
|
|
6639
6598
|
} | undefined;
|
|
6599
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6640
6600
|
summaryOperations?: {
|
|
6641
6601
|
object: string;
|
|
6642
6602
|
field: string;
|
|
@@ -6644,7 +6604,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6644
6604
|
relationshipField?: string | undefined;
|
|
6645
6605
|
} | undefined;
|
|
6646
6606
|
language?: string | undefined;
|
|
6647
|
-
maxRating?: number | undefined;
|
|
6648
6607
|
step?: number | undefined;
|
|
6649
6608
|
currencyConfig?: {
|
|
6650
6609
|
precision: number;
|
|
@@ -6774,7 +6733,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6774
6733
|
requiredPermissions?: string[] | undefined;
|
|
6775
6734
|
system?: boolean | undefined;
|
|
6776
6735
|
inlineHelpText?: string | undefined;
|
|
6777
|
-
caseSensitive?: boolean | undefined;
|
|
6778
6736
|
autonumberFormat?: string | undefined;
|
|
6779
6737
|
}>;
|
|
6780
6738
|
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
@@ -6862,12 +6820,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6862
6820
|
versionField: string;
|
|
6863
6821
|
retentionDays?: number | undefined;
|
|
6864
6822
|
} | undefined;
|
|
6865
|
-
partitioning?: {
|
|
6866
|
-
enabled: boolean;
|
|
6867
|
-
strategy: "hash" | "list" | "range";
|
|
6868
|
-
key: string;
|
|
6869
|
-
interval?: string | undefined;
|
|
6870
|
-
} | undefined;
|
|
6871
6823
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
6872
6824
|
activityMilestones?: {
|
|
6873
6825
|
field: string;
|
|
@@ -7198,7 +7150,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7198
7150
|
debounceMs?: number | undefined;
|
|
7199
7151
|
} | undefined;
|
|
7200
7152
|
}> | undefined;
|
|
7201
|
-
defaultDetailForm?: string | undefined;
|
|
7202
7153
|
searchableFields?: string[] | undefined;
|
|
7203
7154
|
search?: {
|
|
7204
7155
|
fields: string[];
|
|
@@ -7215,7 +7166,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7215
7166
|
trash: boolean;
|
|
7216
7167
|
mru: boolean;
|
|
7217
7168
|
clone: boolean;
|
|
7218
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "
|
|
7169
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "get" | "update" | "upsert" | "list" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
7219
7170
|
} | undefined;
|
|
7220
7171
|
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
7221
7172
|
publicSharing?: {
|
|
@@ -7243,6 +7194,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7243
7194
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
7244
7195
|
component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
|
|
7245
7196
|
target?: string | undefined;
|
|
7197
|
+
openIn?: "self" | "new-tab" | undefined;
|
|
7246
7198
|
body?: {
|
|
7247
7199
|
language: "expression";
|
|
7248
7200
|
source: string;
|
|
@@ -7260,7 +7212,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7260
7212
|
field?: string | undefined;
|
|
7261
7213
|
objectOverride?: string | undefined;
|
|
7262
7214
|
label?: string | undefined;
|
|
7263
|
-
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;
|
|
7215
|
+
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;
|
|
7264
7216
|
options?: {
|
|
7265
7217
|
label: string;
|
|
7266
7218
|
value: string;
|
|
@@ -7367,6 +7319,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7367
7319
|
readonly name?: string | undefined;
|
|
7368
7320
|
readonly precision?: number | undefined;
|
|
7369
7321
|
readonly required?: boolean | undefined;
|
|
7322
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7370
7323
|
readonly multiple?: boolean | undefined;
|
|
7371
7324
|
readonly dependencies?: string[] | undefined;
|
|
7372
7325
|
readonly externalId?: boolean | undefined;
|
|
@@ -7429,7 +7382,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7429
7382
|
relationshipField?: string | undefined;
|
|
7430
7383
|
} | undefined;
|
|
7431
7384
|
readonly language?: string | undefined;
|
|
7432
|
-
readonly maxRating?: number | undefined;
|
|
7433
7385
|
readonly step?: number | undefined;
|
|
7434
7386
|
readonly currencyConfig?: {
|
|
7435
7387
|
precision: number;
|
|
@@ -7523,7 +7475,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7523
7475
|
} | undefined;
|
|
7524
7476
|
readonly sortable?: boolean | undefined;
|
|
7525
7477
|
readonly inlineHelpText?: string | undefined;
|
|
7526
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7527
7478
|
readonly autonumberFormat?: string | undefined;
|
|
7528
7479
|
readonly index?: boolean | undefined;
|
|
7529
7480
|
readonly type: "text";
|
|
@@ -7542,6 +7493,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7542
7493
|
readonly name?: string | undefined;
|
|
7543
7494
|
readonly precision?: number | undefined;
|
|
7544
7495
|
readonly required?: boolean | undefined;
|
|
7496
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7545
7497
|
readonly multiple?: boolean | undefined;
|
|
7546
7498
|
readonly dependencies?: string[] | undefined;
|
|
7547
7499
|
readonly externalId?: boolean | undefined;
|
|
@@ -7604,7 +7556,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7604
7556
|
relationshipField?: string | undefined;
|
|
7605
7557
|
} | undefined;
|
|
7606
7558
|
readonly language?: string | undefined;
|
|
7607
|
-
readonly maxRating?: number | undefined;
|
|
7608
7559
|
readonly step?: number | undefined;
|
|
7609
7560
|
readonly currencyConfig?: {
|
|
7610
7561
|
precision: number;
|
|
@@ -7698,7 +7649,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7698
7649
|
} | undefined;
|
|
7699
7650
|
readonly sortable?: boolean | undefined;
|
|
7700
7651
|
readonly inlineHelpText?: string | undefined;
|
|
7701
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7702
7652
|
readonly autonumberFormat?: string | undefined;
|
|
7703
7653
|
readonly index?: boolean | undefined;
|
|
7704
7654
|
readonly type: "lookup";
|
|
@@ -7717,6 +7667,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7717
7667
|
readonly name?: string | undefined;
|
|
7718
7668
|
readonly precision?: number | undefined;
|
|
7719
7669
|
readonly required?: boolean | undefined;
|
|
7670
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7720
7671
|
readonly multiple?: boolean | undefined;
|
|
7721
7672
|
readonly dependencies?: string[] | undefined;
|
|
7722
7673
|
readonly externalId?: boolean | undefined;
|
|
@@ -7779,7 +7730,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7779
7730
|
relationshipField?: string | undefined;
|
|
7780
7731
|
} | undefined;
|
|
7781
7732
|
readonly language?: string | undefined;
|
|
7782
|
-
readonly maxRating?: number | undefined;
|
|
7783
7733
|
readonly step?: number | undefined;
|
|
7784
7734
|
readonly currencyConfig?: {
|
|
7785
7735
|
precision: number;
|
|
@@ -7873,7 +7823,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7873
7823
|
} | undefined;
|
|
7874
7824
|
readonly sortable?: boolean | undefined;
|
|
7875
7825
|
readonly inlineHelpText?: string | undefined;
|
|
7876
|
-
readonly caseSensitive?: boolean | undefined;
|
|
7877
7826
|
readonly autonumberFormat?: string | undefined;
|
|
7878
7827
|
readonly index?: boolean | undefined;
|
|
7879
7828
|
readonly type: "lookup";
|
|
@@ -7892,6 +7841,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7892
7841
|
readonly name?: string | undefined;
|
|
7893
7842
|
readonly precision?: number | undefined;
|
|
7894
7843
|
readonly required?: boolean | undefined;
|
|
7844
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7895
7845
|
readonly multiple?: boolean | undefined;
|
|
7896
7846
|
readonly dependencies?: string[] | undefined;
|
|
7897
7847
|
readonly externalId?: boolean | undefined;
|
|
@@ -7954,7 +7904,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7954
7904
|
relationshipField?: string | undefined;
|
|
7955
7905
|
} | undefined;
|
|
7956
7906
|
readonly language?: string | undefined;
|
|
7957
|
-
readonly maxRating?: number | undefined;
|
|
7958
7907
|
readonly step?: number | undefined;
|
|
7959
7908
|
readonly currencyConfig?: {
|
|
7960
7909
|
precision: number;
|
|
@@ -8048,7 +7997,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8048
7997
|
} | undefined;
|
|
8049
7998
|
readonly sortable?: boolean | undefined;
|
|
8050
7999
|
readonly inlineHelpText?: string | undefined;
|
|
8051
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8052
8000
|
readonly autonumberFormat?: string | undefined;
|
|
8053
8001
|
readonly index?: boolean | undefined;
|
|
8054
8002
|
readonly type: "text";
|
|
@@ -8067,6 +8015,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8067
8015
|
readonly name?: string | undefined;
|
|
8068
8016
|
readonly precision?: number | undefined;
|
|
8069
8017
|
readonly required?: boolean | undefined;
|
|
8018
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8070
8019
|
readonly multiple?: boolean | undefined;
|
|
8071
8020
|
readonly dependencies?: string[] | undefined;
|
|
8072
8021
|
readonly externalId?: boolean | undefined;
|
|
@@ -8129,7 +8078,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8129
8078
|
relationshipField?: string | undefined;
|
|
8130
8079
|
} | undefined;
|
|
8131
8080
|
readonly language?: string | undefined;
|
|
8132
|
-
readonly maxRating?: number | undefined;
|
|
8133
8081
|
readonly step?: number | undefined;
|
|
8134
8082
|
readonly currencyConfig?: {
|
|
8135
8083
|
precision: number;
|
|
@@ -8223,7 +8171,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8223
8171
|
} | undefined;
|
|
8224
8172
|
readonly sortable?: boolean | undefined;
|
|
8225
8173
|
readonly inlineHelpText?: string | undefined;
|
|
8226
|
-
readonly caseSensitive?: boolean | undefined;
|
|
8227
8174
|
readonly autonumberFormat?: string | undefined;
|
|
8228
8175
|
readonly index?: boolean | undefined;
|
|
8229
8176
|
readonly type: "datetime";
|