@objectstack/platform-objects 7.3.0 → 7.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/apps/index.d.mts +45 -19
- package/dist/apps/index.d.ts +45 -19
- package/dist/apps/index.js +1434 -3406
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +1434 -3407
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +4595 -26176
- package/dist/audit/index.d.ts +4595 -26176
- package/dist/audit/index.js +63 -1063
- package/dist/audit/index.js.map +1 -1
- package/dist/audit/index.mjs +64 -1057
- package/dist/audit/index.mjs.map +1 -1
- package/dist/identity/index.d.mts +839 -1281
- package/dist/identity/index.d.ts +839 -1281
- package/dist/index.d.mts +3 -8
- package/dist/index.d.ts +3 -8
- package/dist/index.js +2344 -6782
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2343 -6767
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +1 -2947
- package/dist/integration/index.d.ts +1 -2947
- package/dist/integration/index.js +0 -136
- package/dist/integration/index.js.map +1 -1
- package/dist/integration/index.mjs +0 -135
- package/dist/integration/index.mjs.map +1 -1
- package/dist/metadata/index.d.mts +3924 -261
- package/dist/metadata/index.d.ts +3924 -261
- package/dist/metadata/index.js +101 -0
- package/dist/metadata/index.js.map +1 -1
- package/dist/metadata/index.mjs +101 -1
- package/dist/metadata/index.mjs.map +1 -1
- package/dist/metadata-translations/index.js +597 -505
- package/dist/metadata-translations/index.js.map +1 -1
- package/dist/metadata-translations/index.mjs +597 -505
- package/dist/metadata-translations/index.mjs.map +1 -1
- package/dist/plugin.js +1790 -3614
- package/dist/plugin.js.map +1 -1
- package/dist/plugin.mjs +1790 -3614
- package/dist/plugin.mjs.map +1 -1
- package/dist/security/index.d.mts +1 -18850
- package/dist/security/index.d.ts +1 -18850
- package/dist/security/index.js +0 -1531
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +0 -1523
- package/dist/security/index.mjs.map +1 -1
- package/dist/system/index.d.mts +144 -212
- package/dist/system/index.d.ts +144 -212
- package/package.json +2 -2
- package/dist/state-machine.zod-BNanU03M.d-Ek3_yo9P.d.mts +0 -41
- package/dist/state-machine.zod-BNanU03M.d-Ek3_yo9P.d.ts +0 -41
package/dist/system/index.d.mts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
import { S as StateNodeConfig } from '../state-machine.zod-BNanU03M.d-Ek3_yo9P.mjs';
|
|
2
1
|
import * as _objectstack_spec_data from '@objectstack/spec/data';
|
|
3
|
-
import 'zod';
|
|
4
2
|
|
|
5
3
|
/**
|
|
6
4
|
* sys_setting — Generic K/V store backing the SettingsManifest contract
|
|
@@ -38,7 +36,7 @@ declare const SysSetting: Omit<{
|
|
|
38
36
|
abstract: boolean;
|
|
39
37
|
datasource: string;
|
|
40
38
|
fields: Record<string, {
|
|
41
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
39
|
+
type: "number" | "boolean" | "tags" | "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" | "vector";
|
|
42
40
|
required: boolean;
|
|
43
41
|
searchable: boolean;
|
|
44
42
|
multiple: boolean;
|
|
@@ -253,6 +251,14 @@ declare const SysSetting: Omit<{
|
|
|
253
251
|
owner?: boolean | undefined;
|
|
254
252
|
audit?: boolean | undefined;
|
|
255
253
|
} | undefined;
|
|
254
|
+
external?: {
|
|
255
|
+
writable: boolean;
|
|
256
|
+
remoteName?: string | undefined;
|
|
257
|
+
remoteSchema?: string | undefined;
|
|
258
|
+
columnMap?: Record<string, string> | undefined;
|
|
259
|
+
introspectedAt?: string | undefined;
|
|
260
|
+
ignoreColumns?: string[] | undefined;
|
|
261
|
+
} | undefined;
|
|
256
262
|
indexes?: {
|
|
257
263
|
fields: string[];
|
|
258
264
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -313,36 +319,6 @@ declare const SysSetting: Omit<{
|
|
|
313
319
|
destination: string;
|
|
314
320
|
} | undefined;
|
|
315
321
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
316
|
-
stateMachines?: Record<string, {
|
|
317
|
-
id: string;
|
|
318
|
-
initial: string;
|
|
319
|
-
states: Record<string, StateNodeConfig>;
|
|
320
|
-
description?: string | undefined;
|
|
321
|
-
contextSchema?: Record<string, unknown> | undefined;
|
|
322
|
-
on?: Record<string, string | {
|
|
323
|
-
target?: string | undefined;
|
|
324
|
-
cond?: string | {
|
|
325
|
-
type: string;
|
|
326
|
-
params?: Record<string, unknown> | undefined;
|
|
327
|
-
} | undefined;
|
|
328
|
-
actions?: (string | {
|
|
329
|
-
type: string;
|
|
330
|
-
params?: Record<string, unknown> | undefined;
|
|
331
|
-
})[] | undefined;
|
|
332
|
-
description?: string | undefined;
|
|
333
|
-
} | {
|
|
334
|
-
target?: string | undefined;
|
|
335
|
-
cond?: string | {
|
|
336
|
-
type: string;
|
|
337
|
-
params?: Record<string, unknown> | undefined;
|
|
338
|
-
} | undefined;
|
|
339
|
-
actions?: (string | {
|
|
340
|
-
type: string;
|
|
341
|
-
params?: Record<string, unknown> | undefined;
|
|
342
|
-
})[] | undefined;
|
|
343
|
-
description?: string | undefined;
|
|
344
|
-
}[]> | undefined;
|
|
345
|
-
}> | undefined;
|
|
346
322
|
displayNameField?: string | undefined;
|
|
347
323
|
recordName?: {
|
|
348
324
|
type: "text" | "autonumber";
|
|
@@ -432,7 +408,7 @@ declare const SysSetting: Omit<{
|
|
|
432
408
|
type: "none" | "multiple" | "single";
|
|
433
409
|
} | undefined;
|
|
434
410
|
navigation?: {
|
|
435
|
-
mode: "none" | "split" | "page" | "
|
|
411
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
436
412
|
preventNavigation: boolean;
|
|
437
413
|
openNewTab: boolean;
|
|
438
414
|
view?: string | undefined;
|
|
@@ -621,7 +597,7 @@ declare const SysSetting: Omit<{
|
|
|
621
597
|
trash: boolean;
|
|
622
598
|
mru: boolean;
|
|
623
599
|
clone: boolean;
|
|
624
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "
|
|
600
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
625
601
|
} | undefined;
|
|
626
602
|
recordTypes?: string[] | undefined;
|
|
627
603
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
@@ -667,7 +643,7 @@ declare const SysSetting: Omit<{
|
|
|
667
643
|
field?: string | undefined;
|
|
668
644
|
objectOverride?: string | undefined;
|
|
669
645
|
label?: string | undefined;
|
|
670
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
646
|
+
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;
|
|
671
647
|
options?: {
|
|
672
648
|
label: string;
|
|
673
649
|
value: string;
|
|
@@ -719,7 +695,7 @@ declare const SysSetting: Omit<{
|
|
|
719
695
|
} | undefined;
|
|
720
696
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
721
697
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
722
|
-
mode?: "custom" | "delete" | "
|
|
698
|
+
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
723
699
|
timeout?: number | undefined;
|
|
724
700
|
aria?: {
|
|
725
701
|
ariaLabel?: string | undefined;
|
|
@@ -858,10 +834,12 @@ declare const SysSetting: Omit<{
|
|
|
858
834
|
readonly dependencies?: string[] | undefined;
|
|
859
835
|
readonly theme?: string | undefined;
|
|
860
836
|
readonly externalId?: boolean | undefined;
|
|
837
|
+
readonly defaultValue?: unknown;
|
|
838
|
+
readonly group?: string | undefined;
|
|
839
|
+
readonly hidden?: boolean | undefined;
|
|
861
840
|
readonly system?: boolean | undefined;
|
|
862
841
|
readonly min?: number | undefined;
|
|
863
842
|
readonly max?: number | undefined;
|
|
864
|
-
readonly group?: string | undefined;
|
|
865
843
|
readonly encryptionConfig?: {
|
|
866
844
|
enabled: boolean;
|
|
867
845
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -882,7 +860,6 @@ declare const SysSetting: Omit<{
|
|
|
882
860
|
readonly columnName?: string | undefined;
|
|
883
861
|
readonly searchable?: boolean | undefined;
|
|
884
862
|
readonly unique?: boolean | undefined;
|
|
885
|
-
readonly defaultValue?: unknown;
|
|
886
863
|
readonly maxLength?: number | undefined;
|
|
887
864
|
readonly minLength?: number | undefined;
|
|
888
865
|
readonly scale?: number | undefined;
|
|
@@ -1006,7 +983,6 @@ declare const SysSetting: Omit<{
|
|
|
1006
983
|
generatedBy?: string | undefined;
|
|
1007
984
|
} | undefined;
|
|
1008
985
|
} | undefined;
|
|
1009
|
-
readonly hidden?: boolean | undefined;
|
|
1010
986
|
readonly sortable?: boolean | undefined;
|
|
1011
987
|
readonly inlineHelpText?: string | undefined;
|
|
1012
988
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1033,10 +1009,12 @@ declare const SysSetting: Omit<{
|
|
|
1033
1009
|
readonly dependencies?: string[] | undefined;
|
|
1034
1010
|
readonly theme?: string | undefined;
|
|
1035
1011
|
readonly externalId?: boolean | undefined;
|
|
1012
|
+
readonly defaultValue?: unknown;
|
|
1013
|
+
readonly group?: string | undefined;
|
|
1014
|
+
readonly hidden?: boolean | undefined;
|
|
1036
1015
|
readonly system?: boolean | undefined;
|
|
1037
1016
|
readonly min?: number | undefined;
|
|
1038
1017
|
readonly max?: number | undefined;
|
|
1039
|
-
readonly group?: string | undefined;
|
|
1040
1018
|
readonly encryptionConfig?: {
|
|
1041
1019
|
enabled: boolean;
|
|
1042
1020
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1057,7 +1035,6 @@ declare const SysSetting: Omit<{
|
|
|
1057
1035
|
readonly columnName?: string | undefined;
|
|
1058
1036
|
readonly searchable?: boolean | undefined;
|
|
1059
1037
|
readonly unique?: boolean | undefined;
|
|
1060
|
-
readonly defaultValue?: unknown;
|
|
1061
1038
|
readonly maxLength?: number | undefined;
|
|
1062
1039
|
readonly minLength?: number | undefined;
|
|
1063
1040
|
readonly scale?: number | undefined;
|
|
@@ -1181,7 +1158,6 @@ declare const SysSetting: Omit<{
|
|
|
1181
1158
|
generatedBy?: string | undefined;
|
|
1182
1159
|
} | undefined;
|
|
1183
1160
|
} | undefined;
|
|
1184
|
-
readonly hidden?: boolean | undefined;
|
|
1185
1161
|
readonly sortable?: boolean | undefined;
|
|
1186
1162
|
readonly inlineHelpText?: string | undefined;
|
|
1187
1163
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1208,10 +1184,12 @@ declare const SysSetting: Omit<{
|
|
|
1208
1184
|
readonly dependencies?: string[] | undefined;
|
|
1209
1185
|
readonly theme?: string | undefined;
|
|
1210
1186
|
readonly externalId?: boolean | undefined;
|
|
1187
|
+
readonly defaultValue?: unknown;
|
|
1188
|
+
readonly group?: string | undefined;
|
|
1189
|
+
readonly hidden?: boolean | undefined;
|
|
1211
1190
|
readonly system?: boolean | undefined;
|
|
1212
1191
|
readonly min?: number | undefined;
|
|
1213
1192
|
readonly max?: number | undefined;
|
|
1214
|
-
readonly group?: string | undefined;
|
|
1215
1193
|
readonly encryptionConfig?: {
|
|
1216
1194
|
enabled: boolean;
|
|
1217
1195
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1232,7 +1210,6 @@ declare const SysSetting: Omit<{
|
|
|
1232
1210
|
readonly columnName?: string | undefined;
|
|
1233
1211
|
readonly searchable?: boolean | undefined;
|
|
1234
1212
|
readonly unique?: boolean | undefined;
|
|
1235
|
-
readonly defaultValue?: unknown;
|
|
1236
1213
|
readonly maxLength?: number | undefined;
|
|
1237
1214
|
readonly minLength?: number | undefined;
|
|
1238
1215
|
readonly scale?: number | undefined;
|
|
@@ -1356,7 +1333,6 @@ declare const SysSetting: Omit<{
|
|
|
1356
1333
|
generatedBy?: string | undefined;
|
|
1357
1334
|
} | undefined;
|
|
1358
1335
|
} | undefined;
|
|
1359
|
-
readonly hidden?: boolean | undefined;
|
|
1360
1336
|
readonly sortable?: boolean | undefined;
|
|
1361
1337
|
readonly inlineHelpText?: string | undefined;
|
|
1362
1338
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1383,10 +1359,12 @@ declare const SysSetting: Omit<{
|
|
|
1383
1359
|
readonly dependencies?: string[] | undefined;
|
|
1384
1360
|
readonly theme?: string | undefined;
|
|
1385
1361
|
readonly externalId?: boolean | undefined;
|
|
1362
|
+
readonly defaultValue?: unknown;
|
|
1363
|
+
readonly group?: string | undefined;
|
|
1364
|
+
readonly hidden?: boolean | undefined;
|
|
1386
1365
|
readonly system?: boolean | undefined;
|
|
1387
1366
|
readonly min?: number | undefined;
|
|
1388
1367
|
readonly max?: number | undefined;
|
|
1389
|
-
readonly group?: string | undefined;
|
|
1390
1368
|
readonly encryptionConfig?: {
|
|
1391
1369
|
enabled: boolean;
|
|
1392
1370
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1407,7 +1385,6 @@ declare const SysSetting: Omit<{
|
|
|
1407
1385
|
readonly columnName?: string | undefined;
|
|
1408
1386
|
readonly searchable?: boolean | undefined;
|
|
1409
1387
|
readonly unique?: boolean | undefined;
|
|
1410
|
-
readonly defaultValue?: unknown;
|
|
1411
1388
|
readonly maxLength?: number | undefined;
|
|
1412
1389
|
readonly minLength?: number | undefined;
|
|
1413
1390
|
readonly scale?: number | undefined;
|
|
@@ -1531,7 +1508,6 @@ declare const SysSetting: Omit<{
|
|
|
1531
1508
|
generatedBy?: string | undefined;
|
|
1532
1509
|
} | undefined;
|
|
1533
1510
|
} | undefined;
|
|
1534
|
-
readonly hidden?: boolean | undefined;
|
|
1535
1511
|
readonly sortable?: boolean | undefined;
|
|
1536
1512
|
readonly inlineHelpText?: string | undefined;
|
|
1537
1513
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1558,10 +1534,12 @@ declare const SysSetting: Omit<{
|
|
|
1558
1534
|
readonly dependencies?: string[] | undefined;
|
|
1559
1535
|
readonly theme?: string | undefined;
|
|
1560
1536
|
readonly externalId?: boolean | undefined;
|
|
1537
|
+
readonly defaultValue?: unknown;
|
|
1538
|
+
readonly group?: string | undefined;
|
|
1539
|
+
readonly hidden?: boolean | undefined;
|
|
1561
1540
|
readonly system?: boolean | undefined;
|
|
1562
1541
|
readonly min?: number | undefined;
|
|
1563
1542
|
readonly max?: number | undefined;
|
|
1564
|
-
readonly group?: string | undefined;
|
|
1565
1543
|
readonly encryptionConfig?: {
|
|
1566
1544
|
enabled: boolean;
|
|
1567
1545
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1582,7 +1560,6 @@ declare const SysSetting: Omit<{
|
|
|
1582
1560
|
readonly columnName?: string | undefined;
|
|
1583
1561
|
readonly searchable?: boolean | undefined;
|
|
1584
1562
|
readonly unique?: boolean | undefined;
|
|
1585
|
-
readonly defaultValue?: unknown;
|
|
1586
1563
|
readonly maxLength?: number | undefined;
|
|
1587
1564
|
readonly minLength?: number | undefined;
|
|
1588
1565
|
readonly scale?: number | undefined;
|
|
@@ -1706,7 +1683,6 @@ declare const SysSetting: Omit<{
|
|
|
1706
1683
|
generatedBy?: string | undefined;
|
|
1707
1684
|
} | undefined;
|
|
1708
1685
|
} | undefined;
|
|
1709
|
-
readonly hidden?: boolean | undefined;
|
|
1710
1686
|
readonly sortable?: boolean | undefined;
|
|
1711
1687
|
readonly inlineHelpText?: string | undefined;
|
|
1712
1688
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1733,10 +1709,12 @@ declare const SysSetting: Omit<{
|
|
|
1733
1709
|
readonly dependencies?: string[] | undefined;
|
|
1734
1710
|
readonly theme?: string | undefined;
|
|
1735
1711
|
readonly externalId?: boolean | undefined;
|
|
1712
|
+
readonly defaultValue?: unknown;
|
|
1713
|
+
readonly group?: string | undefined;
|
|
1714
|
+
readonly hidden?: boolean | undefined;
|
|
1736
1715
|
readonly system?: boolean | undefined;
|
|
1737
1716
|
readonly min?: number | undefined;
|
|
1738
1717
|
readonly max?: number | undefined;
|
|
1739
|
-
readonly group?: string | undefined;
|
|
1740
1718
|
readonly encryptionConfig?: {
|
|
1741
1719
|
enabled: boolean;
|
|
1742
1720
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1757,7 +1735,6 @@ declare const SysSetting: Omit<{
|
|
|
1757
1735
|
readonly columnName?: string | undefined;
|
|
1758
1736
|
readonly searchable?: boolean | undefined;
|
|
1759
1737
|
readonly unique?: boolean | undefined;
|
|
1760
|
-
readonly defaultValue?: unknown;
|
|
1761
1738
|
readonly maxLength?: number | undefined;
|
|
1762
1739
|
readonly minLength?: number | undefined;
|
|
1763
1740
|
readonly scale?: number | undefined;
|
|
@@ -1881,7 +1858,6 @@ declare const SysSetting: Omit<{
|
|
|
1881
1858
|
generatedBy?: string | undefined;
|
|
1882
1859
|
} | undefined;
|
|
1883
1860
|
} | undefined;
|
|
1884
|
-
readonly hidden?: boolean | undefined;
|
|
1885
1861
|
readonly sortable?: boolean | undefined;
|
|
1886
1862
|
readonly inlineHelpText?: string | undefined;
|
|
1887
1863
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -1908,10 +1884,12 @@ declare const SysSetting: Omit<{
|
|
|
1908
1884
|
readonly dependencies?: string[] | undefined;
|
|
1909
1885
|
readonly theme?: string | undefined;
|
|
1910
1886
|
readonly externalId?: boolean | undefined;
|
|
1887
|
+
readonly defaultValue?: unknown;
|
|
1888
|
+
readonly group?: string | undefined;
|
|
1889
|
+
readonly hidden?: boolean | undefined;
|
|
1911
1890
|
readonly system?: boolean | undefined;
|
|
1912
1891
|
readonly min?: number | undefined;
|
|
1913
1892
|
readonly max?: number | undefined;
|
|
1914
|
-
readonly group?: string | undefined;
|
|
1915
1893
|
readonly encryptionConfig?: {
|
|
1916
1894
|
enabled: boolean;
|
|
1917
1895
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -1932,7 +1910,6 @@ declare const SysSetting: Omit<{
|
|
|
1932
1910
|
readonly columnName?: string | undefined;
|
|
1933
1911
|
readonly searchable?: boolean | undefined;
|
|
1934
1912
|
readonly unique?: boolean | undefined;
|
|
1935
|
-
readonly defaultValue?: unknown;
|
|
1936
1913
|
readonly maxLength?: number | undefined;
|
|
1937
1914
|
readonly minLength?: number | undefined;
|
|
1938
1915
|
readonly scale?: number | undefined;
|
|
@@ -2056,7 +2033,6 @@ declare const SysSetting: Omit<{
|
|
|
2056
2033
|
generatedBy?: string | undefined;
|
|
2057
2034
|
} | undefined;
|
|
2058
2035
|
} | undefined;
|
|
2059
|
-
readonly hidden?: boolean | undefined;
|
|
2060
2036
|
readonly sortable?: boolean | undefined;
|
|
2061
2037
|
readonly inlineHelpText?: string | undefined;
|
|
2062
2038
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2083,10 +2059,12 @@ declare const SysSetting: Omit<{
|
|
|
2083
2059
|
readonly dependencies?: string[] | undefined;
|
|
2084
2060
|
readonly theme?: string | undefined;
|
|
2085
2061
|
readonly externalId?: boolean | undefined;
|
|
2062
|
+
readonly defaultValue?: unknown;
|
|
2063
|
+
readonly group?: string | undefined;
|
|
2064
|
+
readonly hidden?: boolean | undefined;
|
|
2086
2065
|
readonly system?: boolean | undefined;
|
|
2087
2066
|
readonly min?: number | undefined;
|
|
2088
2067
|
readonly max?: number | undefined;
|
|
2089
|
-
readonly group?: string | undefined;
|
|
2090
2068
|
readonly encryptionConfig?: {
|
|
2091
2069
|
enabled: boolean;
|
|
2092
2070
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2107,7 +2085,6 @@ declare const SysSetting: Omit<{
|
|
|
2107
2085
|
readonly columnName?: string | undefined;
|
|
2108
2086
|
readonly searchable?: boolean | undefined;
|
|
2109
2087
|
readonly unique?: boolean | undefined;
|
|
2110
|
-
readonly defaultValue?: unknown;
|
|
2111
2088
|
readonly maxLength?: number | undefined;
|
|
2112
2089
|
readonly minLength?: number | undefined;
|
|
2113
2090
|
readonly scale?: number | undefined;
|
|
@@ -2231,7 +2208,6 @@ declare const SysSetting: Omit<{
|
|
|
2231
2208
|
generatedBy?: string | undefined;
|
|
2232
2209
|
} | undefined;
|
|
2233
2210
|
} | undefined;
|
|
2234
|
-
readonly hidden?: boolean | undefined;
|
|
2235
2211
|
readonly sortable?: boolean | undefined;
|
|
2236
2212
|
readonly inlineHelpText?: string | undefined;
|
|
2237
2213
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2258,10 +2234,12 @@ declare const SysSetting: Omit<{
|
|
|
2258
2234
|
readonly dependencies?: string[] | undefined;
|
|
2259
2235
|
readonly theme?: string | undefined;
|
|
2260
2236
|
readonly externalId?: boolean | undefined;
|
|
2237
|
+
readonly defaultValue?: unknown;
|
|
2238
|
+
readonly group?: string | undefined;
|
|
2239
|
+
readonly hidden?: boolean | undefined;
|
|
2261
2240
|
readonly system?: boolean | undefined;
|
|
2262
2241
|
readonly min?: number | undefined;
|
|
2263
2242
|
readonly max?: number | undefined;
|
|
2264
|
-
readonly group?: string | undefined;
|
|
2265
2243
|
readonly encryptionConfig?: {
|
|
2266
2244
|
enabled: boolean;
|
|
2267
2245
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2282,7 +2260,6 @@ declare const SysSetting: Omit<{
|
|
|
2282
2260
|
readonly columnName?: string | undefined;
|
|
2283
2261
|
readonly searchable?: boolean | undefined;
|
|
2284
2262
|
readonly unique?: boolean | undefined;
|
|
2285
|
-
readonly defaultValue?: unknown;
|
|
2286
2263
|
readonly maxLength?: number | undefined;
|
|
2287
2264
|
readonly minLength?: number | undefined;
|
|
2288
2265
|
readonly scale?: number | undefined;
|
|
@@ -2406,7 +2383,6 @@ declare const SysSetting: Omit<{
|
|
|
2406
2383
|
generatedBy?: string | undefined;
|
|
2407
2384
|
} | undefined;
|
|
2408
2385
|
} | undefined;
|
|
2409
|
-
readonly hidden?: boolean | undefined;
|
|
2410
2386
|
readonly sortable?: boolean | undefined;
|
|
2411
2387
|
readonly inlineHelpText?: string | undefined;
|
|
2412
2388
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2433,10 +2409,12 @@ declare const SysSetting: Omit<{
|
|
|
2433
2409
|
readonly dependencies?: string[] | undefined;
|
|
2434
2410
|
readonly theme?: string | undefined;
|
|
2435
2411
|
readonly externalId?: boolean | undefined;
|
|
2412
|
+
readonly defaultValue?: unknown;
|
|
2413
|
+
readonly group?: string | undefined;
|
|
2414
|
+
readonly hidden?: boolean | undefined;
|
|
2436
2415
|
readonly system?: boolean | undefined;
|
|
2437
2416
|
readonly min?: number | undefined;
|
|
2438
2417
|
readonly max?: number | undefined;
|
|
2439
|
-
readonly group?: string | undefined;
|
|
2440
2418
|
readonly encryptionConfig?: {
|
|
2441
2419
|
enabled: boolean;
|
|
2442
2420
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2457,7 +2435,6 @@ declare const SysSetting: Omit<{
|
|
|
2457
2435
|
readonly columnName?: string | undefined;
|
|
2458
2436
|
readonly searchable?: boolean | undefined;
|
|
2459
2437
|
readonly unique?: boolean | undefined;
|
|
2460
|
-
readonly defaultValue?: unknown;
|
|
2461
2438
|
readonly maxLength?: number | undefined;
|
|
2462
2439
|
readonly minLength?: number | undefined;
|
|
2463
2440
|
readonly scale?: number | undefined;
|
|
@@ -2581,7 +2558,6 @@ declare const SysSetting: Omit<{
|
|
|
2581
2558
|
generatedBy?: string | undefined;
|
|
2582
2559
|
} | undefined;
|
|
2583
2560
|
} | undefined;
|
|
2584
|
-
readonly hidden?: boolean | undefined;
|
|
2585
2561
|
readonly sortable?: boolean | undefined;
|
|
2586
2562
|
readonly inlineHelpText?: string | undefined;
|
|
2587
2563
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2608,10 +2584,12 @@ declare const SysSetting: Omit<{
|
|
|
2608
2584
|
readonly dependencies?: string[] | undefined;
|
|
2609
2585
|
readonly theme?: string | undefined;
|
|
2610
2586
|
readonly externalId?: boolean | undefined;
|
|
2587
|
+
readonly defaultValue?: unknown;
|
|
2588
|
+
readonly group?: string | undefined;
|
|
2589
|
+
readonly hidden?: boolean | undefined;
|
|
2611
2590
|
readonly system?: boolean | undefined;
|
|
2612
2591
|
readonly min?: number | undefined;
|
|
2613
2592
|
readonly max?: number | undefined;
|
|
2614
|
-
readonly group?: string | undefined;
|
|
2615
2593
|
readonly encryptionConfig?: {
|
|
2616
2594
|
enabled: boolean;
|
|
2617
2595
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2632,7 +2610,6 @@ declare const SysSetting: Omit<{
|
|
|
2632
2610
|
readonly columnName?: string | undefined;
|
|
2633
2611
|
readonly searchable?: boolean | undefined;
|
|
2634
2612
|
readonly unique?: boolean | undefined;
|
|
2635
|
-
readonly defaultValue?: unknown;
|
|
2636
2613
|
readonly maxLength?: number | undefined;
|
|
2637
2614
|
readonly minLength?: number | undefined;
|
|
2638
2615
|
readonly scale?: number | undefined;
|
|
@@ -2756,7 +2733,6 @@ declare const SysSetting: Omit<{
|
|
|
2756
2733
|
generatedBy?: string | undefined;
|
|
2757
2734
|
} | undefined;
|
|
2758
2735
|
} | undefined;
|
|
2759
|
-
readonly hidden?: boolean | undefined;
|
|
2760
2736
|
readonly sortable?: boolean | undefined;
|
|
2761
2737
|
readonly inlineHelpText?: string | undefined;
|
|
2762
2738
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2783,10 +2759,12 @@ declare const SysSetting: Omit<{
|
|
|
2783
2759
|
readonly dependencies?: string[] | undefined;
|
|
2784
2760
|
readonly theme?: string | undefined;
|
|
2785
2761
|
readonly externalId?: boolean | undefined;
|
|
2762
|
+
readonly defaultValue?: unknown;
|
|
2763
|
+
readonly group?: string | undefined;
|
|
2764
|
+
readonly hidden?: boolean | undefined;
|
|
2786
2765
|
readonly system?: boolean | undefined;
|
|
2787
2766
|
readonly min?: number | undefined;
|
|
2788
2767
|
readonly max?: number | undefined;
|
|
2789
|
-
readonly group?: string | undefined;
|
|
2790
2768
|
readonly encryptionConfig?: {
|
|
2791
2769
|
enabled: boolean;
|
|
2792
2770
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2807,7 +2785,6 @@ declare const SysSetting: Omit<{
|
|
|
2807
2785
|
readonly columnName?: string | undefined;
|
|
2808
2786
|
readonly searchable?: boolean | undefined;
|
|
2809
2787
|
readonly unique?: boolean | undefined;
|
|
2810
|
-
readonly defaultValue?: unknown;
|
|
2811
2788
|
readonly maxLength?: number | undefined;
|
|
2812
2789
|
readonly minLength?: number | undefined;
|
|
2813
2790
|
readonly scale?: number | undefined;
|
|
@@ -2931,7 +2908,6 @@ declare const SysSetting: Omit<{
|
|
|
2931
2908
|
generatedBy?: string | undefined;
|
|
2932
2909
|
} | undefined;
|
|
2933
2910
|
} | undefined;
|
|
2934
|
-
readonly hidden?: boolean | undefined;
|
|
2935
2911
|
readonly sortable?: boolean | undefined;
|
|
2936
2912
|
readonly inlineHelpText?: string | undefined;
|
|
2937
2913
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -2958,10 +2934,12 @@ declare const SysSetting: Omit<{
|
|
|
2958
2934
|
readonly dependencies?: string[] | undefined;
|
|
2959
2935
|
readonly theme?: string | undefined;
|
|
2960
2936
|
readonly externalId?: boolean | undefined;
|
|
2937
|
+
readonly defaultValue?: unknown;
|
|
2938
|
+
readonly group?: string | undefined;
|
|
2939
|
+
readonly hidden?: boolean | undefined;
|
|
2961
2940
|
readonly system?: boolean | undefined;
|
|
2962
2941
|
readonly min?: number | undefined;
|
|
2963
2942
|
readonly max?: number | undefined;
|
|
2964
|
-
readonly group?: string | undefined;
|
|
2965
2943
|
readonly encryptionConfig?: {
|
|
2966
2944
|
enabled: boolean;
|
|
2967
2945
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -2982,7 +2960,6 @@ declare const SysSetting: Omit<{
|
|
|
2982
2960
|
readonly columnName?: string | undefined;
|
|
2983
2961
|
readonly searchable?: boolean | undefined;
|
|
2984
2962
|
readonly unique?: boolean | undefined;
|
|
2985
|
-
readonly defaultValue?: unknown;
|
|
2986
2963
|
readonly maxLength?: number | undefined;
|
|
2987
2964
|
readonly minLength?: number | undefined;
|
|
2988
2965
|
readonly scale?: number | undefined;
|
|
@@ -3106,7 +3083,6 @@ declare const SysSetting: Omit<{
|
|
|
3106
3083
|
generatedBy?: string | undefined;
|
|
3107
3084
|
} | undefined;
|
|
3108
3085
|
} | undefined;
|
|
3109
|
-
readonly hidden?: boolean | undefined;
|
|
3110
3086
|
readonly sortable?: boolean | undefined;
|
|
3111
3087
|
readonly inlineHelpText?: string | undefined;
|
|
3112
3088
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -3170,7 +3146,7 @@ declare const SysSecret: Omit<{
|
|
|
3170
3146
|
abstract: boolean;
|
|
3171
3147
|
datasource: string;
|
|
3172
3148
|
fields: Record<string, {
|
|
3173
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
3149
|
+
type: "number" | "boolean" | "tags" | "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" | "vector";
|
|
3174
3150
|
required: boolean;
|
|
3175
3151
|
searchable: boolean;
|
|
3176
3152
|
multiple: boolean;
|
|
@@ -3385,6 +3361,14 @@ declare const SysSecret: Omit<{
|
|
|
3385
3361
|
owner?: boolean | undefined;
|
|
3386
3362
|
audit?: boolean | undefined;
|
|
3387
3363
|
} | undefined;
|
|
3364
|
+
external?: {
|
|
3365
|
+
writable: boolean;
|
|
3366
|
+
remoteName?: string | undefined;
|
|
3367
|
+
remoteSchema?: string | undefined;
|
|
3368
|
+
columnMap?: Record<string, string> | undefined;
|
|
3369
|
+
introspectedAt?: string | undefined;
|
|
3370
|
+
ignoreColumns?: string[] | undefined;
|
|
3371
|
+
} | undefined;
|
|
3388
3372
|
indexes?: {
|
|
3389
3373
|
fields: string[];
|
|
3390
3374
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -3445,36 +3429,6 @@ declare const SysSecret: Omit<{
|
|
|
3445
3429
|
destination: string;
|
|
3446
3430
|
} | undefined;
|
|
3447
3431
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
3448
|
-
stateMachines?: Record<string, {
|
|
3449
|
-
id: string;
|
|
3450
|
-
initial: string;
|
|
3451
|
-
states: Record<string, StateNodeConfig>;
|
|
3452
|
-
description?: string | undefined;
|
|
3453
|
-
contextSchema?: Record<string, unknown> | undefined;
|
|
3454
|
-
on?: Record<string, string | {
|
|
3455
|
-
target?: string | undefined;
|
|
3456
|
-
cond?: string | {
|
|
3457
|
-
type: string;
|
|
3458
|
-
params?: Record<string, unknown> | undefined;
|
|
3459
|
-
} | undefined;
|
|
3460
|
-
actions?: (string | {
|
|
3461
|
-
type: string;
|
|
3462
|
-
params?: Record<string, unknown> | undefined;
|
|
3463
|
-
})[] | undefined;
|
|
3464
|
-
description?: string | undefined;
|
|
3465
|
-
} | {
|
|
3466
|
-
target?: string | undefined;
|
|
3467
|
-
cond?: string | {
|
|
3468
|
-
type: string;
|
|
3469
|
-
params?: Record<string, unknown> | undefined;
|
|
3470
|
-
} | undefined;
|
|
3471
|
-
actions?: (string | {
|
|
3472
|
-
type: string;
|
|
3473
|
-
params?: Record<string, unknown> | undefined;
|
|
3474
|
-
})[] | undefined;
|
|
3475
|
-
description?: string | undefined;
|
|
3476
|
-
}[]> | undefined;
|
|
3477
|
-
}> | undefined;
|
|
3478
3432
|
displayNameField?: string | undefined;
|
|
3479
3433
|
recordName?: {
|
|
3480
3434
|
type: "text" | "autonumber";
|
|
@@ -3564,7 +3518,7 @@ declare const SysSecret: Omit<{
|
|
|
3564
3518
|
type: "none" | "multiple" | "single";
|
|
3565
3519
|
} | undefined;
|
|
3566
3520
|
navigation?: {
|
|
3567
|
-
mode: "none" | "split" | "page" | "
|
|
3521
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
3568
3522
|
preventNavigation: boolean;
|
|
3569
3523
|
openNewTab: boolean;
|
|
3570
3524
|
view?: string | undefined;
|
|
@@ -3753,7 +3707,7 @@ declare const SysSecret: Omit<{
|
|
|
3753
3707
|
trash: boolean;
|
|
3754
3708
|
mru: boolean;
|
|
3755
3709
|
clone: boolean;
|
|
3756
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "
|
|
3710
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
3757
3711
|
} | undefined;
|
|
3758
3712
|
recordTypes?: string[] | undefined;
|
|
3759
3713
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
@@ -3799,7 +3753,7 @@ declare const SysSecret: Omit<{
|
|
|
3799
3753
|
field?: string | undefined;
|
|
3800
3754
|
objectOverride?: string | undefined;
|
|
3801
3755
|
label?: string | undefined;
|
|
3802
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
3756
|
+
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;
|
|
3803
3757
|
options?: {
|
|
3804
3758
|
label: string;
|
|
3805
3759
|
value: string;
|
|
@@ -3851,7 +3805,7 @@ declare const SysSecret: Omit<{
|
|
|
3851
3805
|
} | undefined;
|
|
3852
3806
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
3853
3807
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
3854
|
-
mode?: "custom" | "delete" | "
|
|
3808
|
+
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
3855
3809
|
timeout?: number | undefined;
|
|
3856
3810
|
aria?: {
|
|
3857
3811
|
ariaLabel?: string | undefined;
|
|
@@ -3902,10 +3856,12 @@ declare const SysSecret: Omit<{
|
|
|
3902
3856
|
readonly dependencies?: string[] | undefined;
|
|
3903
3857
|
readonly theme?: string | undefined;
|
|
3904
3858
|
readonly externalId?: boolean | undefined;
|
|
3859
|
+
readonly defaultValue?: unknown;
|
|
3860
|
+
readonly group?: string | undefined;
|
|
3861
|
+
readonly hidden?: boolean | undefined;
|
|
3905
3862
|
readonly system?: boolean | undefined;
|
|
3906
3863
|
readonly min?: number | undefined;
|
|
3907
3864
|
readonly max?: number | undefined;
|
|
3908
|
-
readonly group?: string | undefined;
|
|
3909
3865
|
readonly encryptionConfig?: {
|
|
3910
3866
|
enabled: boolean;
|
|
3911
3867
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -3926,7 +3882,6 @@ declare const SysSecret: Omit<{
|
|
|
3926
3882
|
readonly columnName?: string | undefined;
|
|
3927
3883
|
readonly searchable?: boolean | undefined;
|
|
3928
3884
|
readonly unique?: boolean | undefined;
|
|
3929
|
-
readonly defaultValue?: unknown;
|
|
3930
3885
|
readonly maxLength?: number | undefined;
|
|
3931
3886
|
readonly minLength?: number | undefined;
|
|
3932
3887
|
readonly scale?: number | undefined;
|
|
@@ -4050,7 +4005,6 @@ declare const SysSecret: Omit<{
|
|
|
4050
4005
|
generatedBy?: string | undefined;
|
|
4051
4006
|
} | undefined;
|
|
4052
4007
|
} | undefined;
|
|
4053
|
-
readonly hidden?: boolean | undefined;
|
|
4054
4008
|
readonly sortable?: boolean | undefined;
|
|
4055
4009
|
readonly inlineHelpText?: string | undefined;
|
|
4056
4010
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4077,10 +4031,12 @@ declare const SysSecret: Omit<{
|
|
|
4077
4031
|
readonly dependencies?: string[] | undefined;
|
|
4078
4032
|
readonly theme?: string | undefined;
|
|
4079
4033
|
readonly externalId?: boolean | undefined;
|
|
4034
|
+
readonly defaultValue?: unknown;
|
|
4035
|
+
readonly group?: string | undefined;
|
|
4036
|
+
readonly hidden?: boolean | undefined;
|
|
4080
4037
|
readonly system?: boolean | undefined;
|
|
4081
4038
|
readonly min?: number | undefined;
|
|
4082
4039
|
readonly max?: number | undefined;
|
|
4083
|
-
readonly group?: string | undefined;
|
|
4084
4040
|
readonly encryptionConfig?: {
|
|
4085
4041
|
enabled: boolean;
|
|
4086
4042
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4101,7 +4057,6 @@ declare const SysSecret: Omit<{
|
|
|
4101
4057
|
readonly columnName?: string | undefined;
|
|
4102
4058
|
readonly searchable?: boolean | undefined;
|
|
4103
4059
|
readonly unique?: boolean | undefined;
|
|
4104
|
-
readonly defaultValue?: unknown;
|
|
4105
4060
|
readonly maxLength?: number | undefined;
|
|
4106
4061
|
readonly minLength?: number | undefined;
|
|
4107
4062
|
readonly scale?: number | undefined;
|
|
@@ -4225,7 +4180,6 @@ declare const SysSecret: Omit<{
|
|
|
4225
4180
|
generatedBy?: string | undefined;
|
|
4226
4181
|
} | undefined;
|
|
4227
4182
|
} | undefined;
|
|
4228
|
-
readonly hidden?: boolean | undefined;
|
|
4229
4183
|
readonly sortable?: boolean | undefined;
|
|
4230
4184
|
readonly inlineHelpText?: string | undefined;
|
|
4231
4185
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4252,10 +4206,12 @@ declare const SysSecret: Omit<{
|
|
|
4252
4206
|
readonly dependencies?: string[] | undefined;
|
|
4253
4207
|
readonly theme?: string | undefined;
|
|
4254
4208
|
readonly externalId?: boolean | undefined;
|
|
4209
|
+
readonly defaultValue?: unknown;
|
|
4210
|
+
readonly group?: string | undefined;
|
|
4211
|
+
readonly hidden?: boolean | undefined;
|
|
4255
4212
|
readonly system?: boolean | undefined;
|
|
4256
4213
|
readonly min?: number | undefined;
|
|
4257
4214
|
readonly max?: number | undefined;
|
|
4258
|
-
readonly group?: string | undefined;
|
|
4259
4215
|
readonly encryptionConfig?: {
|
|
4260
4216
|
enabled: boolean;
|
|
4261
4217
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4276,7 +4232,6 @@ declare const SysSecret: Omit<{
|
|
|
4276
4232
|
readonly columnName?: string | undefined;
|
|
4277
4233
|
readonly searchable?: boolean | undefined;
|
|
4278
4234
|
readonly unique?: boolean | undefined;
|
|
4279
|
-
readonly defaultValue?: unknown;
|
|
4280
4235
|
readonly maxLength?: number | undefined;
|
|
4281
4236
|
readonly minLength?: number | undefined;
|
|
4282
4237
|
readonly scale?: number | undefined;
|
|
@@ -4400,7 +4355,6 @@ declare const SysSecret: Omit<{
|
|
|
4400
4355
|
generatedBy?: string | undefined;
|
|
4401
4356
|
} | undefined;
|
|
4402
4357
|
} | undefined;
|
|
4403
|
-
readonly hidden?: boolean | undefined;
|
|
4404
4358
|
readonly sortable?: boolean | undefined;
|
|
4405
4359
|
readonly inlineHelpText?: string | undefined;
|
|
4406
4360
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4433,10 +4387,12 @@ declare const SysSecret: Omit<{
|
|
|
4433
4387
|
readonly dependencies?: string[] | undefined;
|
|
4434
4388
|
readonly theme?: string | undefined;
|
|
4435
4389
|
readonly externalId?: boolean | undefined;
|
|
4390
|
+
readonly defaultValue?: unknown;
|
|
4391
|
+
readonly group?: string | undefined;
|
|
4392
|
+
readonly hidden?: boolean | undefined;
|
|
4436
4393
|
readonly system?: boolean | undefined;
|
|
4437
4394
|
readonly min?: number | undefined;
|
|
4438
4395
|
readonly max?: number | undefined;
|
|
4439
|
-
readonly group?: string | undefined;
|
|
4440
4396
|
readonly encryptionConfig?: {
|
|
4441
4397
|
enabled: boolean;
|
|
4442
4398
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4457,7 +4413,6 @@ declare const SysSecret: Omit<{
|
|
|
4457
4413
|
readonly columnName?: string | undefined;
|
|
4458
4414
|
readonly searchable?: boolean | undefined;
|
|
4459
4415
|
readonly unique?: boolean | undefined;
|
|
4460
|
-
readonly defaultValue?: unknown;
|
|
4461
4416
|
readonly maxLength?: number | undefined;
|
|
4462
4417
|
readonly minLength?: number | undefined;
|
|
4463
4418
|
readonly scale?: number | undefined;
|
|
@@ -4581,7 +4536,6 @@ declare const SysSecret: Omit<{
|
|
|
4581
4536
|
generatedBy?: string | undefined;
|
|
4582
4537
|
} | undefined;
|
|
4583
4538
|
} | undefined;
|
|
4584
|
-
readonly hidden?: boolean | undefined;
|
|
4585
4539
|
readonly sortable?: boolean | undefined;
|
|
4586
4540
|
readonly inlineHelpText?: string | undefined;
|
|
4587
4541
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4608,10 +4562,12 @@ declare const SysSecret: Omit<{
|
|
|
4608
4562
|
readonly dependencies?: string[] | undefined;
|
|
4609
4563
|
readonly theme?: string | undefined;
|
|
4610
4564
|
readonly externalId?: boolean | undefined;
|
|
4565
|
+
readonly defaultValue?: unknown;
|
|
4566
|
+
readonly group?: string | undefined;
|
|
4567
|
+
readonly hidden?: boolean | undefined;
|
|
4611
4568
|
readonly system?: boolean | undefined;
|
|
4612
4569
|
readonly min?: number | undefined;
|
|
4613
4570
|
readonly max?: number | undefined;
|
|
4614
|
-
readonly group?: string | undefined;
|
|
4615
4571
|
readonly encryptionConfig?: {
|
|
4616
4572
|
enabled: boolean;
|
|
4617
4573
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4632,7 +4588,6 @@ declare const SysSecret: Omit<{
|
|
|
4632
4588
|
readonly columnName?: string | undefined;
|
|
4633
4589
|
readonly searchable?: boolean | undefined;
|
|
4634
4590
|
readonly unique?: boolean | undefined;
|
|
4635
|
-
readonly defaultValue?: unknown;
|
|
4636
4591
|
readonly maxLength?: number | undefined;
|
|
4637
4592
|
readonly minLength?: number | undefined;
|
|
4638
4593
|
readonly scale?: number | undefined;
|
|
@@ -4756,7 +4711,6 @@ declare const SysSecret: Omit<{
|
|
|
4756
4711
|
generatedBy?: string | undefined;
|
|
4757
4712
|
} | undefined;
|
|
4758
4713
|
} | undefined;
|
|
4759
|
-
readonly hidden?: boolean | undefined;
|
|
4760
4714
|
readonly sortable?: boolean | undefined;
|
|
4761
4715
|
readonly inlineHelpText?: string | undefined;
|
|
4762
4716
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4784,10 +4738,12 @@ declare const SysSecret: Omit<{
|
|
|
4784
4738
|
readonly dependencies?: string[] | undefined;
|
|
4785
4739
|
readonly theme?: string | undefined;
|
|
4786
4740
|
readonly externalId?: boolean | undefined;
|
|
4741
|
+
readonly defaultValue?: unknown;
|
|
4742
|
+
readonly group?: string | undefined;
|
|
4743
|
+
readonly hidden?: boolean | undefined;
|
|
4787
4744
|
readonly system?: boolean | undefined;
|
|
4788
4745
|
readonly min?: number | undefined;
|
|
4789
4746
|
readonly max?: number | undefined;
|
|
4790
|
-
readonly group?: string | undefined;
|
|
4791
4747
|
readonly encryptionConfig?: {
|
|
4792
4748
|
enabled: boolean;
|
|
4793
4749
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4808,7 +4764,6 @@ declare const SysSecret: Omit<{
|
|
|
4808
4764
|
readonly columnName?: string | undefined;
|
|
4809
4765
|
readonly searchable?: boolean | undefined;
|
|
4810
4766
|
readonly unique?: boolean | undefined;
|
|
4811
|
-
readonly defaultValue?: unknown;
|
|
4812
4767
|
readonly maxLength?: number | undefined;
|
|
4813
4768
|
readonly minLength?: number | undefined;
|
|
4814
4769
|
readonly scale?: number | undefined;
|
|
@@ -4932,7 +4887,6 @@ declare const SysSecret: Omit<{
|
|
|
4932
4887
|
generatedBy?: string | undefined;
|
|
4933
4888
|
} | undefined;
|
|
4934
4889
|
} | undefined;
|
|
4935
|
-
readonly hidden?: boolean | undefined;
|
|
4936
4890
|
readonly sortable?: boolean | undefined;
|
|
4937
4891
|
readonly inlineHelpText?: string | undefined;
|
|
4938
4892
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -4960,10 +4914,12 @@ declare const SysSecret: Omit<{
|
|
|
4960
4914
|
readonly dependencies?: string[] | undefined;
|
|
4961
4915
|
readonly theme?: string | undefined;
|
|
4962
4916
|
readonly externalId?: boolean | undefined;
|
|
4917
|
+
readonly defaultValue?: unknown;
|
|
4918
|
+
readonly group?: string | undefined;
|
|
4919
|
+
readonly hidden?: boolean | undefined;
|
|
4963
4920
|
readonly system?: boolean | undefined;
|
|
4964
4921
|
readonly min?: number | undefined;
|
|
4965
4922
|
readonly max?: number | undefined;
|
|
4966
|
-
readonly group?: string | undefined;
|
|
4967
4923
|
readonly encryptionConfig?: {
|
|
4968
4924
|
enabled: boolean;
|
|
4969
4925
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -4984,7 +4940,6 @@ declare const SysSecret: Omit<{
|
|
|
4984
4940
|
readonly columnName?: string | undefined;
|
|
4985
4941
|
readonly searchable?: boolean | undefined;
|
|
4986
4942
|
readonly unique?: boolean | undefined;
|
|
4987
|
-
readonly defaultValue?: unknown;
|
|
4988
4943
|
readonly maxLength?: number | undefined;
|
|
4989
4944
|
readonly minLength?: number | undefined;
|
|
4990
4945
|
readonly scale?: number | undefined;
|
|
@@ -5108,7 +5063,6 @@ declare const SysSecret: Omit<{
|
|
|
5108
5063
|
generatedBy?: string | undefined;
|
|
5109
5064
|
} | undefined;
|
|
5110
5065
|
} | undefined;
|
|
5111
|
-
readonly hidden?: boolean | undefined;
|
|
5112
5066
|
readonly sortable?: boolean | undefined;
|
|
5113
5067
|
readonly inlineHelpText?: string | undefined;
|
|
5114
5068
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5136,10 +5090,12 @@ declare const SysSecret: Omit<{
|
|
|
5136
5090
|
readonly dependencies?: string[] | undefined;
|
|
5137
5091
|
readonly theme?: string | undefined;
|
|
5138
5092
|
readonly externalId?: boolean | undefined;
|
|
5093
|
+
readonly defaultValue?: unknown;
|
|
5094
|
+
readonly group?: string | undefined;
|
|
5095
|
+
readonly hidden?: boolean | undefined;
|
|
5139
5096
|
readonly system?: boolean | undefined;
|
|
5140
5097
|
readonly min?: number | undefined;
|
|
5141
5098
|
readonly max?: number | undefined;
|
|
5142
|
-
readonly group?: string | undefined;
|
|
5143
5099
|
readonly encryptionConfig?: {
|
|
5144
5100
|
enabled: boolean;
|
|
5145
5101
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5160,7 +5116,6 @@ declare const SysSecret: Omit<{
|
|
|
5160
5116
|
readonly columnName?: string | undefined;
|
|
5161
5117
|
readonly searchable?: boolean | undefined;
|
|
5162
5118
|
readonly unique?: boolean | undefined;
|
|
5163
|
-
readonly defaultValue?: unknown;
|
|
5164
5119
|
readonly maxLength?: number | undefined;
|
|
5165
5120
|
readonly minLength?: number | undefined;
|
|
5166
5121
|
readonly scale?: number | undefined;
|
|
@@ -5284,7 +5239,6 @@ declare const SysSecret: Omit<{
|
|
|
5284
5239
|
generatedBy?: string | undefined;
|
|
5285
5240
|
} | undefined;
|
|
5286
5241
|
} | undefined;
|
|
5287
|
-
readonly hidden?: boolean | undefined;
|
|
5288
5242
|
readonly sortable?: boolean | undefined;
|
|
5289
5243
|
readonly inlineHelpText?: string | undefined;
|
|
5290
5244
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5311,10 +5265,12 @@ declare const SysSecret: Omit<{
|
|
|
5311
5265
|
readonly dependencies?: string[] | undefined;
|
|
5312
5266
|
readonly theme?: string | undefined;
|
|
5313
5267
|
readonly externalId?: boolean | undefined;
|
|
5268
|
+
readonly defaultValue?: unknown;
|
|
5269
|
+
readonly group?: string | undefined;
|
|
5270
|
+
readonly hidden?: boolean | undefined;
|
|
5314
5271
|
readonly system?: boolean | undefined;
|
|
5315
5272
|
readonly min?: number | undefined;
|
|
5316
5273
|
readonly max?: number | undefined;
|
|
5317
|
-
readonly group?: string | undefined;
|
|
5318
5274
|
readonly encryptionConfig?: {
|
|
5319
5275
|
enabled: boolean;
|
|
5320
5276
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -5335,7 +5291,6 @@ declare const SysSecret: Omit<{
|
|
|
5335
5291
|
readonly columnName?: string | undefined;
|
|
5336
5292
|
readonly searchable?: boolean | undefined;
|
|
5337
5293
|
readonly unique?: boolean | undefined;
|
|
5338
|
-
readonly defaultValue?: unknown;
|
|
5339
5294
|
readonly maxLength?: number | undefined;
|
|
5340
5295
|
readonly minLength?: number | undefined;
|
|
5341
5296
|
readonly scale?: number | undefined;
|
|
@@ -5459,7 +5414,6 @@ declare const SysSecret: Omit<{
|
|
|
5459
5414
|
generatedBy?: string | undefined;
|
|
5460
5415
|
} | undefined;
|
|
5461
5416
|
} | undefined;
|
|
5462
|
-
readonly hidden?: boolean | undefined;
|
|
5463
5417
|
readonly sortable?: boolean | undefined;
|
|
5464
5418
|
readonly inlineHelpText?: string | undefined;
|
|
5465
5419
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -5513,7 +5467,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5513
5467
|
abstract: boolean;
|
|
5514
5468
|
datasource: string;
|
|
5515
5469
|
fields: Record<string, {
|
|
5516
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
5470
|
+
type: "number" | "boolean" | "tags" | "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" | "vector";
|
|
5517
5471
|
required: boolean;
|
|
5518
5472
|
searchable: boolean;
|
|
5519
5473
|
multiple: boolean;
|
|
@@ -5728,6 +5682,14 @@ declare const SysSettingAudit: Omit<{
|
|
|
5728
5682
|
owner?: boolean | undefined;
|
|
5729
5683
|
audit?: boolean | undefined;
|
|
5730
5684
|
} | undefined;
|
|
5685
|
+
external?: {
|
|
5686
|
+
writable: boolean;
|
|
5687
|
+
remoteName?: string | undefined;
|
|
5688
|
+
remoteSchema?: string | undefined;
|
|
5689
|
+
columnMap?: Record<string, string> | undefined;
|
|
5690
|
+
introspectedAt?: string | undefined;
|
|
5691
|
+
ignoreColumns?: string[] | undefined;
|
|
5692
|
+
} | undefined;
|
|
5731
5693
|
indexes?: {
|
|
5732
5694
|
fields: string[];
|
|
5733
5695
|
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
@@ -5788,36 +5750,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
5788
5750
|
destination: string;
|
|
5789
5751
|
} | undefined;
|
|
5790
5752
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
5791
|
-
stateMachines?: Record<string, {
|
|
5792
|
-
id: string;
|
|
5793
|
-
initial: string;
|
|
5794
|
-
states: Record<string, StateNodeConfig>;
|
|
5795
|
-
description?: string | undefined;
|
|
5796
|
-
contextSchema?: Record<string, unknown> | undefined;
|
|
5797
|
-
on?: Record<string, string | {
|
|
5798
|
-
target?: string | undefined;
|
|
5799
|
-
cond?: string | {
|
|
5800
|
-
type: string;
|
|
5801
|
-
params?: Record<string, unknown> | undefined;
|
|
5802
|
-
} | undefined;
|
|
5803
|
-
actions?: (string | {
|
|
5804
|
-
type: string;
|
|
5805
|
-
params?: Record<string, unknown> | undefined;
|
|
5806
|
-
})[] | undefined;
|
|
5807
|
-
description?: string | undefined;
|
|
5808
|
-
} | {
|
|
5809
|
-
target?: string | undefined;
|
|
5810
|
-
cond?: string | {
|
|
5811
|
-
type: string;
|
|
5812
|
-
params?: Record<string, unknown> | undefined;
|
|
5813
|
-
} | undefined;
|
|
5814
|
-
actions?: (string | {
|
|
5815
|
-
type: string;
|
|
5816
|
-
params?: Record<string, unknown> | undefined;
|
|
5817
|
-
})[] | undefined;
|
|
5818
|
-
description?: string | undefined;
|
|
5819
|
-
}[]> | undefined;
|
|
5820
|
-
}> | undefined;
|
|
5821
5753
|
displayNameField?: string | undefined;
|
|
5822
5754
|
recordName?: {
|
|
5823
5755
|
type: "text" | "autonumber";
|
|
@@ -5907,7 +5839,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5907
5839
|
type: "none" | "multiple" | "single";
|
|
5908
5840
|
} | undefined;
|
|
5909
5841
|
navigation?: {
|
|
5910
|
-
mode: "none" | "split" | "page" | "
|
|
5842
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
5911
5843
|
preventNavigation: boolean;
|
|
5912
5844
|
openNewTab: boolean;
|
|
5913
5845
|
view?: string | undefined;
|
|
@@ -6096,7 +6028,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6096
6028
|
trash: boolean;
|
|
6097
6029
|
mru: boolean;
|
|
6098
6030
|
clone: boolean;
|
|
6099
|
-
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "
|
|
6031
|
+
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
6100
6032
|
} | undefined;
|
|
6101
6033
|
recordTypes?: string[] | undefined;
|
|
6102
6034
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
@@ -6142,7 +6074,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6142
6074
|
field?: string | undefined;
|
|
6143
6075
|
objectOverride?: string | undefined;
|
|
6144
6076
|
label?: string | undefined;
|
|
6145
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
6077
|
+
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;
|
|
6146
6078
|
options?: {
|
|
6147
6079
|
label: string;
|
|
6148
6080
|
value: string;
|
|
@@ -6194,7 +6126,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6194
6126
|
} | undefined;
|
|
6195
6127
|
method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
|
|
6196
6128
|
bodyExtra?: Record<string, unknown> | undefined;
|
|
6197
|
-
mode?: "custom" | "delete" | "
|
|
6129
|
+
mode?: "custom" | "delete" | "edit" | "create" | undefined;
|
|
6198
6130
|
timeout?: number | undefined;
|
|
6199
6131
|
aria?: {
|
|
6200
6132
|
ariaLabel?: string | undefined;
|
|
@@ -6249,10 +6181,12 @@ declare const SysSettingAudit: Omit<{
|
|
|
6249
6181
|
readonly dependencies?: string[] | undefined;
|
|
6250
6182
|
readonly theme?: string | undefined;
|
|
6251
6183
|
readonly externalId?: boolean | undefined;
|
|
6184
|
+
readonly defaultValue?: unknown;
|
|
6185
|
+
readonly group?: string | undefined;
|
|
6186
|
+
readonly hidden?: boolean | undefined;
|
|
6252
6187
|
readonly system?: boolean | undefined;
|
|
6253
6188
|
readonly min?: number | undefined;
|
|
6254
6189
|
readonly max?: number | undefined;
|
|
6255
|
-
readonly group?: string | undefined;
|
|
6256
6190
|
readonly encryptionConfig?: {
|
|
6257
6191
|
enabled: boolean;
|
|
6258
6192
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6273,7 +6207,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6273
6207
|
readonly columnName?: string | undefined;
|
|
6274
6208
|
readonly searchable?: boolean | undefined;
|
|
6275
6209
|
readonly unique?: boolean | undefined;
|
|
6276
|
-
readonly defaultValue?: unknown;
|
|
6277
6210
|
readonly maxLength?: number | undefined;
|
|
6278
6211
|
readonly minLength?: number | undefined;
|
|
6279
6212
|
readonly scale?: number | undefined;
|
|
@@ -6397,7 +6330,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6397
6330
|
generatedBy?: string | undefined;
|
|
6398
6331
|
} | undefined;
|
|
6399
6332
|
} | undefined;
|
|
6400
|
-
readonly hidden?: boolean | undefined;
|
|
6401
6333
|
readonly sortable?: boolean | undefined;
|
|
6402
6334
|
readonly inlineHelpText?: string | undefined;
|
|
6403
6335
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6424,10 +6356,12 @@ declare const SysSettingAudit: Omit<{
|
|
|
6424
6356
|
readonly dependencies?: string[] | undefined;
|
|
6425
6357
|
readonly theme?: string | undefined;
|
|
6426
6358
|
readonly externalId?: boolean | undefined;
|
|
6359
|
+
readonly defaultValue?: unknown;
|
|
6360
|
+
readonly group?: string | undefined;
|
|
6361
|
+
readonly hidden?: boolean | undefined;
|
|
6427
6362
|
readonly system?: boolean | undefined;
|
|
6428
6363
|
readonly min?: number | undefined;
|
|
6429
6364
|
readonly max?: number | undefined;
|
|
6430
|
-
readonly group?: string | undefined;
|
|
6431
6365
|
readonly encryptionConfig?: {
|
|
6432
6366
|
enabled: boolean;
|
|
6433
6367
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6448,7 +6382,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6448
6382
|
readonly columnName?: string | undefined;
|
|
6449
6383
|
readonly searchable?: boolean | undefined;
|
|
6450
6384
|
readonly unique?: boolean | undefined;
|
|
6451
|
-
readonly defaultValue?: unknown;
|
|
6452
6385
|
readonly maxLength?: number | undefined;
|
|
6453
6386
|
readonly minLength?: number | undefined;
|
|
6454
6387
|
readonly scale?: number | undefined;
|
|
@@ -6572,7 +6505,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6572
6505
|
generatedBy?: string | undefined;
|
|
6573
6506
|
} | undefined;
|
|
6574
6507
|
} | undefined;
|
|
6575
|
-
readonly hidden?: boolean | undefined;
|
|
6576
6508
|
readonly sortable?: boolean | undefined;
|
|
6577
6509
|
readonly inlineHelpText?: string | undefined;
|
|
6578
6510
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6599,10 +6531,12 @@ declare const SysSettingAudit: Omit<{
|
|
|
6599
6531
|
readonly dependencies?: string[] | undefined;
|
|
6600
6532
|
readonly theme?: string | undefined;
|
|
6601
6533
|
readonly externalId?: boolean | undefined;
|
|
6534
|
+
readonly defaultValue?: unknown;
|
|
6535
|
+
readonly group?: string | undefined;
|
|
6536
|
+
readonly hidden?: boolean | undefined;
|
|
6602
6537
|
readonly system?: boolean | undefined;
|
|
6603
6538
|
readonly min?: number | undefined;
|
|
6604
6539
|
readonly max?: number | undefined;
|
|
6605
|
-
readonly group?: string | undefined;
|
|
6606
6540
|
readonly encryptionConfig?: {
|
|
6607
6541
|
enabled: boolean;
|
|
6608
6542
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6623,7 +6557,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6623
6557
|
readonly columnName?: string | undefined;
|
|
6624
6558
|
readonly searchable?: boolean | undefined;
|
|
6625
6559
|
readonly unique?: boolean | undefined;
|
|
6626
|
-
readonly defaultValue?: unknown;
|
|
6627
6560
|
readonly maxLength?: number | undefined;
|
|
6628
6561
|
readonly minLength?: number | undefined;
|
|
6629
6562
|
readonly scale?: number | undefined;
|
|
@@ -6747,7 +6680,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6747
6680
|
generatedBy?: string | undefined;
|
|
6748
6681
|
} | undefined;
|
|
6749
6682
|
} | undefined;
|
|
6750
|
-
readonly hidden?: boolean | undefined;
|
|
6751
6683
|
readonly sortable?: boolean | undefined;
|
|
6752
6684
|
readonly inlineHelpText?: string | undefined;
|
|
6753
6685
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6774,10 +6706,12 @@ declare const SysSettingAudit: Omit<{
|
|
|
6774
6706
|
readonly dependencies?: string[] | undefined;
|
|
6775
6707
|
readonly theme?: string | undefined;
|
|
6776
6708
|
readonly externalId?: boolean | undefined;
|
|
6709
|
+
readonly defaultValue?: unknown;
|
|
6710
|
+
readonly group?: string | undefined;
|
|
6711
|
+
readonly hidden?: boolean | undefined;
|
|
6777
6712
|
readonly system?: boolean | undefined;
|
|
6778
6713
|
readonly min?: number | undefined;
|
|
6779
6714
|
readonly max?: number | undefined;
|
|
6780
|
-
readonly group?: string | undefined;
|
|
6781
6715
|
readonly encryptionConfig?: {
|
|
6782
6716
|
enabled: boolean;
|
|
6783
6717
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6798,7 +6732,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6798
6732
|
readonly columnName?: string | undefined;
|
|
6799
6733
|
readonly searchable?: boolean | undefined;
|
|
6800
6734
|
readonly unique?: boolean | undefined;
|
|
6801
|
-
readonly defaultValue?: unknown;
|
|
6802
6735
|
readonly maxLength?: number | undefined;
|
|
6803
6736
|
readonly minLength?: number | undefined;
|
|
6804
6737
|
readonly scale?: number | undefined;
|
|
@@ -6922,7 +6855,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6922
6855
|
generatedBy?: string | undefined;
|
|
6923
6856
|
} | undefined;
|
|
6924
6857
|
} | undefined;
|
|
6925
|
-
readonly hidden?: boolean | undefined;
|
|
6926
6858
|
readonly sortable?: boolean | undefined;
|
|
6927
6859
|
readonly inlineHelpText?: string | undefined;
|
|
6928
6860
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -6949,10 +6881,12 @@ declare const SysSettingAudit: Omit<{
|
|
|
6949
6881
|
readonly dependencies?: string[] | undefined;
|
|
6950
6882
|
readonly theme?: string | undefined;
|
|
6951
6883
|
readonly externalId?: boolean | undefined;
|
|
6884
|
+
readonly defaultValue?: unknown;
|
|
6885
|
+
readonly group?: string | undefined;
|
|
6886
|
+
readonly hidden?: boolean | undefined;
|
|
6952
6887
|
readonly system?: boolean | undefined;
|
|
6953
6888
|
readonly min?: number | undefined;
|
|
6954
6889
|
readonly max?: number | undefined;
|
|
6955
|
-
readonly group?: string | undefined;
|
|
6956
6890
|
readonly encryptionConfig?: {
|
|
6957
6891
|
enabled: boolean;
|
|
6958
6892
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -6973,7 +6907,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6973
6907
|
readonly columnName?: string | undefined;
|
|
6974
6908
|
readonly searchable?: boolean | undefined;
|
|
6975
6909
|
readonly unique?: boolean | undefined;
|
|
6976
|
-
readonly defaultValue?: unknown;
|
|
6977
6910
|
readonly maxLength?: number | undefined;
|
|
6978
6911
|
readonly minLength?: number | undefined;
|
|
6979
6912
|
readonly scale?: number | undefined;
|
|
@@ -7097,7 +7030,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7097
7030
|
generatedBy?: string | undefined;
|
|
7098
7031
|
} | undefined;
|
|
7099
7032
|
} | undefined;
|
|
7100
|
-
readonly hidden?: boolean | undefined;
|
|
7101
7033
|
readonly sortable?: boolean | undefined;
|
|
7102
7034
|
readonly inlineHelpText?: string | undefined;
|
|
7103
7035
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7124,10 +7056,12 @@ declare const SysSettingAudit: Omit<{
|
|
|
7124
7056
|
readonly dependencies?: string[] | undefined;
|
|
7125
7057
|
readonly theme?: string | undefined;
|
|
7126
7058
|
readonly externalId?: boolean | undefined;
|
|
7059
|
+
readonly defaultValue?: unknown;
|
|
7060
|
+
readonly group?: string | undefined;
|
|
7061
|
+
readonly hidden?: boolean | undefined;
|
|
7127
7062
|
readonly system?: boolean | undefined;
|
|
7128
7063
|
readonly min?: number | undefined;
|
|
7129
7064
|
readonly max?: number | undefined;
|
|
7130
|
-
readonly group?: string | undefined;
|
|
7131
7065
|
readonly encryptionConfig?: {
|
|
7132
7066
|
enabled: boolean;
|
|
7133
7067
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7148,7 +7082,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7148
7082
|
readonly columnName?: string | undefined;
|
|
7149
7083
|
readonly searchable?: boolean | undefined;
|
|
7150
7084
|
readonly unique?: boolean | undefined;
|
|
7151
|
-
readonly defaultValue?: unknown;
|
|
7152
7085
|
readonly maxLength?: number | undefined;
|
|
7153
7086
|
readonly minLength?: number | undefined;
|
|
7154
7087
|
readonly scale?: number | undefined;
|
|
@@ -7272,7 +7205,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7272
7205
|
generatedBy?: string | undefined;
|
|
7273
7206
|
} | undefined;
|
|
7274
7207
|
} | undefined;
|
|
7275
|
-
readonly hidden?: boolean | undefined;
|
|
7276
7208
|
readonly sortable?: boolean | undefined;
|
|
7277
7209
|
readonly inlineHelpText?: string | undefined;
|
|
7278
7210
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7299,10 +7231,12 @@ declare const SysSettingAudit: Omit<{
|
|
|
7299
7231
|
readonly dependencies?: string[] | undefined;
|
|
7300
7232
|
readonly theme?: string | undefined;
|
|
7301
7233
|
readonly externalId?: boolean | undefined;
|
|
7234
|
+
readonly defaultValue?: unknown;
|
|
7235
|
+
readonly group?: string | undefined;
|
|
7236
|
+
readonly hidden?: boolean | undefined;
|
|
7302
7237
|
readonly system?: boolean | undefined;
|
|
7303
7238
|
readonly min?: number | undefined;
|
|
7304
7239
|
readonly max?: number | undefined;
|
|
7305
|
-
readonly group?: string | undefined;
|
|
7306
7240
|
readonly encryptionConfig?: {
|
|
7307
7241
|
enabled: boolean;
|
|
7308
7242
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7323,7 +7257,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7323
7257
|
readonly columnName?: string | undefined;
|
|
7324
7258
|
readonly searchable?: boolean | undefined;
|
|
7325
7259
|
readonly unique?: boolean | undefined;
|
|
7326
|
-
readonly defaultValue?: unknown;
|
|
7327
7260
|
readonly maxLength?: number | undefined;
|
|
7328
7261
|
readonly minLength?: number | undefined;
|
|
7329
7262
|
readonly scale?: number | undefined;
|
|
@@ -7447,7 +7380,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7447
7380
|
generatedBy?: string | undefined;
|
|
7448
7381
|
} | undefined;
|
|
7449
7382
|
} | undefined;
|
|
7450
|
-
readonly hidden?: boolean | undefined;
|
|
7451
7383
|
readonly sortable?: boolean | undefined;
|
|
7452
7384
|
readonly inlineHelpText?: string | undefined;
|
|
7453
7385
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7479,10 +7411,12 @@ declare const SysSettingAudit: Omit<{
|
|
|
7479
7411
|
readonly dependencies?: string[] | undefined;
|
|
7480
7412
|
readonly theme?: string | undefined;
|
|
7481
7413
|
readonly externalId?: boolean | undefined;
|
|
7414
|
+
readonly defaultValue?: unknown;
|
|
7415
|
+
readonly group?: string | undefined;
|
|
7416
|
+
readonly hidden?: boolean | undefined;
|
|
7482
7417
|
readonly system?: boolean | undefined;
|
|
7483
7418
|
readonly min?: number | undefined;
|
|
7484
7419
|
readonly max?: number | undefined;
|
|
7485
|
-
readonly group?: string | undefined;
|
|
7486
7420
|
readonly encryptionConfig?: {
|
|
7487
7421
|
enabled: boolean;
|
|
7488
7422
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7503,7 +7437,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7503
7437
|
readonly columnName?: string | undefined;
|
|
7504
7438
|
readonly searchable?: boolean | undefined;
|
|
7505
7439
|
readonly unique?: boolean | undefined;
|
|
7506
|
-
readonly defaultValue?: unknown;
|
|
7507
7440
|
readonly maxLength?: number | undefined;
|
|
7508
7441
|
readonly minLength?: number | undefined;
|
|
7509
7442
|
readonly scale?: number | undefined;
|
|
@@ -7627,7 +7560,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7627
7560
|
generatedBy?: string | undefined;
|
|
7628
7561
|
} | undefined;
|
|
7629
7562
|
} | undefined;
|
|
7630
|
-
readonly hidden?: boolean | undefined;
|
|
7631
7563
|
readonly sortable?: boolean | undefined;
|
|
7632
7564
|
readonly inlineHelpText?: string | undefined;
|
|
7633
7565
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7655,10 +7587,12 @@ declare const SysSettingAudit: Omit<{
|
|
|
7655
7587
|
readonly dependencies?: string[] | undefined;
|
|
7656
7588
|
readonly theme?: string | undefined;
|
|
7657
7589
|
readonly externalId?: boolean | undefined;
|
|
7590
|
+
readonly defaultValue?: unknown;
|
|
7591
|
+
readonly group?: string | undefined;
|
|
7592
|
+
readonly hidden?: boolean | undefined;
|
|
7658
7593
|
readonly system?: boolean | undefined;
|
|
7659
7594
|
readonly min?: number | undefined;
|
|
7660
7595
|
readonly max?: number | undefined;
|
|
7661
|
-
readonly group?: string | undefined;
|
|
7662
7596
|
readonly encryptionConfig?: {
|
|
7663
7597
|
enabled: boolean;
|
|
7664
7598
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7679,7 +7613,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7679
7613
|
readonly columnName?: string | undefined;
|
|
7680
7614
|
readonly searchable?: boolean | undefined;
|
|
7681
7615
|
readonly unique?: boolean | undefined;
|
|
7682
|
-
readonly defaultValue?: unknown;
|
|
7683
7616
|
readonly maxLength?: number | undefined;
|
|
7684
7617
|
readonly minLength?: number | undefined;
|
|
7685
7618
|
readonly scale?: number | undefined;
|
|
@@ -7803,7 +7736,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7803
7736
|
generatedBy?: string | undefined;
|
|
7804
7737
|
} | undefined;
|
|
7805
7738
|
} | undefined;
|
|
7806
|
-
readonly hidden?: boolean | undefined;
|
|
7807
7739
|
readonly sortable?: boolean | undefined;
|
|
7808
7740
|
readonly inlineHelpText?: string | undefined;
|
|
7809
7741
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -7836,10 +7768,12 @@ declare const SysSettingAudit: Omit<{
|
|
|
7836
7768
|
readonly dependencies?: string[] | undefined;
|
|
7837
7769
|
readonly theme?: string | undefined;
|
|
7838
7770
|
readonly externalId?: boolean | undefined;
|
|
7771
|
+
readonly defaultValue?: unknown;
|
|
7772
|
+
readonly group?: string | undefined;
|
|
7773
|
+
readonly hidden?: boolean | undefined;
|
|
7839
7774
|
readonly system?: boolean | undefined;
|
|
7840
7775
|
readonly min?: number | undefined;
|
|
7841
7776
|
readonly max?: number | undefined;
|
|
7842
|
-
readonly group?: string | undefined;
|
|
7843
7777
|
readonly encryptionConfig?: {
|
|
7844
7778
|
enabled: boolean;
|
|
7845
7779
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -7860,7 +7794,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7860
7794
|
readonly columnName?: string | undefined;
|
|
7861
7795
|
readonly searchable?: boolean | undefined;
|
|
7862
7796
|
readonly unique?: boolean | undefined;
|
|
7863
|
-
readonly defaultValue?: unknown;
|
|
7864
7797
|
readonly maxLength?: number | undefined;
|
|
7865
7798
|
readonly minLength?: number | undefined;
|
|
7866
7799
|
readonly scale?: number | undefined;
|
|
@@ -7984,7 +7917,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
7984
7917
|
generatedBy?: string | undefined;
|
|
7985
7918
|
} | undefined;
|
|
7986
7919
|
} | undefined;
|
|
7987
|
-
readonly hidden?: boolean | undefined;
|
|
7988
7920
|
readonly sortable?: boolean | undefined;
|
|
7989
7921
|
readonly inlineHelpText?: string | undefined;
|
|
7990
7922
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -8012,10 +7944,12 @@ declare const SysSettingAudit: Omit<{
|
|
|
8012
7944
|
readonly dependencies?: string[] | undefined;
|
|
8013
7945
|
readonly theme?: string | undefined;
|
|
8014
7946
|
readonly externalId?: boolean | undefined;
|
|
7947
|
+
readonly defaultValue?: unknown;
|
|
7948
|
+
readonly group?: string | undefined;
|
|
7949
|
+
readonly hidden?: boolean | undefined;
|
|
8015
7950
|
readonly system?: boolean | undefined;
|
|
8016
7951
|
readonly min?: number | undefined;
|
|
8017
7952
|
readonly max?: number | undefined;
|
|
8018
|
-
readonly group?: string | undefined;
|
|
8019
7953
|
readonly encryptionConfig?: {
|
|
8020
7954
|
enabled: boolean;
|
|
8021
7955
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -8036,7 +7970,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8036
7970
|
readonly columnName?: string | undefined;
|
|
8037
7971
|
readonly searchable?: boolean | undefined;
|
|
8038
7972
|
readonly unique?: boolean | undefined;
|
|
8039
|
-
readonly defaultValue?: unknown;
|
|
8040
7973
|
readonly maxLength?: number | undefined;
|
|
8041
7974
|
readonly minLength?: number | undefined;
|
|
8042
7975
|
readonly scale?: number | undefined;
|
|
@@ -8160,7 +8093,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8160
8093
|
generatedBy?: string | undefined;
|
|
8161
8094
|
} | undefined;
|
|
8162
8095
|
} | undefined;
|
|
8163
|
-
readonly hidden?: boolean | undefined;
|
|
8164
8096
|
readonly sortable?: boolean | undefined;
|
|
8165
8097
|
readonly inlineHelpText?: string | undefined;
|
|
8166
8098
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -8188,10 +8120,12 @@ declare const SysSettingAudit: Omit<{
|
|
|
8188
8120
|
readonly dependencies?: string[] | undefined;
|
|
8189
8121
|
readonly theme?: string | undefined;
|
|
8190
8122
|
readonly externalId?: boolean | undefined;
|
|
8123
|
+
readonly defaultValue?: unknown;
|
|
8124
|
+
readonly group?: string | undefined;
|
|
8125
|
+
readonly hidden?: boolean | undefined;
|
|
8191
8126
|
readonly system?: boolean | undefined;
|
|
8192
8127
|
readonly min?: number | undefined;
|
|
8193
8128
|
readonly max?: number | undefined;
|
|
8194
|
-
readonly group?: string | undefined;
|
|
8195
8129
|
readonly encryptionConfig?: {
|
|
8196
8130
|
enabled: boolean;
|
|
8197
8131
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -8212,7 +8146,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8212
8146
|
readonly columnName?: string | undefined;
|
|
8213
8147
|
readonly searchable?: boolean | undefined;
|
|
8214
8148
|
readonly unique?: boolean | undefined;
|
|
8215
|
-
readonly defaultValue?: unknown;
|
|
8216
8149
|
readonly maxLength?: number | undefined;
|
|
8217
8150
|
readonly minLength?: number | undefined;
|
|
8218
8151
|
readonly scale?: number | undefined;
|
|
@@ -8336,7 +8269,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8336
8269
|
generatedBy?: string | undefined;
|
|
8337
8270
|
} | undefined;
|
|
8338
8271
|
} | undefined;
|
|
8339
|
-
readonly hidden?: boolean | undefined;
|
|
8340
8272
|
readonly sortable?: boolean | undefined;
|
|
8341
8273
|
readonly inlineHelpText?: string | undefined;
|
|
8342
8274
|
readonly trackFeedHistory?: boolean | undefined;
|
|
@@ -8364,10 +8296,12 @@ declare const SysSettingAudit: Omit<{
|
|
|
8364
8296
|
readonly dependencies?: string[] | undefined;
|
|
8365
8297
|
readonly theme?: string | undefined;
|
|
8366
8298
|
readonly externalId?: boolean | undefined;
|
|
8299
|
+
readonly defaultValue?: unknown;
|
|
8300
|
+
readonly group?: string | undefined;
|
|
8301
|
+
readonly hidden?: boolean | undefined;
|
|
8367
8302
|
readonly system?: boolean | undefined;
|
|
8368
8303
|
readonly min?: number | undefined;
|
|
8369
8304
|
readonly max?: number | undefined;
|
|
8370
|
-
readonly group?: string | undefined;
|
|
8371
8305
|
readonly encryptionConfig?: {
|
|
8372
8306
|
enabled: boolean;
|
|
8373
8307
|
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
@@ -8388,7 +8322,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8388
8322
|
readonly columnName?: string | undefined;
|
|
8389
8323
|
readonly searchable?: boolean | undefined;
|
|
8390
8324
|
readonly unique?: boolean | undefined;
|
|
8391
|
-
readonly defaultValue?: unknown;
|
|
8392
8325
|
readonly maxLength?: number | undefined;
|
|
8393
8326
|
readonly minLength?: number | undefined;
|
|
8394
8327
|
readonly scale?: number | undefined;
|
|
@@ -8512,7 +8445,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
8512
8445
|
generatedBy?: string | undefined;
|
|
8513
8446
|
} | undefined;
|
|
8514
8447
|
} | undefined;
|
|
8515
|
-
readonly hidden?: boolean | undefined;
|
|
8516
8448
|
readonly sortable?: boolean | undefined;
|
|
8517
8449
|
readonly inlineHelpText?: string | undefined;
|
|
8518
8450
|
readonly trackFeedHistory?: boolean | undefined;
|