@objectstack/service-storage 7.3.0 → 7.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +128 -211
- package/dist/index.d.ts +128 -211
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Plugin, PluginContext } from '@objectstack/core';
|
|
2
2
|
import { MetricsRegistry } from '@objectstack/observability';
|
|
3
3
|
import { IStorageService, StorageUploadOptions, StorageFileInfo, PresignedUploadDescriptor, PresignedDownloadDescriptor, IDataEngine, IHttpServer } from '@objectstack/spec/contracts';
|
|
4
|
-
import { z } from 'zod';
|
|
5
4
|
import * as _objectstack_spec_data from '@objectstack/spec/data';
|
|
6
5
|
|
|
7
6
|
/**
|
|
@@ -418,44 +417,6 @@ interface StorageRoutesOptions {
|
|
|
418
417
|
*/
|
|
419
418
|
declare function registerStorageRoutes(httpServer: IHttpServer, storage: IStorageService, store: StorageMetadataStore, opts?: StorageRoutesOptions): void;
|
|
420
419
|
|
|
421
|
-
declare const ActionRefSchema: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
422
|
-
type: z.ZodString;
|
|
423
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
424
|
-
}, z.core.$strip>]>;
|
|
425
|
-
/**
|
|
426
|
-
* State Transition Definition
|
|
427
|
-
* "When EVENT happens, if GUARD is true, go to TARGET and run ACTIONS"
|
|
428
|
-
*/
|
|
429
|
-
declare const TransitionSchema: z.ZodObject<{
|
|
430
|
-
target: z.ZodOptional<z.ZodString>;
|
|
431
|
-
cond: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
432
|
-
type: z.ZodString;
|
|
433
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
434
|
-
}, z.core.$strip>]>>;
|
|
435
|
-
actions: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
436
|
-
type: z.ZodString;
|
|
437
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
438
|
-
}, z.core.$strip>]>>>;
|
|
439
|
-
description: z.ZodOptional<z.ZodString>;
|
|
440
|
-
}, z.core.$strip>;
|
|
441
|
-
type ActionRef = z.infer<typeof ActionRefSchema>;
|
|
442
|
-
type Transition = z.infer<typeof TransitionSchema>;
|
|
443
|
-
type StateNodeConfig = {
|
|
444
|
-
type?: 'atomic' | 'compound' | 'parallel' | 'final' | 'history';
|
|
445
|
-
entry?: ActionRef[];
|
|
446
|
-
exit?: ActionRef[];
|
|
447
|
-
on?: Record<string, string | Transition | Transition[]>;
|
|
448
|
-
always?: Transition[];
|
|
449
|
-
initial?: string;
|
|
450
|
-
states?: Record<string, StateNodeConfig>;
|
|
451
|
-
meta?: {
|
|
452
|
-
label?: string;
|
|
453
|
-
description?: string;
|
|
454
|
-
color?: string;
|
|
455
|
-
aiInstructions?: string;
|
|
456
|
-
};
|
|
457
|
-
};
|
|
458
|
-
|
|
459
420
|
/**
|
|
460
421
|
* System File Object
|
|
461
422
|
*
|
|
@@ -479,7 +440,7 @@ declare const SystemFile: Omit<{
|
|
|
479
440
|
abstract: boolean;
|
|
480
441
|
datasource: string;
|
|
481
442
|
fields: Record<string, {
|
|
482
|
-
type: "number" | "boolean" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "
|
|
443
|
+
type: "number" | "boolean" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
483
444
|
required: boolean;
|
|
484
445
|
searchable: boolean;
|
|
485
446
|
multiple: boolean;
|
|
@@ -694,6 +655,14 @@ declare const SystemFile: Omit<{
|
|
|
694
655
|
owner?: boolean | undefined;
|
|
695
656
|
audit?: boolean | undefined;
|
|
696
657
|
} | undefined;
|
|
658
|
+
external?: {
|
|
659
|
+
writable: boolean;
|
|
660
|
+
remoteName?: string | undefined;
|
|
661
|
+
remoteSchema?: string | undefined;
|
|
662
|
+
columnMap?: Record<string, string> | undefined;
|
|
663
|
+
introspectedAt?: string | undefined;
|
|
664
|
+
ignoreColumns?: string[] | undefined;
|
|
665
|
+
} | undefined;
|
|
697
666
|
indexes?: {
|
|
698
667
|
fields: string[];
|
|
699
668
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -754,36 +723,6 @@ declare const SystemFile: Omit<{
|
|
|
754
723
|
destination: string;
|
|
755
724
|
} | undefined;
|
|
756
725
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
757
|
-
stateMachines?: Record<string, {
|
|
758
|
-
id: string;
|
|
759
|
-
initial: string;
|
|
760
|
-
states: Record<string, StateNodeConfig>;
|
|
761
|
-
description?: string | undefined;
|
|
762
|
-
contextSchema?: Record<string, unknown> | undefined;
|
|
763
|
-
on?: Record<string, string | {
|
|
764
|
-
target?: string | undefined;
|
|
765
|
-
cond?: string | {
|
|
766
|
-
type: string;
|
|
767
|
-
params?: Record<string, unknown> | undefined;
|
|
768
|
-
} | undefined;
|
|
769
|
-
actions?: (string | {
|
|
770
|
-
type: string;
|
|
771
|
-
params?: Record<string, unknown> | undefined;
|
|
772
|
-
})[] | undefined;
|
|
773
|
-
description?: string | undefined;
|
|
774
|
-
} | {
|
|
775
|
-
target?: string | undefined;
|
|
776
|
-
cond?: string | {
|
|
777
|
-
type: string;
|
|
778
|
-
params?: Record<string, unknown> | undefined;
|
|
779
|
-
} | undefined;
|
|
780
|
-
actions?: (string | {
|
|
781
|
-
type: string;
|
|
782
|
-
params?: Record<string, unknown> | undefined;
|
|
783
|
-
})[] | undefined;
|
|
784
|
-
description?: string | undefined;
|
|
785
|
-
}[]> | undefined;
|
|
786
|
-
}> | undefined;
|
|
787
726
|
displayNameField?: string | undefined;
|
|
788
727
|
recordName?: {
|
|
789
728
|
type: "text" | "autonumber";
|
|
@@ -873,7 +812,7 @@ declare const SystemFile: Omit<{
|
|
|
873
812
|
type: "none" | "multiple" | "single";
|
|
874
813
|
} | undefined;
|
|
875
814
|
navigation?: {
|
|
876
|
-
mode: "split" | "none" | "page" | "
|
|
815
|
+
mode: "split" | "none" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
877
816
|
preventNavigation: boolean;
|
|
878
817
|
openNewTab: boolean;
|
|
879
818
|
view?: string | undefined;
|
|
@@ -1062,7 +1001,7 @@ declare const SystemFile: Omit<{
|
|
|
1062
1001
|
trash: boolean;
|
|
1063
1002
|
mru: boolean;
|
|
1064
1003
|
clone: boolean;
|
|
1065
|
-
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "
|
|
1004
|
+
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
1066
1005
|
} | undefined;
|
|
1067
1006
|
recordTypes?: string[] | undefined;
|
|
1068
1007
|
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
@@ -1108,7 +1047,7 @@ declare const SystemFile: Omit<{
|
|
|
1108
1047
|
field?: string | undefined;
|
|
1109
1048
|
objectOverride?: string | undefined;
|
|
1110
1049
|
label?: string | undefined;
|
|
1111
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
1050
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
1112
1051
|
options?: {
|
|
1113
1052
|
label: string;
|
|
1114
1053
|
value: string;
|
|
@@ -1160,7 +1099,7 @@ declare const SystemFile: Omit<{
|
|
|
1160
1099
|
} | undefined;
|
|
1161
1100
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
1162
1101
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
1163
|
-
mode?: "custom" | "delete" | "
|
|
1102
|
+
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
1164
1103
|
timeout?: number | undefined;
|
|
1165
1104
|
aria?: {
|
|
1166
1105
|
ariaLabel?: string | undefined;
|
|
@@ -1200,10 +1139,12 @@ declare const SystemFile: Omit<{
|
|
|
1200
1139
|
readonly dependencies?: string[] | undefined;
|
|
1201
1140
|
readonly theme?: string | undefined;
|
|
1202
1141
|
readonly externalId?: boolean | undefined;
|
|
1142
|
+
readonly defaultValue?: unknown;
|
|
1143
|
+
readonly group?: string | undefined;
|
|
1144
|
+
readonly hidden?: boolean | undefined;
|
|
1203
1145
|
readonly system?: boolean | undefined;
|
|
1204
1146
|
readonly min?: number | undefined;
|
|
1205
1147
|
readonly max?: number | undefined;
|
|
1206
|
-
readonly group?: string | undefined;
|
|
1207
1148
|
readonly encryptionConfig?: {
|
|
1208
1149
|
enabled: boolean;
|
|
1209
1150
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1224,7 +1165,6 @@ declare const SystemFile: Omit<{
|
|
|
1224
1165
|
readonly columnName?: string | undefined;
|
|
1225
1166
|
readonly searchable?: boolean | undefined;
|
|
1226
1167
|
readonly unique?: boolean | undefined;
|
|
1227
|
-
readonly defaultValue?: unknown;
|
|
1228
1168
|
readonly maxLength?: number | undefined;
|
|
1229
1169
|
readonly minLength?: number | undefined;
|
|
1230
1170
|
readonly scale?: number | undefined;
|
|
@@ -1348,7 +1288,6 @@ declare const SystemFile: Omit<{
|
|
|
1348
1288
|
generatedBy?: string | undefined;
|
|
1349
1289
|
} | undefined;
|
|
1350
1290
|
} | undefined;
|
|
1351
|
-
readonly hidden?: boolean | undefined;
|
|
1352
1291
|
readonly sortable?: boolean | undefined;
|
|
1353
1292
|
readonly inlineHelpText?: string | undefined;
|
|
1354
1293
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1375,10 +1314,12 @@ declare const SystemFile: Omit<{
|
|
|
1375
1314
|
readonly dependencies?: string[] | undefined;
|
|
1376
1315
|
readonly theme?: string | undefined;
|
|
1377
1316
|
readonly externalId?: boolean | undefined;
|
|
1317
|
+
readonly defaultValue?: unknown;
|
|
1318
|
+
readonly group?: string | undefined;
|
|
1319
|
+
readonly hidden?: boolean | undefined;
|
|
1378
1320
|
readonly system?: boolean | undefined;
|
|
1379
1321
|
readonly min?: number | undefined;
|
|
1380
1322
|
readonly max?: number | undefined;
|
|
1381
|
-
readonly group?: string | undefined;
|
|
1382
1323
|
readonly encryptionConfig?: {
|
|
1383
1324
|
enabled: boolean;
|
|
1384
1325
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1399,7 +1340,6 @@ declare const SystemFile: Omit<{
|
|
|
1399
1340
|
readonly columnName?: string | undefined;
|
|
1400
1341
|
readonly searchable?: boolean | undefined;
|
|
1401
1342
|
readonly unique?: boolean | undefined;
|
|
1402
|
-
readonly defaultValue?: unknown;
|
|
1403
1343
|
readonly maxLength?: number | undefined;
|
|
1404
1344
|
readonly minLength?: number | undefined;
|
|
1405
1345
|
readonly scale?: number | undefined;
|
|
@@ -1523,7 +1463,6 @@ declare const SystemFile: Omit<{
|
|
|
1523
1463
|
generatedBy?: string | undefined;
|
|
1524
1464
|
} | undefined;
|
|
1525
1465
|
} | undefined;
|
|
1526
|
-
readonly hidden?: boolean | undefined;
|
|
1527
1466
|
readonly sortable?: boolean | undefined;
|
|
1528
1467
|
readonly inlineHelpText?: string | undefined;
|
|
1529
1468
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1550,10 +1489,12 @@ declare const SystemFile: Omit<{
|
|
|
1550
1489
|
readonly dependencies?: string[] | undefined;
|
|
1551
1490
|
readonly theme?: string | undefined;
|
|
1552
1491
|
readonly externalId?: boolean | undefined;
|
|
1492
|
+
readonly defaultValue?: unknown;
|
|
1493
|
+
readonly group?: string | undefined;
|
|
1494
|
+
readonly hidden?: boolean | undefined;
|
|
1553
1495
|
readonly system?: boolean | undefined;
|
|
1554
1496
|
readonly min?: number | undefined;
|
|
1555
1497
|
readonly max?: number | undefined;
|
|
1556
|
-
readonly group?: string | undefined;
|
|
1557
1498
|
readonly encryptionConfig?: {
|
|
1558
1499
|
enabled: boolean;
|
|
1559
1500
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1574,7 +1515,6 @@ declare const SystemFile: Omit<{
|
|
|
1574
1515
|
readonly columnName?: string | undefined;
|
|
1575
1516
|
readonly searchable?: boolean | undefined;
|
|
1576
1517
|
readonly unique?: boolean | undefined;
|
|
1577
|
-
readonly defaultValue?: unknown;
|
|
1578
1518
|
readonly maxLength?: number | undefined;
|
|
1579
1519
|
readonly minLength?: number | undefined;
|
|
1580
1520
|
readonly scale?: number | undefined;
|
|
@@ -1698,7 +1638,6 @@ declare const SystemFile: Omit<{
|
|
|
1698
1638
|
generatedBy?: string | undefined;
|
|
1699
1639
|
} | undefined;
|
|
1700
1640
|
} | undefined;
|
|
1701
|
-
readonly hidden?: boolean | undefined;
|
|
1702
1641
|
readonly sortable?: boolean | undefined;
|
|
1703
1642
|
readonly inlineHelpText?: string | undefined;
|
|
1704
1643
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1725,10 +1664,12 @@ declare const SystemFile: Omit<{
|
|
|
1725
1664
|
readonly dependencies?: string[] | undefined;
|
|
1726
1665
|
readonly theme?: string | undefined;
|
|
1727
1666
|
readonly externalId?: boolean | undefined;
|
|
1667
|
+
readonly defaultValue?: unknown;
|
|
1668
|
+
readonly group?: string | undefined;
|
|
1669
|
+
readonly hidden?: boolean | undefined;
|
|
1728
1670
|
readonly system?: boolean | undefined;
|
|
1729
1671
|
readonly min?: number | undefined;
|
|
1730
1672
|
readonly max?: number | undefined;
|
|
1731
|
-
readonly group?: string | undefined;
|
|
1732
1673
|
readonly encryptionConfig?: {
|
|
1733
1674
|
enabled: boolean;
|
|
1734
1675
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1749,7 +1690,6 @@ declare const SystemFile: Omit<{
|
|
|
1749
1690
|
readonly columnName?: string | undefined;
|
|
1750
1691
|
readonly searchable?: boolean | undefined;
|
|
1751
1692
|
readonly unique?: boolean | undefined;
|
|
1752
|
-
readonly defaultValue?: unknown;
|
|
1753
1693
|
readonly maxLength?: number | undefined;
|
|
1754
1694
|
readonly minLength?: number | undefined;
|
|
1755
1695
|
readonly scale?: number | undefined;
|
|
@@ -1873,7 +1813,6 @@ declare const SystemFile: Omit<{
|
|
|
1873
1813
|
generatedBy?: string | undefined;
|
|
1874
1814
|
} | undefined;
|
|
1875
1815
|
} | undefined;
|
|
1876
|
-
readonly hidden?: boolean | undefined;
|
|
1877
1816
|
readonly sortable?: boolean | undefined;
|
|
1878
1817
|
readonly inlineHelpText?: string | undefined;
|
|
1879
1818
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1900,10 +1839,12 @@ declare const SystemFile: Omit<{
|
|
|
1900
1839
|
readonly dependencies?: string[] | undefined;
|
|
1901
1840
|
readonly theme?: string | undefined;
|
|
1902
1841
|
readonly externalId?: boolean | undefined;
|
|
1842
|
+
readonly defaultValue?: unknown;
|
|
1843
|
+
readonly group?: string | undefined;
|
|
1844
|
+
readonly hidden?: boolean | undefined;
|
|
1903
1845
|
readonly system?: boolean | undefined;
|
|
1904
1846
|
readonly min?: number | undefined;
|
|
1905
1847
|
readonly max?: number | undefined;
|
|
1906
|
-
readonly group?: string | undefined;
|
|
1907
1848
|
readonly encryptionConfig?: {
|
|
1908
1849
|
enabled: boolean;
|
|
1909
1850
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1924,7 +1865,6 @@ declare const SystemFile: Omit<{
|
|
|
1924
1865
|
readonly columnName?: string | undefined;
|
|
1925
1866
|
readonly searchable?: boolean | undefined;
|
|
1926
1867
|
readonly unique?: boolean | undefined;
|
|
1927
|
-
readonly defaultValue?: unknown;
|
|
1928
1868
|
readonly maxLength?: number | undefined;
|
|
1929
1869
|
readonly minLength?: number | undefined;
|
|
1930
1870
|
readonly scale?: number | undefined;
|
|
@@ -2048,7 +1988,6 @@ declare const SystemFile: Omit<{
|
|
|
2048
1988
|
generatedBy?: string | undefined;
|
|
2049
1989
|
} | undefined;
|
|
2050
1990
|
} | undefined;
|
|
2051
|
-
readonly hidden?: boolean | undefined;
|
|
2052
1991
|
readonly sortable?: boolean | undefined;
|
|
2053
1992
|
readonly inlineHelpText?: string | undefined;
|
|
2054
1993
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2075,10 +2014,12 @@ declare const SystemFile: Omit<{
|
|
|
2075
2014
|
readonly dependencies?: string[] | undefined;
|
|
2076
2015
|
readonly theme?: string | undefined;
|
|
2077
2016
|
readonly externalId?: boolean | undefined;
|
|
2017
|
+
readonly defaultValue?: unknown;
|
|
2018
|
+
readonly group?: string | undefined;
|
|
2019
|
+
readonly hidden?: boolean | undefined;
|
|
2078
2020
|
readonly system?: boolean | undefined;
|
|
2079
2021
|
readonly min?: number | undefined;
|
|
2080
2022
|
readonly max?: number | undefined;
|
|
2081
|
-
readonly group?: string | undefined;
|
|
2082
2023
|
readonly encryptionConfig?: {
|
|
2083
2024
|
enabled: boolean;
|
|
2084
2025
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2099,7 +2040,6 @@ declare const SystemFile: Omit<{
|
|
|
2099
2040
|
readonly columnName?: string | undefined;
|
|
2100
2041
|
readonly searchable?: boolean | undefined;
|
|
2101
2042
|
readonly unique?: boolean | undefined;
|
|
2102
|
-
readonly defaultValue?: unknown;
|
|
2103
2043
|
readonly maxLength?: number | undefined;
|
|
2104
2044
|
readonly minLength?: number | undefined;
|
|
2105
2045
|
readonly scale?: number | undefined;
|
|
@@ -2223,7 +2163,6 @@ declare const SystemFile: Omit<{
|
|
|
2223
2163
|
generatedBy?: string | undefined;
|
|
2224
2164
|
} | undefined;
|
|
2225
2165
|
} | undefined;
|
|
2226
|
-
readonly hidden?: boolean | undefined;
|
|
2227
2166
|
readonly sortable?: boolean | undefined;
|
|
2228
2167
|
readonly inlineHelpText?: string | undefined;
|
|
2229
2168
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2250,10 +2189,12 @@ declare const SystemFile: Omit<{
|
|
|
2250
2189
|
readonly dependencies?: string[] | undefined;
|
|
2251
2190
|
readonly theme?: string | undefined;
|
|
2252
2191
|
readonly externalId?: boolean | undefined;
|
|
2192
|
+
readonly defaultValue?: unknown;
|
|
2193
|
+
readonly group?: string | undefined;
|
|
2194
|
+
readonly hidden?: boolean | undefined;
|
|
2253
2195
|
readonly system?: boolean | undefined;
|
|
2254
2196
|
readonly min?: number | undefined;
|
|
2255
2197
|
readonly max?: number | undefined;
|
|
2256
|
-
readonly group?: string | undefined;
|
|
2257
2198
|
readonly encryptionConfig?: {
|
|
2258
2199
|
enabled: boolean;
|
|
2259
2200
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2274,7 +2215,6 @@ declare const SystemFile: Omit<{
|
|
|
2274
2215
|
readonly columnName?: string | undefined;
|
|
2275
2216
|
readonly searchable?: boolean | undefined;
|
|
2276
2217
|
readonly unique?: boolean | undefined;
|
|
2277
|
-
readonly defaultValue?: unknown;
|
|
2278
2218
|
readonly maxLength?: number | undefined;
|
|
2279
2219
|
readonly minLength?: number | undefined;
|
|
2280
2220
|
readonly scale?: number | undefined;
|
|
@@ -2398,7 +2338,6 @@ declare const SystemFile: Omit<{
|
|
|
2398
2338
|
generatedBy?: string | undefined;
|
|
2399
2339
|
} | undefined;
|
|
2400
2340
|
} | undefined;
|
|
2401
|
-
readonly hidden?: boolean | undefined;
|
|
2402
2341
|
readonly sortable?: boolean | undefined;
|
|
2403
2342
|
readonly inlineHelpText?: string | undefined;
|
|
2404
2343
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2425,10 +2364,12 @@ declare const SystemFile: Omit<{
|
|
|
2425
2364
|
readonly dependencies?: string[] | undefined;
|
|
2426
2365
|
readonly theme?: string | undefined;
|
|
2427
2366
|
readonly externalId?: boolean | undefined;
|
|
2367
|
+
readonly defaultValue?: unknown;
|
|
2368
|
+
readonly group?: string | undefined;
|
|
2369
|
+
readonly hidden?: boolean | undefined;
|
|
2428
2370
|
readonly system?: boolean | undefined;
|
|
2429
2371
|
readonly min?: number | undefined;
|
|
2430
2372
|
readonly max?: number | undefined;
|
|
2431
|
-
readonly group?: string | undefined;
|
|
2432
2373
|
readonly encryptionConfig?: {
|
|
2433
2374
|
enabled: boolean;
|
|
2434
2375
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2449,7 +2390,6 @@ declare const SystemFile: Omit<{
|
|
|
2449
2390
|
readonly columnName?: string | undefined;
|
|
2450
2391
|
readonly searchable?: boolean | undefined;
|
|
2451
2392
|
readonly unique?: boolean | undefined;
|
|
2452
|
-
readonly defaultValue?: unknown;
|
|
2453
2393
|
readonly maxLength?: number | undefined;
|
|
2454
2394
|
readonly minLength?: number | undefined;
|
|
2455
2395
|
readonly scale?: number | undefined;
|
|
@@ -2573,7 +2513,6 @@ declare const SystemFile: Omit<{
|
|
|
2573
2513
|
generatedBy?: string | undefined;
|
|
2574
2514
|
} | undefined;
|
|
2575
2515
|
} | undefined;
|
|
2576
|
-
readonly hidden?: boolean | undefined;
|
|
2577
2516
|
readonly sortable?: boolean | undefined;
|
|
2578
2517
|
readonly inlineHelpText?: string | undefined;
|
|
2579
2518
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2600,10 +2539,12 @@ declare const SystemFile: Omit<{
|
|
|
2600
2539
|
readonly dependencies?: string[] | undefined;
|
|
2601
2540
|
readonly theme?: string | undefined;
|
|
2602
2541
|
readonly externalId?: boolean | undefined;
|
|
2542
|
+
readonly defaultValue?: unknown;
|
|
2543
|
+
readonly group?: string | undefined;
|
|
2544
|
+
readonly hidden?: boolean | undefined;
|
|
2603
2545
|
readonly system?: boolean | undefined;
|
|
2604
2546
|
readonly min?: number | undefined;
|
|
2605
2547
|
readonly max?: number | undefined;
|
|
2606
|
-
readonly group?: string | undefined;
|
|
2607
2548
|
readonly encryptionConfig?: {
|
|
2608
2549
|
enabled: boolean;
|
|
2609
2550
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2624,7 +2565,6 @@ declare const SystemFile: Omit<{
|
|
|
2624
2565
|
readonly columnName?: string | undefined;
|
|
2625
2566
|
readonly searchable?: boolean | undefined;
|
|
2626
2567
|
readonly unique?: boolean | undefined;
|
|
2627
|
-
readonly defaultValue?: unknown;
|
|
2628
2568
|
readonly maxLength?: number | undefined;
|
|
2629
2569
|
readonly minLength?: number | undefined;
|
|
2630
2570
|
readonly scale?: number | undefined;
|
|
@@ -2748,7 +2688,6 @@ declare const SystemFile: Omit<{
|
|
|
2748
2688
|
generatedBy?: string | undefined;
|
|
2749
2689
|
} | undefined;
|
|
2750
2690
|
} | undefined;
|
|
2751
|
-
readonly hidden?: boolean | undefined;
|
|
2752
2691
|
readonly sortable?: boolean | undefined;
|
|
2753
2692
|
readonly inlineHelpText?: string | undefined;
|
|
2754
2693
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2775,10 +2714,12 @@ declare const SystemFile: Omit<{
|
|
|
2775
2714
|
readonly dependencies?: string[] | undefined;
|
|
2776
2715
|
readonly theme?: string | undefined;
|
|
2777
2716
|
readonly externalId?: boolean | undefined;
|
|
2717
|
+
readonly defaultValue?: unknown;
|
|
2718
|
+
readonly group?: string | undefined;
|
|
2719
|
+
readonly hidden?: boolean | undefined;
|
|
2778
2720
|
readonly system?: boolean | undefined;
|
|
2779
2721
|
readonly min?: number | undefined;
|
|
2780
2722
|
readonly max?: number | undefined;
|
|
2781
|
-
readonly group?: string | undefined;
|
|
2782
2723
|
readonly encryptionConfig?: {
|
|
2783
2724
|
enabled: boolean;
|
|
2784
2725
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2799,7 +2740,6 @@ declare const SystemFile: Omit<{
|
|
|
2799
2740
|
readonly columnName?: string | undefined;
|
|
2800
2741
|
readonly searchable?: boolean | undefined;
|
|
2801
2742
|
readonly unique?: boolean | undefined;
|
|
2802
|
-
readonly defaultValue?: unknown;
|
|
2803
2743
|
readonly maxLength?: number | undefined;
|
|
2804
2744
|
readonly minLength?: number | undefined;
|
|
2805
2745
|
readonly scale?: number | undefined;
|
|
@@ -2923,7 +2863,6 @@ declare const SystemFile: Omit<{
|
|
|
2923
2863
|
generatedBy?: string | undefined;
|
|
2924
2864
|
} | undefined;
|
|
2925
2865
|
} | undefined;
|
|
2926
|
-
readonly hidden?: boolean | undefined;
|
|
2927
2866
|
readonly sortable?: boolean | undefined;
|
|
2928
2867
|
readonly inlineHelpText?: string | undefined;
|
|
2929
2868
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2950,10 +2889,12 @@ declare const SystemFile: Omit<{
|
|
|
2950
2889
|
readonly dependencies?: string[] | undefined;
|
|
2951
2890
|
readonly theme?: string | undefined;
|
|
2952
2891
|
readonly externalId?: boolean | undefined;
|
|
2892
|
+
readonly defaultValue?: unknown;
|
|
2893
|
+
readonly group?: string | undefined;
|
|
2894
|
+
readonly hidden?: boolean | undefined;
|
|
2953
2895
|
readonly system?: boolean | undefined;
|
|
2954
2896
|
readonly min?: number | undefined;
|
|
2955
2897
|
readonly max?: number | undefined;
|
|
2956
|
-
readonly group?: string | undefined;
|
|
2957
2898
|
readonly encryptionConfig?: {
|
|
2958
2899
|
enabled: boolean;
|
|
2959
2900
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2974,7 +2915,6 @@ declare const SystemFile: Omit<{
|
|
|
2974
2915
|
readonly columnName?: string | undefined;
|
|
2975
2916
|
readonly searchable?: boolean | undefined;
|
|
2976
2917
|
readonly unique?: boolean | undefined;
|
|
2977
|
-
readonly defaultValue?: unknown;
|
|
2978
2918
|
readonly maxLength?: number | undefined;
|
|
2979
2919
|
readonly minLength?: number | undefined;
|
|
2980
2920
|
readonly scale?: number | undefined;
|
|
@@ -3098,7 +3038,6 @@ declare const SystemFile: Omit<{
|
|
|
3098
3038
|
generatedBy?: string | undefined;
|
|
3099
3039
|
} | undefined;
|
|
3100
3040
|
} | undefined;
|
|
3101
|
-
readonly hidden?: boolean | undefined;
|
|
3102
3041
|
readonly sortable?: boolean | undefined;
|
|
3103
3042
|
readonly inlineHelpText?: string | undefined;
|
|
3104
3043
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -3125,10 +3064,12 @@ declare const SystemFile: Omit<{
|
|
|
3125
3064
|
readonly dependencies?: string[] | undefined;
|
|
3126
3065
|
readonly theme?: string | undefined;
|
|
3127
3066
|
readonly externalId?: boolean | undefined;
|
|
3067
|
+
readonly defaultValue?: unknown;
|
|
3068
|
+
readonly group?: string | undefined;
|
|
3069
|
+
readonly hidden?: boolean | undefined;
|
|
3128
3070
|
readonly system?: boolean | undefined;
|
|
3129
3071
|
readonly min?: number | undefined;
|
|
3130
3072
|
readonly max?: number | undefined;
|
|
3131
|
-
readonly group?: string | undefined;
|
|
3132
3073
|
readonly encryptionConfig?: {
|
|
3133
3074
|
enabled: boolean;
|
|
3134
3075
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -3149,7 +3090,6 @@ declare const SystemFile: Omit<{
|
|
|
3149
3090
|
readonly columnName?: string | undefined;
|
|
3150
3091
|
readonly searchable?: boolean | undefined;
|
|
3151
3092
|
readonly unique?: boolean | undefined;
|
|
3152
|
-
readonly defaultValue?: unknown;
|
|
3153
3093
|
readonly maxLength?: number | undefined;
|
|
3154
3094
|
readonly minLength?: number | undefined;
|
|
3155
3095
|
readonly scale?: number | undefined;
|
|
@@ -3273,7 +3213,6 @@ declare const SystemFile: Omit<{
|
|
|
3273
3213
|
generatedBy?: string | undefined;
|
|
3274
3214
|
} | undefined;
|
|
3275
3215
|
} | undefined;
|
|
3276
|
-
readonly hidden?: boolean | undefined;
|
|
3277
3216
|
readonly sortable?: boolean | undefined;
|
|
3278
3217
|
readonly inlineHelpText?: string | undefined;
|
|
3279
3218
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -3300,10 +3239,12 @@ declare const SystemFile: Omit<{
|
|
|
3300
3239
|
readonly dependencies?: string[] | undefined;
|
|
3301
3240
|
readonly theme?: string | undefined;
|
|
3302
3241
|
readonly externalId?: boolean | undefined;
|
|
3242
|
+
readonly defaultValue?: unknown;
|
|
3243
|
+
readonly group?: string | undefined;
|
|
3244
|
+
readonly hidden?: boolean | undefined;
|
|
3303
3245
|
readonly system?: boolean | undefined;
|
|
3304
3246
|
readonly min?: number | undefined;
|
|
3305
3247
|
readonly max?: number | undefined;
|
|
3306
|
-
readonly group?: string | undefined;
|
|
3307
3248
|
readonly encryptionConfig?: {
|
|
3308
3249
|
enabled: boolean;
|
|
3309
3250
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -3324,7 +3265,6 @@ declare const SystemFile: Omit<{
|
|
|
3324
3265
|
readonly columnName?: string | undefined;
|
|
3325
3266
|
readonly searchable?: boolean | undefined;
|
|
3326
3267
|
readonly unique?: boolean | undefined;
|
|
3327
|
-
readonly defaultValue?: unknown;
|
|
3328
3268
|
readonly maxLength?: number | undefined;
|
|
3329
3269
|
readonly minLength?: number | undefined;
|
|
3330
3270
|
readonly scale?: number | undefined;
|
|
@@ -3448,7 +3388,6 @@ declare const SystemFile: Omit<{
|
|
|
3448
3388
|
generatedBy?: string | undefined;
|
|
3449
3389
|
} | undefined;
|
|
3450
3390
|
} | undefined;
|
|
3451
|
-
readonly hidden?: boolean | undefined;
|
|
3452
3391
|
readonly sortable?: boolean | undefined;
|
|
3453
3392
|
readonly inlineHelpText?: string | undefined;
|
|
3454
3393
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -3475,10 +3414,12 @@ declare const SystemFile: Omit<{
|
|
|
3475
3414
|
readonly dependencies?: string[] | undefined;
|
|
3476
3415
|
readonly theme?: string | undefined;
|
|
3477
3416
|
readonly externalId?: boolean | undefined;
|
|
3417
|
+
readonly defaultValue?: unknown;
|
|
3418
|
+
readonly group?: string | undefined;
|
|
3419
|
+
readonly hidden?: boolean | undefined;
|
|
3478
3420
|
readonly system?: boolean | undefined;
|
|
3479
3421
|
readonly min?: number | undefined;
|
|
3480
3422
|
readonly max?: number | undefined;
|
|
3481
|
-
readonly group?: string | undefined;
|
|
3482
3423
|
readonly encryptionConfig?: {
|
|
3483
3424
|
enabled: boolean;
|
|
3484
3425
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -3499,7 +3440,6 @@ declare const SystemFile: Omit<{
|
|
|
3499
3440
|
readonly columnName?: string | undefined;
|
|
3500
3441
|
readonly searchable?: boolean | undefined;
|
|
3501
3442
|
readonly unique?: boolean | undefined;
|
|
3502
|
-
readonly defaultValue?: unknown;
|
|
3503
3443
|
readonly maxLength?: number | undefined;
|
|
3504
3444
|
readonly minLength?: number | undefined;
|
|
3505
3445
|
readonly scale?: number | undefined;
|
|
@@ -3623,7 +3563,6 @@ declare const SystemFile: Omit<{
|
|
|
3623
3563
|
generatedBy?: string | undefined;
|
|
3624
3564
|
} | undefined;
|
|
3625
3565
|
} | undefined;
|
|
3626
|
-
readonly hidden?: boolean | undefined;
|
|
3627
3566
|
readonly sortable?: boolean | undefined;
|
|
3628
3567
|
readonly inlineHelpText?: string | undefined;
|
|
3629
3568
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -3651,7 +3590,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3651
3590
|
abstract: boolean;
|
|
3652
3591
|
datasource: string;
|
|
3653
3592
|
fields: Record<string, {
|
|
3654
|
-
type: "number" | "boolean" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "
|
|
3593
|
+
type: "number" | "boolean" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
3655
3594
|
required: boolean;
|
|
3656
3595
|
searchable: boolean;
|
|
3657
3596
|
multiple: boolean;
|
|
@@ -3866,6 +3805,14 @@ declare const SystemUploadSession: Omit<{
|
|
|
3866
3805
|
owner?: boolean | undefined;
|
|
3867
3806
|
audit?: boolean | undefined;
|
|
3868
3807
|
} | undefined;
|
|
3808
|
+
external?: {
|
|
3809
|
+
writable: boolean;
|
|
3810
|
+
remoteName?: string | undefined;
|
|
3811
|
+
remoteSchema?: string | undefined;
|
|
3812
|
+
columnMap?: Record<string, string> | undefined;
|
|
3813
|
+
introspectedAt?: string | undefined;
|
|
3814
|
+
ignoreColumns?: string[] | undefined;
|
|
3815
|
+
} | undefined;
|
|
3869
3816
|
indexes?: {
|
|
3870
3817
|
fields: string[];
|
|
3871
3818
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -3926,36 +3873,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
3926
3873
|
destination: string;
|
|
3927
3874
|
} | undefined;
|
|
3928
3875
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
3929
|
-
stateMachines?: Record<string, {
|
|
3930
|
-
id: string;
|
|
3931
|
-
initial: string;
|
|
3932
|
-
states: Record<string, StateNodeConfig>;
|
|
3933
|
-
description?: string | undefined;
|
|
3934
|
-
contextSchema?: Record<string, unknown> | undefined;
|
|
3935
|
-
on?: Record<string, string | {
|
|
3936
|
-
target?: string | undefined;
|
|
3937
|
-
cond?: string | {
|
|
3938
|
-
type: string;
|
|
3939
|
-
params?: Record<string, unknown> | undefined;
|
|
3940
|
-
} | undefined;
|
|
3941
|
-
actions?: (string | {
|
|
3942
|
-
type: string;
|
|
3943
|
-
params?: Record<string, unknown> | undefined;
|
|
3944
|
-
})[] | undefined;
|
|
3945
|
-
description?: string | undefined;
|
|
3946
|
-
} | {
|
|
3947
|
-
target?: string | undefined;
|
|
3948
|
-
cond?: string | {
|
|
3949
|
-
type: string;
|
|
3950
|
-
params?: Record<string, unknown> | undefined;
|
|
3951
|
-
} | undefined;
|
|
3952
|
-
actions?: (string | {
|
|
3953
|
-
type: string;
|
|
3954
|
-
params?: Record<string, unknown> | undefined;
|
|
3955
|
-
})[] | undefined;
|
|
3956
|
-
description?: string | undefined;
|
|
3957
|
-
}[]> | undefined;
|
|
3958
|
-
}> | undefined;
|
|
3959
3876
|
displayNameField?: string | undefined;
|
|
3960
3877
|
recordName?: {
|
|
3961
3878
|
type: "text" | "autonumber";
|
|
@@ -4045,7 +3962,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4045
3962
|
type: "none" | "multiple" | "single";
|
|
4046
3963
|
} | undefined;
|
|
4047
3964
|
navigation?: {
|
|
4048
|
-
mode: "split" | "none" | "page" | "
|
|
3965
|
+
mode: "split" | "none" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
4049
3966
|
preventNavigation: boolean;
|
|
4050
3967
|
openNewTab: boolean;
|
|
4051
3968
|
view?: string | undefined;
|
|
@@ -4234,7 +4151,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4234
4151
|
trash: boolean;
|
|
4235
4152
|
mru: boolean;
|
|
4236
4153
|
clone: boolean;
|
|
4237
|
-
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "
|
|
4154
|
+
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
4238
4155
|
} | undefined;
|
|
4239
4156
|
recordTypes?: string[] | undefined;
|
|
4240
4157
|
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
@@ -4280,7 +4197,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4280
4197
|
field?: string | undefined;
|
|
4281
4198
|
objectOverride?: string | undefined;
|
|
4282
4199
|
label?: string | undefined;
|
|
4283
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
4200
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
4284
4201
|
options?: {
|
|
4285
4202
|
label: string;
|
|
4286
4203
|
value: string;
|
|
@@ -4332,7 +4249,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4332
4249
|
} | undefined;
|
|
4333
4250
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
4334
4251
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
4335
|
-
mode?: "custom" | "delete" | "
|
|
4252
|
+
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
4336
4253
|
timeout?: number | undefined;
|
|
4337
4254
|
aria?: {
|
|
4338
4255
|
ariaLabel?: string | undefined;
|
|
@@ -4372,10 +4289,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
4372
4289
|
readonly dependencies?: string[] | undefined;
|
|
4373
4290
|
readonly theme?: string | undefined;
|
|
4374
4291
|
readonly externalId?: boolean | undefined;
|
|
4292
|
+
readonly defaultValue?: unknown;
|
|
4293
|
+
readonly group?: string | undefined;
|
|
4294
|
+
readonly hidden?: boolean | undefined;
|
|
4375
4295
|
readonly system?: boolean | undefined;
|
|
4376
4296
|
readonly min?: number | undefined;
|
|
4377
4297
|
readonly max?: number | undefined;
|
|
4378
|
-
readonly group?: string | undefined;
|
|
4379
4298
|
readonly encryptionConfig?: {
|
|
4380
4299
|
enabled: boolean;
|
|
4381
4300
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4396,7 +4315,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4396
4315
|
readonly columnName?: string | undefined;
|
|
4397
4316
|
readonly searchable?: boolean | undefined;
|
|
4398
4317
|
readonly unique?: boolean | undefined;
|
|
4399
|
-
readonly defaultValue?: unknown;
|
|
4400
4318
|
readonly maxLength?: number | undefined;
|
|
4401
4319
|
readonly minLength?: number | undefined;
|
|
4402
4320
|
readonly scale?: number | undefined;
|
|
@@ -4520,7 +4438,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4520
4438
|
generatedBy?: string | undefined;
|
|
4521
4439
|
} | undefined;
|
|
4522
4440
|
} | undefined;
|
|
4523
|
-
readonly hidden?: boolean | undefined;
|
|
4524
4441
|
readonly sortable?: boolean | undefined;
|
|
4525
4442
|
readonly inlineHelpText?: string | undefined;
|
|
4526
4443
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4547,10 +4464,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
4547
4464
|
readonly dependencies?: string[] | undefined;
|
|
4548
4465
|
readonly theme?: string | undefined;
|
|
4549
4466
|
readonly externalId?: boolean | undefined;
|
|
4467
|
+
readonly defaultValue?: unknown;
|
|
4468
|
+
readonly group?: string | undefined;
|
|
4469
|
+
readonly hidden?: boolean | undefined;
|
|
4550
4470
|
readonly system?: boolean | undefined;
|
|
4551
4471
|
readonly min?: number | undefined;
|
|
4552
4472
|
readonly max?: number | undefined;
|
|
4553
|
-
readonly group?: string | undefined;
|
|
4554
4473
|
readonly encryptionConfig?: {
|
|
4555
4474
|
enabled: boolean;
|
|
4556
4475
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4571,7 +4490,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4571
4490
|
readonly columnName?: string | undefined;
|
|
4572
4491
|
readonly searchable?: boolean | undefined;
|
|
4573
4492
|
readonly unique?: boolean | undefined;
|
|
4574
|
-
readonly defaultValue?: unknown;
|
|
4575
4493
|
readonly maxLength?: number | undefined;
|
|
4576
4494
|
readonly minLength?: number | undefined;
|
|
4577
4495
|
readonly scale?: number | undefined;
|
|
@@ -4695,7 +4613,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4695
4613
|
generatedBy?: string | undefined;
|
|
4696
4614
|
} | undefined;
|
|
4697
4615
|
} | undefined;
|
|
4698
|
-
readonly hidden?: boolean | undefined;
|
|
4699
4616
|
readonly sortable?: boolean | undefined;
|
|
4700
4617
|
readonly inlineHelpText?: string | undefined;
|
|
4701
4618
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4722,10 +4639,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
4722
4639
|
readonly dependencies?: string[] | undefined;
|
|
4723
4640
|
readonly theme?: string | undefined;
|
|
4724
4641
|
readonly externalId?: boolean | undefined;
|
|
4642
|
+
readonly defaultValue?: unknown;
|
|
4643
|
+
readonly group?: string | undefined;
|
|
4644
|
+
readonly hidden?: boolean | undefined;
|
|
4725
4645
|
readonly system?: boolean | undefined;
|
|
4726
4646
|
readonly min?: number | undefined;
|
|
4727
4647
|
readonly max?: number | undefined;
|
|
4728
|
-
readonly group?: string | undefined;
|
|
4729
4648
|
readonly encryptionConfig?: {
|
|
4730
4649
|
enabled: boolean;
|
|
4731
4650
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4746,7 +4665,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4746
4665
|
readonly columnName?: string | undefined;
|
|
4747
4666
|
readonly searchable?: boolean | undefined;
|
|
4748
4667
|
readonly unique?: boolean | undefined;
|
|
4749
|
-
readonly defaultValue?: unknown;
|
|
4750
4668
|
readonly maxLength?: number | undefined;
|
|
4751
4669
|
readonly minLength?: number | undefined;
|
|
4752
4670
|
readonly scale?: number | undefined;
|
|
@@ -4870,7 +4788,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4870
4788
|
generatedBy?: string | undefined;
|
|
4871
4789
|
} | undefined;
|
|
4872
4790
|
} | undefined;
|
|
4873
|
-
readonly hidden?: boolean | undefined;
|
|
4874
4791
|
readonly sortable?: boolean | undefined;
|
|
4875
4792
|
readonly inlineHelpText?: string | undefined;
|
|
4876
4793
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4897,10 +4814,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
4897
4814
|
readonly dependencies?: string[] | undefined;
|
|
4898
4815
|
readonly theme?: string | undefined;
|
|
4899
4816
|
readonly externalId?: boolean | undefined;
|
|
4817
|
+
readonly defaultValue?: unknown;
|
|
4818
|
+
readonly group?: string | undefined;
|
|
4819
|
+
readonly hidden?: boolean | undefined;
|
|
4900
4820
|
readonly system?: boolean | undefined;
|
|
4901
4821
|
readonly min?: number | undefined;
|
|
4902
4822
|
readonly max?: number | undefined;
|
|
4903
|
-
readonly group?: string | undefined;
|
|
4904
4823
|
readonly encryptionConfig?: {
|
|
4905
4824
|
enabled: boolean;
|
|
4906
4825
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4921,7 +4840,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4921
4840
|
readonly columnName?: string | undefined;
|
|
4922
4841
|
readonly searchable?: boolean | undefined;
|
|
4923
4842
|
readonly unique?: boolean | undefined;
|
|
4924
|
-
readonly defaultValue?: unknown;
|
|
4925
4843
|
readonly maxLength?: number | undefined;
|
|
4926
4844
|
readonly minLength?: number | undefined;
|
|
4927
4845
|
readonly scale?: number | undefined;
|
|
@@ -5045,7 +4963,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5045
4963
|
generatedBy?: string | undefined;
|
|
5046
4964
|
} | undefined;
|
|
5047
4965
|
} | undefined;
|
|
5048
|
-
readonly hidden?: boolean | undefined;
|
|
5049
4966
|
readonly sortable?: boolean | undefined;
|
|
5050
4967
|
readonly inlineHelpText?: string | undefined;
|
|
5051
4968
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5072,10 +4989,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
5072
4989
|
readonly dependencies?: string[] | undefined;
|
|
5073
4990
|
readonly theme?: string | undefined;
|
|
5074
4991
|
readonly externalId?: boolean | undefined;
|
|
4992
|
+
readonly defaultValue?: unknown;
|
|
4993
|
+
readonly group?: string | undefined;
|
|
4994
|
+
readonly hidden?: boolean | undefined;
|
|
5075
4995
|
readonly system?: boolean | undefined;
|
|
5076
4996
|
readonly min?: number | undefined;
|
|
5077
4997
|
readonly max?: number | undefined;
|
|
5078
|
-
readonly group?: string | undefined;
|
|
5079
4998
|
readonly encryptionConfig?: {
|
|
5080
4999
|
enabled: boolean;
|
|
5081
5000
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5096,7 +5015,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5096
5015
|
readonly columnName?: string | undefined;
|
|
5097
5016
|
readonly searchable?: boolean | undefined;
|
|
5098
5017
|
readonly unique?: boolean | undefined;
|
|
5099
|
-
readonly defaultValue?: unknown;
|
|
5100
5018
|
readonly maxLength?: number | undefined;
|
|
5101
5019
|
readonly minLength?: number | undefined;
|
|
5102
5020
|
readonly scale?: number | undefined;
|
|
@@ -5220,7 +5138,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5220
5138
|
generatedBy?: string | undefined;
|
|
5221
5139
|
} | undefined;
|
|
5222
5140
|
} | undefined;
|
|
5223
|
-
readonly hidden?: boolean | undefined;
|
|
5224
5141
|
readonly sortable?: boolean | undefined;
|
|
5225
5142
|
readonly inlineHelpText?: string | undefined;
|
|
5226
5143
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5247,10 +5164,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
5247
5164
|
readonly dependencies?: string[] | undefined;
|
|
5248
5165
|
readonly theme?: string | undefined;
|
|
5249
5166
|
readonly externalId?: boolean | undefined;
|
|
5167
|
+
readonly defaultValue?: unknown;
|
|
5168
|
+
readonly group?: string | undefined;
|
|
5169
|
+
readonly hidden?: boolean | undefined;
|
|
5250
5170
|
readonly system?: boolean | undefined;
|
|
5251
5171
|
readonly min?: number | undefined;
|
|
5252
5172
|
readonly max?: number | undefined;
|
|
5253
|
-
readonly group?: string | undefined;
|
|
5254
5173
|
readonly encryptionConfig?: {
|
|
5255
5174
|
enabled: boolean;
|
|
5256
5175
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5271,7 +5190,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5271
5190
|
readonly columnName?: string | undefined;
|
|
5272
5191
|
readonly searchable?: boolean | undefined;
|
|
5273
5192
|
readonly unique?: boolean | undefined;
|
|
5274
|
-
readonly defaultValue?: unknown;
|
|
5275
5193
|
readonly maxLength?: number | undefined;
|
|
5276
5194
|
readonly minLength?: number | undefined;
|
|
5277
5195
|
readonly scale?: number | undefined;
|
|
@@ -5395,7 +5313,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5395
5313
|
generatedBy?: string | undefined;
|
|
5396
5314
|
} | undefined;
|
|
5397
5315
|
} | undefined;
|
|
5398
|
-
readonly hidden?: boolean | undefined;
|
|
5399
5316
|
readonly sortable?: boolean | undefined;
|
|
5400
5317
|
readonly inlineHelpText?: string | undefined;
|
|
5401
5318
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5422,10 +5339,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
5422
5339
|
readonly dependencies?: string[] | undefined;
|
|
5423
5340
|
readonly theme?: string | undefined;
|
|
5424
5341
|
readonly externalId?: boolean | undefined;
|
|
5342
|
+
readonly defaultValue?: unknown;
|
|
5343
|
+
readonly group?: string | undefined;
|
|
5344
|
+
readonly hidden?: boolean | undefined;
|
|
5425
5345
|
readonly system?: boolean | undefined;
|
|
5426
5346
|
readonly min?: number | undefined;
|
|
5427
5347
|
readonly max?: number | undefined;
|
|
5428
|
-
readonly group?: string | undefined;
|
|
5429
5348
|
readonly encryptionConfig?: {
|
|
5430
5349
|
enabled: boolean;
|
|
5431
5350
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5446,7 +5365,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5446
5365
|
readonly columnName?: string | undefined;
|
|
5447
5366
|
readonly searchable?: boolean | undefined;
|
|
5448
5367
|
readonly unique?: boolean | undefined;
|
|
5449
|
-
readonly defaultValue?: unknown;
|
|
5450
5368
|
readonly maxLength?: number | undefined;
|
|
5451
5369
|
readonly minLength?: number | undefined;
|
|
5452
5370
|
readonly scale?: number | undefined;
|
|
@@ -5570,7 +5488,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5570
5488
|
generatedBy?: string | undefined;
|
|
5571
5489
|
} | undefined;
|
|
5572
5490
|
} | undefined;
|
|
5573
|
-
readonly hidden?: boolean | undefined;
|
|
5574
5491
|
readonly sortable?: boolean | undefined;
|
|
5575
5492
|
readonly inlineHelpText?: string | undefined;
|
|
5576
5493
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5597,10 +5514,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
5597
5514
|
readonly dependencies?: string[] | undefined;
|
|
5598
5515
|
readonly theme?: string | undefined;
|
|
5599
5516
|
readonly externalId?: boolean | undefined;
|
|
5517
|
+
readonly defaultValue?: unknown;
|
|
5518
|
+
readonly group?: string | undefined;
|
|
5519
|
+
readonly hidden?: boolean | undefined;
|
|
5600
5520
|
readonly system?: boolean | undefined;
|
|
5601
5521
|
readonly min?: number | undefined;
|
|
5602
5522
|
readonly max?: number | undefined;
|
|
5603
|
-
readonly group?: string | undefined;
|
|
5604
5523
|
readonly encryptionConfig?: {
|
|
5605
5524
|
enabled: boolean;
|
|
5606
5525
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5621,7 +5540,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5621
5540
|
readonly columnName?: string | undefined;
|
|
5622
5541
|
readonly searchable?: boolean | undefined;
|
|
5623
5542
|
readonly unique?: boolean | undefined;
|
|
5624
|
-
readonly defaultValue?: unknown;
|
|
5625
5543
|
readonly maxLength?: number | undefined;
|
|
5626
5544
|
readonly minLength?: number | undefined;
|
|
5627
5545
|
readonly scale?: number | undefined;
|
|
@@ -5745,7 +5663,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5745
5663
|
generatedBy?: string | undefined;
|
|
5746
5664
|
} | undefined;
|
|
5747
5665
|
} | undefined;
|
|
5748
|
-
readonly hidden?: boolean | undefined;
|
|
5749
5666
|
readonly sortable?: boolean | undefined;
|
|
5750
5667
|
readonly inlineHelpText?: string | undefined;
|
|
5751
5668
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5772,10 +5689,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
5772
5689
|
readonly dependencies?: string[] | undefined;
|
|
5773
5690
|
readonly theme?: string | undefined;
|
|
5774
5691
|
readonly externalId?: boolean | undefined;
|
|
5692
|
+
readonly defaultValue?: unknown;
|
|
5693
|
+
readonly group?: string | undefined;
|
|
5694
|
+
readonly hidden?: boolean | undefined;
|
|
5775
5695
|
readonly system?: boolean | undefined;
|
|
5776
5696
|
readonly min?: number | undefined;
|
|
5777
5697
|
readonly max?: number | undefined;
|
|
5778
|
-
readonly group?: string | undefined;
|
|
5779
5698
|
readonly encryptionConfig?: {
|
|
5780
5699
|
enabled: boolean;
|
|
5781
5700
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5796,7 +5715,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5796
5715
|
readonly columnName?: string | undefined;
|
|
5797
5716
|
readonly searchable?: boolean | undefined;
|
|
5798
5717
|
readonly unique?: boolean | undefined;
|
|
5799
|
-
readonly defaultValue?: unknown;
|
|
5800
5718
|
readonly maxLength?: number | undefined;
|
|
5801
5719
|
readonly minLength?: number | undefined;
|
|
5802
5720
|
readonly scale?: number | undefined;
|
|
@@ -5920,7 +5838,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5920
5838
|
generatedBy?: string | undefined;
|
|
5921
5839
|
} | undefined;
|
|
5922
5840
|
} | undefined;
|
|
5923
|
-
readonly hidden?: boolean | undefined;
|
|
5924
5841
|
readonly sortable?: boolean | undefined;
|
|
5925
5842
|
readonly inlineHelpText?: string | undefined;
|
|
5926
5843
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5947,10 +5864,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
5947
5864
|
readonly dependencies?: string[] | undefined;
|
|
5948
5865
|
readonly theme?: string | undefined;
|
|
5949
5866
|
readonly externalId?: boolean | undefined;
|
|
5867
|
+
readonly defaultValue?: unknown;
|
|
5868
|
+
readonly group?: string | undefined;
|
|
5869
|
+
readonly hidden?: boolean | undefined;
|
|
5950
5870
|
readonly system?: boolean | undefined;
|
|
5951
5871
|
readonly min?: number | undefined;
|
|
5952
5872
|
readonly max?: number | undefined;
|
|
5953
|
-
readonly group?: string | undefined;
|
|
5954
5873
|
readonly encryptionConfig?: {
|
|
5955
5874
|
enabled: boolean;
|
|
5956
5875
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5971,7 +5890,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5971
5890
|
readonly columnName?: string | undefined;
|
|
5972
5891
|
readonly searchable?: boolean | undefined;
|
|
5973
5892
|
readonly unique?: boolean | undefined;
|
|
5974
|
-
readonly defaultValue?: unknown;
|
|
5975
5893
|
readonly maxLength?: number | undefined;
|
|
5976
5894
|
readonly minLength?: number | undefined;
|
|
5977
5895
|
readonly scale?: number | undefined;
|
|
@@ -6095,7 +6013,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6095
6013
|
generatedBy?: string | undefined;
|
|
6096
6014
|
} | undefined;
|
|
6097
6015
|
} | undefined;
|
|
6098
|
-
readonly hidden?: boolean | undefined;
|
|
6099
6016
|
readonly sortable?: boolean | undefined;
|
|
6100
6017
|
readonly inlineHelpText?: string | undefined;
|
|
6101
6018
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6122,10 +6039,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
6122
6039
|
readonly dependencies?: string[] | undefined;
|
|
6123
6040
|
readonly theme?: string | undefined;
|
|
6124
6041
|
readonly externalId?: boolean | undefined;
|
|
6042
|
+
readonly defaultValue?: unknown;
|
|
6043
|
+
readonly group?: string | undefined;
|
|
6044
|
+
readonly hidden?: boolean | undefined;
|
|
6125
6045
|
readonly system?: boolean | undefined;
|
|
6126
6046
|
readonly min?: number | undefined;
|
|
6127
6047
|
readonly max?: number | undefined;
|
|
6128
|
-
readonly group?: string | undefined;
|
|
6129
6048
|
readonly encryptionConfig?: {
|
|
6130
6049
|
enabled: boolean;
|
|
6131
6050
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6146,7 +6065,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6146
6065
|
readonly columnName?: string | undefined;
|
|
6147
6066
|
readonly searchable?: boolean | undefined;
|
|
6148
6067
|
readonly unique?: boolean | undefined;
|
|
6149
|
-
readonly defaultValue?: unknown;
|
|
6150
6068
|
readonly maxLength?: number | undefined;
|
|
6151
6069
|
readonly minLength?: number | undefined;
|
|
6152
6070
|
readonly scale?: number | undefined;
|
|
@@ -6270,7 +6188,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6270
6188
|
generatedBy?: string | undefined;
|
|
6271
6189
|
} | undefined;
|
|
6272
6190
|
} | undefined;
|
|
6273
|
-
readonly hidden?: boolean | undefined;
|
|
6274
6191
|
readonly sortable?: boolean | undefined;
|
|
6275
6192
|
readonly inlineHelpText?: string | undefined;
|
|
6276
6193
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6297,10 +6214,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
6297
6214
|
readonly dependencies?: string[] | undefined;
|
|
6298
6215
|
readonly theme?: string | undefined;
|
|
6299
6216
|
readonly externalId?: boolean | undefined;
|
|
6217
|
+
readonly defaultValue?: unknown;
|
|
6218
|
+
readonly group?: string | undefined;
|
|
6219
|
+
readonly hidden?: boolean | undefined;
|
|
6300
6220
|
readonly system?: boolean | undefined;
|
|
6301
6221
|
readonly min?: number | undefined;
|
|
6302
6222
|
readonly max?: number | undefined;
|
|
6303
|
-
readonly group?: string | undefined;
|
|
6304
6223
|
readonly encryptionConfig?: {
|
|
6305
6224
|
enabled: boolean;
|
|
6306
6225
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6321,7 +6240,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6321
6240
|
readonly columnName?: string | undefined;
|
|
6322
6241
|
readonly searchable?: boolean | undefined;
|
|
6323
6242
|
readonly unique?: boolean | undefined;
|
|
6324
|
-
readonly defaultValue?: unknown;
|
|
6325
6243
|
readonly maxLength?: number | undefined;
|
|
6326
6244
|
readonly minLength?: number | undefined;
|
|
6327
6245
|
readonly scale?: number | undefined;
|
|
@@ -6445,7 +6363,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6445
6363
|
generatedBy?: string | undefined;
|
|
6446
6364
|
} | undefined;
|
|
6447
6365
|
} | undefined;
|
|
6448
|
-
readonly hidden?: boolean | undefined;
|
|
6449
6366
|
readonly sortable?: boolean | undefined;
|
|
6450
6367
|
readonly inlineHelpText?: string | undefined;
|
|
6451
6368
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6472,10 +6389,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
6472
6389
|
readonly dependencies?: string[] | undefined;
|
|
6473
6390
|
readonly theme?: string | undefined;
|
|
6474
6391
|
readonly externalId?: boolean | undefined;
|
|
6392
|
+
readonly defaultValue?: unknown;
|
|
6393
|
+
readonly group?: string | undefined;
|
|
6394
|
+
readonly hidden?: boolean | undefined;
|
|
6475
6395
|
readonly system?: boolean | undefined;
|
|
6476
6396
|
readonly min?: number | undefined;
|
|
6477
6397
|
readonly max?: number | undefined;
|
|
6478
|
-
readonly group?: string | undefined;
|
|
6479
6398
|
readonly encryptionConfig?: {
|
|
6480
6399
|
enabled: boolean;
|
|
6481
6400
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6496,7 +6415,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6496
6415
|
readonly columnName?: string | undefined;
|
|
6497
6416
|
readonly searchable?: boolean | undefined;
|
|
6498
6417
|
readonly unique?: boolean | undefined;
|
|
6499
|
-
readonly defaultValue?: unknown;
|
|
6500
6418
|
readonly maxLength?: number | undefined;
|
|
6501
6419
|
readonly minLength?: number | undefined;
|
|
6502
6420
|
readonly scale?: number | undefined;
|
|
@@ -6620,7 +6538,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6620
6538
|
generatedBy?: string | undefined;
|
|
6621
6539
|
} | undefined;
|
|
6622
6540
|
} | undefined;
|
|
6623
|
-
readonly hidden?: boolean | undefined;
|
|
6624
6541
|
readonly sortable?: boolean | undefined;
|
|
6625
6542
|
readonly inlineHelpText?: string | undefined;
|
|
6626
6543
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6647,10 +6564,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
6647
6564
|
readonly dependencies?: string[] | undefined;
|
|
6648
6565
|
readonly theme?: string | undefined;
|
|
6649
6566
|
readonly externalId?: boolean | undefined;
|
|
6567
|
+
readonly defaultValue?: unknown;
|
|
6568
|
+
readonly group?: string | undefined;
|
|
6569
|
+
readonly hidden?: boolean | undefined;
|
|
6650
6570
|
readonly system?: boolean | undefined;
|
|
6651
6571
|
readonly min?: number | undefined;
|
|
6652
6572
|
readonly max?: number | undefined;
|
|
6653
|
-
readonly group?: string | undefined;
|
|
6654
6573
|
readonly encryptionConfig?: {
|
|
6655
6574
|
enabled: boolean;
|
|
6656
6575
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6671,7 +6590,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6671
6590
|
readonly columnName?: string | undefined;
|
|
6672
6591
|
readonly searchable?: boolean | undefined;
|
|
6673
6592
|
readonly unique?: boolean | undefined;
|
|
6674
|
-
readonly defaultValue?: unknown;
|
|
6675
6593
|
readonly maxLength?: number | undefined;
|
|
6676
6594
|
readonly minLength?: number | undefined;
|
|
6677
6595
|
readonly scale?: number | undefined;
|
|
@@ -6795,7 +6713,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6795
6713
|
generatedBy?: string | undefined;
|
|
6796
6714
|
} | undefined;
|
|
6797
6715
|
} | undefined;
|
|
6798
|
-
readonly hidden?: boolean | undefined;
|
|
6799
6716
|
readonly sortable?: boolean | undefined;
|
|
6800
6717
|
readonly inlineHelpText?: string | undefined;
|
|
6801
6718
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6822,10 +6739,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
6822
6739
|
readonly dependencies?: string[] | undefined;
|
|
6823
6740
|
readonly theme?: string | undefined;
|
|
6824
6741
|
readonly externalId?: boolean | undefined;
|
|
6742
|
+
readonly defaultValue?: unknown;
|
|
6743
|
+
readonly group?: string | undefined;
|
|
6744
|
+
readonly hidden?: boolean | undefined;
|
|
6825
6745
|
readonly system?: boolean | undefined;
|
|
6826
6746
|
readonly min?: number | undefined;
|
|
6827
6747
|
readonly max?: number | undefined;
|
|
6828
|
-
readonly group?: string | undefined;
|
|
6829
6748
|
readonly encryptionConfig?: {
|
|
6830
6749
|
enabled: boolean;
|
|
6831
6750
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6846,7 +6765,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6846
6765
|
readonly columnName?: string | undefined;
|
|
6847
6766
|
readonly searchable?: boolean | undefined;
|
|
6848
6767
|
readonly unique?: boolean | undefined;
|
|
6849
|
-
readonly defaultValue?: unknown;
|
|
6850
6768
|
readonly maxLength?: number | undefined;
|
|
6851
6769
|
readonly minLength?: number | undefined;
|
|
6852
6770
|
readonly scale?: number | undefined;
|
|
@@ -6970,7 +6888,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6970
6888
|
generatedBy?: string | undefined;
|
|
6971
6889
|
} | undefined;
|
|
6972
6890
|
} | undefined;
|
|
6973
|
-
readonly hidden?: boolean | undefined;
|
|
6974
6891
|
readonly sortable?: boolean | undefined;
|
|
6975
6892
|
readonly inlineHelpText?: string | undefined;
|
|
6976
6893
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6997,10 +6914,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
6997
6914
|
readonly dependencies?: string[] | undefined;
|
|
6998
6915
|
readonly theme?: string | undefined;
|
|
6999
6916
|
readonly externalId?: boolean | undefined;
|
|
6917
|
+
readonly defaultValue?: unknown;
|
|
6918
|
+
readonly group?: string | undefined;
|
|
6919
|
+
readonly hidden?: boolean | undefined;
|
|
7000
6920
|
readonly system?: boolean | undefined;
|
|
7001
6921
|
readonly min?: number | undefined;
|
|
7002
6922
|
readonly max?: number | undefined;
|
|
7003
|
-
readonly group?: string | undefined;
|
|
7004
6923
|
readonly encryptionConfig?: {
|
|
7005
6924
|
enabled: boolean;
|
|
7006
6925
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7021,7 +6940,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7021
6940
|
readonly columnName?: string | undefined;
|
|
7022
6941
|
readonly searchable?: boolean | undefined;
|
|
7023
6942
|
readonly unique?: boolean | undefined;
|
|
7024
|
-
readonly defaultValue?: unknown;
|
|
7025
6943
|
readonly maxLength?: number | undefined;
|
|
7026
6944
|
readonly minLength?: number | undefined;
|
|
7027
6945
|
readonly scale?: number | undefined;
|
|
@@ -7145,7 +7063,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7145
7063
|
generatedBy?: string | undefined;
|
|
7146
7064
|
} | undefined;
|
|
7147
7065
|
} | undefined;
|
|
7148
|
-
readonly hidden?: boolean | undefined;
|
|
7149
7066
|
readonly sortable?: boolean | undefined;
|
|
7150
7067
|
readonly inlineHelpText?: string | undefined;
|
|
7151
7068
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7172,10 +7089,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
7172
7089
|
readonly dependencies?: string[] | undefined;
|
|
7173
7090
|
readonly theme?: string | undefined;
|
|
7174
7091
|
readonly externalId?: boolean | undefined;
|
|
7092
|
+
readonly defaultValue?: unknown;
|
|
7093
|
+
readonly group?: string | undefined;
|
|
7094
|
+
readonly hidden?: boolean | undefined;
|
|
7175
7095
|
readonly system?: boolean | undefined;
|
|
7176
7096
|
readonly min?: number | undefined;
|
|
7177
7097
|
readonly max?: number | undefined;
|
|
7178
|
-
readonly group?: string | undefined;
|
|
7179
7098
|
readonly encryptionConfig?: {
|
|
7180
7099
|
enabled: boolean;
|
|
7181
7100
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7196,7 +7115,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7196
7115
|
readonly columnName?: string | undefined;
|
|
7197
7116
|
readonly searchable?: boolean | undefined;
|
|
7198
7117
|
readonly unique?: boolean | undefined;
|
|
7199
|
-
readonly defaultValue?: unknown;
|
|
7200
7118
|
readonly maxLength?: number | undefined;
|
|
7201
7119
|
readonly minLength?: number | undefined;
|
|
7202
7120
|
readonly scale?: number | undefined;
|
|
@@ -7320,7 +7238,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7320
7238
|
generatedBy?: string | undefined;
|
|
7321
7239
|
} | undefined;
|
|
7322
7240
|
} | undefined;
|
|
7323
|
-
readonly hidden?: boolean | undefined;
|
|
7324
7241
|
readonly sortable?: boolean | undefined;
|
|
7325
7242
|
readonly inlineHelpText?: string | undefined;
|
|
7326
7243
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7347,10 +7264,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
7347
7264
|
readonly dependencies?: string[] | undefined;
|
|
7348
7265
|
readonly theme?: string | undefined;
|
|
7349
7266
|
readonly externalId?: boolean | undefined;
|
|
7267
|
+
readonly defaultValue?: unknown;
|
|
7268
|
+
readonly group?: string | undefined;
|
|
7269
|
+
readonly hidden?: boolean | undefined;
|
|
7350
7270
|
readonly system?: boolean | undefined;
|
|
7351
7271
|
readonly min?: number | undefined;
|
|
7352
7272
|
readonly max?: number | undefined;
|
|
7353
|
-
readonly group?: string | undefined;
|
|
7354
7273
|
readonly encryptionConfig?: {
|
|
7355
7274
|
enabled: boolean;
|
|
7356
7275
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7371,7 +7290,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7371
7290
|
readonly columnName?: string | undefined;
|
|
7372
7291
|
readonly searchable?: boolean | undefined;
|
|
7373
7292
|
readonly unique?: boolean | undefined;
|
|
7374
|
-
readonly defaultValue?: unknown;
|
|
7375
7293
|
readonly maxLength?: number | undefined;
|
|
7376
7294
|
readonly minLength?: number | undefined;
|
|
7377
7295
|
readonly scale?: number | undefined;
|
|
@@ -7495,7 +7413,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7495
7413
|
generatedBy?: string | undefined;
|
|
7496
7414
|
} | undefined;
|
|
7497
7415
|
} | undefined;
|
|
7498
|
-
readonly hidden?: boolean | undefined;
|
|
7499
7416
|
readonly sortable?: boolean | undefined;
|
|
7500
7417
|
readonly inlineHelpText?: string | undefined;
|
|
7501
7418
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7522,10 +7439,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
7522
7439
|
readonly dependencies?: string[] | undefined;
|
|
7523
7440
|
readonly theme?: string | undefined;
|
|
7524
7441
|
readonly externalId?: boolean | undefined;
|
|
7442
|
+
readonly defaultValue?: unknown;
|
|
7443
|
+
readonly group?: string | undefined;
|
|
7444
|
+
readonly hidden?: boolean | undefined;
|
|
7525
7445
|
readonly system?: boolean | undefined;
|
|
7526
7446
|
readonly min?: number | undefined;
|
|
7527
7447
|
readonly max?: number | undefined;
|
|
7528
|
-
readonly group?: string | undefined;
|
|
7529
7448
|
readonly encryptionConfig?: {
|
|
7530
7449
|
enabled: boolean;
|
|
7531
7450
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7546,7 +7465,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7546
7465
|
readonly columnName?: string | undefined;
|
|
7547
7466
|
readonly searchable?: boolean | undefined;
|
|
7548
7467
|
readonly unique?: boolean | undefined;
|
|
7549
|
-
readonly defaultValue?: unknown;
|
|
7550
7468
|
readonly maxLength?: number | undefined;
|
|
7551
7469
|
readonly minLength?: number | undefined;
|
|
7552
7470
|
readonly scale?: number | undefined;
|
|
@@ -7670,7 +7588,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7670
7588
|
generatedBy?: string | undefined;
|
|
7671
7589
|
} | undefined;
|
|
7672
7590
|
} | undefined;
|
|
7673
|
-
readonly hidden?: boolean | undefined;
|
|
7674
7591
|
readonly sortable?: boolean | undefined;
|
|
7675
7592
|
readonly inlineHelpText?: string | undefined;
|
|
7676
7593
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7697,10 +7614,12 @@ declare const SystemUploadSession: Omit<{
|
|
|
7697
7614
|
readonly dependencies?: string[] | undefined;
|
|
7698
7615
|
readonly theme?: string | undefined;
|
|
7699
7616
|
readonly externalId?: boolean | undefined;
|
|
7617
|
+
readonly defaultValue?: unknown;
|
|
7618
|
+
readonly group?: string | undefined;
|
|
7619
|
+
readonly hidden?: boolean | undefined;
|
|
7700
7620
|
readonly system?: boolean | undefined;
|
|
7701
7621
|
readonly min?: number | undefined;
|
|
7702
7622
|
readonly max?: number | undefined;
|
|
7703
|
-
readonly group?: string | undefined;
|
|
7704
7623
|
readonly encryptionConfig?: {
|
|
7705
7624
|
enabled: boolean;
|
|
7706
7625
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7721,7 +7640,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7721
7640
|
readonly columnName?: string | undefined;
|
|
7722
7641
|
readonly searchable?: boolean | undefined;
|
|
7723
7642
|
readonly unique?: boolean | undefined;
|
|
7724
|
-
readonly defaultValue?: unknown;
|
|
7725
7643
|
readonly maxLength?: number | undefined;
|
|
7726
7644
|
readonly minLength?: number | undefined;
|
|
7727
7645
|
readonly scale?: number | undefined;
|
|
@@ -7845,7 +7763,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7845
7763
|
generatedBy?: string | undefined;
|
|
7846
7764
|
} | undefined;
|
|
7847
7765
|
} | undefined;
|
|
7848
|
-
readonly hidden?: boolean | undefined;
|
|
7849
7766
|
readonly sortable?: boolean | undefined;
|
|
7850
7767
|
readonly inlineHelpText?: string | undefined;
|
|
7851
7768
|
readonly trackFeedHistory?: boolean | undefined;
|