@objectstack/platform-objects 10.3.0 → 11.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/apps/index.d.mts +8 -8
- package/dist/apps/index.d.ts +8 -8
- package/dist/apps/index.js +35 -6
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +35 -6
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +155 -18
- package/dist/audit/index.d.ts +155 -18
- package/dist/identity/index.d.mts +19777 -13874
- package/dist/identity/index.d.ts +19777 -13874
- package/dist/identity/index.js +363 -8
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +362 -9
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +398 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +397 -15
- package/dist/index.mjs.map +1 -1
- package/dist/plugin.js +5 -2
- package/dist/plugin.js.map +1 -1
- package/dist/plugin.mjs +5 -2
- package/dist/plugin.mjs.map +1 -1
- package/dist/system/index.d.mts +44 -6
- package/dist/system/index.d.ts +44 -6
- package/package.json +3 -3
package/dist/system/index.d.mts
CHANGED
|
@@ -36,7 +36,7 @@ declare const SysSetting: Omit<{
|
|
|
36
36
|
abstract: boolean;
|
|
37
37
|
datasource: string;
|
|
38
38
|
fields: Record<string, {
|
|
39
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
39
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
40
40
|
required: boolean;
|
|
41
41
|
searchable: boolean;
|
|
42
42
|
multiple: boolean;
|
|
@@ -110,6 +110,7 @@ declare const SysSetting: Omit<{
|
|
|
110
110
|
generatedBy?: string | undefined;
|
|
111
111
|
} | undefined;
|
|
112
112
|
} | undefined;
|
|
113
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
113
114
|
summaryOperations?: {
|
|
114
115
|
object: string;
|
|
115
116
|
field: string;
|
|
@@ -733,7 +734,7 @@ declare const SysSetting: Omit<{
|
|
|
733
734
|
field?: string | undefined;
|
|
734
735
|
objectOverride?: string | undefined;
|
|
735
736
|
label?: string | undefined;
|
|
736
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
737
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
737
738
|
options?: {
|
|
738
739
|
label: string;
|
|
739
740
|
value: string;
|
|
@@ -936,6 +937,7 @@ declare const SysSetting: Omit<{
|
|
|
936
937
|
readonly name?: string | undefined;
|
|
937
938
|
readonly precision?: number | undefined;
|
|
938
939
|
readonly required?: boolean | undefined;
|
|
940
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
939
941
|
readonly multiple?: boolean | undefined;
|
|
940
942
|
readonly dependencies?: string[] | undefined;
|
|
941
943
|
readonly externalId?: boolean | undefined;
|
|
@@ -1111,6 +1113,7 @@ declare const SysSetting: Omit<{
|
|
|
1111
1113
|
readonly name?: string | undefined;
|
|
1112
1114
|
readonly precision?: number | undefined;
|
|
1113
1115
|
readonly required?: boolean | undefined;
|
|
1116
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1114
1117
|
readonly multiple?: boolean | undefined;
|
|
1115
1118
|
readonly dependencies?: string[] | undefined;
|
|
1116
1119
|
readonly externalId?: boolean | undefined;
|
|
@@ -1286,6 +1289,7 @@ declare const SysSetting: Omit<{
|
|
|
1286
1289
|
readonly name?: string | undefined;
|
|
1287
1290
|
readonly precision?: number | undefined;
|
|
1288
1291
|
readonly required?: boolean | undefined;
|
|
1292
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1289
1293
|
readonly multiple?: boolean | undefined;
|
|
1290
1294
|
readonly dependencies?: string[] | undefined;
|
|
1291
1295
|
readonly externalId?: boolean | undefined;
|
|
@@ -1461,6 +1465,7 @@ declare const SysSetting: Omit<{
|
|
|
1461
1465
|
readonly name?: string | undefined;
|
|
1462
1466
|
readonly precision?: number | undefined;
|
|
1463
1467
|
readonly required?: boolean | undefined;
|
|
1468
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1464
1469
|
readonly multiple?: boolean | undefined;
|
|
1465
1470
|
readonly dependencies?: string[] | undefined;
|
|
1466
1471
|
readonly externalId?: boolean | undefined;
|
|
@@ -1636,6 +1641,7 @@ declare const SysSetting: Omit<{
|
|
|
1636
1641
|
readonly name?: string | undefined;
|
|
1637
1642
|
readonly precision?: number | undefined;
|
|
1638
1643
|
readonly required?: boolean | undefined;
|
|
1644
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1639
1645
|
readonly multiple?: boolean | undefined;
|
|
1640
1646
|
readonly dependencies?: string[] | undefined;
|
|
1641
1647
|
readonly externalId?: boolean | undefined;
|
|
@@ -1811,6 +1817,7 @@ declare const SysSetting: Omit<{
|
|
|
1811
1817
|
readonly name?: string | undefined;
|
|
1812
1818
|
readonly precision?: number | undefined;
|
|
1813
1819
|
readonly required?: boolean | undefined;
|
|
1820
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1814
1821
|
readonly multiple?: boolean | undefined;
|
|
1815
1822
|
readonly dependencies?: string[] | undefined;
|
|
1816
1823
|
readonly externalId?: boolean | undefined;
|
|
@@ -1986,6 +1993,7 @@ declare const SysSetting: Omit<{
|
|
|
1986
1993
|
readonly name?: string | undefined;
|
|
1987
1994
|
readonly precision?: number | undefined;
|
|
1988
1995
|
readonly required?: boolean | undefined;
|
|
1996
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1989
1997
|
readonly multiple?: boolean | undefined;
|
|
1990
1998
|
readonly dependencies?: string[] | undefined;
|
|
1991
1999
|
readonly externalId?: boolean | undefined;
|
|
@@ -2161,6 +2169,7 @@ declare const SysSetting: Omit<{
|
|
|
2161
2169
|
readonly name?: string | undefined;
|
|
2162
2170
|
readonly precision?: number | undefined;
|
|
2163
2171
|
readonly required?: boolean | undefined;
|
|
2172
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2164
2173
|
readonly multiple?: boolean | undefined;
|
|
2165
2174
|
readonly dependencies?: string[] | undefined;
|
|
2166
2175
|
readonly externalId?: boolean | undefined;
|
|
@@ -2336,6 +2345,7 @@ declare const SysSetting: Omit<{
|
|
|
2336
2345
|
readonly name?: string | undefined;
|
|
2337
2346
|
readonly precision?: number | undefined;
|
|
2338
2347
|
readonly required?: boolean | undefined;
|
|
2348
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2339
2349
|
readonly multiple?: boolean | undefined;
|
|
2340
2350
|
readonly dependencies?: string[] | undefined;
|
|
2341
2351
|
readonly externalId?: boolean | undefined;
|
|
@@ -2511,6 +2521,7 @@ declare const SysSetting: Omit<{
|
|
|
2511
2521
|
readonly name?: string | undefined;
|
|
2512
2522
|
readonly precision?: number | undefined;
|
|
2513
2523
|
readonly required?: boolean | undefined;
|
|
2524
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2514
2525
|
readonly multiple?: boolean | undefined;
|
|
2515
2526
|
readonly dependencies?: string[] | undefined;
|
|
2516
2527
|
readonly externalId?: boolean | undefined;
|
|
@@ -2686,6 +2697,7 @@ declare const SysSetting: Omit<{
|
|
|
2686
2697
|
readonly name?: string | undefined;
|
|
2687
2698
|
readonly precision?: number | undefined;
|
|
2688
2699
|
readonly required?: boolean | undefined;
|
|
2700
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2689
2701
|
readonly multiple?: boolean | undefined;
|
|
2690
2702
|
readonly dependencies?: string[] | undefined;
|
|
2691
2703
|
readonly externalId?: boolean | undefined;
|
|
@@ -2861,6 +2873,7 @@ declare const SysSetting: Omit<{
|
|
|
2861
2873
|
readonly name?: string | undefined;
|
|
2862
2874
|
readonly precision?: number | undefined;
|
|
2863
2875
|
readonly required?: boolean | undefined;
|
|
2876
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2864
2877
|
readonly multiple?: boolean | undefined;
|
|
2865
2878
|
readonly dependencies?: string[] | undefined;
|
|
2866
2879
|
readonly externalId?: boolean | undefined;
|
|
@@ -3036,6 +3049,7 @@ declare const SysSetting: Omit<{
|
|
|
3036
3049
|
readonly name?: string | undefined;
|
|
3037
3050
|
readonly precision?: number | undefined;
|
|
3038
3051
|
readonly required?: boolean | undefined;
|
|
3052
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3039
3053
|
readonly multiple?: boolean | undefined;
|
|
3040
3054
|
readonly dependencies?: string[] | undefined;
|
|
3041
3055
|
readonly externalId?: boolean | undefined;
|
|
@@ -3252,7 +3266,7 @@ declare const SysSecret: Omit<{
|
|
|
3252
3266
|
abstract: boolean;
|
|
3253
3267
|
datasource: string;
|
|
3254
3268
|
fields: Record<string, {
|
|
3255
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
3269
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
3256
3270
|
required: boolean;
|
|
3257
3271
|
searchable: boolean;
|
|
3258
3272
|
multiple: boolean;
|
|
@@ -3326,6 +3340,7 @@ declare const SysSecret: Omit<{
|
|
|
3326
3340
|
generatedBy?: string | undefined;
|
|
3327
3341
|
} | undefined;
|
|
3328
3342
|
} | undefined;
|
|
3343
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
3329
3344
|
summaryOperations?: {
|
|
3330
3345
|
object: string;
|
|
3331
3346
|
field: string;
|
|
@@ -3949,7 +3964,7 @@ declare const SysSecret: Omit<{
|
|
|
3949
3964
|
field?: string | undefined;
|
|
3950
3965
|
objectOverride?: string | undefined;
|
|
3951
3966
|
label?: string | undefined;
|
|
3952
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
3967
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
3953
3968
|
options?: {
|
|
3954
3969
|
label: string;
|
|
3955
3970
|
value: string;
|
|
@@ -4062,6 +4077,7 @@ declare const SysSecret: Omit<{
|
|
|
4062
4077
|
readonly name?: string | undefined;
|
|
4063
4078
|
readonly precision?: number | undefined;
|
|
4064
4079
|
readonly required?: boolean | undefined;
|
|
4080
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4065
4081
|
readonly multiple?: boolean | undefined;
|
|
4066
4082
|
readonly dependencies?: string[] | undefined;
|
|
4067
4083
|
readonly externalId?: boolean | undefined;
|
|
@@ -4237,6 +4253,7 @@ declare const SysSecret: Omit<{
|
|
|
4237
4253
|
readonly name?: string | undefined;
|
|
4238
4254
|
readonly precision?: number | undefined;
|
|
4239
4255
|
readonly required?: boolean | undefined;
|
|
4256
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4240
4257
|
readonly multiple?: boolean | undefined;
|
|
4241
4258
|
readonly dependencies?: string[] | undefined;
|
|
4242
4259
|
readonly externalId?: boolean | undefined;
|
|
@@ -4412,6 +4429,7 @@ declare const SysSecret: Omit<{
|
|
|
4412
4429
|
readonly name?: string | undefined;
|
|
4413
4430
|
readonly precision?: number | undefined;
|
|
4414
4431
|
readonly required?: boolean | undefined;
|
|
4432
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4415
4433
|
readonly multiple?: boolean | undefined;
|
|
4416
4434
|
readonly dependencies?: string[] | undefined;
|
|
4417
4435
|
readonly externalId?: boolean | undefined;
|
|
@@ -4593,6 +4611,7 @@ declare const SysSecret: Omit<{
|
|
|
4593
4611
|
readonly name?: string | undefined;
|
|
4594
4612
|
readonly precision?: number | undefined;
|
|
4595
4613
|
readonly required?: boolean | undefined;
|
|
4614
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4596
4615
|
readonly multiple?: boolean | undefined;
|
|
4597
4616
|
readonly dependencies?: string[] | undefined;
|
|
4598
4617
|
readonly externalId?: boolean | undefined;
|
|
@@ -4768,6 +4787,7 @@ declare const SysSecret: Omit<{
|
|
|
4768
4787
|
readonly name?: string | undefined;
|
|
4769
4788
|
readonly precision?: number | undefined;
|
|
4770
4789
|
readonly required?: boolean | undefined;
|
|
4790
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4771
4791
|
readonly multiple?: boolean | undefined;
|
|
4772
4792
|
readonly dependencies?: string[] | undefined;
|
|
4773
4793
|
readonly externalId?: boolean | undefined;
|
|
@@ -4944,6 +4964,7 @@ declare const SysSecret: Omit<{
|
|
|
4944
4964
|
readonly name?: string | undefined;
|
|
4945
4965
|
readonly precision?: number | undefined;
|
|
4946
4966
|
readonly required?: boolean | undefined;
|
|
4967
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
4947
4968
|
readonly multiple?: boolean | undefined;
|
|
4948
4969
|
readonly dependencies?: string[] | undefined;
|
|
4949
4970
|
readonly externalId?: boolean | undefined;
|
|
@@ -5120,6 +5141,7 @@ declare const SysSecret: Omit<{
|
|
|
5120
5141
|
readonly name?: string | undefined;
|
|
5121
5142
|
readonly precision?: number | undefined;
|
|
5122
5143
|
readonly required?: boolean | undefined;
|
|
5144
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5123
5145
|
readonly multiple?: boolean | undefined;
|
|
5124
5146
|
readonly dependencies?: string[] | undefined;
|
|
5125
5147
|
readonly externalId?: boolean | undefined;
|
|
@@ -5296,6 +5318,7 @@ declare const SysSecret: Omit<{
|
|
|
5296
5318
|
readonly name?: string | undefined;
|
|
5297
5319
|
readonly precision?: number | undefined;
|
|
5298
5320
|
readonly required?: boolean | undefined;
|
|
5321
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5299
5322
|
readonly multiple?: boolean | undefined;
|
|
5300
5323
|
readonly dependencies?: string[] | undefined;
|
|
5301
5324
|
readonly externalId?: boolean | undefined;
|
|
@@ -5471,6 +5494,7 @@ declare const SysSecret: Omit<{
|
|
|
5471
5494
|
readonly name?: string | undefined;
|
|
5472
5495
|
readonly precision?: number | undefined;
|
|
5473
5496
|
readonly required?: boolean | undefined;
|
|
5497
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5474
5498
|
readonly multiple?: boolean | undefined;
|
|
5475
5499
|
readonly dependencies?: string[] | undefined;
|
|
5476
5500
|
readonly externalId?: boolean | undefined;
|
|
@@ -5677,7 +5701,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5677
5701
|
abstract: boolean;
|
|
5678
5702
|
datasource: string;
|
|
5679
5703
|
fields: Record<string, {
|
|
5680
|
-
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
5704
|
+
type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
5681
5705
|
required: boolean;
|
|
5682
5706
|
searchable: boolean;
|
|
5683
5707
|
multiple: boolean;
|
|
@@ -5751,6 +5775,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5751
5775
|
generatedBy?: string | undefined;
|
|
5752
5776
|
} | undefined;
|
|
5753
5777
|
} | undefined;
|
|
5778
|
+
returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5754
5779
|
summaryOperations?: {
|
|
5755
5780
|
object: string;
|
|
5756
5781
|
field: string;
|
|
@@ -6374,7 +6399,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6374
6399
|
field?: string | undefined;
|
|
6375
6400
|
objectOverride?: string | undefined;
|
|
6376
6401
|
label?: string | undefined;
|
|
6377
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
6402
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "user" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
6378
6403
|
options?: {
|
|
6379
6404
|
label: string;
|
|
6380
6405
|
value: string;
|
|
@@ -6491,6 +6516,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6491
6516
|
readonly name?: string | undefined;
|
|
6492
6517
|
readonly precision?: number | undefined;
|
|
6493
6518
|
readonly required?: boolean | undefined;
|
|
6519
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6494
6520
|
readonly multiple?: boolean | undefined;
|
|
6495
6521
|
readonly dependencies?: string[] | undefined;
|
|
6496
6522
|
readonly externalId?: boolean | undefined;
|
|
@@ -6666,6 +6692,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6666
6692
|
readonly name?: string | undefined;
|
|
6667
6693
|
readonly precision?: number | undefined;
|
|
6668
6694
|
readonly required?: boolean | undefined;
|
|
6695
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6669
6696
|
readonly multiple?: boolean | undefined;
|
|
6670
6697
|
readonly dependencies?: string[] | undefined;
|
|
6671
6698
|
readonly externalId?: boolean | undefined;
|
|
@@ -6841,6 +6868,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6841
6868
|
readonly name?: string | undefined;
|
|
6842
6869
|
readonly precision?: number | undefined;
|
|
6843
6870
|
readonly required?: boolean | undefined;
|
|
6871
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
6844
6872
|
readonly multiple?: boolean | undefined;
|
|
6845
6873
|
readonly dependencies?: string[] | undefined;
|
|
6846
6874
|
readonly externalId?: boolean | undefined;
|
|
@@ -7016,6 +7044,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7016
7044
|
readonly name?: string | undefined;
|
|
7017
7045
|
readonly precision?: number | undefined;
|
|
7018
7046
|
readonly required?: boolean | undefined;
|
|
7047
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7019
7048
|
readonly multiple?: boolean | undefined;
|
|
7020
7049
|
readonly dependencies?: string[] | undefined;
|
|
7021
7050
|
readonly externalId?: boolean | undefined;
|
|
@@ -7191,6 +7220,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7191
7220
|
readonly name?: string | undefined;
|
|
7192
7221
|
readonly precision?: number | undefined;
|
|
7193
7222
|
readonly required?: boolean | undefined;
|
|
7223
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7194
7224
|
readonly multiple?: boolean | undefined;
|
|
7195
7225
|
readonly dependencies?: string[] | undefined;
|
|
7196
7226
|
readonly externalId?: boolean | undefined;
|
|
@@ -7366,6 +7396,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7366
7396
|
readonly name?: string | undefined;
|
|
7367
7397
|
readonly precision?: number | undefined;
|
|
7368
7398
|
readonly required?: boolean | undefined;
|
|
7399
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7369
7400
|
readonly multiple?: boolean | undefined;
|
|
7370
7401
|
readonly dependencies?: string[] | undefined;
|
|
7371
7402
|
readonly externalId?: boolean | undefined;
|
|
@@ -7541,6 +7572,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7541
7572
|
readonly name?: string | undefined;
|
|
7542
7573
|
readonly precision?: number | undefined;
|
|
7543
7574
|
readonly required?: boolean | undefined;
|
|
7575
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7544
7576
|
readonly multiple?: boolean | undefined;
|
|
7545
7577
|
readonly dependencies?: string[] | undefined;
|
|
7546
7578
|
readonly externalId?: boolean | undefined;
|
|
@@ -7721,6 +7753,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7721
7753
|
readonly name?: string | undefined;
|
|
7722
7754
|
readonly precision?: number | undefined;
|
|
7723
7755
|
readonly required?: boolean | undefined;
|
|
7756
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7724
7757
|
readonly multiple?: boolean | undefined;
|
|
7725
7758
|
readonly dependencies?: string[] | undefined;
|
|
7726
7759
|
readonly externalId?: boolean | undefined;
|
|
@@ -7897,6 +7930,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7897
7930
|
readonly name?: string | undefined;
|
|
7898
7931
|
readonly precision?: number | undefined;
|
|
7899
7932
|
readonly required?: boolean | undefined;
|
|
7933
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
7900
7934
|
readonly multiple?: boolean | undefined;
|
|
7901
7935
|
readonly dependencies?: string[] | undefined;
|
|
7902
7936
|
readonly externalId?: boolean | undefined;
|
|
@@ -8078,6 +8112,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8078
8112
|
readonly name?: string | undefined;
|
|
8079
8113
|
readonly precision?: number | undefined;
|
|
8080
8114
|
readonly required?: boolean | undefined;
|
|
8115
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8081
8116
|
readonly multiple?: boolean | undefined;
|
|
8082
8117
|
readonly dependencies?: string[] | undefined;
|
|
8083
8118
|
readonly externalId?: boolean | undefined;
|
|
@@ -8254,6 +8289,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8254
8289
|
readonly name?: string | undefined;
|
|
8255
8290
|
readonly precision?: number | undefined;
|
|
8256
8291
|
readonly required?: boolean | undefined;
|
|
8292
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8257
8293
|
readonly multiple?: boolean | undefined;
|
|
8258
8294
|
readonly dependencies?: string[] | undefined;
|
|
8259
8295
|
readonly externalId?: boolean | undefined;
|
|
@@ -8430,6 +8466,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8430
8466
|
readonly name?: string | undefined;
|
|
8431
8467
|
readonly precision?: number | undefined;
|
|
8432
8468
|
readonly required?: boolean | undefined;
|
|
8469
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8433
8470
|
readonly multiple?: boolean | undefined;
|
|
8434
8471
|
readonly dependencies?: string[] | undefined;
|
|
8435
8472
|
readonly externalId?: boolean | undefined;
|
|
@@ -8606,6 +8643,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8606
8643
|
readonly name?: string | undefined;
|
|
8607
8644
|
readonly precision?: number | undefined;
|
|
8608
8645
|
readonly required?: boolean | undefined;
|
|
8646
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
8609
8647
|
readonly multiple?: boolean | undefined;
|
|
8610
8648
|
readonly dependencies?: string[] | undefined;
|
|
8611
8649
|
readonly externalId?: boolean | undefined;
|