@objectstack/platform-objects 10.0.0 → 10.3.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/audit/index.d.mts +191 -9
- package/dist/audit/index.d.ts +191 -9
- package/dist/identity/index.d.mts +335 -20
- package/dist/identity/index.d.ts +335 -20
- package/dist/system/index.d.mts +56 -3
- package/dist/system/index.d.ts +56 -3
- package/package.json +3 -3
|
@@ -226,6 +226,7 @@ declare const SysUser: Omit<{
|
|
|
226
226
|
generatedBy?: string | undefined;
|
|
227
227
|
} | undefined;
|
|
228
228
|
} | undefined;
|
|
229
|
+
requiredPermissions?: string[] | undefined;
|
|
229
230
|
system?: boolean | undefined;
|
|
230
231
|
inlineHelpText?: string | undefined;
|
|
231
232
|
caseSensitive?: boolean | undefined;
|
|
@@ -301,6 +302,10 @@ declare const SysUser: Omit<{
|
|
|
301
302
|
tenantField: string;
|
|
302
303
|
crossTenantAccess: boolean;
|
|
303
304
|
} | undefined;
|
|
305
|
+
access?: {
|
|
306
|
+
default: "public" | "private";
|
|
307
|
+
} | undefined;
|
|
308
|
+
requiredPermissions?: string[] | undefined;
|
|
304
309
|
softDelete?: {
|
|
305
310
|
enabled: boolean;
|
|
306
311
|
field: string;
|
|
@@ -667,7 +672,7 @@ declare const SysUser: Omit<{
|
|
|
667
672
|
clone: boolean;
|
|
668
673
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
669
674
|
} | undefined;
|
|
670
|
-
sharingModel?: "full" | "
|
|
675
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
671
676
|
publicSharing?: {
|
|
672
677
|
enabled: boolean;
|
|
673
678
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -754,6 +759,7 @@ declare const SysUser: Omit<{
|
|
|
754
759
|
generatedBy?: string | undefined;
|
|
755
760
|
} | undefined;
|
|
756
761
|
} | undefined;
|
|
762
|
+
requiredPermissions?: string[] | undefined;
|
|
757
763
|
shortcut?: string | undefined;
|
|
758
764
|
bulkEnabled?: boolean | undefined;
|
|
759
765
|
ai?: {
|
|
@@ -1176,6 +1182,7 @@ declare const SysUser: Omit<{
|
|
|
1176
1182
|
readonly dependencies?: string[] | undefined;
|
|
1177
1183
|
readonly externalId?: boolean | undefined;
|
|
1178
1184
|
readonly defaultValue?: unknown;
|
|
1185
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1179
1186
|
readonly group?: string | undefined;
|
|
1180
1187
|
readonly hidden?: boolean | undefined;
|
|
1181
1188
|
readonly system?: boolean | undefined;
|
|
@@ -1350,6 +1357,7 @@ declare const SysUser: Omit<{
|
|
|
1350
1357
|
readonly dependencies?: string[] | undefined;
|
|
1351
1358
|
readonly externalId?: boolean | undefined;
|
|
1352
1359
|
readonly defaultValue?: unknown;
|
|
1360
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1353
1361
|
readonly group?: string | undefined;
|
|
1354
1362
|
readonly hidden?: boolean | undefined;
|
|
1355
1363
|
readonly system?: boolean | undefined;
|
|
@@ -1524,6 +1532,7 @@ declare const SysUser: Omit<{
|
|
|
1524
1532
|
readonly dependencies?: string[] | undefined;
|
|
1525
1533
|
readonly externalId?: boolean | undefined;
|
|
1526
1534
|
readonly defaultValue?: unknown;
|
|
1535
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1527
1536
|
readonly group?: string | undefined;
|
|
1528
1537
|
readonly hidden?: boolean | undefined;
|
|
1529
1538
|
readonly system?: boolean | undefined;
|
|
@@ -1698,6 +1707,7 @@ declare const SysUser: Omit<{
|
|
|
1698
1707
|
readonly dependencies?: string[] | undefined;
|
|
1699
1708
|
readonly externalId?: boolean | undefined;
|
|
1700
1709
|
readonly defaultValue?: unknown;
|
|
1710
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1701
1711
|
readonly group?: string | undefined;
|
|
1702
1712
|
readonly hidden?: boolean | undefined;
|
|
1703
1713
|
readonly system?: boolean | undefined;
|
|
@@ -1872,6 +1882,7 @@ declare const SysUser: Omit<{
|
|
|
1872
1882
|
readonly dependencies?: string[] | undefined;
|
|
1873
1883
|
readonly externalId?: boolean | undefined;
|
|
1874
1884
|
readonly defaultValue?: unknown;
|
|
1885
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1875
1886
|
readonly group?: string | undefined;
|
|
1876
1887
|
readonly hidden?: boolean | undefined;
|
|
1877
1888
|
readonly system?: boolean | undefined;
|
|
@@ -2046,6 +2057,7 @@ declare const SysUser: Omit<{
|
|
|
2046
2057
|
readonly dependencies?: string[] | undefined;
|
|
2047
2058
|
readonly externalId?: boolean | undefined;
|
|
2048
2059
|
readonly defaultValue?: unknown;
|
|
2060
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2049
2061
|
readonly group?: string | undefined;
|
|
2050
2062
|
readonly hidden?: boolean | undefined;
|
|
2051
2063
|
readonly system?: boolean | undefined;
|
|
@@ -2220,6 +2232,7 @@ declare const SysUser: Omit<{
|
|
|
2220
2232
|
readonly dependencies?: string[] | undefined;
|
|
2221
2233
|
readonly externalId?: boolean | undefined;
|
|
2222
2234
|
readonly defaultValue?: unknown;
|
|
2235
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2223
2236
|
readonly group?: string | undefined;
|
|
2224
2237
|
readonly hidden?: boolean | undefined;
|
|
2225
2238
|
readonly system?: boolean | undefined;
|
|
@@ -2394,6 +2407,7 @@ declare const SysUser: Omit<{
|
|
|
2394
2407
|
readonly dependencies?: string[] | undefined;
|
|
2395
2408
|
readonly externalId?: boolean | undefined;
|
|
2396
2409
|
readonly defaultValue?: unknown;
|
|
2410
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2397
2411
|
readonly group?: string | undefined;
|
|
2398
2412
|
readonly hidden?: boolean | undefined;
|
|
2399
2413
|
readonly system?: boolean | undefined;
|
|
@@ -2568,6 +2582,7 @@ declare const SysUser: Omit<{
|
|
|
2568
2582
|
readonly dependencies?: string[] | undefined;
|
|
2569
2583
|
readonly externalId?: boolean | undefined;
|
|
2570
2584
|
readonly defaultValue?: unknown;
|
|
2585
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2571
2586
|
readonly group?: string | undefined;
|
|
2572
2587
|
readonly hidden?: boolean | undefined;
|
|
2573
2588
|
readonly system?: boolean | undefined;
|
|
@@ -2742,6 +2757,7 @@ declare const SysUser: Omit<{
|
|
|
2742
2757
|
readonly dependencies?: string[] | undefined;
|
|
2743
2758
|
readonly externalId?: boolean | undefined;
|
|
2744
2759
|
readonly defaultValue?: unknown;
|
|
2760
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2745
2761
|
readonly group?: string | undefined;
|
|
2746
2762
|
readonly hidden?: boolean | undefined;
|
|
2747
2763
|
readonly system?: boolean | undefined;
|
|
@@ -2916,6 +2932,7 @@ declare const SysUser: Omit<{
|
|
|
2916
2932
|
readonly dependencies?: string[] | undefined;
|
|
2917
2933
|
readonly externalId?: boolean | undefined;
|
|
2918
2934
|
readonly defaultValue?: unknown;
|
|
2935
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2919
2936
|
readonly group?: string | undefined;
|
|
2920
2937
|
readonly hidden?: boolean | undefined;
|
|
2921
2938
|
readonly system?: boolean | undefined;
|
|
@@ -3090,6 +3107,7 @@ declare const SysUser: Omit<{
|
|
|
3090
3107
|
readonly dependencies?: string[] | undefined;
|
|
3091
3108
|
readonly externalId?: boolean | undefined;
|
|
3092
3109
|
readonly defaultValue?: unknown;
|
|
3110
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3093
3111
|
readonly group?: string | undefined;
|
|
3094
3112
|
readonly hidden?: boolean | undefined;
|
|
3095
3113
|
readonly system?: boolean | undefined;
|
|
@@ -3264,6 +3282,7 @@ declare const SysUser: Omit<{
|
|
|
3264
3282
|
readonly dependencies?: string[] | undefined;
|
|
3265
3283
|
readonly externalId?: boolean | undefined;
|
|
3266
3284
|
readonly defaultValue?: unknown;
|
|
3285
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3267
3286
|
readonly group?: string | undefined;
|
|
3268
3287
|
readonly hidden?: boolean | undefined;
|
|
3269
3288
|
readonly system?: boolean | undefined;
|
|
@@ -3438,6 +3457,7 @@ declare const SysUser: Omit<{
|
|
|
3438
3457
|
readonly dependencies?: string[] | undefined;
|
|
3439
3458
|
readonly externalId?: boolean | undefined;
|
|
3440
3459
|
readonly defaultValue?: unknown;
|
|
3460
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
3441
3461
|
readonly group?: string | undefined;
|
|
3442
3462
|
readonly hidden?: boolean | undefined;
|
|
3443
3463
|
readonly system?: boolean | undefined;
|
|
@@ -3839,6 +3859,7 @@ declare const SysSession: Omit<{
|
|
|
3839
3859
|
generatedBy?: string | undefined;
|
|
3840
3860
|
} | undefined;
|
|
3841
3861
|
} | undefined;
|
|
3862
|
+
requiredPermissions?: string[] | undefined;
|
|
3842
3863
|
system?: boolean | undefined;
|
|
3843
3864
|
inlineHelpText?: string | undefined;
|
|
3844
3865
|
caseSensitive?: boolean | undefined;
|
|
@@ -3914,6 +3935,10 @@ declare const SysSession: Omit<{
|
|
|
3914
3935
|
tenantField: string;
|
|
3915
3936
|
crossTenantAccess: boolean;
|
|
3916
3937
|
} | undefined;
|
|
3938
|
+
access?: {
|
|
3939
|
+
default: "public" | "private";
|
|
3940
|
+
} | undefined;
|
|
3941
|
+
requiredPermissions?: string[] | undefined;
|
|
3917
3942
|
softDelete?: {
|
|
3918
3943
|
enabled: boolean;
|
|
3919
3944
|
field: string;
|
|
@@ -4280,7 +4305,7 @@ declare const SysSession: Omit<{
|
|
|
4280
4305
|
clone: boolean;
|
|
4281
4306
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
4282
4307
|
} | undefined;
|
|
4283
|
-
sharingModel?: "full" | "
|
|
4308
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
4284
4309
|
publicSharing?: {
|
|
4285
4310
|
enabled: boolean;
|
|
4286
4311
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -4367,6 +4392,7 @@ declare const SysSession: Omit<{
|
|
|
4367
4392
|
generatedBy?: string | undefined;
|
|
4368
4393
|
} | undefined;
|
|
4369
4394
|
} | undefined;
|
|
4395
|
+
requiredPermissions?: string[] | undefined;
|
|
4370
4396
|
shortcut?: string | undefined;
|
|
4371
4397
|
bulkEnabled?: boolean | undefined;
|
|
4372
4398
|
ai?: {
|
|
@@ -4505,6 +4531,7 @@ declare const SysSession: Omit<{
|
|
|
4505
4531
|
readonly dependencies?: string[] | undefined;
|
|
4506
4532
|
readonly externalId?: boolean | undefined;
|
|
4507
4533
|
readonly defaultValue?: unknown;
|
|
4534
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
4508
4535
|
readonly group?: string | undefined;
|
|
4509
4536
|
readonly hidden?: boolean | undefined;
|
|
4510
4537
|
readonly system?: boolean | undefined;
|
|
@@ -4679,6 +4706,7 @@ declare const SysSession: Omit<{
|
|
|
4679
4706
|
readonly dependencies?: string[] | undefined;
|
|
4680
4707
|
readonly externalId?: boolean | undefined;
|
|
4681
4708
|
readonly defaultValue?: unknown;
|
|
4709
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
4682
4710
|
readonly group?: string | undefined;
|
|
4683
4711
|
readonly hidden?: boolean | undefined;
|
|
4684
4712
|
readonly system?: boolean | undefined;
|
|
@@ -4853,6 +4881,7 @@ declare const SysSession: Omit<{
|
|
|
4853
4881
|
readonly dependencies?: string[] | undefined;
|
|
4854
4882
|
readonly externalId?: boolean | undefined;
|
|
4855
4883
|
readonly defaultValue?: unknown;
|
|
4884
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
4856
4885
|
readonly group?: string | undefined;
|
|
4857
4886
|
readonly hidden?: boolean | undefined;
|
|
4858
4887
|
readonly system?: boolean | undefined;
|
|
@@ -5027,6 +5056,7 @@ declare const SysSession: Omit<{
|
|
|
5027
5056
|
readonly dependencies?: string[] | undefined;
|
|
5028
5057
|
readonly externalId?: boolean | undefined;
|
|
5029
5058
|
readonly defaultValue?: unknown;
|
|
5059
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5030
5060
|
readonly group?: string | undefined;
|
|
5031
5061
|
readonly hidden?: boolean | undefined;
|
|
5032
5062
|
readonly system?: boolean | undefined;
|
|
@@ -5201,6 +5231,7 @@ declare const SysSession: Omit<{
|
|
|
5201
5231
|
readonly dependencies?: string[] | undefined;
|
|
5202
5232
|
readonly externalId?: boolean | undefined;
|
|
5203
5233
|
readonly defaultValue?: unknown;
|
|
5234
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5204
5235
|
readonly group?: string | undefined;
|
|
5205
5236
|
readonly hidden?: boolean | undefined;
|
|
5206
5237
|
readonly system?: boolean | undefined;
|
|
@@ -5375,6 +5406,7 @@ declare const SysSession: Omit<{
|
|
|
5375
5406
|
readonly dependencies?: string[] | undefined;
|
|
5376
5407
|
readonly externalId?: boolean | undefined;
|
|
5377
5408
|
readonly defaultValue?: unknown;
|
|
5409
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5378
5410
|
readonly group?: string | undefined;
|
|
5379
5411
|
readonly hidden?: boolean | undefined;
|
|
5380
5412
|
readonly system?: boolean | undefined;
|
|
@@ -5549,6 +5581,7 @@ declare const SysSession: Omit<{
|
|
|
5549
5581
|
readonly dependencies?: string[] | undefined;
|
|
5550
5582
|
readonly externalId?: boolean | undefined;
|
|
5551
5583
|
readonly defaultValue?: unknown;
|
|
5584
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5552
5585
|
readonly group?: string | undefined;
|
|
5553
5586
|
readonly hidden?: boolean | undefined;
|
|
5554
5587
|
readonly system?: boolean | undefined;
|
|
@@ -5723,6 +5756,7 @@ declare const SysSession: Omit<{
|
|
|
5723
5756
|
readonly dependencies?: string[] | undefined;
|
|
5724
5757
|
readonly externalId?: boolean | undefined;
|
|
5725
5758
|
readonly defaultValue?: unknown;
|
|
5759
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5726
5760
|
readonly group?: string | undefined;
|
|
5727
5761
|
readonly hidden?: boolean | undefined;
|
|
5728
5762
|
readonly system?: boolean | undefined;
|
|
@@ -5897,6 +5931,7 @@ declare const SysSession: Omit<{
|
|
|
5897
5931
|
readonly dependencies?: string[] | undefined;
|
|
5898
5932
|
readonly externalId?: boolean | undefined;
|
|
5899
5933
|
readonly defaultValue?: unknown;
|
|
5934
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
5900
5935
|
readonly group?: string | undefined;
|
|
5901
5936
|
readonly hidden?: boolean | undefined;
|
|
5902
5937
|
readonly system?: boolean | undefined;
|
|
@@ -6071,6 +6106,7 @@ declare const SysSession: Omit<{
|
|
|
6071
6106
|
readonly dependencies?: string[] | undefined;
|
|
6072
6107
|
readonly externalId?: boolean | undefined;
|
|
6073
6108
|
readonly defaultValue?: unknown;
|
|
6109
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
6074
6110
|
readonly group?: string | undefined;
|
|
6075
6111
|
readonly hidden?: boolean | undefined;
|
|
6076
6112
|
readonly system?: boolean | undefined;
|
|
@@ -6245,6 +6281,7 @@ declare const SysSession: Omit<{
|
|
|
6245
6281
|
readonly dependencies?: string[] | undefined;
|
|
6246
6282
|
readonly externalId?: boolean | undefined;
|
|
6247
6283
|
readonly defaultValue?: unknown;
|
|
6284
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
6248
6285
|
readonly group?: string | undefined;
|
|
6249
6286
|
readonly hidden?: boolean | undefined;
|
|
6250
6287
|
readonly system?: boolean | undefined;
|
|
@@ -6646,6 +6683,7 @@ declare const SysAccount: Omit<{
|
|
|
6646
6683
|
generatedBy?: string | undefined;
|
|
6647
6684
|
} | undefined;
|
|
6648
6685
|
} | undefined;
|
|
6686
|
+
requiredPermissions?: string[] | undefined;
|
|
6649
6687
|
system?: boolean | undefined;
|
|
6650
6688
|
inlineHelpText?: string | undefined;
|
|
6651
6689
|
caseSensitive?: boolean | undefined;
|
|
@@ -6721,6 +6759,10 @@ declare const SysAccount: Omit<{
|
|
|
6721
6759
|
tenantField: string;
|
|
6722
6760
|
crossTenantAccess: boolean;
|
|
6723
6761
|
} | undefined;
|
|
6762
|
+
access?: {
|
|
6763
|
+
default: "public" | "private";
|
|
6764
|
+
} | undefined;
|
|
6765
|
+
requiredPermissions?: string[] | undefined;
|
|
6724
6766
|
softDelete?: {
|
|
6725
6767
|
enabled: boolean;
|
|
6726
6768
|
field: string;
|
|
@@ -7087,7 +7129,7 @@ declare const SysAccount: Omit<{
|
|
|
7087
7129
|
clone: boolean;
|
|
7088
7130
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
7089
7131
|
} | undefined;
|
|
7090
|
-
sharingModel?: "full" | "
|
|
7132
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
7091
7133
|
publicSharing?: {
|
|
7092
7134
|
enabled: boolean;
|
|
7093
7135
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -7174,6 +7216,7 @@ declare const SysAccount: Omit<{
|
|
|
7174
7216
|
generatedBy?: string | undefined;
|
|
7175
7217
|
} | undefined;
|
|
7176
7218
|
} | undefined;
|
|
7219
|
+
requiredPermissions?: string[] | undefined;
|
|
7177
7220
|
shortcut?: string | undefined;
|
|
7178
7221
|
bulkEnabled?: boolean | undefined;
|
|
7179
7222
|
ai?: {
|
|
@@ -7373,6 +7416,7 @@ declare const SysAccount: Omit<{
|
|
|
7373
7416
|
readonly dependencies?: string[] | undefined;
|
|
7374
7417
|
readonly externalId?: boolean | undefined;
|
|
7375
7418
|
readonly defaultValue?: unknown;
|
|
7419
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7376
7420
|
readonly group?: string | undefined;
|
|
7377
7421
|
readonly hidden?: boolean | undefined;
|
|
7378
7422
|
readonly system?: boolean | undefined;
|
|
@@ -7547,6 +7591,7 @@ declare const SysAccount: Omit<{
|
|
|
7547
7591
|
readonly dependencies?: string[] | undefined;
|
|
7548
7592
|
readonly externalId?: boolean | undefined;
|
|
7549
7593
|
readonly defaultValue?: unknown;
|
|
7594
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7550
7595
|
readonly group?: string | undefined;
|
|
7551
7596
|
readonly hidden?: boolean | undefined;
|
|
7552
7597
|
readonly system?: boolean | undefined;
|
|
@@ -7721,6 +7766,7 @@ declare const SysAccount: Omit<{
|
|
|
7721
7766
|
readonly dependencies?: string[] | undefined;
|
|
7722
7767
|
readonly externalId?: boolean | undefined;
|
|
7723
7768
|
readonly defaultValue?: unknown;
|
|
7769
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7724
7770
|
readonly group?: string | undefined;
|
|
7725
7771
|
readonly hidden?: boolean | undefined;
|
|
7726
7772
|
readonly system?: boolean | undefined;
|
|
@@ -7895,6 +7941,7 @@ declare const SysAccount: Omit<{
|
|
|
7895
7941
|
readonly dependencies?: string[] | undefined;
|
|
7896
7942
|
readonly externalId?: boolean | undefined;
|
|
7897
7943
|
readonly defaultValue?: unknown;
|
|
7944
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
7898
7945
|
readonly group?: string | undefined;
|
|
7899
7946
|
readonly hidden?: boolean | undefined;
|
|
7900
7947
|
readonly system?: boolean | undefined;
|
|
@@ -8069,6 +8116,7 @@ declare const SysAccount: Omit<{
|
|
|
8069
8116
|
readonly dependencies?: string[] | undefined;
|
|
8070
8117
|
readonly externalId?: boolean | undefined;
|
|
8071
8118
|
readonly defaultValue?: unknown;
|
|
8119
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8072
8120
|
readonly group?: string | undefined;
|
|
8073
8121
|
readonly hidden?: boolean | undefined;
|
|
8074
8122
|
readonly system?: boolean | undefined;
|
|
@@ -8243,6 +8291,7 @@ declare const SysAccount: Omit<{
|
|
|
8243
8291
|
readonly dependencies?: string[] | undefined;
|
|
8244
8292
|
readonly externalId?: boolean | undefined;
|
|
8245
8293
|
readonly defaultValue?: unknown;
|
|
8294
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8246
8295
|
readonly group?: string | undefined;
|
|
8247
8296
|
readonly hidden?: boolean | undefined;
|
|
8248
8297
|
readonly system?: boolean | undefined;
|
|
@@ -8417,6 +8466,7 @@ declare const SysAccount: Omit<{
|
|
|
8417
8466
|
readonly dependencies?: string[] | undefined;
|
|
8418
8467
|
readonly externalId?: boolean | undefined;
|
|
8419
8468
|
readonly defaultValue?: unknown;
|
|
8469
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8420
8470
|
readonly group?: string | undefined;
|
|
8421
8471
|
readonly hidden?: boolean | undefined;
|
|
8422
8472
|
readonly system?: boolean | undefined;
|
|
@@ -8591,6 +8641,7 @@ declare const SysAccount: Omit<{
|
|
|
8591
8641
|
readonly dependencies?: string[] | undefined;
|
|
8592
8642
|
readonly externalId?: boolean | undefined;
|
|
8593
8643
|
readonly defaultValue?: unknown;
|
|
8644
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8594
8645
|
readonly group?: string | undefined;
|
|
8595
8646
|
readonly hidden?: boolean | undefined;
|
|
8596
8647
|
readonly system?: boolean | undefined;
|
|
@@ -8765,6 +8816,7 @@ declare const SysAccount: Omit<{
|
|
|
8765
8816
|
readonly dependencies?: string[] | undefined;
|
|
8766
8817
|
readonly externalId?: boolean | undefined;
|
|
8767
8818
|
readonly defaultValue?: unknown;
|
|
8819
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8768
8820
|
readonly group?: string | undefined;
|
|
8769
8821
|
readonly hidden?: boolean | undefined;
|
|
8770
8822
|
readonly system?: boolean | undefined;
|
|
@@ -8939,6 +8991,7 @@ declare const SysAccount: Omit<{
|
|
|
8939
8991
|
readonly dependencies?: string[] | undefined;
|
|
8940
8992
|
readonly externalId?: boolean | undefined;
|
|
8941
8993
|
readonly defaultValue?: unknown;
|
|
8994
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
8942
8995
|
readonly group?: string | undefined;
|
|
8943
8996
|
readonly hidden?: boolean | undefined;
|
|
8944
8997
|
readonly system?: boolean | undefined;
|
|
@@ -9113,6 +9166,7 @@ declare const SysAccount: Omit<{
|
|
|
9113
9166
|
readonly dependencies?: string[] | undefined;
|
|
9114
9167
|
readonly externalId?: boolean | undefined;
|
|
9115
9168
|
readonly defaultValue?: unknown;
|
|
9169
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
9116
9170
|
readonly group?: string | undefined;
|
|
9117
9171
|
readonly hidden?: boolean | undefined;
|
|
9118
9172
|
readonly system?: boolean | undefined;
|
|
@@ -9287,6 +9341,7 @@ declare const SysAccount: Omit<{
|
|
|
9287
9341
|
readonly dependencies?: string[] | undefined;
|
|
9288
9342
|
readonly externalId?: boolean | undefined;
|
|
9289
9343
|
readonly defaultValue?: unknown;
|
|
9344
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
9290
9345
|
readonly group?: string | undefined;
|
|
9291
9346
|
readonly hidden?: boolean | undefined;
|
|
9292
9347
|
readonly system?: boolean | undefined;
|
|
@@ -9461,6 +9516,7 @@ declare const SysAccount: Omit<{
|
|
|
9461
9516
|
readonly dependencies?: string[] | undefined;
|
|
9462
9517
|
readonly externalId?: boolean | undefined;
|
|
9463
9518
|
readonly defaultValue?: unknown;
|
|
9519
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
9464
9520
|
readonly group?: string | undefined;
|
|
9465
9521
|
readonly hidden?: boolean | undefined;
|
|
9466
9522
|
readonly system?: boolean | undefined;
|
|
@@ -9858,6 +9914,7 @@ declare const SysVerification: Omit<{
|
|
|
9858
9914
|
generatedBy?: string | undefined;
|
|
9859
9915
|
} | undefined;
|
|
9860
9916
|
} | undefined;
|
|
9917
|
+
requiredPermissions?: string[] | undefined;
|
|
9861
9918
|
system?: boolean | undefined;
|
|
9862
9919
|
inlineHelpText?: string | undefined;
|
|
9863
9920
|
caseSensitive?: boolean | undefined;
|
|
@@ -9933,6 +9990,10 @@ declare const SysVerification: Omit<{
|
|
|
9933
9990
|
tenantField: string;
|
|
9934
9991
|
crossTenantAccess: boolean;
|
|
9935
9992
|
} | undefined;
|
|
9993
|
+
access?: {
|
|
9994
|
+
default: "public" | "private";
|
|
9995
|
+
} | undefined;
|
|
9996
|
+
requiredPermissions?: string[] | undefined;
|
|
9936
9997
|
softDelete?: {
|
|
9937
9998
|
enabled: boolean;
|
|
9938
9999
|
field: string;
|
|
@@ -10299,7 +10360,7 @@ declare const SysVerification: Omit<{
|
|
|
10299
10360
|
clone: boolean;
|
|
10300
10361
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
10301
10362
|
} | undefined;
|
|
10302
|
-
sharingModel?: "full" | "
|
|
10363
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
10303
10364
|
publicSharing?: {
|
|
10304
10365
|
enabled: boolean;
|
|
10305
10366
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -10386,6 +10447,7 @@ declare const SysVerification: Omit<{
|
|
|
10386
10447
|
generatedBy?: string | undefined;
|
|
10387
10448
|
} | undefined;
|
|
10388
10449
|
} | undefined;
|
|
10450
|
+
requiredPermissions?: string[] | undefined;
|
|
10389
10451
|
shortcut?: string | undefined;
|
|
10390
10452
|
bulkEnabled?: boolean | undefined;
|
|
10391
10453
|
ai?: {
|
|
@@ -10456,6 +10518,7 @@ declare const SysVerification: Omit<{
|
|
|
10456
10518
|
readonly dependencies?: string[] | undefined;
|
|
10457
10519
|
readonly externalId?: boolean | undefined;
|
|
10458
10520
|
readonly defaultValue?: unknown;
|
|
10521
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
10459
10522
|
readonly group?: string | undefined;
|
|
10460
10523
|
readonly hidden?: boolean | undefined;
|
|
10461
10524
|
readonly system?: boolean | undefined;
|
|
@@ -10630,6 +10693,7 @@ declare const SysVerification: Omit<{
|
|
|
10630
10693
|
readonly dependencies?: string[] | undefined;
|
|
10631
10694
|
readonly externalId?: boolean | undefined;
|
|
10632
10695
|
readonly defaultValue?: unknown;
|
|
10696
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
10633
10697
|
readonly group?: string | undefined;
|
|
10634
10698
|
readonly hidden?: boolean | undefined;
|
|
10635
10699
|
readonly system?: boolean | undefined;
|
|
@@ -10804,6 +10868,7 @@ declare const SysVerification: Omit<{
|
|
|
10804
10868
|
readonly dependencies?: string[] | undefined;
|
|
10805
10869
|
readonly externalId?: boolean | undefined;
|
|
10806
10870
|
readonly defaultValue?: unknown;
|
|
10871
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
10807
10872
|
readonly group?: string | undefined;
|
|
10808
10873
|
readonly hidden?: boolean | undefined;
|
|
10809
10874
|
readonly system?: boolean | undefined;
|
|
@@ -10978,6 +11043,7 @@ declare const SysVerification: Omit<{
|
|
|
10978
11043
|
readonly dependencies?: string[] | undefined;
|
|
10979
11044
|
readonly externalId?: boolean | undefined;
|
|
10980
11045
|
readonly defaultValue?: unknown;
|
|
11046
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
10981
11047
|
readonly group?: string | undefined;
|
|
10982
11048
|
readonly hidden?: boolean | undefined;
|
|
10983
11049
|
readonly system?: boolean | undefined;
|
|
@@ -11152,6 +11218,7 @@ declare const SysVerification: Omit<{
|
|
|
11152
11218
|
readonly dependencies?: string[] | undefined;
|
|
11153
11219
|
readonly externalId?: boolean | undefined;
|
|
11154
11220
|
readonly defaultValue?: unknown;
|
|
11221
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
11155
11222
|
readonly group?: string | undefined;
|
|
11156
11223
|
readonly hidden?: boolean | undefined;
|
|
11157
11224
|
readonly system?: boolean | undefined;
|
|
@@ -11326,6 +11393,7 @@ declare const SysVerification: Omit<{
|
|
|
11326
11393
|
readonly dependencies?: string[] | undefined;
|
|
11327
11394
|
readonly externalId?: boolean | undefined;
|
|
11328
11395
|
readonly defaultValue?: unknown;
|
|
11396
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
11329
11397
|
readonly group?: string | undefined;
|
|
11330
11398
|
readonly hidden?: boolean | undefined;
|
|
11331
11399
|
readonly system?: boolean | undefined;
|
|
@@ -11726,6 +11794,7 @@ declare const SysOrganization: Omit<{
|
|
|
11726
11794
|
generatedBy?: string | undefined;
|
|
11727
11795
|
} | undefined;
|
|
11728
11796
|
} | undefined;
|
|
11797
|
+
requiredPermissions?: string[] | undefined;
|
|
11729
11798
|
system?: boolean | undefined;
|
|
11730
11799
|
inlineHelpText?: string | undefined;
|
|
11731
11800
|
caseSensitive?: boolean | undefined;
|
|
@@ -11801,6 +11870,10 @@ declare const SysOrganization: Omit<{
|
|
|
11801
11870
|
tenantField: string;
|
|
11802
11871
|
crossTenantAccess: boolean;
|
|
11803
11872
|
} | undefined;
|
|
11873
|
+
access?: {
|
|
11874
|
+
default: "public" | "private";
|
|
11875
|
+
} | undefined;
|
|
11876
|
+
requiredPermissions?: string[] | undefined;
|
|
11804
11877
|
softDelete?: {
|
|
11805
11878
|
enabled: boolean;
|
|
11806
11879
|
field: string;
|
|
@@ -12167,7 +12240,7 @@ declare const SysOrganization: Omit<{
|
|
|
12167
12240
|
clone: boolean;
|
|
12168
12241
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
12169
12242
|
} | undefined;
|
|
12170
|
-
sharingModel?: "full" | "
|
|
12243
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
12171
12244
|
publicSharing?: {
|
|
12172
12245
|
enabled: boolean;
|
|
12173
12246
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -12254,6 +12327,7 @@ declare const SysOrganization: Omit<{
|
|
|
12254
12327
|
generatedBy?: string | undefined;
|
|
12255
12328
|
} | undefined;
|
|
12256
12329
|
} | undefined;
|
|
12330
|
+
requiredPermissions?: string[] | undefined;
|
|
12257
12331
|
shortcut?: string | undefined;
|
|
12258
12332
|
bulkEnabled?: boolean | undefined;
|
|
12259
12333
|
ai?: {
|
|
@@ -12447,6 +12521,7 @@ declare const SysOrganization: Omit<{
|
|
|
12447
12521
|
readonly dependencies?: string[] | undefined;
|
|
12448
12522
|
readonly externalId?: boolean | undefined;
|
|
12449
12523
|
readonly defaultValue?: unknown;
|
|
12524
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
12450
12525
|
readonly group?: string | undefined;
|
|
12451
12526
|
readonly hidden?: boolean | undefined;
|
|
12452
12527
|
readonly system?: boolean | undefined;
|
|
@@ -12621,6 +12696,7 @@ declare const SysOrganization: Omit<{
|
|
|
12621
12696
|
readonly dependencies?: string[] | undefined;
|
|
12622
12697
|
readonly externalId?: boolean | undefined;
|
|
12623
12698
|
readonly defaultValue?: unknown;
|
|
12699
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
12624
12700
|
readonly group?: string | undefined;
|
|
12625
12701
|
readonly hidden?: boolean | undefined;
|
|
12626
12702
|
readonly system?: boolean | undefined;
|
|
@@ -12795,6 +12871,7 @@ declare const SysOrganization: Omit<{
|
|
|
12795
12871
|
readonly dependencies?: string[] | undefined;
|
|
12796
12872
|
readonly externalId?: boolean | undefined;
|
|
12797
12873
|
readonly defaultValue?: unknown;
|
|
12874
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
12798
12875
|
readonly group?: string | undefined;
|
|
12799
12876
|
readonly hidden?: boolean | undefined;
|
|
12800
12877
|
readonly system?: boolean | undefined;
|
|
@@ -12969,6 +13046,7 @@ declare const SysOrganization: Omit<{
|
|
|
12969
13046
|
readonly dependencies?: string[] | undefined;
|
|
12970
13047
|
readonly externalId?: boolean | undefined;
|
|
12971
13048
|
readonly defaultValue?: unknown;
|
|
13049
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
12972
13050
|
readonly group?: string | undefined;
|
|
12973
13051
|
readonly hidden?: boolean | undefined;
|
|
12974
13052
|
readonly system?: boolean | undefined;
|
|
@@ -13143,6 +13221,7 @@ declare const SysOrganization: Omit<{
|
|
|
13143
13221
|
readonly dependencies?: string[] | undefined;
|
|
13144
13222
|
readonly externalId?: boolean | undefined;
|
|
13145
13223
|
readonly defaultValue?: unknown;
|
|
13224
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
13146
13225
|
readonly group?: string | undefined;
|
|
13147
13226
|
readonly hidden?: boolean | undefined;
|
|
13148
13227
|
readonly system?: boolean | undefined;
|
|
@@ -13317,6 +13396,7 @@ declare const SysOrganization: Omit<{
|
|
|
13317
13396
|
readonly dependencies?: string[] | undefined;
|
|
13318
13397
|
readonly externalId?: boolean | undefined;
|
|
13319
13398
|
readonly defaultValue?: unknown;
|
|
13399
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
13320
13400
|
readonly group?: string | undefined;
|
|
13321
13401
|
readonly hidden?: boolean | undefined;
|
|
13322
13402
|
readonly system?: boolean | undefined;
|
|
@@ -13491,6 +13571,7 @@ declare const SysOrganization: Omit<{
|
|
|
13491
13571
|
readonly dependencies?: string[] | undefined;
|
|
13492
13572
|
readonly externalId?: boolean | undefined;
|
|
13493
13573
|
readonly defaultValue?: unknown;
|
|
13574
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
13494
13575
|
readonly group?: string | undefined;
|
|
13495
13576
|
readonly hidden?: boolean | undefined;
|
|
13496
13577
|
readonly system?: boolean | undefined;
|
|
@@ -13887,6 +13968,7 @@ declare const SysMember: Omit<{
|
|
|
13887
13968
|
generatedBy?: string | undefined;
|
|
13888
13969
|
} | undefined;
|
|
13889
13970
|
} | undefined;
|
|
13971
|
+
requiredPermissions?: string[] | undefined;
|
|
13890
13972
|
system?: boolean | undefined;
|
|
13891
13973
|
inlineHelpText?: string | undefined;
|
|
13892
13974
|
caseSensitive?: boolean | undefined;
|
|
@@ -13962,6 +14044,10 @@ declare const SysMember: Omit<{
|
|
|
13962
14044
|
tenantField: string;
|
|
13963
14045
|
crossTenantAccess: boolean;
|
|
13964
14046
|
} | undefined;
|
|
14047
|
+
access?: {
|
|
14048
|
+
default: "public" | "private";
|
|
14049
|
+
} | undefined;
|
|
14050
|
+
requiredPermissions?: string[] | undefined;
|
|
13965
14051
|
softDelete?: {
|
|
13966
14052
|
enabled: boolean;
|
|
13967
14053
|
field: string;
|
|
@@ -14328,7 +14414,7 @@ declare const SysMember: Omit<{
|
|
|
14328
14414
|
clone: boolean;
|
|
14329
14415
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
14330
14416
|
} | undefined;
|
|
14331
|
-
sharingModel?: "full" | "
|
|
14417
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
14332
14418
|
publicSharing?: {
|
|
14333
14419
|
enabled: boolean;
|
|
14334
14420
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -14415,6 +14501,7 @@ declare const SysMember: Omit<{
|
|
|
14415
14501
|
generatedBy?: string | undefined;
|
|
14416
14502
|
} | undefined;
|
|
14417
14503
|
} | undefined;
|
|
14504
|
+
requiredPermissions?: string[] | undefined;
|
|
14418
14505
|
shortcut?: string | undefined;
|
|
14419
14506
|
bulkEnabled?: boolean | undefined;
|
|
14420
14507
|
ai?: {
|
|
@@ -14581,6 +14668,7 @@ declare const SysMember: Omit<{
|
|
|
14581
14668
|
readonly dependencies?: string[] | undefined;
|
|
14582
14669
|
readonly externalId?: boolean | undefined;
|
|
14583
14670
|
readonly defaultValue?: unknown;
|
|
14671
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
14584
14672
|
readonly group?: string | undefined;
|
|
14585
14673
|
readonly hidden?: boolean | undefined;
|
|
14586
14674
|
readonly system?: boolean | undefined;
|
|
@@ -14755,6 +14843,7 @@ declare const SysMember: Omit<{
|
|
|
14755
14843
|
readonly dependencies?: string[] | undefined;
|
|
14756
14844
|
readonly externalId?: boolean | undefined;
|
|
14757
14845
|
readonly defaultValue?: unknown;
|
|
14846
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
14758
14847
|
readonly group?: string | undefined;
|
|
14759
14848
|
readonly hidden?: boolean | undefined;
|
|
14760
14849
|
readonly system?: boolean | undefined;
|
|
@@ -14929,6 +15018,7 @@ declare const SysMember: Omit<{
|
|
|
14929
15018
|
readonly dependencies?: string[] | undefined;
|
|
14930
15019
|
readonly externalId?: boolean | undefined;
|
|
14931
15020
|
readonly defaultValue?: unknown;
|
|
15021
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
14932
15022
|
readonly group?: string | undefined;
|
|
14933
15023
|
readonly hidden?: boolean | undefined;
|
|
14934
15024
|
readonly system?: boolean | undefined;
|
|
@@ -15103,6 +15193,7 @@ declare const SysMember: Omit<{
|
|
|
15103
15193
|
readonly dependencies?: string[] | undefined;
|
|
15104
15194
|
readonly externalId?: boolean | undefined;
|
|
15105
15195
|
readonly defaultValue?: unknown;
|
|
15196
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
15106
15197
|
readonly group?: string | undefined;
|
|
15107
15198
|
readonly hidden?: boolean | undefined;
|
|
15108
15199
|
readonly system?: boolean | undefined;
|
|
@@ -15277,6 +15368,7 @@ declare const SysMember: Omit<{
|
|
|
15277
15368
|
readonly dependencies?: string[] | undefined;
|
|
15278
15369
|
readonly externalId?: boolean | undefined;
|
|
15279
15370
|
readonly defaultValue?: unknown;
|
|
15371
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
15280
15372
|
readonly group?: string | undefined;
|
|
15281
15373
|
readonly hidden?: boolean | undefined;
|
|
15282
15374
|
readonly system?: boolean | undefined;
|
|
@@ -15673,6 +15765,7 @@ declare const SysInvitation: Omit<{
|
|
|
15673
15765
|
generatedBy?: string | undefined;
|
|
15674
15766
|
} | undefined;
|
|
15675
15767
|
} | undefined;
|
|
15768
|
+
requiredPermissions?: string[] | undefined;
|
|
15676
15769
|
system?: boolean | undefined;
|
|
15677
15770
|
inlineHelpText?: string | undefined;
|
|
15678
15771
|
caseSensitive?: boolean | undefined;
|
|
@@ -15748,6 +15841,10 @@ declare const SysInvitation: Omit<{
|
|
|
15748
15841
|
tenantField: string;
|
|
15749
15842
|
crossTenantAccess: boolean;
|
|
15750
15843
|
} | undefined;
|
|
15844
|
+
access?: {
|
|
15845
|
+
default: "public" | "private";
|
|
15846
|
+
} | undefined;
|
|
15847
|
+
requiredPermissions?: string[] | undefined;
|
|
15751
15848
|
softDelete?: {
|
|
15752
15849
|
enabled: boolean;
|
|
15753
15850
|
field: string;
|
|
@@ -16114,7 +16211,7 @@ declare const SysInvitation: Omit<{
|
|
|
16114
16211
|
clone: boolean;
|
|
16115
16212
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
16116
16213
|
} | undefined;
|
|
16117
|
-
sharingModel?: "full" | "
|
|
16214
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
16118
16215
|
publicSharing?: {
|
|
16119
16216
|
enabled: boolean;
|
|
16120
16217
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -16201,6 +16298,7 @@ declare const SysInvitation: Omit<{
|
|
|
16201
16298
|
generatedBy?: string | undefined;
|
|
16202
16299
|
} | undefined;
|
|
16203
16300
|
} | undefined;
|
|
16301
|
+
requiredPermissions?: string[] | undefined;
|
|
16204
16302
|
shortcut?: string | undefined;
|
|
16205
16303
|
bulkEnabled?: boolean | undefined;
|
|
16206
16304
|
ai?: {
|
|
@@ -16434,6 +16532,7 @@ declare const SysInvitation: Omit<{
|
|
|
16434
16532
|
readonly dependencies?: string[] | undefined;
|
|
16435
16533
|
readonly externalId?: boolean | undefined;
|
|
16436
16534
|
readonly defaultValue?: unknown;
|
|
16535
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
16437
16536
|
readonly group?: string | undefined;
|
|
16438
16537
|
readonly hidden?: boolean | undefined;
|
|
16439
16538
|
readonly system?: boolean | undefined;
|
|
@@ -16608,6 +16707,7 @@ declare const SysInvitation: Omit<{
|
|
|
16608
16707
|
readonly dependencies?: string[] | undefined;
|
|
16609
16708
|
readonly externalId?: boolean | undefined;
|
|
16610
16709
|
readonly defaultValue?: unknown;
|
|
16710
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
16611
16711
|
readonly group?: string | undefined;
|
|
16612
16712
|
readonly hidden?: boolean | undefined;
|
|
16613
16713
|
readonly system?: boolean | undefined;
|
|
@@ -16782,6 +16882,7 @@ declare const SysInvitation: Omit<{
|
|
|
16782
16882
|
readonly dependencies?: string[] | undefined;
|
|
16783
16883
|
readonly externalId?: boolean | undefined;
|
|
16784
16884
|
readonly defaultValue?: unknown;
|
|
16885
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
16785
16886
|
readonly group?: string | undefined;
|
|
16786
16887
|
readonly hidden?: boolean | undefined;
|
|
16787
16888
|
readonly system?: boolean | undefined;
|
|
@@ -16956,6 +17057,7 @@ declare const SysInvitation: Omit<{
|
|
|
16956
17057
|
readonly dependencies?: string[] | undefined;
|
|
16957
17058
|
readonly externalId?: boolean | undefined;
|
|
16958
17059
|
readonly defaultValue?: unknown;
|
|
17060
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
16959
17061
|
readonly group?: string | undefined;
|
|
16960
17062
|
readonly hidden?: boolean | undefined;
|
|
16961
17063
|
readonly system?: boolean | undefined;
|
|
@@ -17130,6 +17232,7 @@ declare const SysInvitation: Omit<{
|
|
|
17130
17232
|
readonly dependencies?: string[] | undefined;
|
|
17131
17233
|
readonly externalId?: boolean | undefined;
|
|
17132
17234
|
readonly defaultValue?: unknown;
|
|
17235
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
17133
17236
|
readonly group?: string | undefined;
|
|
17134
17237
|
readonly hidden?: boolean | undefined;
|
|
17135
17238
|
readonly system?: boolean | undefined;
|
|
@@ -17304,6 +17407,7 @@ declare const SysInvitation: Omit<{
|
|
|
17304
17407
|
readonly dependencies?: string[] | undefined;
|
|
17305
17408
|
readonly externalId?: boolean | undefined;
|
|
17306
17409
|
readonly defaultValue?: unknown;
|
|
17410
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
17307
17411
|
readonly group?: string | undefined;
|
|
17308
17412
|
readonly hidden?: boolean | undefined;
|
|
17309
17413
|
readonly system?: boolean | undefined;
|
|
@@ -17478,6 +17582,7 @@ declare const SysInvitation: Omit<{
|
|
|
17478
17582
|
readonly dependencies?: string[] | undefined;
|
|
17479
17583
|
readonly externalId?: boolean | undefined;
|
|
17480
17584
|
readonly defaultValue?: unknown;
|
|
17585
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
17481
17586
|
readonly group?: string | undefined;
|
|
17482
17587
|
readonly hidden?: boolean | undefined;
|
|
17483
17588
|
readonly system?: boolean | undefined;
|
|
@@ -17652,6 +17757,7 @@ declare const SysInvitation: Omit<{
|
|
|
17652
17757
|
readonly dependencies?: string[] | undefined;
|
|
17653
17758
|
readonly externalId?: boolean | undefined;
|
|
17654
17759
|
readonly defaultValue?: unknown;
|
|
17760
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
17655
17761
|
readonly group?: string | undefined;
|
|
17656
17762
|
readonly hidden?: boolean | undefined;
|
|
17657
17763
|
readonly system?: boolean | undefined;
|
|
@@ -17826,6 +17932,7 @@ declare const SysInvitation: Omit<{
|
|
|
17826
17932
|
readonly dependencies?: string[] | undefined;
|
|
17827
17933
|
readonly externalId?: boolean | undefined;
|
|
17828
17934
|
readonly defaultValue?: unknown;
|
|
17935
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
17829
17936
|
readonly group?: string | undefined;
|
|
17830
17937
|
readonly hidden?: boolean | undefined;
|
|
17831
17938
|
readonly system?: boolean | undefined;
|
|
@@ -18223,6 +18330,7 @@ declare const SysTeam: Omit<{
|
|
|
18223
18330
|
generatedBy?: string | undefined;
|
|
18224
18331
|
} | undefined;
|
|
18225
18332
|
} | undefined;
|
|
18333
|
+
requiredPermissions?: string[] | undefined;
|
|
18226
18334
|
system?: boolean | undefined;
|
|
18227
18335
|
inlineHelpText?: string | undefined;
|
|
18228
18336
|
caseSensitive?: boolean | undefined;
|
|
@@ -18298,6 +18406,10 @@ declare const SysTeam: Omit<{
|
|
|
18298
18406
|
tenantField: string;
|
|
18299
18407
|
crossTenantAccess: boolean;
|
|
18300
18408
|
} | undefined;
|
|
18409
|
+
access?: {
|
|
18410
|
+
default: "public" | "private";
|
|
18411
|
+
} | undefined;
|
|
18412
|
+
requiredPermissions?: string[] | undefined;
|
|
18301
18413
|
softDelete?: {
|
|
18302
18414
|
enabled: boolean;
|
|
18303
18415
|
field: string;
|
|
@@ -18664,7 +18776,7 @@ declare const SysTeam: Omit<{
|
|
|
18664
18776
|
clone: boolean;
|
|
18665
18777
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
18666
18778
|
} | undefined;
|
|
18667
|
-
sharingModel?: "full" | "
|
|
18779
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
18668
18780
|
publicSharing?: {
|
|
18669
18781
|
enabled: boolean;
|
|
18670
18782
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -18751,6 +18863,7 @@ declare const SysTeam: Omit<{
|
|
|
18751
18863
|
generatedBy?: string | undefined;
|
|
18752
18864
|
} | undefined;
|
|
18753
18865
|
} | undefined;
|
|
18866
|
+
requiredPermissions?: string[] | undefined;
|
|
18754
18867
|
shortcut?: string | undefined;
|
|
18755
18868
|
bulkEnabled?: boolean | undefined;
|
|
18756
18869
|
ai?: {
|
|
@@ -18918,6 +19031,7 @@ declare const SysTeam: Omit<{
|
|
|
18918
19031
|
readonly dependencies?: string[] | undefined;
|
|
18919
19032
|
readonly externalId?: boolean | undefined;
|
|
18920
19033
|
readonly defaultValue?: unknown;
|
|
19034
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
18921
19035
|
readonly group?: string | undefined;
|
|
18922
19036
|
readonly hidden?: boolean | undefined;
|
|
18923
19037
|
readonly system?: boolean | undefined;
|
|
@@ -19092,6 +19206,7 @@ declare const SysTeam: Omit<{
|
|
|
19092
19206
|
readonly dependencies?: string[] | undefined;
|
|
19093
19207
|
readonly externalId?: boolean | undefined;
|
|
19094
19208
|
readonly defaultValue?: unknown;
|
|
19209
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
19095
19210
|
readonly group?: string | undefined;
|
|
19096
19211
|
readonly hidden?: boolean | undefined;
|
|
19097
19212
|
readonly system?: boolean | undefined;
|
|
@@ -19266,6 +19381,7 @@ declare const SysTeam: Omit<{
|
|
|
19266
19381
|
readonly dependencies?: string[] | undefined;
|
|
19267
19382
|
readonly externalId?: boolean | undefined;
|
|
19268
19383
|
readonly defaultValue?: unknown;
|
|
19384
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
19269
19385
|
readonly group?: string | undefined;
|
|
19270
19386
|
readonly hidden?: boolean | undefined;
|
|
19271
19387
|
readonly system?: boolean | undefined;
|
|
@@ -19440,6 +19556,7 @@ declare const SysTeam: Omit<{
|
|
|
19440
19556
|
readonly dependencies?: string[] | undefined;
|
|
19441
19557
|
readonly externalId?: boolean | undefined;
|
|
19442
19558
|
readonly defaultValue?: unknown;
|
|
19559
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
19443
19560
|
readonly group?: string | undefined;
|
|
19444
19561
|
readonly hidden?: boolean | undefined;
|
|
19445
19562
|
readonly system?: boolean | undefined;
|
|
@@ -19614,6 +19731,7 @@ declare const SysTeam: Omit<{
|
|
|
19614
19731
|
readonly dependencies?: string[] | undefined;
|
|
19615
19732
|
readonly externalId?: boolean | undefined;
|
|
19616
19733
|
readonly defaultValue?: unknown;
|
|
19734
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
19617
19735
|
readonly group?: string | undefined;
|
|
19618
19736
|
readonly hidden?: boolean | undefined;
|
|
19619
19737
|
readonly system?: boolean | undefined;
|
|
@@ -20010,6 +20128,7 @@ declare const SysTeamMember: Omit<{
|
|
|
20010
20128
|
generatedBy?: string | undefined;
|
|
20011
20129
|
} | undefined;
|
|
20012
20130
|
} | undefined;
|
|
20131
|
+
requiredPermissions?: string[] | undefined;
|
|
20013
20132
|
system?: boolean | undefined;
|
|
20014
20133
|
inlineHelpText?: string | undefined;
|
|
20015
20134
|
caseSensitive?: boolean | undefined;
|
|
@@ -20085,6 +20204,10 @@ declare const SysTeamMember: Omit<{
|
|
|
20085
20204
|
tenantField: string;
|
|
20086
20205
|
crossTenantAccess: boolean;
|
|
20087
20206
|
} | undefined;
|
|
20207
|
+
access?: {
|
|
20208
|
+
default: "public" | "private";
|
|
20209
|
+
} | undefined;
|
|
20210
|
+
requiredPermissions?: string[] | undefined;
|
|
20088
20211
|
softDelete?: {
|
|
20089
20212
|
enabled: boolean;
|
|
20090
20213
|
field: string;
|
|
@@ -20451,7 +20574,7 @@ declare const SysTeamMember: Omit<{
|
|
|
20451
20574
|
clone: boolean;
|
|
20452
20575
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
20453
20576
|
} | undefined;
|
|
20454
|
-
sharingModel?: "full" | "
|
|
20577
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
20455
20578
|
publicSharing?: {
|
|
20456
20579
|
enabled: boolean;
|
|
20457
20580
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -20538,6 +20661,7 @@ declare const SysTeamMember: Omit<{
|
|
|
20538
20661
|
generatedBy?: string | undefined;
|
|
20539
20662
|
} | undefined;
|
|
20540
20663
|
} | undefined;
|
|
20664
|
+
requiredPermissions?: string[] | undefined;
|
|
20541
20665
|
shortcut?: string | undefined;
|
|
20542
20666
|
bulkEnabled?: boolean | undefined;
|
|
20543
20667
|
ai?: {
|
|
@@ -20651,6 +20775,7 @@ declare const SysTeamMember: Omit<{
|
|
|
20651
20775
|
readonly dependencies?: string[] | undefined;
|
|
20652
20776
|
readonly externalId?: boolean | undefined;
|
|
20653
20777
|
readonly defaultValue?: unknown;
|
|
20778
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
20654
20779
|
readonly group?: string | undefined;
|
|
20655
20780
|
readonly hidden?: boolean | undefined;
|
|
20656
20781
|
readonly system?: boolean | undefined;
|
|
@@ -20825,6 +20950,7 @@ declare const SysTeamMember: Omit<{
|
|
|
20825
20950
|
readonly dependencies?: string[] | undefined;
|
|
20826
20951
|
readonly externalId?: boolean | undefined;
|
|
20827
20952
|
readonly defaultValue?: unknown;
|
|
20953
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
20828
20954
|
readonly group?: string | undefined;
|
|
20829
20955
|
readonly hidden?: boolean | undefined;
|
|
20830
20956
|
readonly system?: boolean | undefined;
|
|
@@ -20999,6 +21125,7 @@ declare const SysTeamMember: Omit<{
|
|
|
20999
21125
|
readonly dependencies?: string[] | undefined;
|
|
21000
21126
|
readonly externalId?: boolean | undefined;
|
|
21001
21127
|
readonly defaultValue?: unknown;
|
|
21128
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
21002
21129
|
readonly group?: string | undefined;
|
|
21003
21130
|
readonly hidden?: boolean | undefined;
|
|
21004
21131
|
readonly system?: boolean | undefined;
|
|
@@ -21173,6 +21300,7 @@ declare const SysTeamMember: Omit<{
|
|
|
21173
21300
|
readonly dependencies?: string[] | undefined;
|
|
21174
21301
|
readonly externalId?: boolean | undefined;
|
|
21175
21302
|
readonly defaultValue?: unknown;
|
|
21303
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
21176
21304
|
readonly group?: string | undefined;
|
|
21177
21305
|
readonly hidden?: boolean | undefined;
|
|
21178
21306
|
readonly system?: boolean | undefined;
|
|
@@ -21579,6 +21707,7 @@ declare const SysBusinessUnit: Omit<{
|
|
|
21579
21707
|
generatedBy?: string | undefined;
|
|
21580
21708
|
} | undefined;
|
|
21581
21709
|
} | undefined;
|
|
21710
|
+
requiredPermissions?: string[] | undefined;
|
|
21582
21711
|
system?: boolean | undefined;
|
|
21583
21712
|
inlineHelpText?: string | undefined;
|
|
21584
21713
|
caseSensitive?: boolean | undefined;
|
|
@@ -21654,6 +21783,10 @@ declare const SysBusinessUnit: Omit<{
|
|
|
21654
21783
|
tenantField: string;
|
|
21655
21784
|
crossTenantAccess: boolean;
|
|
21656
21785
|
} | undefined;
|
|
21786
|
+
access?: {
|
|
21787
|
+
default: "public" | "private";
|
|
21788
|
+
} | undefined;
|
|
21789
|
+
requiredPermissions?: string[] | undefined;
|
|
21657
21790
|
softDelete?: {
|
|
21658
21791
|
enabled: boolean;
|
|
21659
21792
|
field: string;
|
|
@@ -22020,7 +22153,7 @@ declare const SysBusinessUnit: Omit<{
|
|
|
22020
22153
|
clone: boolean;
|
|
22021
22154
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
22022
22155
|
} | undefined;
|
|
22023
|
-
sharingModel?: "full" | "
|
|
22156
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
22024
22157
|
publicSharing?: {
|
|
22025
22158
|
enabled: boolean;
|
|
22026
22159
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -22107,6 +22240,7 @@ declare const SysBusinessUnit: Omit<{
|
|
|
22107
22240
|
generatedBy?: string | undefined;
|
|
22108
22241
|
} | undefined;
|
|
22109
22242
|
} | undefined;
|
|
22243
|
+
requiredPermissions?: string[] | undefined;
|
|
22110
22244
|
shortcut?: string | undefined;
|
|
22111
22245
|
bulkEnabled?: boolean | undefined;
|
|
22112
22246
|
ai?: {
|
|
@@ -22283,6 +22417,7 @@ declare const SysBusinessUnit: Omit<{
|
|
|
22283
22417
|
readonly dependencies?: string[] | undefined;
|
|
22284
22418
|
readonly externalId?: boolean | undefined;
|
|
22285
22419
|
readonly defaultValue?: unknown;
|
|
22420
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
22286
22421
|
readonly group?: string | undefined;
|
|
22287
22422
|
readonly hidden?: boolean | undefined;
|
|
22288
22423
|
readonly system?: boolean | undefined;
|
|
@@ -22457,6 +22592,7 @@ declare const SysBusinessUnit: Omit<{
|
|
|
22457
22592
|
readonly dependencies?: string[] | undefined;
|
|
22458
22593
|
readonly externalId?: boolean | undefined;
|
|
22459
22594
|
readonly defaultValue?: unknown;
|
|
22595
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
22460
22596
|
readonly group?: string | undefined;
|
|
22461
22597
|
readonly hidden?: boolean | undefined;
|
|
22462
22598
|
readonly system?: boolean | undefined;
|
|
@@ -22631,6 +22767,7 @@ declare const SysBusinessUnit: Omit<{
|
|
|
22631
22767
|
readonly dependencies?: string[] | undefined;
|
|
22632
22768
|
readonly externalId?: boolean | undefined;
|
|
22633
22769
|
readonly defaultValue?: unknown;
|
|
22770
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
22634
22771
|
readonly group?: string | undefined;
|
|
22635
22772
|
readonly hidden?: boolean | undefined;
|
|
22636
22773
|
readonly system?: boolean | undefined;
|
|
@@ -22805,6 +22942,7 @@ declare const SysBusinessUnit: Omit<{
|
|
|
22805
22942
|
readonly dependencies?: string[] | undefined;
|
|
22806
22943
|
readonly externalId?: boolean | undefined;
|
|
22807
22944
|
readonly defaultValue?: unknown;
|
|
22945
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
22808
22946
|
readonly group?: string | undefined;
|
|
22809
22947
|
readonly hidden?: boolean | undefined;
|
|
22810
22948
|
readonly system?: boolean | undefined;
|
|
@@ -22979,6 +23117,7 @@ declare const SysBusinessUnit: Omit<{
|
|
|
22979
23117
|
readonly dependencies?: string[] | undefined;
|
|
22980
23118
|
readonly externalId?: boolean | undefined;
|
|
22981
23119
|
readonly defaultValue?: unknown;
|
|
23120
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
22982
23121
|
readonly group?: string | undefined;
|
|
22983
23122
|
readonly hidden?: boolean | undefined;
|
|
22984
23123
|
readonly system?: boolean | undefined;
|
|
@@ -23153,6 +23292,7 @@ declare const SysBusinessUnit: Omit<{
|
|
|
23153
23292
|
readonly dependencies?: string[] | undefined;
|
|
23154
23293
|
readonly externalId?: boolean | undefined;
|
|
23155
23294
|
readonly defaultValue?: unknown;
|
|
23295
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
23156
23296
|
readonly group?: string | undefined;
|
|
23157
23297
|
readonly hidden?: boolean | undefined;
|
|
23158
23298
|
readonly system?: boolean | undefined;
|
|
@@ -23327,6 +23467,7 @@ declare const SysBusinessUnit: Omit<{
|
|
|
23327
23467
|
readonly dependencies?: string[] | undefined;
|
|
23328
23468
|
readonly externalId?: boolean | undefined;
|
|
23329
23469
|
readonly defaultValue?: unknown;
|
|
23470
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
23330
23471
|
readonly group?: string | undefined;
|
|
23331
23472
|
readonly hidden?: boolean | undefined;
|
|
23332
23473
|
readonly system?: boolean | undefined;
|
|
@@ -23501,6 +23642,7 @@ declare const SysBusinessUnit: Omit<{
|
|
|
23501
23642
|
readonly dependencies?: string[] | undefined;
|
|
23502
23643
|
readonly externalId?: boolean | undefined;
|
|
23503
23644
|
readonly defaultValue?: unknown;
|
|
23645
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
23504
23646
|
readonly group?: string | undefined;
|
|
23505
23647
|
readonly hidden?: boolean | undefined;
|
|
23506
23648
|
readonly system?: boolean | undefined;
|
|
@@ -23675,6 +23817,7 @@ declare const SysBusinessUnit: Omit<{
|
|
|
23675
23817
|
readonly dependencies?: string[] | undefined;
|
|
23676
23818
|
readonly externalId?: boolean | undefined;
|
|
23677
23819
|
readonly defaultValue?: unknown;
|
|
23820
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
23678
23821
|
readonly group?: string | undefined;
|
|
23679
23822
|
readonly hidden?: boolean | undefined;
|
|
23680
23823
|
readonly system?: boolean | undefined;
|
|
@@ -23849,6 +23992,7 @@ declare const SysBusinessUnit: Omit<{
|
|
|
23849
23992
|
readonly dependencies?: string[] | undefined;
|
|
23850
23993
|
readonly externalId?: boolean | undefined;
|
|
23851
23994
|
readonly defaultValue?: unknown;
|
|
23995
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
23852
23996
|
readonly group?: string | undefined;
|
|
23853
23997
|
readonly hidden?: boolean | undefined;
|
|
23854
23998
|
readonly system?: boolean | undefined;
|
|
@@ -24023,6 +24167,7 @@ declare const SysBusinessUnit: Omit<{
|
|
|
24023
24167
|
readonly dependencies?: string[] | undefined;
|
|
24024
24168
|
readonly externalId?: boolean | undefined;
|
|
24025
24169
|
readonly defaultValue?: unknown;
|
|
24170
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
24026
24171
|
readonly group?: string | undefined;
|
|
24027
24172
|
readonly hidden?: boolean | undefined;
|
|
24028
24173
|
readonly system?: boolean | undefined;
|
|
@@ -24197,6 +24342,7 @@ declare const SysBusinessUnit: Omit<{
|
|
|
24197
24342
|
readonly dependencies?: string[] | undefined;
|
|
24198
24343
|
readonly externalId?: boolean | undefined;
|
|
24199
24344
|
readonly defaultValue?: unknown;
|
|
24345
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
24200
24346
|
readonly group?: string | undefined;
|
|
24201
24347
|
readonly hidden?: boolean | undefined;
|
|
24202
24348
|
readonly system?: boolean | undefined;
|
|
@@ -24371,6 +24517,7 @@ declare const SysBusinessUnit: Omit<{
|
|
|
24371
24517
|
readonly dependencies?: string[] | undefined;
|
|
24372
24518
|
readonly externalId?: boolean | undefined;
|
|
24373
24519
|
readonly defaultValue?: unknown;
|
|
24520
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
24374
24521
|
readonly group?: string | undefined;
|
|
24375
24522
|
readonly hidden?: boolean | undefined;
|
|
24376
24523
|
readonly system?: boolean | undefined;
|
|
@@ -24775,6 +24922,7 @@ declare const SysBusinessUnitMember: Omit<{
|
|
|
24775
24922
|
generatedBy?: string | undefined;
|
|
24776
24923
|
} | undefined;
|
|
24777
24924
|
} | undefined;
|
|
24925
|
+
requiredPermissions?: string[] | undefined;
|
|
24778
24926
|
system?: boolean | undefined;
|
|
24779
24927
|
inlineHelpText?: string | undefined;
|
|
24780
24928
|
caseSensitive?: boolean | undefined;
|
|
@@ -24850,6 +24998,10 @@ declare const SysBusinessUnitMember: Omit<{
|
|
|
24850
24998
|
tenantField: string;
|
|
24851
24999
|
crossTenantAccess: boolean;
|
|
24852
25000
|
} | undefined;
|
|
25001
|
+
access?: {
|
|
25002
|
+
default: "public" | "private";
|
|
25003
|
+
} | undefined;
|
|
25004
|
+
requiredPermissions?: string[] | undefined;
|
|
24853
25005
|
softDelete?: {
|
|
24854
25006
|
enabled: boolean;
|
|
24855
25007
|
field: string;
|
|
@@ -25216,7 +25368,7 @@ declare const SysBusinessUnitMember: Omit<{
|
|
|
25216
25368
|
clone: boolean;
|
|
25217
25369
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
25218
25370
|
} | undefined;
|
|
25219
|
-
sharingModel?: "full" | "
|
|
25371
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
25220
25372
|
publicSharing?: {
|
|
25221
25373
|
enabled: boolean;
|
|
25222
25374
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -25303,6 +25455,7 @@ declare const SysBusinessUnitMember: Omit<{
|
|
|
25303
25455
|
generatedBy?: string | undefined;
|
|
25304
25456
|
} | undefined;
|
|
25305
25457
|
} | undefined;
|
|
25458
|
+
requiredPermissions?: string[] | undefined;
|
|
25306
25459
|
shortcut?: string | undefined;
|
|
25307
25460
|
bulkEnabled?: boolean | undefined;
|
|
25308
25461
|
ai?: {
|
|
@@ -25368,6 +25521,7 @@ declare const SysBusinessUnitMember: Omit<{
|
|
|
25368
25521
|
readonly dependencies?: string[] | undefined;
|
|
25369
25522
|
readonly externalId?: boolean | undefined;
|
|
25370
25523
|
readonly defaultValue?: unknown;
|
|
25524
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
25371
25525
|
readonly group?: string | undefined;
|
|
25372
25526
|
readonly hidden?: boolean | undefined;
|
|
25373
25527
|
readonly system?: boolean | undefined;
|
|
@@ -25542,6 +25696,7 @@ declare const SysBusinessUnitMember: Omit<{
|
|
|
25542
25696
|
readonly dependencies?: string[] | undefined;
|
|
25543
25697
|
readonly externalId?: boolean | undefined;
|
|
25544
25698
|
readonly defaultValue?: unknown;
|
|
25699
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
25545
25700
|
readonly group?: string | undefined;
|
|
25546
25701
|
readonly hidden?: boolean | undefined;
|
|
25547
25702
|
readonly system?: boolean | undefined;
|
|
@@ -25716,6 +25871,7 @@ declare const SysBusinessUnitMember: Omit<{
|
|
|
25716
25871
|
readonly dependencies?: string[] | undefined;
|
|
25717
25872
|
readonly externalId?: boolean | undefined;
|
|
25718
25873
|
readonly defaultValue?: unknown;
|
|
25874
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
25719
25875
|
readonly group?: string | undefined;
|
|
25720
25876
|
readonly hidden?: boolean | undefined;
|
|
25721
25877
|
readonly system?: boolean | undefined;
|
|
@@ -25890,6 +26046,7 @@ declare const SysBusinessUnitMember: Omit<{
|
|
|
25890
26046
|
readonly dependencies?: string[] | undefined;
|
|
25891
26047
|
readonly externalId?: boolean | undefined;
|
|
25892
26048
|
readonly defaultValue?: unknown;
|
|
26049
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
25893
26050
|
readonly group?: string | undefined;
|
|
25894
26051
|
readonly hidden?: boolean | undefined;
|
|
25895
26052
|
readonly system?: boolean | undefined;
|
|
@@ -26064,6 +26221,7 @@ declare const SysBusinessUnitMember: Omit<{
|
|
|
26064
26221
|
readonly dependencies?: string[] | undefined;
|
|
26065
26222
|
readonly externalId?: boolean | undefined;
|
|
26066
26223
|
readonly defaultValue?: unknown;
|
|
26224
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
26067
26225
|
readonly group?: string | undefined;
|
|
26068
26226
|
readonly hidden?: boolean | undefined;
|
|
26069
26227
|
readonly system?: boolean | undefined;
|
|
@@ -26238,6 +26396,7 @@ declare const SysBusinessUnitMember: Omit<{
|
|
|
26238
26396
|
readonly dependencies?: string[] | undefined;
|
|
26239
26397
|
readonly externalId?: boolean | undefined;
|
|
26240
26398
|
readonly defaultValue?: unknown;
|
|
26399
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
26241
26400
|
readonly group?: string | undefined;
|
|
26242
26401
|
readonly hidden?: boolean | undefined;
|
|
26243
26402
|
readonly system?: boolean | undefined;
|
|
@@ -26412,6 +26571,7 @@ declare const SysBusinessUnitMember: Omit<{
|
|
|
26412
26571
|
readonly dependencies?: string[] | undefined;
|
|
26413
26572
|
readonly externalId?: boolean | undefined;
|
|
26414
26573
|
readonly defaultValue?: unknown;
|
|
26574
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
26415
26575
|
readonly group?: string | undefined;
|
|
26416
26576
|
readonly hidden?: boolean | undefined;
|
|
26417
26577
|
readonly system?: boolean | undefined;
|
|
@@ -26586,6 +26746,7 @@ declare const SysBusinessUnitMember: Omit<{
|
|
|
26586
26746
|
readonly dependencies?: string[] | undefined;
|
|
26587
26747
|
readonly externalId?: boolean | undefined;
|
|
26588
26748
|
readonly defaultValue?: unknown;
|
|
26749
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
26589
26750
|
readonly group?: string | undefined;
|
|
26590
26751
|
readonly hidden?: boolean | undefined;
|
|
26591
26752
|
readonly system?: boolean | undefined;
|
|
@@ -26760,6 +26921,7 @@ declare const SysBusinessUnitMember: Omit<{
|
|
|
26760
26921
|
readonly dependencies?: string[] | undefined;
|
|
26761
26922
|
readonly externalId?: boolean | undefined;
|
|
26762
26923
|
readonly defaultValue?: unknown;
|
|
26924
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
26763
26925
|
readonly group?: string | undefined;
|
|
26764
26926
|
readonly hidden?: boolean | undefined;
|
|
26765
26927
|
readonly system?: boolean | undefined;
|
|
@@ -27161,6 +27323,7 @@ declare const SysApiKey: Omit<{
|
|
|
27161
27323
|
generatedBy?: string | undefined;
|
|
27162
27324
|
} | undefined;
|
|
27163
27325
|
} | undefined;
|
|
27326
|
+
requiredPermissions?: string[] | undefined;
|
|
27164
27327
|
system?: boolean | undefined;
|
|
27165
27328
|
inlineHelpText?: string | undefined;
|
|
27166
27329
|
caseSensitive?: boolean | undefined;
|
|
@@ -27236,6 +27399,10 @@ declare const SysApiKey: Omit<{
|
|
|
27236
27399
|
tenantField: string;
|
|
27237
27400
|
crossTenantAccess: boolean;
|
|
27238
27401
|
} | undefined;
|
|
27402
|
+
access?: {
|
|
27403
|
+
default: "public" | "private";
|
|
27404
|
+
} | undefined;
|
|
27405
|
+
requiredPermissions?: string[] | undefined;
|
|
27239
27406
|
softDelete?: {
|
|
27240
27407
|
enabled: boolean;
|
|
27241
27408
|
field: string;
|
|
@@ -27602,7 +27769,7 @@ declare const SysApiKey: Omit<{
|
|
|
27602
27769
|
clone: boolean;
|
|
27603
27770
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
27604
27771
|
} | undefined;
|
|
27605
|
-
sharingModel?: "full" | "
|
|
27772
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
27606
27773
|
publicSharing?: {
|
|
27607
27774
|
enabled: boolean;
|
|
27608
27775
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -27689,6 +27856,7 @@ declare const SysApiKey: Omit<{
|
|
|
27689
27856
|
generatedBy?: string | undefined;
|
|
27690
27857
|
} | undefined;
|
|
27691
27858
|
} | undefined;
|
|
27859
|
+
requiredPermissions?: string[] | undefined;
|
|
27692
27860
|
shortcut?: string | undefined;
|
|
27693
27861
|
bulkEnabled?: boolean | undefined;
|
|
27694
27862
|
ai?: {
|
|
@@ -27878,6 +28046,7 @@ declare const SysApiKey: Omit<{
|
|
|
27878
28046
|
readonly dependencies?: string[] | undefined;
|
|
27879
28047
|
readonly externalId?: boolean | undefined;
|
|
27880
28048
|
readonly defaultValue?: unknown;
|
|
28049
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
27881
28050
|
readonly group?: string | undefined;
|
|
27882
28051
|
readonly hidden?: boolean | undefined;
|
|
27883
28052
|
readonly system?: boolean | undefined;
|
|
@@ -28052,6 +28221,7 @@ declare const SysApiKey: Omit<{
|
|
|
28052
28221
|
readonly dependencies?: string[] | undefined;
|
|
28053
28222
|
readonly externalId?: boolean | undefined;
|
|
28054
28223
|
readonly defaultValue?: unknown;
|
|
28224
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
28055
28225
|
readonly group?: string | undefined;
|
|
28056
28226
|
readonly hidden?: boolean | undefined;
|
|
28057
28227
|
readonly system?: boolean | undefined;
|
|
@@ -28226,6 +28396,7 @@ declare const SysApiKey: Omit<{
|
|
|
28226
28396
|
readonly dependencies?: string[] | undefined;
|
|
28227
28397
|
readonly externalId?: boolean | undefined;
|
|
28228
28398
|
readonly defaultValue?: unknown;
|
|
28399
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
28229
28400
|
readonly group?: string | undefined;
|
|
28230
28401
|
readonly hidden?: boolean | undefined;
|
|
28231
28402
|
readonly system?: boolean | undefined;
|
|
@@ -28400,6 +28571,7 @@ declare const SysApiKey: Omit<{
|
|
|
28400
28571
|
readonly dependencies?: string[] | undefined;
|
|
28401
28572
|
readonly externalId?: boolean | undefined;
|
|
28402
28573
|
readonly defaultValue?: unknown;
|
|
28574
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
28403
28575
|
readonly group?: string | undefined;
|
|
28404
28576
|
readonly hidden?: boolean | undefined;
|
|
28405
28577
|
readonly system?: boolean | undefined;
|
|
@@ -28574,6 +28746,7 @@ declare const SysApiKey: Omit<{
|
|
|
28574
28746
|
readonly dependencies?: string[] | undefined;
|
|
28575
28747
|
readonly externalId?: boolean | undefined;
|
|
28576
28748
|
readonly defaultValue?: unknown;
|
|
28749
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
28577
28750
|
readonly group?: string | undefined;
|
|
28578
28751
|
readonly hidden?: boolean | undefined;
|
|
28579
28752
|
readonly system?: boolean | undefined;
|
|
@@ -28748,6 +28921,7 @@ declare const SysApiKey: Omit<{
|
|
|
28748
28921
|
readonly dependencies?: string[] | undefined;
|
|
28749
28922
|
readonly externalId?: boolean | undefined;
|
|
28750
28923
|
readonly defaultValue?: unknown;
|
|
28924
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
28751
28925
|
readonly group?: string | undefined;
|
|
28752
28926
|
readonly hidden?: boolean | undefined;
|
|
28753
28927
|
readonly system?: boolean | undefined;
|
|
@@ -28922,6 +29096,7 @@ declare const SysApiKey: Omit<{
|
|
|
28922
29096
|
readonly dependencies?: string[] | undefined;
|
|
28923
29097
|
readonly externalId?: boolean | undefined;
|
|
28924
29098
|
readonly defaultValue?: unknown;
|
|
29099
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
28925
29100
|
readonly group?: string | undefined;
|
|
28926
29101
|
readonly hidden?: boolean | undefined;
|
|
28927
29102
|
readonly system?: boolean | undefined;
|
|
@@ -29096,6 +29271,7 @@ declare const SysApiKey: Omit<{
|
|
|
29096
29271
|
readonly dependencies?: string[] | undefined;
|
|
29097
29272
|
readonly externalId?: boolean | undefined;
|
|
29098
29273
|
readonly defaultValue?: unknown;
|
|
29274
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
29099
29275
|
readonly group?: string | undefined;
|
|
29100
29276
|
readonly hidden?: boolean | undefined;
|
|
29101
29277
|
readonly system?: boolean | undefined;
|
|
@@ -29270,6 +29446,7 @@ declare const SysApiKey: Omit<{
|
|
|
29270
29446
|
readonly dependencies?: string[] | undefined;
|
|
29271
29447
|
readonly externalId?: boolean | undefined;
|
|
29272
29448
|
readonly defaultValue?: unknown;
|
|
29449
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
29273
29450
|
readonly group?: string | undefined;
|
|
29274
29451
|
readonly hidden?: boolean | undefined;
|
|
29275
29452
|
readonly system?: boolean | undefined;
|
|
@@ -29444,6 +29621,7 @@ declare const SysApiKey: Omit<{
|
|
|
29444
29621
|
readonly dependencies?: string[] | undefined;
|
|
29445
29622
|
readonly externalId?: boolean | undefined;
|
|
29446
29623
|
readonly defaultValue?: unknown;
|
|
29624
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
29447
29625
|
readonly group?: string | undefined;
|
|
29448
29626
|
readonly hidden?: boolean | undefined;
|
|
29449
29627
|
readonly system?: boolean | undefined;
|
|
@@ -29618,6 +29796,7 @@ declare const SysApiKey: Omit<{
|
|
|
29618
29796
|
readonly dependencies?: string[] | undefined;
|
|
29619
29797
|
readonly externalId?: boolean | undefined;
|
|
29620
29798
|
readonly defaultValue?: unknown;
|
|
29799
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
29621
29800
|
readonly group?: string | undefined;
|
|
29622
29801
|
readonly hidden?: boolean | undefined;
|
|
29623
29802
|
readonly system?: boolean | undefined;
|
|
@@ -30018,6 +30197,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
30018
30197
|
generatedBy?: string | undefined;
|
|
30019
30198
|
} | undefined;
|
|
30020
30199
|
} | undefined;
|
|
30200
|
+
requiredPermissions?: string[] | undefined;
|
|
30021
30201
|
system?: boolean | undefined;
|
|
30022
30202
|
inlineHelpText?: string | undefined;
|
|
30023
30203
|
caseSensitive?: boolean | undefined;
|
|
@@ -30093,6 +30273,10 @@ declare const SysTwoFactor: Omit<{
|
|
|
30093
30273
|
tenantField: string;
|
|
30094
30274
|
crossTenantAccess: boolean;
|
|
30095
30275
|
} | undefined;
|
|
30276
|
+
access?: {
|
|
30277
|
+
default: "public" | "private";
|
|
30278
|
+
} | undefined;
|
|
30279
|
+
requiredPermissions?: string[] | undefined;
|
|
30096
30280
|
softDelete?: {
|
|
30097
30281
|
enabled: boolean;
|
|
30098
30282
|
field: string;
|
|
@@ -30459,7 +30643,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
30459
30643
|
clone: boolean;
|
|
30460
30644
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
30461
30645
|
} | undefined;
|
|
30462
|
-
sharingModel?: "full" | "
|
|
30646
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
30463
30647
|
publicSharing?: {
|
|
30464
30648
|
enabled: boolean;
|
|
30465
30649
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -30546,6 +30730,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
30546
30730
|
generatedBy?: string | undefined;
|
|
30547
30731
|
} | undefined;
|
|
30548
30732
|
} | undefined;
|
|
30733
|
+
requiredPermissions?: string[] | undefined;
|
|
30549
30734
|
shortcut?: string | undefined;
|
|
30550
30735
|
bulkEnabled?: boolean | undefined;
|
|
30551
30736
|
ai?: {
|
|
@@ -30730,6 +30915,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
30730
30915
|
readonly dependencies?: string[] | undefined;
|
|
30731
30916
|
readonly externalId?: boolean | undefined;
|
|
30732
30917
|
readonly defaultValue?: unknown;
|
|
30918
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
30733
30919
|
readonly group?: string | undefined;
|
|
30734
30920
|
readonly hidden?: boolean | undefined;
|
|
30735
30921
|
readonly system?: boolean | undefined;
|
|
@@ -30904,6 +31090,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
30904
31090
|
readonly dependencies?: string[] | undefined;
|
|
30905
31091
|
readonly externalId?: boolean | undefined;
|
|
30906
31092
|
readonly defaultValue?: unknown;
|
|
31093
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
30907
31094
|
readonly group?: string | undefined;
|
|
30908
31095
|
readonly hidden?: boolean | undefined;
|
|
30909
31096
|
readonly system?: boolean | undefined;
|
|
@@ -31078,6 +31265,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
31078
31265
|
readonly dependencies?: string[] | undefined;
|
|
31079
31266
|
readonly externalId?: boolean | undefined;
|
|
31080
31267
|
readonly defaultValue?: unknown;
|
|
31268
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
31081
31269
|
readonly group?: string | undefined;
|
|
31082
31270
|
readonly hidden?: boolean | undefined;
|
|
31083
31271
|
readonly system?: boolean | undefined;
|
|
@@ -31252,6 +31440,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
31252
31440
|
readonly dependencies?: string[] | undefined;
|
|
31253
31441
|
readonly externalId?: boolean | undefined;
|
|
31254
31442
|
readonly defaultValue?: unknown;
|
|
31443
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
31255
31444
|
readonly group?: string | undefined;
|
|
31256
31445
|
readonly hidden?: boolean | undefined;
|
|
31257
31446
|
readonly system?: boolean | undefined;
|
|
@@ -31426,6 +31615,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
31426
31615
|
readonly dependencies?: string[] | undefined;
|
|
31427
31616
|
readonly externalId?: boolean | undefined;
|
|
31428
31617
|
readonly defaultValue?: unknown;
|
|
31618
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
31429
31619
|
readonly group?: string | undefined;
|
|
31430
31620
|
readonly hidden?: boolean | undefined;
|
|
31431
31621
|
readonly system?: boolean | undefined;
|
|
@@ -31600,6 +31790,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
31600
31790
|
readonly dependencies?: string[] | undefined;
|
|
31601
31791
|
readonly externalId?: boolean | undefined;
|
|
31602
31792
|
readonly defaultValue?: unknown;
|
|
31793
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
31603
31794
|
readonly group?: string | undefined;
|
|
31604
31795
|
readonly hidden?: boolean | undefined;
|
|
31605
31796
|
readonly system?: boolean | undefined;
|
|
@@ -31774,6 +31965,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
31774
31965
|
readonly dependencies?: string[] | undefined;
|
|
31775
31966
|
readonly externalId?: boolean | undefined;
|
|
31776
31967
|
readonly defaultValue?: unknown;
|
|
31968
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
31777
31969
|
readonly group?: string | undefined;
|
|
31778
31970
|
readonly hidden?: boolean | undefined;
|
|
31779
31971
|
readonly system?: boolean | undefined;
|
|
@@ -32177,6 +32369,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
32177
32369
|
generatedBy?: string | undefined;
|
|
32178
32370
|
} | undefined;
|
|
32179
32371
|
} | undefined;
|
|
32372
|
+
requiredPermissions?: string[] | undefined;
|
|
32180
32373
|
system?: boolean | undefined;
|
|
32181
32374
|
inlineHelpText?: string | undefined;
|
|
32182
32375
|
caseSensitive?: boolean | undefined;
|
|
@@ -32252,6 +32445,10 @@ declare const SysDeviceCode: Omit<{
|
|
|
32252
32445
|
tenantField: string;
|
|
32253
32446
|
crossTenantAccess: boolean;
|
|
32254
32447
|
} | undefined;
|
|
32448
|
+
access?: {
|
|
32449
|
+
default: "public" | "private";
|
|
32450
|
+
} | undefined;
|
|
32451
|
+
requiredPermissions?: string[] | undefined;
|
|
32255
32452
|
softDelete?: {
|
|
32256
32453
|
enabled: boolean;
|
|
32257
32454
|
field: string;
|
|
@@ -32618,7 +32815,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
32618
32815
|
clone: boolean;
|
|
32619
32816
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
32620
32817
|
} | undefined;
|
|
32621
|
-
sharingModel?: "full" | "
|
|
32818
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
32622
32819
|
publicSharing?: {
|
|
32623
32820
|
enabled: boolean;
|
|
32624
32821
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -32705,6 +32902,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
32705
32902
|
generatedBy?: string | undefined;
|
|
32706
32903
|
} | undefined;
|
|
32707
32904
|
} | undefined;
|
|
32905
|
+
requiredPermissions?: string[] | undefined;
|
|
32708
32906
|
shortcut?: string | undefined;
|
|
32709
32907
|
bulkEnabled?: boolean | undefined;
|
|
32710
32908
|
ai?: {
|
|
@@ -32775,6 +32973,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
32775
32973
|
readonly dependencies?: string[] | undefined;
|
|
32776
32974
|
readonly externalId?: boolean | undefined;
|
|
32777
32975
|
readonly defaultValue?: unknown;
|
|
32976
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
32778
32977
|
readonly group?: string | undefined;
|
|
32779
32978
|
readonly hidden?: boolean | undefined;
|
|
32780
32979
|
readonly system?: boolean | undefined;
|
|
@@ -32949,6 +33148,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
32949
33148
|
readonly dependencies?: string[] | undefined;
|
|
32950
33149
|
readonly externalId?: boolean | undefined;
|
|
32951
33150
|
readonly defaultValue?: unknown;
|
|
33151
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
32952
33152
|
readonly group?: string | undefined;
|
|
32953
33153
|
readonly hidden?: boolean | undefined;
|
|
32954
33154
|
readonly system?: boolean | undefined;
|
|
@@ -33123,6 +33323,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
33123
33323
|
readonly dependencies?: string[] | undefined;
|
|
33124
33324
|
readonly externalId?: boolean | undefined;
|
|
33125
33325
|
readonly defaultValue?: unknown;
|
|
33326
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
33126
33327
|
readonly group?: string | undefined;
|
|
33127
33328
|
readonly hidden?: boolean | undefined;
|
|
33128
33329
|
readonly system?: boolean | undefined;
|
|
@@ -33298,6 +33499,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
33298
33499
|
readonly dependencies?: string[] | undefined;
|
|
33299
33500
|
readonly externalId?: boolean | undefined;
|
|
33300
33501
|
readonly defaultValue?: unknown;
|
|
33502
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
33301
33503
|
readonly group?: string | undefined;
|
|
33302
33504
|
readonly hidden?: boolean | undefined;
|
|
33303
33505
|
readonly system?: boolean | undefined;
|
|
@@ -33473,6 +33675,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
33473
33675
|
readonly dependencies?: string[] | undefined;
|
|
33474
33676
|
readonly externalId?: boolean | undefined;
|
|
33475
33677
|
readonly defaultValue?: unknown;
|
|
33678
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
33476
33679
|
readonly group?: string | undefined;
|
|
33477
33680
|
readonly hidden?: boolean | undefined;
|
|
33478
33681
|
readonly system?: boolean | undefined;
|
|
@@ -33648,6 +33851,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
33648
33851
|
readonly dependencies?: string[] | undefined;
|
|
33649
33852
|
readonly externalId?: boolean | undefined;
|
|
33650
33853
|
readonly defaultValue?: unknown;
|
|
33854
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
33651
33855
|
readonly group?: string | undefined;
|
|
33652
33856
|
readonly hidden?: boolean | undefined;
|
|
33653
33857
|
readonly system?: boolean | undefined;
|
|
@@ -33822,6 +34026,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
33822
34026
|
readonly dependencies?: string[] | undefined;
|
|
33823
34027
|
readonly externalId?: boolean | undefined;
|
|
33824
34028
|
readonly defaultValue?: unknown;
|
|
34029
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
33825
34030
|
readonly group?: string | undefined;
|
|
33826
34031
|
readonly hidden?: boolean | undefined;
|
|
33827
34032
|
readonly system?: boolean | undefined;
|
|
@@ -33997,6 +34202,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
33997
34202
|
readonly dependencies?: string[] | undefined;
|
|
33998
34203
|
readonly externalId?: boolean | undefined;
|
|
33999
34204
|
readonly defaultValue?: unknown;
|
|
34205
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
34000
34206
|
readonly group?: string | undefined;
|
|
34001
34207
|
readonly hidden?: boolean | undefined;
|
|
34002
34208
|
readonly system?: boolean | undefined;
|
|
@@ -34171,6 +34377,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
34171
34377
|
readonly dependencies?: string[] | undefined;
|
|
34172
34378
|
readonly externalId?: boolean | undefined;
|
|
34173
34379
|
readonly defaultValue?: unknown;
|
|
34380
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
34174
34381
|
readonly group?: string | undefined;
|
|
34175
34382
|
readonly hidden?: boolean | undefined;
|
|
34176
34383
|
readonly system?: boolean | undefined;
|
|
@@ -34345,6 +34552,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
34345
34552
|
readonly dependencies?: string[] | undefined;
|
|
34346
34553
|
readonly externalId?: boolean | undefined;
|
|
34347
34554
|
readonly defaultValue?: unknown;
|
|
34555
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
34348
34556
|
readonly group?: string | undefined;
|
|
34349
34557
|
readonly hidden?: boolean | undefined;
|
|
34350
34558
|
readonly system?: boolean | undefined;
|
|
@@ -34519,6 +34727,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
34519
34727
|
readonly dependencies?: string[] | undefined;
|
|
34520
34728
|
readonly externalId?: boolean | undefined;
|
|
34521
34729
|
readonly defaultValue?: unknown;
|
|
34730
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
34522
34731
|
readonly group?: string | undefined;
|
|
34523
34732
|
readonly hidden?: boolean | undefined;
|
|
34524
34733
|
readonly system?: boolean | undefined;
|
|
@@ -34693,6 +34902,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
34693
34902
|
readonly dependencies?: string[] | undefined;
|
|
34694
34903
|
readonly externalId?: boolean | undefined;
|
|
34695
34904
|
readonly defaultValue?: unknown;
|
|
34905
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
34696
34906
|
readonly group?: string | undefined;
|
|
34697
34907
|
readonly hidden?: boolean | undefined;
|
|
34698
34908
|
readonly system?: boolean | undefined;
|
|
@@ -35099,6 +35309,7 @@ declare const SysUserPreference: Omit<{
|
|
|
35099
35309
|
generatedBy?: string | undefined;
|
|
35100
35310
|
} | undefined;
|
|
35101
35311
|
} | undefined;
|
|
35312
|
+
requiredPermissions?: string[] | undefined;
|
|
35102
35313
|
system?: boolean | undefined;
|
|
35103
35314
|
inlineHelpText?: string | undefined;
|
|
35104
35315
|
caseSensitive?: boolean | undefined;
|
|
@@ -35174,6 +35385,10 @@ declare const SysUserPreference: Omit<{
|
|
|
35174
35385
|
tenantField: string;
|
|
35175
35386
|
crossTenantAccess: boolean;
|
|
35176
35387
|
} | undefined;
|
|
35388
|
+
access?: {
|
|
35389
|
+
default: "public" | "private";
|
|
35390
|
+
} | undefined;
|
|
35391
|
+
requiredPermissions?: string[] | undefined;
|
|
35177
35392
|
softDelete?: {
|
|
35178
35393
|
enabled: boolean;
|
|
35179
35394
|
field: string;
|
|
@@ -35540,7 +35755,7 @@ declare const SysUserPreference: Omit<{
|
|
|
35540
35755
|
clone: boolean;
|
|
35541
35756
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
35542
35757
|
} | undefined;
|
|
35543
|
-
sharingModel?: "full" | "
|
|
35758
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
35544
35759
|
publicSharing?: {
|
|
35545
35760
|
enabled: boolean;
|
|
35546
35761
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -35627,6 +35842,7 @@ declare const SysUserPreference: Omit<{
|
|
|
35627
35842
|
generatedBy?: string | undefined;
|
|
35628
35843
|
} | undefined;
|
|
35629
35844
|
} | undefined;
|
|
35845
|
+
requiredPermissions?: string[] | undefined;
|
|
35630
35846
|
shortcut?: string | undefined;
|
|
35631
35847
|
bulkEnabled?: boolean | undefined;
|
|
35632
35848
|
ai?: {
|
|
@@ -35760,6 +35976,7 @@ declare const SysUserPreference: Omit<{
|
|
|
35760
35976
|
readonly dependencies?: string[] | undefined;
|
|
35761
35977
|
readonly externalId?: boolean | undefined;
|
|
35762
35978
|
readonly defaultValue?: unknown;
|
|
35979
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
35763
35980
|
readonly group?: string | undefined;
|
|
35764
35981
|
readonly hidden?: boolean | undefined;
|
|
35765
35982
|
readonly system?: boolean | undefined;
|
|
@@ -35934,6 +36151,7 @@ declare const SysUserPreference: Omit<{
|
|
|
35934
36151
|
readonly dependencies?: string[] | undefined;
|
|
35935
36152
|
readonly externalId?: boolean | undefined;
|
|
35936
36153
|
readonly defaultValue?: unknown;
|
|
36154
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
35937
36155
|
readonly group?: string | undefined;
|
|
35938
36156
|
readonly hidden?: boolean | undefined;
|
|
35939
36157
|
readonly system?: boolean | undefined;
|
|
@@ -36108,6 +36326,7 @@ declare const SysUserPreference: Omit<{
|
|
|
36108
36326
|
readonly dependencies?: string[] | undefined;
|
|
36109
36327
|
readonly externalId?: boolean | undefined;
|
|
36110
36328
|
readonly defaultValue?: unknown;
|
|
36329
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
36111
36330
|
readonly group?: string | undefined;
|
|
36112
36331
|
readonly hidden?: boolean | undefined;
|
|
36113
36332
|
readonly system?: boolean | undefined;
|
|
@@ -36282,6 +36501,7 @@ declare const SysUserPreference: Omit<{
|
|
|
36282
36501
|
readonly dependencies?: string[] | undefined;
|
|
36283
36502
|
readonly externalId?: boolean | undefined;
|
|
36284
36503
|
readonly defaultValue?: unknown;
|
|
36504
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
36285
36505
|
readonly group?: string | undefined;
|
|
36286
36506
|
readonly hidden?: boolean | undefined;
|
|
36287
36507
|
readonly system?: boolean | undefined;
|
|
@@ -36456,6 +36676,7 @@ declare const SysUserPreference: Omit<{
|
|
|
36456
36676
|
readonly dependencies?: string[] | undefined;
|
|
36457
36677
|
readonly externalId?: boolean | undefined;
|
|
36458
36678
|
readonly defaultValue?: unknown;
|
|
36679
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
36459
36680
|
readonly group?: string | undefined;
|
|
36460
36681
|
readonly hidden?: boolean | undefined;
|
|
36461
36682
|
readonly system?: boolean | undefined;
|
|
@@ -36630,6 +36851,7 @@ declare const SysUserPreference: Omit<{
|
|
|
36630
36851
|
readonly dependencies?: string[] | undefined;
|
|
36631
36852
|
readonly externalId?: boolean | undefined;
|
|
36632
36853
|
readonly defaultValue?: unknown;
|
|
36854
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
36633
36855
|
readonly group?: string | undefined;
|
|
36634
36856
|
readonly hidden?: boolean | undefined;
|
|
36635
36857
|
readonly system?: boolean | undefined;
|
|
@@ -37034,6 +37256,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
37034
37256
|
generatedBy?: string | undefined;
|
|
37035
37257
|
} | undefined;
|
|
37036
37258
|
} | undefined;
|
|
37259
|
+
requiredPermissions?: string[] | undefined;
|
|
37037
37260
|
system?: boolean | undefined;
|
|
37038
37261
|
inlineHelpText?: string | undefined;
|
|
37039
37262
|
caseSensitive?: boolean | undefined;
|
|
@@ -37109,6 +37332,10 @@ declare const SysOauthApplication: Omit<{
|
|
|
37109
37332
|
tenantField: string;
|
|
37110
37333
|
crossTenantAccess: boolean;
|
|
37111
37334
|
} | undefined;
|
|
37335
|
+
access?: {
|
|
37336
|
+
default: "public" | "private";
|
|
37337
|
+
} | undefined;
|
|
37338
|
+
requiredPermissions?: string[] | undefined;
|
|
37112
37339
|
softDelete?: {
|
|
37113
37340
|
enabled: boolean;
|
|
37114
37341
|
field: string;
|
|
@@ -37475,7 +37702,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
37475
37702
|
clone: boolean;
|
|
37476
37703
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
37477
37704
|
} | undefined;
|
|
37478
|
-
sharingModel?: "full" | "
|
|
37705
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
37479
37706
|
publicSharing?: {
|
|
37480
37707
|
enabled: boolean;
|
|
37481
37708
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -37562,6 +37789,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
37562
37789
|
generatedBy?: string | undefined;
|
|
37563
37790
|
} | undefined;
|
|
37564
37791
|
} | undefined;
|
|
37792
|
+
requiredPermissions?: string[] | undefined;
|
|
37565
37793
|
shortcut?: string | undefined;
|
|
37566
37794
|
bulkEnabled?: boolean | undefined;
|
|
37567
37795
|
ai?: {
|
|
@@ -37868,6 +38096,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
37868
38096
|
readonly dependencies?: string[] | undefined;
|
|
37869
38097
|
readonly externalId?: boolean | undefined;
|
|
37870
38098
|
readonly defaultValue?: unknown;
|
|
38099
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
37871
38100
|
readonly group?: string | undefined;
|
|
37872
38101
|
readonly hidden?: boolean | undefined;
|
|
37873
38102
|
readonly system?: boolean | undefined;
|
|
@@ -38042,6 +38271,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
38042
38271
|
readonly dependencies?: string[] | undefined;
|
|
38043
38272
|
readonly externalId?: boolean | undefined;
|
|
38044
38273
|
readonly defaultValue?: unknown;
|
|
38274
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
38045
38275
|
readonly group?: string | undefined;
|
|
38046
38276
|
readonly hidden?: boolean | undefined;
|
|
38047
38277
|
readonly system?: boolean | undefined;
|
|
@@ -38216,6 +38446,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
38216
38446
|
readonly dependencies?: string[] | undefined;
|
|
38217
38447
|
readonly externalId?: boolean | undefined;
|
|
38218
38448
|
readonly defaultValue?: unknown;
|
|
38449
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
38219
38450
|
readonly group?: string | undefined;
|
|
38220
38451
|
readonly hidden?: boolean | undefined;
|
|
38221
38452
|
readonly system?: boolean | undefined;
|
|
@@ -38390,6 +38621,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
38390
38621
|
readonly dependencies?: string[] | undefined;
|
|
38391
38622
|
readonly externalId?: boolean | undefined;
|
|
38392
38623
|
readonly defaultValue?: unknown;
|
|
38624
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
38393
38625
|
readonly group?: string | undefined;
|
|
38394
38626
|
readonly hidden?: boolean | undefined;
|
|
38395
38627
|
readonly system?: boolean | undefined;
|
|
@@ -38564,6 +38796,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
38564
38796
|
readonly dependencies?: string[] | undefined;
|
|
38565
38797
|
readonly externalId?: boolean | undefined;
|
|
38566
38798
|
readonly defaultValue?: unknown;
|
|
38799
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
38567
38800
|
readonly group?: string | undefined;
|
|
38568
38801
|
readonly hidden?: boolean | undefined;
|
|
38569
38802
|
readonly system?: boolean | undefined;
|
|
@@ -38738,6 +38971,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
38738
38971
|
readonly dependencies?: string[] | undefined;
|
|
38739
38972
|
readonly externalId?: boolean | undefined;
|
|
38740
38973
|
readonly defaultValue?: unknown;
|
|
38974
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
38741
38975
|
readonly group?: string | undefined;
|
|
38742
38976
|
readonly hidden?: boolean | undefined;
|
|
38743
38977
|
readonly system?: boolean | undefined;
|
|
@@ -38912,6 +39146,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
38912
39146
|
readonly dependencies?: string[] | undefined;
|
|
38913
39147
|
readonly externalId?: boolean | undefined;
|
|
38914
39148
|
readonly defaultValue?: unknown;
|
|
39149
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
38915
39150
|
readonly group?: string | undefined;
|
|
38916
39151
|
readonly hidden?: boolean | undefined;
|
|
38917
39152
|
readonly system?: boolean | undefined;
|
|
@@ -39086,6 +39321,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
39086
39321
|
readonly dependencies?: string[] | undefined;
|
|
39087
39322
|
readonly externalId?: boolean | undefined;
|
|
39088
39323
|
readonly defaultValue?: unknown;
|
|
39324
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
39089
39325
|
readonly group?: string | undefined;
|
|
39090
39326
|
readonly hidden?: boolean | undefined;
|
|
39091
39327
|
readonly system?: boolean | undefined;
|
|
@@ -39260,6 +39496,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
39260
39496
|
readonly dependencies?: string[] | undefined;
|
|
39261
39497
|
readonly externalId?: boolean | undefined;
|
|
39262
39498
|
readonly defaultValue?: unknown;
|
|
39499
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
39263
39500
|
readonly group?: string | undefined;
|
|
39264
39501
|
readonly hidden?: boolean | undefined;
|
|
39265
39502
|
readonly system?: boolean | undefined;
|
|
@@ -39434,6 +39671,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
39434
39671
|
readonly dependencies?: string[] | undefined;
|
|
39435
39672
|
readonly externalId?: boolean | undefined;
|
|
39436
39673
|
readonly defaultValue?: unknown;
|
|
39674
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
39437
39675
|
readonly group?: string | undefined;
|
|
39438
39676
|
readonly hidden?: boolean | undefined;
|
|
39439
39677
|
readonly system?: boolean | undefined;
|
|
@@ -39608,6 +39846,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
39608
39846
|
readonly dependencies?: string[] | undefined;
|
|
39609
39847
|
readonly externalId?: boolean | undefined;
|
|
39610
39848
|
readonly defaultValue?: unknown;
|
|
39849
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
39611
39850
|
readonly group?: string | undefined;
|
|
39612
39851
|
readonly hidden?: boolean | undefined;
|
|
39613
39852
|
readonly system?: boolean | undefined;
|
|
@@ -39782,6 +40021,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
39782
40021
|
readonly dependencies?: string[] | undefined;
|
|
39783
40022
|
readonly externalId?: boolean | undefined;
|
|
39784
40023
|
readonly defaultValue?: unknown;
|
|
40024
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
39785
40025
|
readonly group?: string | undefined;
|
|
39786
40026
|
readonly hidden?: boolean | undefined;
|
|
39787
40027
|
readonly system?: boolean | undefined;
|
|
@@ -39956,6 +40196,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
39956
40196
|
readonly dependencies?: string[] | undefined;
|
|
39957
40197
|
readonly externalId?: boolean | undefined;
|
|
39958
40198
|
readonly defaultValue?: unknown;
|
|
40199
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
39959
40200
|
readonly group?: string | undefined;
|
|
39960
40201
|
readonly hidden?: boolean | undefined;
|
|
39961
40202
|
readonly system?: boolean | undefined;
|
|
@@ -40130,6 +40371,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
40130
40371
|
readonly dependencies?: string[] | undefined;
|
|
40131
40372
|
readonly externalId?: boolean | undefined;
|
|
40132
40373
|
readonly defaultValue?: unknown;
|
|
40374
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
40133
40375
|
readonly group?: string | undefined;
|
|
40134
40376
|
readonly hidden?: boolean | undefined;
|
|
40135
40377
|
readonly system?: boolean | undefined;
|
|
@@ -40304,6 +40546,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
40304
40546
|
readonly dependencies?: string[] | undefined;
|
|
40305
40547
|
readonly externalId?: boolean | undefined;
|
|
40306
40548
|
readonly defaultValue?: unknown;
|
|
40549
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
40307
40550
|
readonly group?: string | undefined;
|
|
40308
40551
|
readonly hidden?: boolean | undefined;
|
|
40309
40552
|
readonly system?: boolean | undefined;
|
|
@@ -40478,6 +40721,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
40478
40721
|
readonly dependencies?: string[] | undefined;
|
|
40479
40722
|
readonly externalId?: boolean | undefined;
|
|
40480
40723
|
readonly defaultValue?: unknown;
|
|
40724
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
40481
40725
|
readonly group?: string | undefined;
|
|
40482
40726
|
readonly hidden?: boolean | undefined;
|
|
40483
40727
|
readonly system?: boolean | undefined;
|
|
@@ -40652,6 +40896,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
40652
40896
|
readonly dependencies?: string[] | undefined;
|
|
40653
40897
|
readonly externalId?: boolean | undefined;
|
|
40654
40898
|
readonly defaultValue?: unknown;
|
|
40899
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
40655
40900
|
readonly group?: string | undefined;
|
|
40656
40901
|
readonly hidden?: boolean | undefined;
|
|
40657
40902
|
readonly system?: boolean | undefined;
|
|
@@ -40826,6 +41071,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
40826
41071
|
readonly dependencies?: string[] | undefined;
|
|
40827
41072
|
readonly externalId?: boolean | undefined;
|
|
40828
41073
|
readonly defaultValue?: unknown;
|
|
41074
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
40829
41075
|
readonly group?: string | undefined;
|
|
40830
41076
|
readonly hidden?: boolean | undefined;
|
|
40831
41077
|
readonly system?: boolean | undefined;
|
|
@@ -41000,6 +41246,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
41000
41246
|
readonly dependencies?: string[] | undefined;
|
|
41001
41247
|
readonly externalId?: boolean | undefined;
|
|
41002
41248
|
readonly defaultValue?: unknown;
|
|
41249
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
41003
41250
|
readonly group?: string | undefined;
|
|
41004
41251
|
readonly hidden?: boolean | undefined;
|
|
41005
41252
|
readonly system?: boolean | undefined;
|
|
@@ -41174,6 +41421,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
41174
41421
|
readonly dependencies?: string[] | undefined;
|
|
41175
41422
|
readonly externalId?: boolean | undefined;
|
|
41176
41423
|
readonly defaultValue?: unknown;
|
|
41424
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
41177
41425
|
readonly group?: string | undefined;
|
|
41178
41426
|
readonly hidden?: boolean | undefined;
|
|
41179
41427
|
readonly system?: boolean | undefined;
|
|
@@ -41348,6 +41596,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
41348
41596
|
readonly dependencies?: string[] | undefined;
|
|
41349
41597
|
readonly externalId?: boolean | undefined;
|
|
41350
41598
|
readonly defaultValue?: unknown;
|
|
41599
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
41351
41600
|
readonly group?: string | undefined;
|
|
41352
41601
|
readonly hidden?: boolean | undefined;
|
|
41353
41602
|
readonly system?: boolean | undefined;
|
|
@@ -41522,6 +41771,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
41522
41771
|
readonly dependencies?: string[] | undefined;
|
|
41523
41772
|
readonly externalId?: boolean | undefined;
|
|
41524
41773
|
readonly defaultValue?: unknown;
|
|
41774
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
41525
41775
|
readonly group?: string | undefined;
|
|
41526
41776
|
readonly hidden?: boolean | undefined;
|
|
41527
41777
|
readonly system?: boolean | undefined;
|
|
@@ -41696,6 +41946,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
41696
41946
|
readonly dependencies?: string[] | undefined;
|
|
41697
41947
|
readonly externalId?: boolean | undefined;
|
|
41698
41948
|
readonly defaultValue?: unknown;
|
|
41949
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
41699
41950
|
readonly group?: string | undefined;
|
|
41700
41951
|
readonly hidden?: boolean | undefined;
|
|
41701
41952
|
readonly system?: boolean | undefined;
|
|
@@ -41870,6 +42121,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
41870
42121
|
readonly dependencies?: string[] | undefined;
|
|
41871
42122
|
readonly externalId?: boolean | undefined;
|
|
41872
42123
|
readonly defaultValue?: unknown;
|
|
42124
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
41873
42125
|
readonly group?: string | undefined;
|
|
41874
42126
|
readonly hidden?: boolean | undefined;
|
|
41875
42127
|
readonly system?: boolean | undefined;
|
|
@@ -42044,6 +42296,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
42044
42296
|
readonly dependencies?: string[] | undefined;
|
|
42045
42297
|
readonly externalId?: boolean | undefined;
|
|
42046
42298
|
readonly defaultValue?: unknown;
|
|
42299
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
42047
42300
|
readonly group?: string | undefined;
|
|
42048
42301
|
readonly hidden?: boolean | undefined;
|
|
42049
42302
|
readonly system?: boolean | undefined;
|
|
@@ -42218,6 +42471,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
42218
42471
|
readonly dependencies?: string[] | undefined;
|
|
42219
42472
|
readonly externalId?: boolean | undefined;
|
|
42220
42473
|
readonly defaultValue?: unknown;
|
|
42474
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
42221
42475
|
readonly group?: string | undefined;
|
|
42222
42476
|
readonly hidden?: boolean | undefined;
|
|
42223
42477
|
readonly system?: boolean | undefined;
|
|
@@ -42392,6 +42646,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
42392
42646
|
readonly dependencies?: string[] | undefined;
|
|
42393
42647
|
readonly externalId?: boolean | undefined;
|
|
42394
42648
|
readonly defaultValue?: unknown;
|
|
42649
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
42395
42650
|
readonly group?: string | undefined;
|
|
42396
42651
|
readonly hidden?: boolean | undefined;
|
|
42397
42652
|
readonly system?: boolean | undefined;
|
|
@@ -42566,6 +42821,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
42566
42821
|
readonly dependencies?: string[] | undefined;
|
|
42567
42822
|
readonly externalId?: boolean | undefined;
|
|
42568
42823
|
readonly defaultValue?: unknown;
|
|
42824
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
42569
42825
|
readonly group?: string | undefined;
|
|
42570
42826
|
readonly hidden?: boolean | undefined;
|
|
42571
42827
|
readonly system?: boolean | undefined;
|
|
@@ -42740,6 +42996,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
42740
42996
|
readonly dependencies?: string[] | undefined;
|
|
42741
42997
|
readonly externalId?: boolean | undefined;
|
|
42742
42998
|
readonly defaultValue?: unknown;
|
|
42999
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
42743
43000
|
readonly group?: string | undefined;
|
|
42744
43001
|
readonly hidden?: boolean | undefined;
|
|
42745
43002
|
readonly system?: boolean | undefined;
|
|
@@ -42914,6 +43171,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
42914
43171
|
readonly dependencies?: string[] | undefined;
|
|
42915
43172
|
readonly externalId?: boolean | undefined;
|
|
42916
43173
|
readonly defaultValue?: unknown;
|
|
43174
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
42917
43175
|
readonly group?: string | undefined;
|
|
42918
43176
|
readonly hidden?: boolean | undefined;
|
|
42919
43177
|
readonly system?: boolean | undefined;
|
|
@@ -43317,6 +43575,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
43317
43575
|
generatedBy?: string | undefined;
|
|
43318
43576
|
} | undefined;
|
|
43319
43577
|
} | undefined;
|
|
43578
|
+
requiredPermissions?: string[] | undefined;
|
|
43320
43579
|
system?: boolean | undefined;
|
|
43321
43580
|
inlineHelpText?: string | undefined;
|
|
43322
43581
|
caseSensitive?: boolean | undefined;
|
|
@@ -43392,6 +43651,10 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
43392
43651
|
tenantField: string;
|
|
43393
43652
|
crossTenantAccess: boolean;
|
|
43394
43653
|
} | undefined;
|
|
43654
|
+
access?: {
|
|
43655
|
+
default: "public" | "private";
|
|
43656
|
+
} | undefined;
|
|
43657
|
+
requiredPermissions?: string[] | undefined;
|
|
43395
43658
|
softDelete?: {
|
|
43396
43659
|
enabled: boolean;
|
|
43397
43660
|
field: string;
|
|
@@ -43758,7 +44021,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
43758
44021
|
clone: boolean;
|
|
43759
44022
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
43760
44023
|
} | undefined;
|
|
43761
|
-
sharingModel?: "full" | "
|
|
44024
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
43762
44025
|
publicSharing?: {
|
|
43763
44026
|
enabled: boolean;
|
|
43764
44027
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -43845,6 +44108,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
43845
44108
|
generatedBy?: string | undefined;
|
|
43846
44109
|
} | undefined;
|
|
43847
44110
|
} | undefined;
|
|
44111
|
+
requiredPermissions?: string[] | undefined;
|
|
43848
44112
|
shortcut?: string | undefined;
|
|
43849
44113
|
bulkEnabled?: boolean | undefined;
|
|
43850
44114
|
ai?: {
|
|
@@ -43914,6 +44178,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
43914
44178
|
readonly dependencies?: string[] | undefined;
|
|
43915
44179
|
readonly externalId?: boolean | undefined;
|
|
43916
44180
|
readonly defaultValue?: unknown;
|
|
44181
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
43917
44182
|
readonly group?: string | undefined;
|
|
43918
44183
|
readonly hidden?: boolean | undefined;
|
|
43919
44184
|
readonly system?: boolean | undefined;
|
|
@@ -44088,6 +44353,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
44088
44353
|
readonly dependencies?: string[] | undefined;
|
|
44089
44354
|
readonly externalId?: boolean | undefined;
|
|
44090
44355
|
readonly defaultValue?: unknown;
|
|
44356
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
44091
44357
|
readonly group?: string | undefined;
|
|
44092
44358
|
readonly hidden?: boolean | undefined;
|
|
44093
44359
|
readonly system?: boolean | undefined;
|
|
@@ -44262,6 +44528,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
44262
44528
|
readonly dependencies?: string[] | undefined;
|
|
44263
44529
|
readonly externalId?: boolean | undefined;
|
|
44264
44530
|
readonly defaultValue?: unknown;
|
|
44531
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
44265
44532
|
readonly group?: string | undefined;
|
|
44266
44533
|
readonly hidden?: boolean | undefined;
|
|
44267
44534
|
readonly system?: boolean | undefined;
|
|
@@ -44436,6 +44703,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
44436
44703
|
readonly dependencies?: string[] | undefined;
|
|
44437
44704
|
readonly externalId?: boolean | undefined;
|
|
44438
44705
|
readonly defaultValue?: unknown;
|
|
44706
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
44439
44707
|
readonly group?: string | undefined;
|
|
44440
44708
|
readonly hidden?: boolean | undefined;
|
|
44441
44709
|
readonly system?: boolean | undefined;
|
|
@@ -44610,6 +44878,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
44610
44878
|
readonly dependencies?: string[] | undefined;
|
|
44611
44879
|
readonly externalId?: boolean | undefined;
|
|
44612
44880
|
readonly defaultValue?: unknown;
|
|
44881
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
44613
44882
|
readonly group?: string | undefined;
|
|
44614
44883
|
readonly hidden?: boolean | undefined;
|
|
44615
44884
|
readonly system?: boolean | undefined;
|
|
@@ -44784,6 +45053,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
44784
45053
|
readonly dependencies?: string[] | undefined;
|
|
44785
45054
|
readonly externalId?: boolean | undefined;
|
|
44786
45055
|
readonly defaultValue?: unknown;
|
|
45056
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
44787
45057
|
readonly group?: string | undefined;
|
|
44788
45058
|
readonly hidden?: boolean | undefined;
|
|
44789
45059
|
readonly system?: boolean | undefined;
|
|
@@ -44958,6 +45228,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
44958
45228
|
readonly dependencies?: string[] | undefined;
|
|
44959
45229
|
readonly externalId?: boolean | undefined;
|
|
44960
45230
|
readonly defaultValue?: unknown;
|
|
45231
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
44961
45232
|
readonly group?: string | undefined;
|
|
44962
45233
|
readonly hidden?: boolean | undefined;
|
|
44963
45234
|
readonly system?: boolean | undefined;
|
|
@@ -45132,6 +45403,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
45132
45403
|
readonly dependencies?: string[] | undefined;
|
|
45133
45404
|
readonly externalId?: boolean | undefined;
|
|
45134
45405
|
readonly defaultValue?: unknown;
|
|
45406
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
45135
45407
|
readonly group?: string | undefined;
|
|
45136
45408
|
readonly hidden?: boolean | undefined;
|
|
45137
45409
|
readonly system?: boolean | undefined;
|
|
@@ -45306,6 +45578,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
45306
45578
|
readonly dependencies?: string[] | undefined;
|
|
45307
45579
|
readonly externalId?: boolean | undefined;
|
|
45308
45580
|
readonly defaultValue?: unknown;
|
|
45581
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
45309
45582
|
readonly group?: string | undefined;
|
|
45310
45583
|
readonly hidden?: boolean | undefined;
|
|
45311
45584
|
readonly system?: boolean | undefined;
|
|
@@ -45480,6 +45753,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
45480
45753
|
readonly dependencies?: string[] | undefined;
|
|
45481
45754
|
readonly externalId?: boolean | undefined;
|
|
45482
45755
|
readonly defaultValue?: unknown;
|
|
45756
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
45483
45757
|
readonly group?: string | undefined;
|
|
45484
45758
|
readonly hidden?: boolean | undefined;
|
|
45485
45759
|
readonly system?: boolean | undefined;
|
|
@@ -45886,6 +46160,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
45886
46160
|
generatedBy?: string | undefined;
|
|
45887
46161
|
} | undefined;
|
|
45888
46162
|
} | undefined;
|
|
46163
|
+
requiredPermissions?: string[] | undefined;
|
|
45889
46164
|
system?: boolean | undefined;
|
|
45890
46165
|
inlineHelpText?: string | undefined;
|
|
45891
46166
|
caseSensitive?: boolean | undefined;
|
|
@@ -45961,6 +46236,10 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
45961
46236
|
tenantField: string;
|
|
45962
46237
|
crossTenantAccess: boolean;
|
|
45963
46238
|
} | undefined;
|
|
46239
|
+
access?: {
|
|
46240
|
+
default: "public" | "private";
|
|
46241
|
+
} | undefined;
|
|
46242
|
+
requiredPermissions?: string[] | undefined;
|
|
45964
46243
|
softDelete?: {
|
|
45965
46244
|
enabled: boolean;
|
|
45966
46245
|
field: string;
|
|
@@ -46327,7 +46606,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
46327
46606
|
clone: boolean;
|
|
46328
46607
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
46329
46608
|
} | undefined;
|
|
46330
|
-
sharingModel?: "full" | "
|
|
46609
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
46331
46610
|
publicSharing?: {
|
|
46332
46611
|
enabled: boolean;
|
|
46333
46612
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -46414,6 +46693,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
46414
46693
|
generatedBy?: string | undefined;
|
|
46415
46694
|
} | undefined;
|
|
46416
46695
|
} | undefined;
|
|
46696
|
+
requiredPermissions?: string[] | undefined;
|
|
46417
46697
|
shortcut?: string | undefined;
|
|
46418
46698
|
bulkEnabled?: boolean | undefined;
|
|
46419
46699
|
ai?: {
|
|
@@ -46483,6 +46763,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
46483
46763
|
readonly dependencies?: string[] | undefined;
|
|
46484
46764
|
readonly externalId?: boolean | undefined;
|
|
46485
46765
|
readonly defaultValue?: unknown;
|
|
46766
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
46486
46767
|
readonly group?: string | undefined;
|
|
46487
46768
|
readonly hidden?: boolean | undefined;
|
|
46488
46769
|
readonly system?: boolean | undefined;
|
|
@@ -46657,6 +46938,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
46657
46938
|
readonly dependencies?: string[] | undefined;
|
|
46658
46939
|
readonly externalId?: boolean | undefined;
|
|
46659
46940
|
readonly defaultValue?: unknown;
|
|
46941
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
46660
46942
|
readonly group?: string | undefined;
|
|
46661
46943
|
readonly hidden?: boolean | undefined;
|
|
46662
46944
|
readonly system?: boolean | undefined;
|
|
@@ -46831,6 +47113,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
46831
47113
|
readonly dependencies?: string[] | undefined;
|
|
46832
47114
|
readonly externalId?: boolean | undefined;
|
|
46833
47115
|
readonly defaultValue?: unknown;
|
|
47116
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
46834
47117
|
readonly group?: string | undefined;
|
|
46835
47118
|
readonly hidden?: boolean | undefined;
|
|
46836
47119
|
readonly system?: boolean | undefined;
|
|
@@ -47005,6 +47288,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
47005
47288
|
readonly dependencies?: string[] | undefined;
|
|
47006
47289
|
readonly externalId?: boolean | undefined;
|
|
47007
47290
|
readonly defaultValue?: unknown;
|
|
47291
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
47008
47292
|
readonly group?: string | undefined;
|
|
47009
47293
|
readonly hidden?: boolean | undefined;
|
|
47010
47294
|
readonly system?: boolean | undefined;
|
|
@@ -47179,6 +47463,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
47179
47463
|
readonly dependencies?: string[] | undefined;
|
|
47180
47464
|
readonly externalId?: boolean | undefined;
|
|
47181
47465
|
readonly defaultValue?: unknown;
|
|
47466
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
47182
47467
|
readonly group?: string | undefined;
|
|
47183
47468
|
readonly hidden?: boolean | undefined;
|
|
47184
47469
|
readonly system?: boolean | undefined;
|
|
@@ -47353,6 +47638,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
47353
47638
|
readonly dependencies?: string[] | undefined;
|
|
47354
47639
|
readonly externalId?: boolean | undefined;
|
|
47355
47640
|
readonly defaultValue?: unknown;
|
|
47641
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
47356
47642
|
readonly group?: string | undefined;
|
|
47357
47643
|
readonly hidden?: boolean | undefined;
|
|
47358
47644
|
readonly system?: boolean | undefined;
|
|
@@ -47527,6 +47813,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
47527
47813
|
readonly dependencies?: string[] | undefined;
|
|
47528
47814
|
readonly externalId?: boolean | undefined;
|
|
47529
47815
|
readonly defaultValue?: unknown;
|
|
47816
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
47530
47817
|
readonly group?: string | undefined;
|
|
47531
47818
|
readonly hidden?: boolean | undefined;
|
|
47532
47819
|
readonly system?: boolean | undefined;
|
|
@@ -47701,6 +47988,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
47701
47988
|
readonly dependencies?: string[] | undefined;
|
|
47702
47989
|
readonly externalId?: boolean | undefined;
|
|
47703
47990
|
readonly defaultValue?: unknown;
|
|
47991
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
47704
47992
|
readonly group?: string | undefined;
|
|
47705
47993
|
readonly hidden?: boolean | undefined;
|
|
47706
47994
|
readonly system?: boolean | undefined;
|
|
@@ -47875,6 +48163,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
47875
48163
|
readonly dependencies?: string[] | undefined;
|
|
47876
48164
|
readonly externalId?: boolean | undefined;
|
|
47877
48165
|
readonly defaultValue?: unknown;
|
|
48166
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
47878
48167
|
readonly group?: string | undefined;
|
|
47879
48168
|
readonly hidden?: boolean | undefined;
|
|
47880
48169
|
readonly system?: boolean | undefined;
|
|
@@ -48049,6 +48338,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
48049
48338
|
readonly dependencies?: string[] | undefined;
|
|
48050
48339
|
readonly externalId?: boolean | undefined;
|
|
48051
48340
|
readonly defaultValue?: unknown;
|
|
48341
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
48052
48342
|
readonly group?: string | undefined;
|
|
48053
48343
|
readonly hidden?: boolean | undefined;
|
|
48054
48344
|
readonly system?: boolean | undefined;
|
|
@@ -48223,6 +48513,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
48223
48513
|
readonly dependencies?: string[] | undefined;
|
|
48224
48514
|
readonly externalId?: boolean | undefined;
|
|
48225
48515
|
readonly defaultValue?: unknown;
|
|
48516
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
48226
48517
|
readonly group?: string | undefined;
|
|
48227
48518
|
readonly hidden?: boolean | undefined;
|
|
48228
48519
|
readonly system?: boolean | undefined;
|
|
@@ -48629,6 +48920,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
48629
48920
|
generatedBy?: string | undefined;
|
|
48630
48921
|
} | undefined;
|
|
48631
48922
|
} | undefined;
|
|
48923
|
+
requiredPermissions?: string[] | undefined;
|
|
48632
48924
|
system?: boolean | undefined;
|
|
48633
48925
|
inlineHelpText?: string | undefined;
|
|
48634
48926
|
caseSensitive?: boolean | undefined;
|
|
@@ -48704,6 +48996,10 @@ declare const SysOauthConsent: Omit<{
|
|
|
48704
48996
|
tenantField: string;
|
|
48705
48997
|
crossTenantAccess: boolean;
|
|
48706
48998
|
} | undefined;
|
|
48999
|
+
access?: {
|
|
49000
|
+
default: "public" | "private";
|
|
49001
|
+
} | undefined;
|
|
49002
|
+
requiredPermissions?: string[] | undefined;
|
|
48707
49003
|
softDelete?: {
|
|
48708
49004
|
enabled: boolean;
|
|
48709
49005
|
field: string;
|
|
@@ -49070,7 +49366,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
49070
49366
|
clone: boolean;
|
|
49071
49367
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
49072
49368
|
} | undefined;
|
|
49073
|
-
sharingModel?: "full" | "
|
|
49369
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
49074
49370
|
publicSharing?: {
|
|
49075
49371
|
enabled: boolean;
|
|
49076
49372
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -49157,6 +49453,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
49157
49453
|
generatedBy?: string | undefined;
|
|
49158
49454
|
} | undefined;
|
|
49159
49455
|
} | undefined;
|
|
49456
|
+
requiredPermissions?: string[] | undefined;
|
|
49160
49457
|
shortcut?: string | undefined;
|
|
49161
49458
|
bulkEnabled?: boolean | undefined;
|
|
49162
49459
|
ai?: {
|
|
@@ -49226,6 +49523,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
49226
49523
|
readonly dependencies?: string[] | undefined;
|
|
49227
49524
|
readonly externalId?: boolean | undefined;
|
|
49228
49525
|
readonly defaultValue?: unknown;
|
|
49526
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
49229
49527
|
readonly group?: string | undefined;
|
|
49230
49528
|
readonly hidden?: boolean | undefined;
|
|
49231
49529
|
readonly system?: boolean | undefined;
|
|
@@ -49400,6 +49698,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
49400
49698
|
readonly dependencies?: string[] | undefined;
|
|
49401
49699
|
readonly externalId?: boolean | undefined;
|
|
49402
49700
|
readonly defaultValue?: unknown;
|
|
49701
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
49403
49702
|
readonly group?: string | undefined;
|
|
49404
49703
|
readonly hidden?: boolean | undefined;
|
|
49405
49704
|
readonly system?: boolean | undefined;
|
|
@@ -49574,6 +49873,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
49574
49873
|
readonly dependencies?: string[] | undefined;
|
|
49575
49874
|
readonly externalId?: boolean | undefined;
|
|
49576
49875
|
readonly defaultValue?: unknown;
|
|
49876
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
49577
49877
|
readonly group?: string | undefined;
|
|
49578
49878
|
readonly hidden?: boolean | undefined;
|
|
49579
49879
|
readonly system?: boolean | undefined;
|
|
@@ -49748,6 +50048,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
49748
50048
|
readonly dependencies?: string[] | undefined;
|
|
49749
50049
|
readonly externalId?: boolean | undefined;
|
|
49750
50050
|
readonly defaultValue?: unknown;
|
|
50051
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
49751
50052
|
readonly group?: string | undefined;
|
|
49752
50053
|
readonly hidden?: boolean | undefined;
|
|
49753
50054
|
readonly system?: boolean | undefined;
|
|
@@ -49922,6 +50223,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
49922
50223
|
readonly dependencies?: string[] | undefined;
|
|
49923
50224
|
readonly externalId?: boolean | undefined;
|
|
49924
50225
|
readonly defaultValue?: unknown;
|
|
50226
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
49925
50227
|
readonly group?: string | undefined;
|
|
49926
50228
|
readonly hidden?: boolean | undefined;
|
|
49927
50229
|
readonly system?: boolean | undefined;
|
|
@@ -50096,6 +50398,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
50096
50398
|
readonly dependencies?: string[] | undefined;
|
|
50097
50399
|
readonly externalId?: boolean | undefined;
|
|
50098
50400
|
readonly defaultValue?: unknown;
|
|
50401
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
50099
50402
|
readonly group?: string | undefined;
|
|
50100
50403
|
readonly hidden?: boolean | undefined;
|
|
50101
50404
|
readonly system?: boolean | undefined;
|
|
@@ -50270,6 +50573,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
50270
50573
|
readonly dependencies?: string[] | undefined;
|
|
50271
50574
|
readonly externalId?: boolean | undefined;
|
|
50272
50575
|
readonly defaultValue?: unknown;
|
|
50576
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
50273
50577
|
readonly group?: string | undefined;
|
|
50274
50578
|
readonly hidden?: boolean | undefined;
|
|
50275
50579
|
readonly system?: boolean | undefined;
|
|
@@ -50669,6 +50973,7 @@ declare const SysJwks: Omit<{
|
|
|
50669
50973
|
generatedBy?: string | undefined;
|
|
50670
50974
|
} | undefined;
|
|
50671
50975
|
} | undefined;
|
|
50976
|
+
requiredPermissions?: string[] | undefined;
|
|
50672
50977
|
system?: boolean | undefined;
|
|
50673
50978
|
inlineHelpText?: string | undefined;
|
|
50674
50979
|
caseSensitive?: boolean | undefined;
|
|
@@ -50744,6 +51049,10 @@ declare const SysJwks: Omit<{
|
|
|
50744
51049
|
tenantField: string;
|
|
50745
51050
|
crossTenantAccess: boolean;
|
|
50746
51051
|
} | undefined;
|
|
51052
|
+
access?: {
|
|
51053
|
+
default: "public" | "private";
|
|
51054
|
+
} | undefined;
|
|
51055
|
+
requiredPermissions?: string[] | undefined;
|
|
50747
51056
|
softDelete?: {
|
|
50748
51057
|
enabled: boolean;
|
|
50749
51058
|
field: string;
|
|
@@ -51110,7 +51419,7 @@ declare const SysJwks: Omit<{
|
|
|
51110
51419
|
clone: boolean;
|
|
51111
51420
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
51112
51421
|
} | undefined;
|
|
51113
|
-
sharingModel?: "full" | "
|
|
51422
|
+
sharingModel?: "full" | "private" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
51114
51423
|
publicSharing?: {
|
|
51115
51424
|
enabled: boolean;
|
|
51116
51425
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -51197,6 +51506,7 @@ declare const SysJwks: Omit<{
|
|
|
51197
51506
|
generatedBy?: string | undefined;
|
|
51198
51507
|
} | undefined;
|
|
51199
51508
|
} | undefined;
|
|
51509
|
+
requiredPermissions?: string[] | undefined;
|
|
51200
51510
|
shortcut?: string | undefined;
|
|
51201
51511
|
bulkEnabled?: boolean | undefined;
|
|
51202
51512
|
ai?: {
|
|
@@ -51266,6 +51576,7 @@ declare const SysJwks: Omit<{
|
|
|
51266
51576
|
readonly dependencies?: string[] | undefined;
|
|
51267
51577
|
readonly externalId?: boolean | undefined;
|
|
51268
51578
|
readonly defaultValue?: unknown;
|
|
51579
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
51269
51580
|
readonly group?: string | undefined;
|
|
51270
51581
|
readonly hidden?: boolean | undefined;
|
|
51271
51582
|
readonly system?: boolean | undefined;
|
|
@@ -51440,6 +51751,7 @@ declare const SysJwks: Omit<{
|
|
|
51440
51751
|
readonly dependencies?: string[] | undefined;
|
|
51441
51752
|
readonly externalId?: boolean | undefined;
|
|
51442
51753
|
readonly defaultValue?: unknown;
|
|
51754
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
51443
51755
|
readonly group?: string | undefined;
|
|
51444
51756
|
readonly hidden?: boolean | undefined;
|
|
51445
51757
|
readonly system?: boolean | undefined;
|
|
@@ -51614,6 +51926,7 @@ declare const SysJwks: Omit<{
|
|
|
51614
51926
|
readonly dependencies?: string[] | undefined;
|
|
51615
51927
|
readonly externalId?: boolean | undefined;
|
|
51616
51928
|
readonly defaultValue?: unknown;
|
|
51929
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
51617
51930
|
readonly group?: string | undefined;
|
|
51618
51931
|
readonly hidden?: boolean | undefined;
|
|
51619
51932
|
readonly system?: boolean | undefined;
|
|
@@ -51788,6 +52101,7 @@ declare const SysJwks: Omit<{
|
|
|
51788
52101
|
readonly dependencies?: string[] | undefined;
|
|
51789
52102
|
readonly externalId?: boolean | undefined;
|
|
51790
52103
|
readonly defaultValue?: unknown;
|
|
52104
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
51791
52105
|
readonly group?: string | undefined;
|
|
51792
52106
|
readonly hidden?: boolean | undefined;
|
|
51793
52107
|
readonly system?: boolean | undefined;
|
|
@@ -51962,6 +52276,7 @@ declare const SysJwks: Omit<{
|
|
|
51962
52276
|
readonly dependencies?: string[] | undefined;
|
|
51963
52277
|
readonly externalId?: boolean | undefined;
|
|
51964
52278
|
readonly defaultValue?: unknown;
|
|
52279
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
51965
52280
|
readonly group?: string | undefined;
|
|
51966
52281
|
readonly hidden?: boolean | undefined;
|
|
51967
52282
|
readonly system?: boolean | undefined;
|