@objectstack/platform-objects 10.2.0 → 11.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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;
@@ -244,6 +245,7 @@ declare const SysSetting: Omit<{
244
245
  generatedBy?: string | undefined;
245
246
  } | undefined;
246
247
  } | undefined;
248
+ requiredPermissions?: string[] | undefined;
247
249
  system?: boolean | undefined;
248
250
  inlineHelpText?: string | undefined;
249
251
  caseSensitive?: boolean | undefined;
@@ -319,6 +321,10 @@ declare const SysSetting: Omit<{
319
321
  tenantField: string;
320
322
  crossTenantAccess: boolean;
321
323
  } | undefined;
324
+ access?: {
325
+ default: "public" | "private";
326
+ } | undefined;
327
+ requiredPermissions?: string[] | undefined;
322
328
  softDelete?: {
323
329
  enabled: boolean;
324
330
  field: string;
@@ -685,7 +691,7 @@ declare const SysSetting: Omit<{
685
691
  clone: boolean;
686
692
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
687
693
  } | undefined;
688
- sharingModel?: "full" | "read" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
694
+ sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
689
695
  publicSharing?: {
690
696
  enabled: boolean;
691
697
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -728,7 +734,7 @@ declare const SysSetting: Omit<{
728
734
  field?: string | undefined;
729
735
  objectOverride?: string | undefined;
730
736
  label?: string | undefined;
731
- type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "secret" | "email" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
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;
732
738
  options?: {
733
739
  label: string;
734
740
  value: string;
@@ -772,6 +778,7 @@ declare const SysSetting: Omit<{
772
778
  generatedBy?: string | undefined;
773
779
  } | undefined;
774
780
  } | undefined;
781
+ requiredPermissions?: string[] | undefined;
775
782
  shortcut?: string | undefined;
776
783
  bulkEnabled?: boolean | undefined;
777
784
  ai?: {
@@ -930,10 +937,12 @@ declare const SysSetting: Omit<{
930
937
  readonly name?: string | undefined;
931
938
  readonly precision?: number | undefined;
932
939
  readonly required?: boolean | undefined;
940
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
933
941
  readonly multiple?: boolean | undefined;
934
942
  readonly dependencies?: string[] | undefined;
935
943
  readonly externalId?: boolean | undefined;
936
944
  readonly defaultValue?: unknown;
945
+ readonly requiredPermissions?: string[] | undefined;
937
946
  readonly group?: string | undefined;
938
947
  readonly hidden?: boolean | undefined;
939
948
  readonly system?: boolean | undefined;
@@ -1104,10 +1113,12 @@ declare const SysSetting: Omit<{
1104
1113
  readonly name?: string | undefined;
1105
1114
  readonly precision?: number | undefined;
1106
1115
  readonly required?: boolean | undefined;
1116
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1107
1117
  readonly multiple?: boolean | undefined;
1108
1118
  readonly dependencies?: string[] | undefined;
1109
1119
  readonly externalId?: boolean | undefined;
1110
1120
  readonly defaultValue?: unknown;
1121
+ readonly requiredPermissions?: string[] | undefined;
1111
1122
  readonly group?: string | undefined;
1112
1123
  readonly hidden?: boolean | undefined;
1113
1124
  readonly system?: boolean | undefined;
@@ -1278,10 +1289,12 @@ declare const SysSetting: Omit<{
1278
1289
  readonly name?: string | undefined;
1279
1290
  readonly precision?: number | undefined;
1280
1291
  readonly required?: boolean | undefined;
1292
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1281
1293
  readonly multiple?: boolean | undefined;
1282
1294
  readonly dependencies?: string[] | undefined;
1283
1295
  readonly externalId?: boolean | undefined;
1284
1296
  readonly defaultValue?: unknown;
1297
+ readonly requiredPermissions?: string[] | undefined;
1285
1298
  readonly group?: string | undefined;
1286
1299
  readonly hidden?: boolean | undefined;
1287
1300
  readonly system?: boolean | undefined;
@@ -1452,10 +1465,12 @@ declare const SysSetting: Omit<{
1452
1465
  readonly name?: string | undefined;
1453
1466
  readonly precision?: number | undefined;
1454
1467
  readonly required?: boolean | undefined;
1468
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1455
1469
  readonly multiple?: boolean | undefined;
1456
1470
  readonly dependencies?: string[] | undefined;
1457
1471
  readonly externalId?: boolean | undefined;
1458
1472
  readonly defaultValue?: unknown;
1473
+ readonly requiredPermissions?: string[] | undefined;
1459
1474
  readonly group?: string | undefined;
1460
1475
  readonly hidden?: boolean | undefined;
1461
1476
  readonly system?: boolean | undefined;
@@ -1626,10 +1641,12 @@ declare const SysSetting: Omit<{
1626
1641
  readonly name?: string | undefined;
1627
1642
  readonly precision?: number | undefined;
1628
1643
  readonly required?: boolean | undefined;
1644
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1629
1645
  readonly multiple?: boolean | undefined;
1630
1646
  readonly dependencies?: string[] | undefined;
1631
1647
  readonly externalId?: boolean | undefined;
1632
1648
  readonly defaultValue?: unknown;
1649
+ readonly requiredPermissions?: string[] | undefined;
1633
1650
  readonly group?: string | undefined;
1634
1651
  readonly hidden?: boolean | undefined;
1635
1652
  readonly system?: boolean | undefined;
@@ -1800,10 +1817,12 @@ declare const SysSetting: Omit<{
1800
1817
  readonly name?: string | undefined;
1801
1818
  readonly precision?: number | undefined;
1802
1819
  readonly required?: boolean | undefined;
1820
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1803
1821
  readonly multiple?: boolean | undefined;
1804
1822
  readonly dependencies?: string[] | undefined;
1805
1823
  readonly externalId?: boolean | undefined;
1806
1824
  readonly defaultValue?: unknown;
1825
+ readonly requiredPermissions?: string[] | undefined;
1807
1826
  readonly group?: string | undefined;
1808
1827
  readonly hidden?: boolean | undefined;
1809
1828
  readonly system?: boolean | undefined;
@@ -1974,10 +1993,12 @@ declare const SysSetting: Omit<{
1974
1993
  readonly name?: string | undefined;
1975
1994
  readonly precision?: number | undefined;
1976
1995
  readonly required?: boolean | undefined;
1996
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
1977
1997
  readonly multiple?: boolean | undefined;
1978
1998
  readonly dependencies?: string[] | undefined;
1979
1999
  readonly externalId?: boolean | undefined;
1980
2000
  readonly defaultValue?: unknown;
2001
+ readonly requiredPermissions?: string[] | undefined;
1981
2002
  readonly group?: string | undefined;
1982
2003
  readonly hidden?: boolean | undefined;
1983
2004
  readonly system?: boolean | undefined;
@@ -2148,10 +2169,12 @@ declare const SysSetting: Omit<{
2148
2169
  readonly name?: string | undefined;
2149
2170
  readonly precision?: number | undefined;
2150
2171
  readonly required?: boolean | undefined;
2172
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2151
2173
  readonly multiple?: boolean | undefined;
2152
2174
  readonly dependencies?: string[] | undefined;
2153
2175
  readonly externalId?: boolean | undefined;
2154
2176
  readonly defaultValue?: unknown;
2177
+ readonly requiredPermissions?: string[] | undefined;
2155
2178
  readonly group?: string | undefined;
2156
2179
  readonly hidden?: boolean | undefined;
2157
2180
  readonly system?: boolean | undefined;
@@ -2322,10 +2345,12 @@ declare const SysSetting: Omit<{
2322
2345
  readonly name?: string | undefined;
2323
2346
  readonly precision?: number | undefined;
2324
2347
  readonly required?: boolean | undefined;
2348
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2325
2349
  readonly multiple?: boolean | undefined;
2326
2350
  readonly dependencies?: string[] | undefined;
2327
2351
  readonly externalId?: boolean | undefined;
2328
2352
  readonly defaultValue?: unknown;
2353
+ readonly requiredPermissions?: string[] | undefined;
2329
2354
  readonly group?: string | undefined;
2330
2355
  readonly hidden?: boolean | undefined;
2331
2356
  readonly system?: boolean | undefined;
@@ -2496,10 +2521,12 @@ declare const SysSetting: Omit<{
2496
2521
  readonly name?: string | undefined;
2497
2522
  readonly precision?: number | undefined;
2498
2523
  readonly required?: boolean | undefined;
2524
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2499
2525
  readonly multiple?: boolean | undefined;
2500
2526
  readonly dependencies?: string[] | undefined;
2501
2527
  readonly externalId?: boolean | undefined;
2502
2528
  readonly defaultValue?: unknown;
2529
+ readonly requiredPermissions?: string[] | undefined;
2503
2530
  readonly group?: string | undefined;
2504
2531
  readonly hidden?: boolean | undefined;
2505
2532
  readonly system?: boolean | undefined;
@@ -2670,10 +2697,12 @@ declare const SysSetting: Omit<{
2670
2697
  readonly name?: string | undefined;
2671
2698
  readonly precision?: number | undefined;
2672
2699
  readonly required?: boolean | undefined;
2700
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2673
2701
  readonly multiple?: boolean | undefined;
2674
2702
  readonly dependencies?: string[] | undefined;
2675
2703
  readonly externalId?: boolean | undefined;
2676
2704
  readonly defaultValue?: unknown;
2705
+ readonly requiredPermissions?: string[] | undefined;
2677
2706
  readonly group?: string | undefined;
2678
2707
  readonly hidden?: boolean | undefined;
2679
2708
  readonly system?: boolean | undefined;
@@ -2844,10 +2873,12 @@ declare const SysSetting: Omit<{
2844
2873
  readonly name?: string | undefined;
2845
2874
  readonly precision?: number | undefined;
2846
2875
  readonly required?: boolean | undefined;
2876
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
2847
2877
  readonly multiple?: boolean | undefined;
2848
2878
  readonly dependencies?: string[] | undefined;
2849
2879
  readonly externalId?: boolean | undefined;
2850
2880
  readonly defaultValue?: unknown;
2881
+ readonly requiredPermissions?: string[] | undefined;
2851
2882
  readonly group?: string | undefined;
2852
2883
  readonly hidden?: boolean | undefined;
2853
2884
  readonly system?: boolean | undefined;
@@ -3018,10 +3049,12 @@ declare const SysSetting: Omit<{
3018
3049
  readonly name?: string | undefined;
3019
3050
  readonly precision?: number | undefined;
3020
3051
  readonly required?: boolean | undefined;
3052
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
3021
3053
  readonly multiple?: boolean | undefined;
3022
3054
  readonly dependencies?: string[] | undefined;
3023
3055
  readonly externalId?: boolean | undefined;
3024
3056
  readonly defaultValue?: unknown;
3057
+ readonly requiredPermissions?: string[] | undefined;
3025
3058
  readonly group?: string | undefined;
3026
3059
  readonly hidden?: boolean | undefined;
3027
3060
  readonly system?: boolean | undefined;
@@ -3233,7 +3266,7 @@ declare const SysSecret: Omit<{
3233
3266
  abstract: boolean;
3234
3267
  datasource: string;
3235
3268
  fields: Record<string, {
3236
- 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";
3237
3270
  required: boolean;
3238
3271
  searchable: boolean;
3239
3272
  multiple: boolean;
@@ -3307,6 +3340,7 @@ declare const SysSecret: Omit<{
3307
3340
  generatedBy?: string | undefined;
3308
3341
  } | undefined;
3309
3342
  } | undefined;
3343
+ returnType?: "number" | "boolean" | "date" | "text" | undefined;
3310
3344
  summaryOperations?: {
3311
3345
  object: string;
3312
3346
  field: string;
@@ -3441,6 +3475,7 @@ declare const SysSecret: Omit<{
3441
3475
  generatedBy?: string | undefined;
3442
3476
  } | undefined;
3443
3477
  } | undefined;
3478
+ requiredPermissions?: string[] | undefined;
3444
3479
  system?: boolean | undefined;
3445
3480
  inlineHelpText?: string | undefined;
3446
3481
  caseSensitive?: boolean | undefined;
@@ -3516,6 +3551,10 @@ declare const SysSecret: Omit<{
3516
3551
  tenantField: string;
3517
3552
  crossTenantAccess: boolean;
3518
3553
  } | undefined;
3554
+ access?: {
3555
+ default: "public" | "private";
3556
+ } | undefined;
3557
+ requiredPermissions?: string[] | undefined;
3519
3558
  softDelete?: {
3520
3559
  enabled: boolean;
3521
3560
  field: string;
@@ -3882,7 +3921,7 @@ declare const SysSecret: Omit<{
3882
3921
  clone: boolean;
3883
3922
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
3884
3923
  } | undefined;
3885
- sharingModel?: "full" | "read" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
3924
+ sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
3886
3925
  publicSharing?: {
3887
3926
  enabled: boolean;
3888
3927
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -3925,7 +3964,7 @@ declare const SysSecret: Omit<{
3925
3964
  field?: string | undefined;
3926
3965
  objectOverride?: string | undefined;
3927
3966
  label?: string | undefined;
3928
- 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;
3929
3968
  options?: {
3930
3969
  label: string;
3931
3970
  value: string;
@@ -3969,6 +4008,7 @@ declare const SysSecret: Omit<{
3969
4008
  generatedBy?: string | undefined;
3970
4009
  } | undefined;
3971
4010
  } | undefined;
4011
+ requiredPermissions?: string[] | undefined;
3972
4012
  shortcut?: string | undefined;
3973
4013
  bulkEnabled?: boolean | undefined;
3974
4014
  ai?: {
@@ -4037,10 +4077,12 @@ declare const SysSecret: Omit<{
4037
4077
  readonly name?: string | undefined;
4038
4078
  readonly precision?: number | undefined;
4039
4079
  readonly required?: boolean | undefined;
4080
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
4040
4081
  readonly multiple?: boolean | undefined;
4041
4082
  readonly dependencies?: string[] | undefined;
4042
4083
  readonly externalId?: boolean | undefined;
4043
4084
  readonly defaultValue?: unknown;
4085
+ readonly requiredPermissions?: string[] | undefined;
4044
4086
  readonly group?: string | undefined;
4045
4087
  readonly hidden?: boolean | undefined;
4046
4088
  readonly system?: boolean | undefined;
@@ -4211,10 +4253,12 @@ declare const SysSecret: Omit<{
4211
4253
  readonly name?: string | undefined;
4212
4254
  readonly precision?: number | undefined;
4213
4255
  readonly required?: boolean | undefined;
4256
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
4214
4257
  readonly multiple?: boolean | undefined;
4215
4258
  readonly dependencies?: string[] | undefined;
4216
4259
  readonly externalId?: boolean | undefined;
4217
4260
  readonly defaultValue?: unknown;
4261
+ readonly requiredPermissions?: string[] | undefined;
4218
4262
  readonly group?: string | undefined;
4219
4263
  readonly hidden?: boolean | undefined;
4220
4264
  readonly system?: boolean | undefined;
@@ -4385,10 +4429,12 @@ declare const SysSecret: Omit<{
4385
4429
  readonly name?: string | undefined;
4386
4430
  readonly precision?: number | undefined;
4387
4431
  readonly required?: boolean | undefined;
4432
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
4388
4433
  readonly multiple?: boolean | undefined;
4389
4434
  readonly dependencies?: string[] | undefined;
4390
4435
  readonly externalId?: boolean | undefined;
4391
4436
  readonly defaultValue?: unknown;
4437
+ readonly requiredPermissions?: string[] | undefined;
4392
4438
  readonly group?: string | undefined;
4393
4439
  readonly hidden?: boolean | undefined;
4394
4440
  readonly system?: boolean | undefined;
@@ -4565,10 +4611,12 @@ declare const SysSecret: Omit<{
4565
4611
  readonly name?: string | undefined;
4566
4612
  readonly precision?: number | undefined;
4567
4613
  readonly required?: boolean | undefined;
4614
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
4568
4615
  readonly multiple?: boolean | undefined;
4569
4616
  readonly dependencies?: string[] | undefined;
4570
4617
  readonly externalId?: boolean | undefined;
4571
4618
  readonly defaultValue?: unknown;
4619
+ readonly requiredPermissions?: string[] | undefined;
4572
4620
  readonly group?: string | undefined;
4573
4621
  readonly hidden?: boolean | undefined;
4574
4622
  readonly system?: boolean | undefined;
@@ -4739,10 +4787,12 @@ declare const SysSecret: Omit<{
4739
4787
  readonly name?: string | undefined;
4740
4788
  readonly precision?: number | undefined;
4741
4789
  readonly required?: boolean | undefined;
4790
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
4742
4791
  readonly multiple?: boolean | undefined;
4743
4792
  readonly dependencies?: string[] | undefined;
4744
4793
  readonly externalId?: boolean | undefined;
4745
4794
  readonly defaultValue?: unknown;
4795
+ readonly requiredPermissions?: string[] | undefined;
4746
4796
  readonly group?: string | undefined;
4747
4797
  readonly hidden?: boolean | undefined;
4748
4798
  readonly system?: boolean | undefined;
@@ -4914,10 +4964,12 @@ declare const SysSecret: Omit<{
4914
4964
  readonly name?: string | undefined;
4915
4965
  readonly precision?: number | undefined;
4916
4966
  readonly required?: boolean | undefined;
4967
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
4917
4968
  readonly multiple?: boolean | undefined;
4918
4969
  readonly dependencies?: string[] | undefined;
4919
4970
  readonly externalId?: boolean | undefined;
4920
4971
  readonly defaultValue?: unknown;
4972
+ readonly requiredPermissions?: string[] | undefined;
4921
4973
  readonly group?: string | undefined;
4922
4974
  readonly hidden?: boolean | undefined;
4923
4975
  readonly system?: boolean | undefined;
@@ -5089,10 +5141,12 @@ declare const SysSecret: Omit<{
5089
5141
  readonly name?: string | undefined;
5090
5142
  readonly precision?: number | undefined;
5091
5143
  readonly required?: boolean | undefined;
5144
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
5092
5145
  readonly multiple?: boolean | undefined;
5093
5146
  readonly dependencies?: string[] | undefined;
5094
5147
  readonly externalId?: boolean | undefined;
5095
5148
  readonly defaultValue?: unknown;
5149
+ readonly requiredPermissions?: string[] | undefined;
5096
5150
  readonly group?: string | undefined;
5097
5151
  readonly hidden?: boolean | undefined;
5098
5152
  readonly system?: boolean | undefined;
@@ -5264,10 +5318,12 @@ declare const SysSecret: Omit<{
5264
5318
  readonly name?: string | undefined;
5265
5319
  readonly precision?: number | undefined;
5266
5320
  readonly required?: boolean | undefined;
5321
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
5267
5322
  readonly multiple?: boolean | undefined;
5268
5323
  readonly dependencies?: string[] | undefined;
5269
5324
  readonly externalId?: boolean | undefined;
5270
5325
  readonly defaultValue?: unknown;
5326
+ readonly requiredPermissions?: string[] | undefined;
5271
5327
  readonly group?: string | undefined;
5272
5328
  readonly hidden?: boolean | undefined;
5273
5329
  readonly system?: boolean | undefined;
@@ -5438,10 +5494,12 @@ declare const SysSecret: Omit<{
5438
5494
  readonly name?: string | undefined;
5439
5495
  readonly precision?: number | undefined;
5440
5496
  readonly required?: boolean | undefined;
5497
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
5441
5498
  readonly multiple?: boolean | undefined;
5442
5499
  readonly dependencies?: string[] | undefined;
5443
5500
  readonly externalId?: boolean | undefined;
5444
5501
  readonly defaultValue?: unknown;
5502
+ readonly requiredPermissions?: string[] | undefined;
5445
5503
  readonly group?: string | undefined;
5446
5504
  readonly hidden?: boolean | undefined;
5447
5505
  readonly system?: boolean | undefined;
@@ -5643,7 +5701,7 @@ declare const SysSettingAudit: Omit<{
5643
5701
  abstract: boolean;
5644
5702
  datasource: string;
5645
5703
  fields: Record<string, {
5646
- 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";
5647
5705
  required: boolean;
5648
5706
  searchable: boolean;
5649
5707
  multiple: boolean;
@@ -5717,6 +5775,7 @@ declare const SysSettingAudit: Omit<{
5717
5775
  generatedBy?: string | undefined;
5718
5776
  } | undefined;
5719
5777
  } | undefined;
5778
+ returnType?: "number" | "boolean" | "date" | "text" | undefined;
5720
5779
  summaryOperations?: {
5721
5780
  object: string;
5722
5781
  field: string;
@@ -5851,6 +5910,7 @@ declare const SysSettingAudit: Omit<{
5851
5910
  generatedBy?: string | undefined;
5852
5911
  } | undefined;
5853
5912
  } | undefined;
5913
+ requiredPermissions?: string[] | undefined;
5854
5914
  system?: boolean | undefined;
5855
5915
  inlineHelpText?: string | undefined;
5856
5916
  caseSensitive?: boolean | undefined;
@@ -5926,6 +5986,10 @@ declare const SysSettingAudit: Omit<{
5926
5986
  tenantField: string;
5927
5987
  crossTenantAccess: boolean;
5928
5988
  } | undefined;
5989
+ access?: {
5990
+ default: "public" | "private";
5991
+ } | undefined;
5992
+ requiredPermissions?: string[] | undefined;
5929
5993
  softDelete?: {
5930
5994
  enabled: boolean;
5931
5995
  field: string;
@@ -6292,7 +6356,7 @@ declare const SysSettingAudit: Omit<{
6292
6356
  clone: boolean;
6293
6357
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
6294
6358
  } | undefined;
6295
- sharingModel?: "full" | "read" | "private" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
6359
+ sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
6296
6360
  publicSharing?: {
6297
6361
  enabled: boolean;
6298
6362
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -6335,7 +6399,7 @@ declare const SysSettingAudit: Omit<{
6335
6399
  field?: string | undefined;
6336
6400
  objectOverride?: string | undefined;
6337
6401
  label?: string | undefined;
6338
- 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;
6339
6403
  options?: {
6340
6404
  label: string;
6341
6405
  value: string;
@@ -6379,6 +6443,7 @@ declare const SysSettingAudit: Omit<{
6379
6443
  generatedBy?: string | undefined;
6380
6444
  } | undefined;
6381
6445
  } | undefined;
6446
+ requiredPermissions?: string[] | undefined;
6382
6447
  shortcut?: string | undefined;
6383
6448
  bulkEnabled?: boolean | undefined;
6384
6449
  ai?: {
@@ -6451,10 +6516,12 @@ declare const SysSettingAudit: Omit<{
6451
6516
  readonly name?: string | undefined;
6452
6517
  readonly precision?: number | undefined;
6453
6518
  readonly required?: boolean | undefined;
6519
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
6454
6520
  readonly multiple?: boolean | undefined;
6455
6521
  readonly dependencies?: string[] | undefined;
6456
6522
  readonly externalId?: boolean | undefined;
6457
6523
  readonly defaultValue?: unknown;
6524
+ readonly requiredPermissions?: string[] | undefined;
6458
6525
  readonly group?: string | undefined;
6459
6526
  readonly hidden?: boolean | undefined;
6460
6527
  readonly system?: boolean | undefined;
@@ -6625,10 +6692,12 @@ declare const SysSettingAudit: Omit<{
6625
6692
  readonly name?: string | undefined;
6626
6693
  readonly precision?: number | undefined;
6627
6694
  readonly required?: boolean | undefined;
6695
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
6628
6696
  readonly multiple?: boolean | undefined;
6629
6697
  readonly dependencies?: string[] | undefined;
6630
6698
  readonly externalId?: boolean | undefined;
6631
6699
  readonly defaultValue?: unknown;
6700
+ readonly requiredPermissions?: string[] | undefined;
6632
6701
  readonly group?: string | undefined;
6633
6702
  readonly hidden?: boolean | undefined;
6634
6703
  readonly system?: boolean | undefined;
@@ -6799,10 +6868,12 @@ declare const SysSettingAudit: Omit<{
6799
6868
  readonly name?: string | undefined;
6800
6869
  readonly precision?: number | undefined;
6801
6870
  readonly required?: boolean | undefined;
6871
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
6802
6872
  readonly multiple?: boolean | undefined;
6803
6873
  readonly dependencies?: string[] | undefined;
6804
6874
  readonly externalId?: boolean | undefined;
6805
6875
  readonly defaultValue?: unknown;
6876
+ readonly requiredPermissions?: string[] | undefined;
6806
6877
  readonly group?: string | undefined;
6807
6878
  readonly hidden?: boolean | undefined;
6808
6879
  readonly system?: boolean | undefined;
@@ -6973,10 +7044,12 @@ declare const SysSettingAudit: Omit<{
6973
7044
  readonly name?: string | undefined;
6974
7045
  readonly precision?: number | undefined;
6975
7046
  readonly required?: boolean | undefined;
7047
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
6976
7048
  readonly multiple?: boolean | undefined;
6977
7049
  readonly dependencies?: string[] | undefined;
6978
7050
  readonly externalId?: boolean | undefined;
6979
7051
  readonly defaultValue?: unknown;
7052
+ readonly requiredPermissions?: string[] | undefined;
6980
7053
  readonly group?: string | undefined;
6981
7054
  readonly hidden?: boolean | undefined;
6982
7055
  readonly system?: boolean | undefined;
@@ -7147,10 +7220,12 @@ declare const SysSettingAudit: Omit<{
7147
7220
  readonly name?: string | undefined;
7148
7221
  readonly precision?: number | undefined;
7149
7222
  readonly required?: boolean | undefined;
7223
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
7150
7224
  readonly multiple?: boolean | undefined;
7151
7225
  readonly dependencies?: string[] | undefined;
7152
7226
  readonly externalId?: boolean | undefined;
7153
7227
  readonly defaultValue?: unknown;
7228
+ readonly requiredPermissions?: string[] | undefined;
7154
7229
  readonly group?: string | undefined;
7155
7230
  readonly hidden?: boolean | undefined;
7156
7231
  readonly system?: boolean | undefined;
@@ -7321,10 +7396,12 @@ declare const SysSettingAudit: Omit<{
7321
7396
  readonly name?: string | undefined;
7322
7397
  readonly precision?: number | undefined;
7323
7398
  readonly required?: boolean | undefined;
7399
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
7324
7400
  readonly multiple?: boolean | undefined;
7325
7401
  readonly dependencies?: string[] | undefined;
7326
7402
  readonly externalId?: boolean | undefined;
7327
7403
  readonly defaultValue?: unknown;
7404
+ readonly requiredPermissions?: string[] | undefined;
7328
7405
  readonly group?: string | undefined;
7329
7406
  readonly hidden?: boolean | undefined;
7330
7407
  readonly system?: boolean | undefined;
@@ -7495,10 +7572,12 @@ declare const SysSettingAudit: Omit<{
7495
7572
  readonly name?: string | undefined;
7496
7573
  readonly precision?: number | undefined;
7497
7574
  readonly required?: boolean | undefined;
7575
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
7498
7576
  readonly multiple?: boolean | undefined;
7499
7577
  readonly dependencies?: string[] | undefined;
7500
7578
  readonly externalId?: boolean | undefined;
7501
7579
  readonly defaultValue?: unknown;
7580
+ readonly requiredPermissions?: string[] | undefined;
7502
7581
  readonly group?: string | undefined;
7503
7582
  readonly hidden?: boolean | undefined;
7504
7583
  readonly system?: boolean | undefined;
@@ -7674,10 +7753,12 @@ declare const SysSettingAudit: Omit<{
7674
7753
  readonly name?: string | undefined;
7675
7754
  readonly precision?: number | undefined;
7676
7755
  readonly required?: boolean | undefined;
7756
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
7677
7757
  readonly multiple?: boolean | undefined;
7678
7758
  readonly dependencies?: string[] | undefined;
7679
7759
  readonly externalId?: boolean | undefined;
7680
7760
  readonly defaultValue?: unknown;
7761
+ readonly requiredPermissions?: string[] | undefined;
7681
7762
  readonly group?: string | undefined;
7682
7763
  readonly hidden?: boolean | undefined;
7683
7764
  readonly system?: boolean | undefined;
@@ -7849,10 +7930,12 @@ declare const SysSettingAudit: Omit<{
7849
7930
  readonly name?: string | undefined;
7850
7931
  readonly precision?: number | undefined;
7851
7932
  readonly required?: boolean | undefined;
7933
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
7852
7934
  readonly multiple?: boolean | undefined;
7853
7935
  readonly dependencies?: string[] | undefined;
7854
7936
  readonly externalId?: boolean | undefined;
7855
7937
  readonly defaultValue?: unknown;
7938
+ readonly requiredPermissions?: string[] | undefined;
7856
7939
  readonly group?: string | undefined;
7857
7940
  readonly hidden?: boolean | undefined;
7858
7941
  readonly system?: boolean | undefined;
@@ -8029,10 +8112,12 @@ declare const SysSettingAudit: Omit<{
8029
8112
  readonly name?: string | undefined;
8030
8113
  readonly precision?: number | undefined;
8031
8114
  readonly required?: boolean | undefined;
8115
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
8032
8116
  readonly multiple?: boolean | undefined;
8033
8117
  readonly dependencies?: string[] | undefined;
8034
8118
  readonly externalId?: boolean | undefined;
8035
8119
  readonly defaultValue?: unknown;
8120
+ readonly requiredPermissions?: string[] | undefined;
8036
8121
  readonly group?: string | undefined;
8037
8122
  readonly hidden?: boolean | undefined;
8038
8123
  readonly system?: boolean | undefined;
@@ -8204,10 +8289,12 @@ declare const SysSettingAudit: Omit<{
8204
8289
  readonly name?: string | undefined;
8205
8290
  readonly precision?: number | undefined;
8206
8291
  readonly required?: boolean | undefined;
8292
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
8207
8293
  readonly multiple?: boolean | undefined;
8208
8294
  readonly dependencies?: string[] | undefined;
8209
8295
  readonly externalId?: boolean | undefined;
8210
8296
  readonly defaultValue?: unknown;
8297
+ readonly requiredPermissions?: string[] | undefined;
8211
8298
  readonly group?: string | undefined;
8212
8299
  readonly hidden?: boolean | undefined;
8213
8300
  readonly system?: boolean | undefined;
@@ -8379,10 +8466,12 @@ declare const SysSettingAudit: Omit<{
8379
8466
  readonly name?: string | undefined;
8380
8467
  readonly precision?: number | undefined;
8381
8468
  readonly required?: boolean | undefined;
8469
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
8382
8470
  readonly multiple?: boolean | undefined;
8383
8471
  readonly dependencies?: string[] | undefined;
8384
8472
  readonly externalId?: boolean | undefined;
8385
8473
  readonly defaultValue?: unknown;
8474
+ readonly requiredPermissions?: string[] | undefined;
8386
8475
  readonly group?: string | undefined;
8387
8476
  readonly hidden?: boolean | undefined;
8388
8477
  readonly system?: boolean | undefined;
@@ -8554,10 +8643,12 @@ declare const SysSettingAudit: Omit<{
8554
8643
  readonly name?: string | undefined;
8555
8644
  readonly precision?: number | undefined;
8556
8645
  readonly required?: boolean | undefined;
8646
+ readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
8557
8647
  readonly multiple?: boolean | undefined;
8558
8648
  readonly dependencies?: string[] | undefined;
8559
8649
  readonly externalId?: boolean | undefined;
8560
8650
  readonly defaultValue?: unknown;
8651
+ readonly requiredPermissions?: string[] | undefined;
8561
8652
  readonly group?: string | undefined;
8562
8653
  readonly hidden?: boolean | undefined;
8563
8654
  readonly system?: boolean | undefined;