@objectstack/service-storage 10.2.0 → 11.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +202 -93
- package/dist/index.d.cts +86 -4
- package/dist/index.d.ts +86 -4
- package/package.json +5 -5
package/dist/index.d.cts
CHANGED
|
@@ -440,7 +440,7 @@ declare const SystemFile: Omit<{
|
|
|
440
440
|
abstract: boolean;
|
|
441
441
|
datasource: string;
|
|
442
442
|
fields: Record<string, {
|
|
443
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "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";
|
|
443
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "user" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "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";
|
|
444
444
|
required: boolean;
|
|
445
445
|
searchable: boolean;
|
|
446
446
|
multiple: boolean;
|
|
@@ -514,6 +514,7 @@ declare const SystemFile: Omit<{
|
|
|
514
514
|
generatedBy?: string | undefined;
|
|
515
515
|
} | undefined;
|
|
516
516
|
} | undefined;
|
|
517
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
517
518
|
summaryOperations?: {
|
|
518
519
|
object: string;
|
|
519
520
|
field: string;
|
|
@@ -648,6 +649,7 @@ declare const SystemFile: Omit<{
|
|
|
648
649
|
generatedBy?: string | undefined;
|
|
649
650
|
} | undefined;
|
|
650
651
|
} | undefined;
|
|
652
|
+
requiredPermissions?: string[] | undefined;
|
|
651
653
|
system?: boolean | undefined;
|
|
652
654
|
inlineHelpText?: string | undefined;
|
|
653
655
|
caseSensitive?: boolean | undefined;
|
|
@@ -723,6 +725,10 @@ declare const SystemFile: Omit<{
|
|
|
723
725
|
tenantField: string;
|
|
724
726
|
crossTenantAccess: boolean;
|
|
725
727
|
} | undefined;
|
|
728
|
+
access?: {
|
|
729
|
+
default: "private" | "public";
|
|
730
|
+
} | undefined;
|
|
731
|
+
requiredPermissions?: string[] | undefined;
|
|
726
732
|
softDelete?: {
|
|
727
733
|
enabled: boolean;
|
|
728
734
|
field: string;
|
|
@@ -1132,7 +1138,7 @@ declare const SystemFile: Omit<{
|
|
|
1132
1138
|
field?: string | undefined;
|
|
1133
1139
|
objectOverride?: string | undefined;
|
|
1134
1140
|
label?: string | undefined;
|
|
1135
|
-
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;
|
|
1141
|
+
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;
|
|
1136
1142
|
options?: {
|
|
1137
1143
|
label: string;
|
|
1138
1144
|
value: string;
|
|
@@ -1176,6 +1182,7 @@ declare const SystemFile: Omit<{
|
|
|
1176
1182
|
generatedBy?: string | undefined;
|
|
1177
1183
|
} | undefined;
|
|
1178
1184
|
} | undefined;
|
|
1185
|
+
requiredPermissions?: string[] | undefined;
|
|
1179
1186
|
shortcut?: string | undefined;
|
|
1180
1187
|
bulkEnabled?: boolean | undefined;
|
|
1181
1188
|
ai?: {
|
|
@@ -1235,10 +1242,12 @@ declare const SystemFile: Omit<{
|
|
|
1235
1242
|
readonly name?: string | undefined;
|
|
1236
1243
|
readonly precision?: number | undefined;
|
|
1237
1244
|
readonly required?: boolean | undefined;
|
|
1245
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1238
1246
|
readonly multiple?: boolean | undefined;
|
|
1239
1247
|
readonly dependencies?: string[] | undefined;
|
|
1240
1248
|
readonly externalId?: boolean | undefined;
|
|
1241
1249
|
readonly defaultValue?: unknown;
|
|
1250
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1242
1251
|
readonly group?: string | undefined;
|
|
1243
1252
|
readonly hidden?: boolean | undefined;
|
|
1244
1253
|
readonly system?: boolean | undefined;
|
|
@@ -1409,10 +1418,12 @@ declare const SystemFile: Omit<{
|
|
|
1409
1418
|
readonly name?: string | undefined;
|
|
1410
1419
|
readonly precision?: number | undefined;
|
|
1411
1420
|
readonly required?: boolean | undefined;
|
|
1421
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1412
1422
|
readonly multiple?: boolean | undefined;
|
|
1413
1423
|
readonly dependencies?: string[] | undefined;
|
|
1414
1424
|
readonly externalId?: boolean | undefined;
|
|
1415
1425
|
readonly defaultValue?: unknown;
|
|
1426
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1416
1427
|
readonly group?: string | undefined;
|
|
1417
1428
|
readonly hidden?: boolean | undefined;
|
|
1418
1429
|
readonly system?: boolean | undefined;
|
|
@@ -1583,10 +1594,12 @@ declare const SystemFile: Omit<{
|
|
|
1583
1594
|
readonly name?: string | undefined;
|
|
1584
1595
|
readonly precision?: number | undefined;
|
|
1585
1596
|
readonly required?: boolean | undefined;
|
|
1597
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1586
1598
|
readonly multiple?: boolean | undefined;
|
|
1587
1599
|
readonly dependencies?: string[] | undefined;
|
|
1588
1600
|
readonly externalId?: boolean | undefined;
|
|
1589
1601
|
readonly defaultValue?: unknown;
|
|
1602
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1590
1603
|
readonly group?: string | undefined;
|
|
1591
1604
|
readonly hidden?: boolean | undefined;
|
|
1592
1605
|
readonly system?: boolean | undefined;
|
|
@@ -1757,10 +1770,12 @@ declare const SystemFile: Omit<{
|
|
|
1757
1770
|
readonly name?: string | undefined;
|
|
1758
1771
|
readonly precision?: number | undefined;
|
|
1759
1772
|
readonly required?: boolean | undefined;
|
|
1773
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1760
1774
|
readonly multiple?: boolean | undefined;
|
|
1761
1775
|
readonly dependencies?: string[] | undefined;
|
|
1762
1776
|
readonly externalId?: boolean | undefined;
|
|
1763
1777
|
readonly defaultValue?: unknown;
|
|
1778
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1764
1779
|
readonly group?: string | undefined;
|
|
1765
1780
|
readonly hidden?: boolean | undefined;
|
|
1766
1781
|
readonly system?: boolean | undefined;
|
|
@@ -1931,10 +1946,12 @@ declare const SystemFile: Omit<{
|
|
|
1931
1946
|
readonly name?: string | undefined;
|
|
1932
1947
|
readonly precision?: number | undefined;
|
|
1933
1948
|
readonly required?: boolean | undefined;
|
|
1949
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1934
1950
|
readonly multiple?: boolean | undefined;
|
|
1935
1951
|
readonly dependencies?: string[] | undefined;
|
|
1936
1952
|
readonly externalId?: boolean | undefined;
|
|
1937
1953
|
readonly defaultValue?: unknown;
|
|
1954
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1938
1955
|
readonly group?: string | undefined;
|
|
1939
1956
|
readonly hidden?: boolean | undefined;
|
|
1940
1957
|
readonly system?: boolean | undefined;
|
|
@@ -2105,10 +2122,12 @@ declare const SystemFile: Omit<{
|
|
|
2105
2122
|
readonly name?: string | undefined;
|
|
2106
2123
|
readonly precision?: number | undefined;
|
|
2107
2124
|
readonly required?: boolean | undefined;
|
|
2125
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2108
2126
|
readonly multiple?: boolean | undefined;
|
|
2109
2127
|
readonly dependencies?: string[] | undefined;
|
|
2110
2128
|
readonly externalId?: boolean | undefined;
|
|
2111
2129
|
readonly defaultValue?: unknown;
|
|
2130
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2112
2131
|
readonly group?: string | undefined;
|
|
2113
2132
|
readonly hidden?: boolean | undefined;
|
|
2114
2133
|
readonly system?: boolean | undefined;
|
|
@@ -2279,10 +2298,12 @@ declare const SystemFile: Omit<{
|
|
|
2279
2298
|
readonly name?: string | undefined;
|
|
2280
2299
|
readonly precision?: number | undefined;
|
|
2281
2300
|
readonly required?: boolean | undefined;
|
|
2301
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2282
2302
|
readonly multiple?: boolean | undefined;
|
|
2283
2303
|
readonly dependencies?: string[] | undefined;
|
|
2284
2304
|
readonly externalId?: boolean | undefined;
|
|
2285
2305
|
readonly defaultValue?: unknown;
|
|
2306
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2286
2307
|
readonly group?: string | undefined;
|
|
2287
2308
|
readonly hidden?: boolean | undefined;
|
|
2288
2309
|
readonly system?: boolean | undefined;
|
|
@@ -2453,10 +2474,12 @@ declare const SystemFile: Omit<{
|
|
|
2453
2474
|
readonly name?: string | undefined;
|
|
2454
2475
|
readonly precision?: number | undefined;
|
|
2455
2476
|
readonly required?: boolean | undefined;
|
|
2477
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2456
2478
|
readonly multiple?: boolean | undefined;
|
|
2457
2479
|
readonly dependencies?: string[] | undefined;
|
|
2458
2480
|
readonly externalId?: boolean | undefined;
|
|
2459
2481
|
readonly defaultValue?: unknown;
|
|
2482
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2460
2483
|
readonly group?: string | undefined;
|
|
2461
2484
|
readonly hidden?: boolean | undefined;
|
|
2462
2485
|
readonly system?: boolean | undefined;
|
|
@@ -2627,10 +2650,12 @@ declare const SystemFile: Omit<{
|
|
|
2627
2650
|
readonly name?: string | undefined;
|
|
2628
2651
|
readonly precision?: number | undefined;
|
|
2629
2652
|
readonly required?: boolean | undefined;
|
|
2653
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2630
2654
|
readonly multiple?: boolean | undefined;
|
|
2631
2655
|
readonly dependencies?: string[] | undefined;
|
|
2632
2656
|
readonly externalId?: boolean | undefined;
|
|
2633
2657
|
readonly defaultValue?: unknown;
|
|
2658
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2634
2659
|
readonly group?: string | undefined;
|
|
2635
2660
|
readonly hidden?: boolean | undefined;
|
|
2636
2661
|
readonly system?: boolean | undefined;
|
|
@@ -2801,10 +2826,12 @@ declare const SystemFile: Omit<{
|
|
|
2801
2826
|
readonly name?: string | undefined;
|
|
2802
2827
|
readonly precision?: number | undefined;
|
|
2803
2828
|
readonly required?: boolean | undefined;
|
|
2829
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2804
2830
|
readonly multiple?: boolean | undefined;
|
|
2805
2831
|
readonly dependencies?: string[] | undefined;
|
|
2806
2832
|
readonly externalId?: boolean | undefined;
|
|
2807
2833
|
readonly defaultValue?: unknown;
|
|
2834
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2808
2835
|
readonly group?: string | undefined;
|
|
2809
2836
|
readonly hidden?: boolean | undefined;
|
|
2810
2837
|
readonly system?: boolean | undefined;
|
|
@@ -2975,10 +3002,12 @@ declare const SystemFile: Omit<{
|
|
|
2975
3002
|
readonly name?: string | undefined;
|
|
2976
3003
|
readonly precision?: number | undefined;
|
|
2977
3004
|
readonly required?: boolean | undefined;
|
|
3005
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2978
3006
|
readonly multiple?: boolean | undefined;
|
|
2979
3007
|
readonly dependencies?: string[] | undefined;
|
|
2980
3008
|
readonly externalId?: boolean | undefined;
|
|
2981
3009
|
readonly defaultValue?: unknown;
|
|
3010
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2982
3011
|
readonly group?: string | undefined;
|
|
2983
3012
|
readonly hidden?: boolean | undefined;
|
|
2984
3013
|
readonly system?: boolean | undefined;
|
|
@@ -3149,10 +3178,12 @@ declare const SystemFile: Omit<{
|
|
|
3149
3178
|
readonly name?: string | undefined;
|
|
3150
3179
|
readonly precision?: number | undefined;
|
|
3151
3180
|
readonly required?: boolean | undefined;
|
|
3181
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3152
3182
|
readonly multiple?: boolean | undefined;
|
|
3153
3183
|
readonly dependencies?: string[] | undefined;
|
|
3154
3184
|
readonly externalId?: boolean | undefined;
|
|
3155
3185
|
readonly defaultValue?: unknown;
|
|
3186
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3156
3187
|
readonly group?: string | undefined;
|
|
3157
3188
|
readonly hidden?: boolean | undefined;
|
|
3158
3189
|
readonly system?: boolean | undefined;
|
|
@@ -3323,10 +3354,12 @@ declare const SystemFile: Omit<{
|
|
|
3323
3354
|
readonly name?: string | undefined;
|
|
3324
3355
|
readonly precision?: number | undefined;
|
|
3325
3356
|
readonly required?: boolean | undefined;
|
|
3357
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3326
3358
|
readonly multiple?: boolean | undefined;
|
|
3327
3359
|
readonly dependencies?: string[] | undefined;
|
|
3328
3360
|
readonly externalId?: boolean | undefined;
|
|
3329
3361
|
readonly defaultValue?: unknown;
|
|
3362
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3330
3363
|
readonly group?: string | undefined;
|
|
3331
3364
|
readonly hidden?: boolean | undefined;
|
|
3332
3365
|
readonly system?: boolean | undefined;
|
|
@@ -3497,10 +3530,12 @@ declare const SystemFile: Omit<{
|
|
|
3497
3530
|
readonly name?: string | undefined;
|
|
3498
3531
|
readonly precision?: number | undefined;
|
|
3499
3532
|
readonly required?: boolean | undefined;
|
|
3533
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3500
3534
|
readonly multiple?: boolean | undefined;
|
|
3501
3535
|
readonly dependencies?: string[] | undefined;
|
|
3502
3536
|
readonly externalId?: boolean | undefined;
|
|
3503
3537
|
readonly defaultValue?: unknown;
|
|
3538
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3504
3539
|
readonly group?: string | undefined;
|
|
3505
3540
|
readonly hidden?: boolean | undefined;
|
|
3506
3541
|
readonly system?: boolean | undefined;
|
|
@@ -3676,7 +3711,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3676
3711
|
abstract: boolean;
|
|
3677
3712
|
datasource: string;
|
|
3678
3713
|
fields: Record<string, {
|
|
3679
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "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";
|
|
3714
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "user" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "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";
|
|
3680
3715
|
required: boolean;
|
|
3681
3716
|
searchable: boolean;
|
|
3682
3717
|
multiple: boolean;
|
|
@@ -3750,6 +3785,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3750
3785
|
generatedBy?: string | undefined;
|
|
3751
3786
|
} | undefined;
|
|
3752
3787
|
} | undefined;
|
|
3788
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3753
3789
|
summaryOperations?: {
|
|
3754
3790
|
object: string;
|
|
3755
3791
|
field: string;
|
|
@@ -3884,6 +3920,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3884
3920
|
generatedBy?: string | undefined;
|
|
3885
3921
|
} | undefined;
|
|
3886
3922
|
} | undefined;
|
|
3923
|
+
requiredPermissions?: string[] | undefined;
|
|
3887
3924
|
system?: boolean | undefined;
|
|
3888
3925
|
inlineHelpText?: string | undefined;
|
|
3889
3926
|
caseSensitive?: boolean | undefined;
|
|
@@ -3959,6 +3996,10 @@ declare const SystemUploadSession: Omit<{
|
|
|
3959
3996
|
tenantField: string;
|
|
3960
3997
|
crossTenantAccess: boolean;
|
|
3961
3998
|
} | undefined;
|
|
3999
|
+
access?: {
|
|
4000
|
+
default: "private" | "public";
|
|
4001
|
+
} | undefined;
|
|
4002
|
+
requiredPermissions?: string[] | undefined;
|
|
3962
4003
|
softDelete?: {
|
|
3963
4004
|
enabled: boolean;
|
|
3964
4005
|
field: string;
|
|
@@ -4368,7 +4409,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4368
4409
|
field?: string | undefined;
|
|
4369
4410
|
objectOverride?: string | undefined;
|
|
4370
4411
|
label?: string | undefined;
|
|
4371
|
-
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;
|
|
4412
|
+
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;
|
|
4372
4413
|
options?: {
|
|
4373
4414
|
label: string;
|
|
4374
4415
|
value: string;
|
|
@@ -4412,6 +4453,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4412
4453
|
generatedBy?: string | undefined;
|
|
4413
4454
|
} | undefined;
|
|
4414
4455
|
} | undefined;
|
|
4456
|
+
requiredPermissions?: string[] | undefined;
|
|
4415
4457
|
shortcut?: string | undefined;
|
|
4416
4458
|
bulkEnabled?: boolean | undefined;
|
|
4417
4459
|
ai?: {
|
|
@@ -4471,10 +4513,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
4471
4513
|
readonly name?: string | undefined;
|
|
4472
4514
|
readonly precision?: number | undefined;
|
|
4473
4515
|
readonly required?: boolean | undefined;
|
|
4516
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4474
4517
|
readonly multiple?: boolean | undefined;
|
|
4475
4518
|
readonly dependencies?: string[] | undefined;
|
|
4476
4519
|
readonly externalId?: boolean | undefined;
|
|
4477
4520
|
readonly defaultValue?: unknown;
|
|
4521
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
4478
4522
|
readonly group?: string | undefined;
|
|
4479
4523
|
readonly hidden?: boolean | undefined;
|
|
4480
4524
|
readonly system?: boolean | undefined;
|
|
@@ -4645,10 +4689,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
4645
4689
|
readonly name?: string | undefined;
|
|
4646
4690
|
readonly precision?: number | undefined;
|
|
4647
4691
|
readonly required?: boolean | undefined;
|
|
4692
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4648
4693
|
readonly multiple?: boolean | undefined;
|
|
4649
4694
|
readonly dependencies?: string[] | undefined;
|
|
4650
4695
|
readonly externalId?: boolean | undefined;
|
|
4651
4696
|
readonly defaultValue?: unknown;
|
|
4697
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
4652
4698
|
readonly group?: string | undefined;
|
|
4653
4699
|
readonly hidden?: boolean | undefined;
|
|
4654
4700
|
readonly system?: boolean | undefined;
|
|
@@ -4819,10 +4865,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
4819
4865
|
readonly name?: string | undefined;
|
|
4820
4866
|
readonly precision?: number | undefined;
|
|
4821
4867
|
readonly required?: boolean | undefined;
|
|
4868
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4822
4869
|
readonly multiple?: boolean | undefined;
|
|
4823
4870
|
readonly dependencies?: string[] | undefined;
|
|
4824
4871
|
readonly externalId?: boolean | undefined;
|
|
4825
4872
|
readonly defaultValue?: unknown;
|
|
4873
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
4826
4874
|
readonly group?: string | undefined;
|
|
4827
4875
|
readonly hidden?: boolean | undefined;
|
|
4828
4876
|
readonly system?: boolean | undefined;
|
|
@@ -4993,10 +5041,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
4993
5041
|
readonly name?: string | undefined;
|
|
4994
5042
|
readonly precision?: number | undefined;
|
|
4995
5043
|
readonly required?: boolean | undefined;
|
|
5044
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4996
5045
|
readonly multiple?: boolean | undefined;
|
|
4997
5046
|
readonly dependencies?: string[] | undefined;
|
|
4998
5047
|
readonly externalId?: boolean | undefined;
|
|
4999
5048
|
readonly defaultValue?: unknown;
|
|
5049
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5000
5050
|
readonly group?: string | undefined;
|
|
5001
5051
|
readonly hidden?: boolean | undefined;
|
|
5002
5052
|
readonly system?: boolean | undefined;
|
|
@@ -5167,10 +5217,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
5167
5217
|
readonly name?: string | undefined;
|
|
5168
5218
|
readonly precision?: number | undefined;
|
|
5169
5219
|
readonly required?: boolean | undefined;
|
|
5220
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5170
5221
|
readonly multiple?: boolean | undefined;
|
|
5171
5222
|
readonly dependencies?: string[] | undefined;
|
|
5172
5223
|
readonly externalId?: boolean | undefined;
|
|
5173
5224
|
readonly defaultValue?: unknown;
|
|
5225
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5174
5226
|
readonly group?: string | undefined;
|
|
5175
5227
|
readonly hidden?: boolean | undefined;
|
|
5176
5228
|
readonly system?: boolean | undefined;
|
|
@@ -5341,10 +5393,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
5341
5393
|
readonly name?: string | undefined;
|
|
5342
5394
|
readonly precision?: number | undefined;
|
|
5343
5395
|
readonly required?: boolean | undefined;
|
|
5396
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5344
5397
|
readonly multiple?: boolean | undefined;
|
|
5345
5398
|
readonly dependencies?: string[] | undefined;
|
|
5346
5399
|
readonly externalId?: boolean | undefined;
|
|
5347
5400
|
readonly defaultValue?: unknown;
|
|
5401
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5348
5402
|
readonly group?: string | undefined;
|
|
5349
5403
|
readonly hidden?: boolean | undefined;
|
|
5350
5404
|
readonly system?: boolean | undefined;
|
|
@@ -5515,10 +5569,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
5515
5569
|
readonly name?: string | undefined;
|
|
5516
5570
|
readonly precision?: number | undefined;
|
|
5517
5571
|
readonly required?: boolean | undefined;
|
|
5572
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5518
5573
|
readonly multiple?: boolean | undefined;
|
|
5519
5574
|
readonly dependencies?: string[] | undefined;
|
|
5520
5575
|
readonly externalId?: boolean | undefined;
|
|
5521
5576
|
readonly defaultValue?: unknown;
|
|
5577
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5522
5578
|
readonly group?: string | undefined;
|
|
5523
5579
|
readonly hidden?: boolean | undefined;
|
|
5524
5580
|
readonly system?: boolean | undefined;
|
|
@@ -5689,10 +5745,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
5689
5745
|
readonly name?: string | undefined;
|
|
5690
5746
|
readonly precision?: number | undefined;
|
|
5691
5747
|
readonly required?: boolean | undefined;
|
|
5748
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5692
5749
|
readonly multiple?: boolean | undefined;
|
|
5693
5750
|
readonly dependencies?: string[] | undefined;
|
|
5694
5751
|
readonly externalId?: boolean | undefined;
|
|
5695
5752
|
readonly defaultValue?: unknown;
|
|
5753
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5696
5754
|
readonly group?: string | undefined;
|
|
5697
5755
|
readonly hidden?: boolean | undefined;
|
|
5698
5756
|
readonly system?: boolean | undefined;
|
|
@@ -5863,10 +5921,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
5863
5921
|
readonly name?: string | undefined;
|
|
5864
5922
|
readonly precision?: number | undefined;
|
|
5865
5923
|
readonly required?: boolean | undefined;
|
|
5924
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5866
5925
|
readonly multiple?: boolean | undefined;
|
|
5867
5926
|
readonly dependencies?: string[] | undefined;
|
|
5868
5927
|
readonly externalId?: boolean | undefined;
|
|
5869
5928
|
readonly defaultValue?: unknown;
|
|
5929
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5870
5930
|
readonly group?: string | undefined;
|
|
5871
5931
|
readonly hidden?: boolean | undefined;
|
|
5872
5932
|
readonly system?: boolean | undefined;
|
|
@@ -6037,10 +6097,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
6037
6097
|
readonly name?: string | undefined;
|
|
6038
6098
|
readonly precision?: number | undefined;
|
|
6039
6099
|
readonly required?: boolean | undefined;
|
|
6100
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6040
6101
|
readonly multiple?: boolean | undefined;
|
|
6041
6102
|
readonly dependencies?: string[] | undefined;
|
|
6042
6103
|
readonly externalId?: boolean | undefined;
|
|
6043
6104
|
readonly defaultValue?: unknown;
|
|
6105
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
6044
6106
|
readonly group?: string | undefined;
|
|
6045
6107
|
readonly hidden?: boolean | undefined;
|
|
6046
6108
|
readonly system?: boolean | undefined;
|
|
@@ -6211,10 +6273,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
6211
6273
|
readonly name?: string | undefined;
|
|
6212
6274
|
readonly precision?: number | undefined;
|
|
6213
6275
|
readonly required?: boolean | undefined;
|
|
6276
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6214
6277
|
readonly multiple?: boolean | undefined;
|
|
6215
6278
|
readonly dependencies?: string[] | undefined;
|
|
6216
6279
|
readonly externalId?: boolean | undefined;
|
|
6217
6280
|
readonly defaultValue?: unknown;
|
|
6281
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
6218
6282
|
readonly group?: string | undefined;
|
|
6219
6283
|
readonly hidden?: boolean | undefined;
|
|
6220
6284
|
readonly system?: boolean | undefined;
|
|
@@ -6385,10 +6449,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
6385
6449
|
readonly name?: string | undefined;
|
|
6386
6450
|
readonly precision?: number | undefined;
|
|
6387
6451
|
readonly required?: boolean | undefined;
|
|
6452
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6388
6453
|
readonly multiple?: boolean | undefined;
|
|
6389
6454
|
readonly dependencies?: string[] | undefined;
|
|
6390
6455
|
readonly externalId?: boolean | undefined;
|
|
6391
6456
|
readonly defaultValue?: unknown;
|
|
6457
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
6392
6458
|
readonly group?: string | undefined;
|
|
6393
6459
|
readonly hidden?: boolean | undefined;
|
|
6394
6460
|
readonly system?: boolean | undefined;
|
|
@@ -6559,10 +6625,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
6559
6625
|
readonly name?: string | undefined;
|
|
6560
6626
|
readonly precision?: number | undefined;
|
|
6561
6627
|
readonly required?: boolean | undefined;
|
|
6628
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6562
6629
|
readonly multiple?: boolean | undefined;
|
|
6563
6630
|
readonly dependencies?: string[] | undefined;
|
|
6564
6631
|
readonly externalId?: boolean | undefined;
|
|
6565
6632
|
readonly defaultValue?: unknown;
|
|
6633
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
6566
6634
|
readonly group?: string | undefined;
|
|
6567
6635
|
readonly hidden?: boolean | undefined;
|
|
6568
6636
|
readonly system?: boolean | undefined;
|
|
@@ -6733,10 +6801,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
6733
6801
|
readonly name?: string | undefined;
|
|
6734
6802
|
readonly precision?: number | undefined;
|
|
6735
6803
|
readonly required?: boolean | undefined;
|
|
6804
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6736
6805
|
readonly multiple?: boolean | undefined;
|
|
6737
6806
|
readonly dependencies?: string[] | undefined;
|
|
6738
6807
|
readonly externalId?: boolean | undefined;
|
|
6739
6808
|
readonly defaultValue?: unknown;
|
|
6809
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
6740
6810
|
readonly group?: string | undefined;
|
|
6741
6811
|
readonly hidden?: boolean | undefined;
|
|
6742
6812
|
readonly system?: boolean | undefined;
|
|
@@ -6907,10 +6977,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
6907
6977
|
readonly name?: string | undefined;
|
|
6908
6978
|
readonly precision?: number | undefined;
|
|
6909
6979
|
readonly required?: boolean | undefined;
|
|
6980
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6910
6981
|
readonly multiple?: boolean | undefined;
|
|
6911
6982
|
readonly dependencies?: string[] | undefined;
|
|
6912
6983
|
readonly externalId?: boolean | undefined;
|
|
6913
6984
|
readonly defaultValue?: unknown;
|
|
6985
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
6914
6986
|
readonly group?: string | undefined;
|
|
6915
6987
|
readonly hidden?: boolean | undefined;
|
|
6916
6988
|
readonly system?: boolean | undefined;
|
|
@@ -7081,10 +7153,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
7081
7153
|
readonly name?: string | undefined;
|
|
7082
7154
|
readonly precision?: number | undefined;
|
|
7083
7155
|
readonly required?: boolean | undefined;
|
|
7156
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7084
7157
|
readonly multiple?: boolean | undefined;
|
|
7085
7158
|
readonly dependencies?: string[] | undefined;
|
|
7086
7159
|
readonly externalId?: boolean | undefined;
|
|
7087
7160
|
readonly defaultValue?: unknown;
|
|
7161
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7088
7162
|
readonly group?: string | undefined;
|
|
7089
7163
|
readonly hidden?: boolean | undefined;
|
|
7090
7164
|
readonly system?: boolean | undefined;
|
|
@@ -7255,10 +7329,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
7255
7329
|
readonly name?: string | undefined;
|
|
7256
7330
|
readonly precision?: number | undefined;
|
|
7257
7331
|
readonly required?: boolean | undefined;
|
|
7332
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7258
7333
|
readonly multiple?: boolean | undefined;
|
|
7259
7334
|
readonly dependencies?: string[] | undefined;
|
|
7260
7335
|
readonly externalId?: boolean | undefined;
|
|
7261
7336
|
readonly defaultValue?: unknown;
|
|
7337
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7262
7338
|
readonly group?: string | undefined;
|
|
7263
7339
|
readonly hidden?: boolean | undefined;
|
|
7264
7340
|
readonly system?: boolean | undefined;
|
|
@@ -7429,10 +7505,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
7429
7505
|
readonly name?: string | undefined;
|
|
7430
7506
|
readonly precision?: number | undefined;
|
|
7431
7507
|
readonly required?: boolean | undefined;
|
|
7508
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7432
7509
|
readonly multiple?: boolean | undefined;
|
|
7433
7510
|
readonly dependencies?: string[] | undefined;
|
|
7434
7511
|
readonly externalId?: boolean | undefined;
|
|
7435
7512
|
readonly defaultValue?: unknown;
|
|
7513
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7436
7514
|
readonly group?: string | undefined;
|
|
7437
7515
|
readonly hidden?: boolean | undefined;
|
|
7438
7516
|
readonly system?: boolean | undefined;
|
|
@@ -7603,10 +7681,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
7603
7681
|
readonly name?: string | undefined;
|
|
7604
7682
|
readonly precision?: number | undefined;
|
|
7605
7683
|
readonly required?: boolean | undefined;
|
|
7684
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7606
7685
|
readonly multiple?: boolean | undefined;
|
|
7607
7686
|
readonly dependencies?: string[] | undefined;
|
|
7608
7687
|
readonly externalId?: boolean | undefined;
|
|
7609
7688
|
readonly defaultValue?: unknown;
|
|
7689
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7610
7690
|
readonly group?: string | undefined;
|
|
7611
7691
|
readonly hidden?: boolean | undefined;
|
|
7612
7692
|
readonly system?: boolean | undefined;
|
|
@@ -7777,10 +7857,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
7777
7857
|
readonly name?: string | undefined;
|
|
7778
7858
|
readonly precision?: number | undefined;
|
|
7779
7859
|
readonly required?: boolean | undefined;
|
|
7860
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7780
7861
|
readonly multiple?: boolean | undefined;
|
|
7781
7862
|
readonly dependencies?: string[] | undefined;
|
|
7782
7863
|
readonly externalId?: boolean | undefined;
|
|
7783
7864
|
readonly defaultValue?: unknown;
|
|
7865
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7784
7866
|
readonly group?: string | undefined;
|
|
7785
7867
|
readonly hidden?: boolean | undefined;
|
|
7786
7868
|
readonly system?: boolean | undefined;
|