@channel.io/app-sdk-core 0.21.1 → 0.23.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/extensions/commerce.d.ts +25 -0
- package/dist/extensions/commerce.d.ts.map +1 -1
- package/dist/extensions/config.d.ts +335 -0
- package/dist/extensions/config.d.ts.map +1 -1
- package/dist/extensions/config.js +8 -0
- package/dist/extensions/config.js.map +1 -1
- package/dist/extensions/datasource.d.ts +159 -10
- package/dist/extensions/datasource.d.ts.map +1 -1
- package/dist/extensions/datasource.js +8 -1
- package/dist/extensions/datasource.js.map +1 -1
- package/dist/extensions/hook.d.ts +149 -2
- package/dist/extensions/hook.d.ts.map +1 -1
- package/dist/extensions/hook.js +48 -0
- package/dist/extensions/hook.js.map +1 -1
- package/dist/extensions/index.d.ts +2 -2
- package/dist/extensions/index.d.ts.map +1 -1
- package/dist/extensions/index.js +2 -2
- package/dist/extensions/index.js.map +1 -1
- package/dist/extensions/interfaces/hook.d.ts +1 -0
- package/dist/extensions/interfaces/hook.d.ts.map +1 -1
- package/dist/extensions/interfaces/hook.js.map +1 -1
- package/dist/extensions/interfaces/index.d.ts +1 -1
- package/dist/extensions/interfaces/index.d.ts.map +1 -1
- package/dist/extensions/interfaces/index.js +1 -1
- package/dist/extensions/interfaces/index.js.map +1 -1
- package/dist/extensions/interfaces/oauth.d.ts +1 -1
- package/dist/extensions/notebook.d.ts +6 -6
- package/dist/extensions/oauth.d.ts +12 -4
- package/dist/extensions/oauth.d.ts.map +1 -1
- package/dist/extensions/oauth.js +9 -1
- package/dist/extensions/oauth.js.map +1 -1
- package/dist/extensions/order.d.ts +3 -0
- package/dist/extensions/order.d.ts.map +1 -1
- package/dist/extensions/order.js +1 -0
- package/dist/extensions/order.js.map +1 -1
- package/dist/gen/channel/app/sdk/v1/common.zod.d.ts +8 -8
- package/dist/gen/channel/app/sdk/v1/extension.d.ts +24 -0
- package/dist/gen/channel/app/sdk/v1/extension.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts +326 -60
- package/dist/gen/channel/app/sdk/v1/extension.zod.d.ts.map +1 -1
- package/dist/gen/channel/app/sdk/v1/extension.zod.js +24 -0
- package/dist/gen/channel/app/sdk/v1/extension.zod.js.map +1 -1
- package/dist/types/native.d.ts +17 -0
- package/dist/types/native.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -2492,6 +2492,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
2492
2492
|
}> | undefined;
|
|
2493
2493
|
}>, "many">>;
|
|
2494
2494
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
2495
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2495
2496
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
2496
2497
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
2497
2498
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -2805,6 +2806,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
2805
2806
|
onChangeSuccessMessage?: string | undefined;
|
|
2806
2807
|
}> | undefined;
|
|
2807
2808
|
}[] | undefined;
|
|
2809
|
+
hidden?: boolean | undefined;
|
|
2808
2810
|
resolvesTo?: {
|
|
2809
2811
|
key: string;
|
|
2810
2812
|
sensitive?: boolean | undefined;
|
|
@@ -2914,6 +2916,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
2914
2916
|
onChangeSuccessMessage?: string | undefined;
|
|
2915
2917
|
}> | undefined;
|
|
2916
2918
|
}[] | undefined;
|
|
2919
|
+
hidden?: boolean | undefined;
|
|
2917
2920
|
resolvesTo?: {
|
|
2918
2921
|
key: string;
|
|
2919
2922
|
sensitive?: boolean | undefined;
|
|
@@ -3158,6 +3161,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
3158
3161
|
}> | undefined;
|
|
3159
3162
|
}>, "many">>;
|
|
3160
3163
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
3164
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3161
3165
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3162
3166
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
3163
3167
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -3473,6 +3477,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
3473
3477
|
onChangeSuccessMessage?: string | undefined;
|
|
3474
3478
|
}> | undefined;
|
|
3475
3479
|
}[] | undefined;
|
|
3480
|
+
hidden?: boolean | undefined;
|
|
3476
3481
|
resolvesTo?: {
|
|
3477
3482
|
key: string;
|
|
3478
3483
|
sensitive?: boolean | undefined;
|
|
@@ -3583,6 +3588,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
3583
3588
|
onChangeSuccessMessage?: string | undefined;
|
|
3584
3589
|
}> | undefined;
|
|
3585
3590
|
}[] | undefined;
|
|
3591
|
+
hidden?: boolean | undefined;
|
|
3586
3592
|
resolvesTo?: {
|
|
3587
3593
|
key: string;
|
|
3588
3594
|
sensitive?: boolean | undefined;
|
|
@@ -3827,6 +3833,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
3827
3833
|
}> | undefined;
|
|
3828
3834
|
}>, "many">>;
|
|
3829
3835
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
3836
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
3830
3837
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
3831
3838
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
3832
3839
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -4142,6 +4149,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
4142
4149
|
onChangeSuccessMessage?: string | undefined;
|
|
4143
4150
|
}> | undefined;
|
|
4144
4151
|
}[] | undefined;
|
|
4152
|
+
hidden?: boolean | undefined;
|
|
4145
4153
|
resolvesTo?: {
|
|
4146
4154
|
key: string;
|
|
4147
4155
|
sensitive?: boolean | undefined;
|
|
@@ -4252,6 +4260,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
4252
4260
|
onChangeSuccessMessage?: string | undefined;
|
|
4253
4261
|
}> | undefined;
|
|
4254
4262
|
}[] | undefined;
|
|
4263
|
+
hidden?: boolean | undefined;
|
|
4255
4264
|
resolvesTo?: {
|
|
4256
4265
|
key: string;
|
|
4257
4266
|
sensitive?: boolean | undefined;
|
|
@@ -4496,6 +4505,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
4496
4505
|
}> | undefined;
|
|
4497
4506
|
}>, "many">>;
|
|
4498
4507
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
4508
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
4499
4509
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
4500
4510
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
4501
4511
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -4815,6 +4825,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
4815
4825
|
onChangeSuccessMessage?: string | undefined;
|
|
4816
4826
|
}> | undefined;
|
|
4817
4827
|
}[] | undefined;
|
|
4828
|
+
hidden?: boolean | undefined;
|
|
4818
4829
|
resolvesTo?: {
|
|
4819
4830
|
key: string;
|
|
4820
4831
|
sensitive?: boolean | undefined;
|
|
@@ -4927,6 +4938,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
4927
4938
|
onChangeSuccessMessage?: string | undefined;
|
|
4928
4939
|
}> | undefined;
|
|
4929
4940
|
}[] | undefined;
|
|
4941
|
+
hidden?: boolean | undefined;
|
|
4930
4942
|
resolvesTo?: {
|
|
4931
4943
|
key: string;
|
|
4932
4944
|
sensitive?: boolean | undefined;
|
|
@@ -5171,6 +5183,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
5171
5183
|
}> | undefined;
|
|
5172
5184
|
}>, "many">>;
|
|
5173
5185
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
5186
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
5174
5187
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
5175
5188
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
5176
5189
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -5692,6 +5705,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
5692
5705
|
onChangeSuccessMessage?: string | undefined;
|
|
5693
5706
|
}> | undefined;
|
|
5694
5707
|
}[] | undefined;
|
|
5708
|
+
hidden?: boolean | undefined;
|
|
5695
5709
|
resolvesTo?: {
|
|
5696
5710
|
key: string;
|
|
5697
5711
|
sensitive?: boolean | undefined;
|
|
@@ -5835,6 +5849,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
5835
5849
|
onChangeSuccessMessage?: string | undefined;
|
|
5836
5850
|
}> | undefined;
|
|
5837
5851
|
}[] | undefined;
|
|
5852
|
+
hidden?: boolean | undefined;
|
|
5838
5853
|
resolvesTo?: {
|
|
5839
5854
|
key: string;
|
|
5840
5855
|
sensitive?: boolean | undefined;
|
|
@@ -6113,6 +6128,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
6113
6128
|
}> | undefined;
|
|
6114
6129
|
}>, "many">>;
|
|
6115
6130
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
6131
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
6116
6132
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
6117
6133
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
6118
6134
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -6638,6 +6654,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
6638
6654
|
onChangeSuccessMessage?: string | undefined;
|
|
6639
6655
|
}> | undefined;
|
|
6640
6656
|
}[] | undefined;
|
|
6657
|
+
hidden?: boolean | undefined;
|
|
6641
6658
|
resolvesTo?: {
|
|
6642
6659
|
key: string;
|
|
6643
6660
|
sensitive?: boolean | undefined;
|
|
@@ -6783,6 +6800,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
6783
6800
|
onChangeSuccessMessage?: string | undefined;
|
|
6784
6801
|
}> | undefined;
|
|
6785
6802
|
}[] | undefined;
|
|
6803
|
+
hidden?: boolean | undefined;
|
|
6786
6804
|
resolvesTo?: {
|
|
6787
6805
|
key: string;
|
|
6788
6806
|
sensitive?: boolean | undefined;
|
|
@@ -7061,6 +7079,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
7061
7079
|
}> | undefined;
|
|
7062
7080
|
}>, "many">>;
|
|
7063
7081
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
7082
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
7064
7083
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
7065
7084
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
7066
7085
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -7582,6 +7601,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
7582
7601
|
onChangeSuccessMessage?: string | undefined;
|
|
7583
7602
|
}> | undefined;
|
|
7584
7603
|
}[] | undefined;
|
|
7604
|
+
hidden?: boolean | undefined;
|
|
7585
7605
|
resolvesTo?: {
|
|
7586
7606
|
key: string;
|
|
7587
7607
|
sensitive?: boolean | undefined;
|
|
@@ -7725,6 +7745,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
7725
7745
|
onChangeSuccessMessage?: string | undefined;
|
|
7726
7746
|
}> | undefined;
|
|
7727
7747
|
}[] | undefined;
|
|
7748
|
+
hidden?: boolean | undefined;
|
|
7728
7749
|
resolvesTo?: {
|
|
7729
7750
|
key: string;
|
|
7730
7751
|
sensitive?: boolean | undefined;
|
|
@@ -8003,6 +8024,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
8003
8024
|
}> | undefined;
|
|
8004
8025
|
}>, "many">>;
|
|
8005
8026
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
8027
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
8006
8028
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
8007
8029
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
8008
8030
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -8316,6 +8338,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
8316
8338
|
onChangeSuccessMessage?: string | undefined;
|
|
8317
8339
|
}> | undefined;
|
|
8318
8340
|
}[] | undefined;
|
|
8341
|
+
hidden?: boolean | undefined;
|
|
8319
8342
|
resolvesTo?: {
|
|
8320
8343
|
key: string;
|
|
8321
8344
|
sensitive?: boolean | undefined;
|
|
@@ -8425,6 +8448,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
8425
8448
|
onChangeSuccessMessage?: string | undefined;
|
|
8426
8449
|
}> | undefined;
|
|
8427
8450
|
}[] | undefined;
|
|
8451
|
+
hidden?: boolean | undefined;
|
|
8428
8452
|
resolvesTo?: {
|
|
8429
8453
|
key: string;
|
|
8430
8454
|
sensitive?: boolean | undefined;
|
|
@@ -8669,6 +8693,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
8669
8693
|
}> | undefined;
|
|
8670
8694
|
}>, "many">>;
|
|
8671
8695
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
8696
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
8672
8697
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
8673
8698
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
8674
8699
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -8982,6 +9007,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
8982
9007
|
onChangeSuccessMessage?: string | undefined;
|
|
8983
9008
|
}> | undefined;
|
|
8984
9009
|
}[] | undefined;
|
|
9010
|
+
hidden?: boolean | undefined;
|
|
8985
9011
|
resolvesTo?: {
|
|
8986
9012
|
key: string;
|
|
8987
9013
|
sensitive?: boolean | undefined;
|
|
@@ -9091,6 +9117,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
9091
9117
|
onChangeSuccessMessage?: string | undefined;
|
|
9092
9118
|
}> | undefined;
|
|
9093
9119
|
}[] | undefined;
|
|
9120
|
+
hidden?: boolean | undefined;
|
|
9094
9121
|
resolvesTo?: {
|
|
9095
9122
|
key: string;
|
|
9096
9123
|
sensitive?: boolean | undefined;
|
|
@@ -9335,6 +9362,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
9335
9362
|
}> | undefined;
|
|
9336
9363
|
}>, "many">>;
|
|
9337
9364
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
9365
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
9338
9366
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
9339
9367
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
9340
9368
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -9876,6 +9904,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
9876
9904
|
onChangeSuccessMessage?: string | undefined;
|
|
9877
9905
|
}> | undefined;
|
|
9878
9906
|
}[] | undefined;
|
|
9907
|
+
hidden?: boolean | undefined;
|
|
9879
9908
|
resolvesTo?: {
|
|
9880
9909
|
key: string;
|
|
9881
9910
|
sensitive?: boolean | undefined;
|
|
@@ -10026,6 +10055,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
10026
10055
|
onChangeSuccessMessage?: string | undefined;
|
|
10027
10056
|
}> | undefined;
|
|
10028
10057
|
}[] | undefined;
|
|
10058
|
+
hidden?: boolean | undefined;
|
|
10029
10059
|
resolvesTo?: {
|
|
10030
10060
|
key: string;
|
|
10031
10061
|
sensitive?: boolean | undefined;
|
|
@@ -10304,6 +10334,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
10304
10334
|
}> | undefined;
|
|
10305
10335
|
}>, "many">>;
|
|
10306
10336
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
10337
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
10307
10338
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
10308
10339
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
10309
10340
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -10869,6 +10900,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
10869
10900
|
onChangeSuccessMessage?: string | undefined;
|
|
10870
10901
|
}> | undefined;
|
|
10871
10902
|
}[] | undefined;
|
|
10903
|
+
hidden?: boolean | undefined;
|
|
10872
10904
|
resolvesTo?: {
|
|
10873
10905
|
key: string;
|
|
10874
10906
|
sensitive?: boolean | undefined;
|
|
@@ -11028,6 +11060,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
11028
11060
|
onChangeSuccessMessage?: string | undefined;
|
|
11029
11061
|
}> | undefined;
|
|
11030
11062
|
}[] | undefined;
|
|
11063
|
+
hidden?: boolean | undefined;
|
|
11031
11064
|
resolvesTo?: {
|
|
11032
11065
|
key: string;
|
|
11033
11066
|
sensitive?: boolean | undefined;
|
|
@@ -11308,6 +11341,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
11308
11341
|
}> | undefined;
|
|
11309
11342
|
}>, "many">>;
|
|
11310
11343
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
11344
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
11311
11345
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
11312
11346
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
11313
11347
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -11624,6 +11658,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
11624
11658
|
onChangeSuccessMessage?: string | undefined;
|
|
11625
11659
|
}> | undefined;
|
|
11626
11660
|
}[] | undefined;
|
|
11661
|
+
hidden?: boolean | undefined;
|
|
11627
11662
|
resolvesTo?: {
|
|
11628
11663
|
key: string;
|
|
11629
11664
|
sensitive?: boolean | undefined;
|
|
@@ -11736,6 +11771,7 @@ export declare const ConfigFieldSchema: z.ZodDiscriminatedUnion<"type", readonly
|
|
|
11736
11771
|
onChangeSuccessMessage?: string | undefined;
|
|
11737
11772
|
}> | undefined;
|
|
11738
11773
|
}[] | undefined;
|
|
11774
|
+
hidden?: boolean | undefined;
|
|
11739
11775
|
resolvesTo?: {
|
|
11740
11776
|
key: string;
|
|
11741
11777
|
sensitive?: boolean | undefined;
|
|
@@ -11777,6 +11813,7 @@ export type ConfigField = ProtoBacked<z.infer<typeof ConfigFieldSchema>, ProtoCo
|
|
|
11777
11813
|
declare const ConfigActionBlockSchema: z.ZodObject<{
|
|
11778
11814
|
id: z.ZodOptional<z.ZodString>;
|
|
11779
11815
|
type: z.ZodLiteral<"action">;
|
|
11816
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
11780
11817
|
label: z.ZodString;
|
|
11781
11818
|
description: z.ZodOptional<z.ZodString>;
|
|
11782
11819
|
functionName: z.ZodString;
|
|
@@ -11989,6 +12026,7 @@ declare const ConfigActionBlockSchema: z.ZodObject<{
|
|
|
11989
12026
|
onChangeSuccessMessage?: string | undefined;
|
|
11990
12027
|
}> | undefined;
|
|
11991
12028
|
successMessage?: string | undefined;
|
|
12029
|
+
hidden?: boolean | undefined;
|
|
11992
12030
|
visibleWhen?: {
|
|
11993
12031
|
fieldKey: string;
|
|
11994
12032
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -12043,6 +12081,7 @@ declare const ConfigActionBlockSchema: z.ZodObject<{
|
|
|
12043
12081
|
onChangeSuccessMessage?: string | undefined;
|
|
12044
12082
|
}> | undefined;
|
|
12045
12083
|
successMessage?: string | undefined;
|
|
12084
|
+
hidden?: boolean | undefined;
|
|
12046
12085
|
visibleWhen?: {
|
|
12047
12086
|
fieldKey: string;
|
|
12048
12087
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -12065,6 +12104,7 @@ export type ConfigActionBlock = ProtoBacked<z.infer<typeof ConfigActionBlockSche
|
|
|
12065
12104
|
export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
12066
12105
|
id: z.ZodOptional<z.ZodString>;
|
|
12067
12106
|
type: z.ZodLiteral<"section">;
|
|
12107
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
12068
12108
|
title: z.ZodString;
|
|
12069
12109
|
description: z.ZodOptional<z.ZodString>;
|
|
12070
12110
|
menuLabel: z.ZodOptional<z.ZodString>;
|
|
@@ -12252,6 +12292,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12252
12292
|
onChangeSuccessMessage?: string | undefined;
|
|
12253
12293
|
}> | undefined;
|
|
12254
12294
|
menuLabel?: string | undefined;
|
|
12295
|
+
hidden?: boolean | undefined;
|
|
12255
12296
|
visibleWhen?: {
|
|
12256
12297
|
fieldKey: string;
|
|
12257
12298
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -12292,6 +12333,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12292
12333
|
onChangeSuccessMessage?: string | undefined;
|
|
12293
12334
|
}> | undefined;
|
|
12294
12335
|
menuLabel?: string | undefined;
|
|
12336
|
+
hidden?: boolean | undefined;
|
|
12295
12337
|
visibleWhen?: {
|
|
12296
12338
|
fieldKey: string;
|
|
12297
12339
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -12301,6 +12343,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12301
12343
|
}>, z.ZodObject<{
|
|
12302
12344
|
id: z.ZodOptional<z.ZodString>;
|
|
12303
12345
|
type: z.ZodLiteral<"description">;
|
|
12346
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
12304
12347
|
text: z.ZodString;
|
|
12305
12348
|
helperLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12306
12349
|
key: z.ZodString;
|
|
@@ -12721,6 +12764,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12721
12764
|
onChangeSuccessMessage?: string | undefined;
|
|
12722
12765
|
}> | undefined;
|
|
12723
12766
|
}[] | undefined;
|
|
12767
|
+
hidden?: boolean | undefined;
|
|
12724
12768
|
visibleWhen?: {
|
|
12725
12769
|
fieldKey: string;
|
|
12726
12770
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -12791,6 +12835,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12791
12835
|
onChangeSuccessMessage?: string | undefined;
|
|
12792
12836
|
}> | undefined;
|
|
12793
12837
|
}[] | undefined;
|
|
12838
|
+
hidden?: boolean | undefined;
|
|
12794
12839
|
visibleWhen?: {
|
|
12795
12840
|
fieldKey: string;
|
|
12796
12841
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -12799,6 +12844,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12799
12844
|
}>, z.ZodObject<{
|
|
12800
12845
|
id: z.ZodOptional<z.ZodString>;
|
|
12801
12846
|
type: z.ZodLiteral<"divider">;
|
|
12847
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
12802
12848
|
visibleWhen: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12803
12849
|
fieldKey: z.ZodString;
|
|
12804
12850
|
operator: z.ZodEnum<["eq", "ne", "in", "notIn", "exists", "notExists"]>;
|
|
@@ -12815,6 +12861,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12815
12861
|
}, "strip", z.ZodTypeAny, {
|
|
12816
12862
|
type: "divider";
|
|
12817
12863
|
id?: string | undefined;
|
|
12864
|
+
hidden?: boolean | undefined;
|
|
12818
12865
|
visibleWhen?: {
|
|
12819
12866
|
fieldKey: string;
|
|
12820
12867
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -12823,6 +12870,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12823
12870
|
}, {
|
|
12824
12871
|
type: "divider";
|
|
12825
12872
|
id?: string | undefined;
|
|
12873
|
+
hidden?: boolean | undefined;
|
|
12826
12874
|
visibleWhen?: {
|
|
12827
12875
|
fieldKey: string;
|
|
12828
12876
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -12831,6 +12879,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
12831
12879
|
}>, z.ZodObject<{
|
|
12832
12880
|
id: z.ZodOptional<z.ZodString>;
|
|
12833
12881
|
type: z.ZodLiteral<"banner">;
|
|
12882
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
12834
12883
|
tone: z.ZodDefault<z.ZodEnum<["info", "success", "warning", "danger"]>>;
|
|
12835
12884
|
title: z.ZodOptional<z.ZodString>;
|
|
12836
12885
|
description: z.ZodString;
|
|
@@ -13017,6 +13066,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13017
13066
|
noneLabel?: string | undefined;
|
|
13018
13067
|
onChangeSuccessMessage?: string | undefined;
|
|
13019
13068
|
}> | undefined;
|
|
13069
|
+
hidden?: boolean | undefined;
|
|
13020
13070
|
visibleWhen?: {
|
|
13021
13071
|
fieldKey: string;
|
|
13022
13072
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -13056,6 +13106,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13056
13106
|
onChangeSuccessMessage?: string | undefined;
|
|
13057
13107
|
}> | undefined;
|
|
13058
13108
|
tone?: "success" | "info" | "warning" | "danger" | undefined;
|
|
13109
|
+
hidden?: boolean | undefined;
|
|
13059
13110
|
visibleWhen?: {
|
|
13060
13111
|
fieldKey: string;
|
|
13061
13112
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -13064,6 +13115,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13064
13115
|
}>, z.ZodObject<{
|
|
13065
13116
|
id: z.ZodOptional<z.ZodString>;
|
|
13066
13117
|
type: z.ZodLiteral<"group">;
|
|
13118
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
13067
13119
|
title: z.ZodOptional<z.ZodString>;
|
|
13068
13120
|
description: z.ZodOptional<z.ZodString>;
|
|
13069
13121
|
layout: z.ZodDefault<z.ZodEnum<["column", "row", "grid"]>>;
|
|
@@ -13291,6 +13343,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13291
13343
|
}> | undefined;
|
|
13292
13344
|
}>, "many">>;
|
|
13293
13345
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
13346
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
13294
13347
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
13295
13348
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
13296
13349
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -13604,6 +13657,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13604
13657
|
onChangeSuccessMessage?: string | undefined;
|
|
13605
13658
|
}> | undefined;
|
|
13606
13659
|
}[] | undefined;
|
|
13660
|
+
hidden?: boolean | undefined;
|
|
13607
13661
|
resolvesTo?: {
|
|
13608
13662
|
key: string;
|
|
13609
13663
|
sensitive?: boolean | undefined;
|
|
@@ -13713,6 +13767,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13713
13767
|
onChangeSuccessMessage?: string | undefined;
|
|
13714
13768
|
}> | undefined;
|
|
13715
13769
|
}[] | undefined;
|
|
13770
|
+
hidden?: boolean | undefined;
|
|
13716
13771
|
resolvesTo?: {
|
|
13717
13772
|
key: string;
|
|
13718
13773
|
sensitive?: boolean | undefined;
|
|
@@ -13957,6 +14012,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
13957
14012
|
}> | undefined;
|
|
13958
14013
|
}>, "many">>;
|
|
13959
14014
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
14015
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
13960
14016
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
13961
14017
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
13962
14018
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -14272,6 +14328,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14272
14328
|
onChangeSuccessMessage?: string | undefined;
|
|
14273
14329
|
}> | undefined;
|
|
14274
14330
|
}[] | undefined;
|
|
14331
|
+
hidden?: boolean | undefined;
|
|
14275
14332
|
resolvesTo?: {
|
|
14276
14333
|
key: string;
|
|
14277
14334
|
sensitive?: boolean | undefined;
|
|
@@ -14382,6 +14439,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14382
14439
|
onChangeSuccessMessage?: string | undefined;
|
|
14383
14440
|
}> | undefined;
|
|
14384
14441
|
}[] | undefined;
|
|
14442
|
+
hidden?: boolean | undefined;
|
|
14385
14443
|
resolvesTo?: {
|
|
14386
14444
|
key: string;
|
|
14387
14445
|
sensitive?: boolean | undefined;
|
|
@@ -14626,6 +14684,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14626
14684
|
}> | undefined;
|
|
14627
14685
|
}>, "many">>;
|
|
14628
14686
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
14687
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
14629
14688
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
14630
14689
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
14631
14690
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -14941,6 +15000,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
14941
15000
|
onChangeSuccessMessage?: string | undefined;
|
|
14942
15001
|
}> | undefined;
|
|
14943
15002
|
}[] | undefined;
|
|
15003
|
+
hidden?: boolean | undefined;
|
|
14944
15004
|
resolvesTo?: {
|
|
14945
15005
|
key: string;
|
|
14946
15006
|
sensitive?: boolean | undefined;
|
|
@@ -15051,6 +15111,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15051
15111
|
onChangeSuccessMessage?: string | undefined;
|
|
15052
15112
|
}> | undefined;
|
|
15053
15113
|
}[] | undefined;
|
|
15114
|
+
hidden?: boolean | undefined;
|
|
15054
15115
|
resolvesTo?: {
|
|
15055
15116
|
key: string;
|
|
15056
15117
|
sensitive?: boolean | undefined;
|
|
@@ -15295,6 +15356,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15295
15356
|
}> | undefined;
|
|
15296
15357
|
}>, "many">>;
|
|
15297
15358
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
15359
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
15298
15360
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
15299
15361
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
15300
15362
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -15614,6 +15676,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15614
15676
|
onChangeSuccessMessage?: string | undefined;
|
|
15615
15677
|
}> | undefined;
|
|
15616
15678
|
}[] | undefined;
|
|
15679
|
+
hidden?: boolean | undefined;
|
|
15617
15680
|
resolvesTo?: {
|
|
15618
15681
|
key: string;
|
|
15619
15682
|
sensitive?: boolean | undefined;
|
|
@@ -15726,6 +15789,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15726
15789
|
onChangeSuccessMessage?: string | undefined;
|
|
15727
15790
|
}> | undefined;
|
|
15728
15791
|
}[] | undefined;
|
|
15792
|
+
hidden?: boolean | undefined;
|
|
15729
15793
|
resolvesTo?: {
|
|
15730
15794
|
key: string;
|
|
15731
15795
|
sensitive?: boolean | undefined;
|
|
@@ -15970,6 +16034,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
15970
16034
|
}> | undefined;
|
|
15971
16035
|
}>, "many">>;
|
|
15972
16036
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
16037
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
15973
16038
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
15974
16039
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
15975
16040
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -16491,6 +16556,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
16491
16556
|
onChangeSuccessMessage?: string | undefined;
|
|
16492
16557
|
}> | undefined;
|
|
16493
16558
|
}[] | undefined;
|
|
16559
|
+
hidden?: boolean | undefined;
|
|
16494
16560
|
resolvesTo?: {
|
|
16495
16561
|
key: string;
|
|
16496
16562
|
sensitive?: boolean | undefined;
|
|
@@ -16634,6 +16700,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
16634
16700
|
onChangeSuccessMessage?: string | undefined;
|
|
16635
16701
|
}> | undefined;
|
|
16636
16702
|
}[] | undefined;
|
|
16703
|
+
hidden?: boolean | undefined;
|
|
16637
16704
|
resolvesTo?: {
|
|
16638
16705
|
key: string;
|
|
16639
16706
|
sensitive?: boolean | undefined;
|
|
@@ -16912,6 +16979,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
16912
16979
|
}> | undefined;
|
|
16913
16980
|
}>, "many">>;
|
|
16914
16981
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
16982
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
16915
16983
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
16916
16984
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
16917
16985
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -17437,6 +17505,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
17437
17505
|
onChangeSuccessMessage?: string | undefined;
|
|
17438
17506
|
}> | undefined;
|
|
17439
17507
|
}[] | undefined;
|
|
17508
|
+
hidden?: boolean | undefined;
|
|
17440
17509
|
resolvesTo?: {
|
|
17441
17510
|
key: string;
|
|
17442
17511
|
sensitive?: boolean | undefined;
|
|
@@ -17582,6 +17651,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
17582
17651
|
onChangeSuccessMessage?: string | undefined;
|
|
17583
17652
|
}> | undefined;
|
|
17584
17653
|
}[] | undefined;
|
|
17654
|
+
hidden?: boolean | undefined;
|
|
17585
17655
|
resolvesTo?: {
|
|
17586
17656
|
key: string;
|
|
17587
17657
|
sensitive?: boolean | undefined;
|
|
@@ -17860,6 +17930,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
17860
17930
|
}> | undefined;
|
|
17861
17931
|
}>, "many">>;
|
|
17862
17932
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
17933
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
17863
17934
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
17864
17935
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
17865
17936
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -18381,6 +18452,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18381
18452
|
onChangeSuccessMessage?: string | undefined;
|
|
18382
18453
|
}> | undefined;
|
|
18383
18454
|
}[] | undefined;
|
|
18455
|
+
hidden?: boolean | undefined;
|
|
18384
18456
|
resolvesTo?: {
|
|
18385
18457
|
key: string;
|
|
18386
18458
|
sensitive?: boolean | undefined;
|
|
@@ -18524,6 +18596,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18524
18596
|
onChangeSuccessMessage?: string | undefined;
|
|
18525
18597
|
}> | undefined;
|
|
18526
18598
|
}[] | undefined;
|
|
18599
|
+
hidden?: boolean | undefined;
|
|
18527
18600
|
resolvesTo?: {
|
|
18528
18601
|
key: string;
|
|
18529
18602
|
sensitive?: boolean | undefined;
|
|
@@ -18802,6 +18875,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
18802
18875
|
}> | undefined;
|
|
18803
18876
|
}>, "many">>;
|
|
18804
18877
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
18878
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
18805
18879
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
18806
18880
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
18807
18881
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -19115,6 +19189,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19115
19189
|
onChangeSuccessMessage?: string | undefined;
|
|
19116
19190
|
}> | undefined;
|
|
19117
19191
|
}[] | undefined;
|
|
19192
|
+
hidden?: boolean | undefined;
|
|
19118
19193
|
resolvesTo?: {
|
|
19119
19194
|
key: string;
|
|
19120
19195
|
sensitive?: boolean | undefined;
|
|
@@ -19224,6 +19299,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19224
19299
|
onChangeSuccessMessage?: string | undefined;
|
|
19225
19300
|
}> | undefined;
|
|
19226
19301
|
}[] | undefined;
|
|
19302
|
+
hidden?: boolean | undefined;
|
|
19227
19303
|
resolvesTo?: {
|
|
19228
19304
|
key: string;
|
|
19229
19305
|
sensitive?: boolean | undefined;
|
|
@@ -19468,6 +19544,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19468
19544
|
}> | undefined;
|
|
19469
19545
|
}>, "many">>;
|
|
19470
19546
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
19547
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
19471
19548
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
19472
19549
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
19473
19550
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -19781,6 +19858,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19781
19858
|
onChangeSuccessMessage?: string | undefined;
|
|
19782
19859
|
}> | undefined;
|
|
19783
19860
|
}[] | undefined;
|
|
19861
|
+
hidden?: boolean | undefined;
|
|
19784
19862
|
resolvesTo?: {
|
|
19785
19863
|
key: string;
|
|
19786
19864
|
sensitive?: boolean | undefined;
|
|
@@ -19890,6 +19968,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
19890
19968
|
onChangeSuccessMessage?: string | undefined;
|
|
19891
19969
|
}> | undefined;
|
|
19892
19970
|
}[] | undefined;
|
|
19971
|
+
hidden?: boolean | undefined;
|
|
19893
19972
|
resolvesTo?: {
|
|
19894
19973
|
key: string;
|
|
19895
19974
|
sensitive?: boolean | undefined;
|
|
@@ -20134,6 +20213,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20134
20213
|
}> | undefined;
|
|
20135
20214
|
}>, "many">>;
|
|
20136
20215
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
20216
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
20137
20217
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
20138
20218
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
20139
20219
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -20675,6 +20755,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20675
20755
|
onChangeSuccessMessage?: string | undefined;
|
|
20676
20756
|
}> | undefined;
|
|
20677
20757
|
}[] | undefined;
|
|
20758
|
+
hidden?: boolean | undefined;
|
|
20678
20759
|
resolvesTo?: {
|
|
20679
20760
|
key: string;
|
|
20680
20761
|
sensitive?: boolean | undefined;
|
|
@@ -20825,6 +20906,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
20825
20906
|
onChangeSuccessMessage?: string | undefined;
|
|
20826
20907
|
}> | undefined;
|
|
20827
20908
|
}[] | undefined;
|
|
20909
|
+
hidden?: boolean | undefined;
|
|
20828
20910
|
resolvesTo?: {
|
|
20829
20911
|
key: string;
|
|
20830
20912
|
sensitive?: boolean | undefined;
|
|
@@ -21103,6 +21185,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21103
21185
|
}> | undefined;
|
|
21104
21186
|
}>, "many">>;
|
|
21105
21187
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
21188
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
21106
21189
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
21107
21190
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
21108
21191
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -21668,6 +21751,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21668
21751
|
onChangeSuccessMessage?: string | undefined;
|
|
21669
21752
|
}> | undefined;
|
|
21670
21753
|
}[] | undefined;
|
|
21754
|
+
hidden?: boolean | undefined;
|
|
21671
21755
|
resolvesTo?: {
|
|
21672
21756
|
key: string;
|
|
21673
21757
|
sensitive?: boolean | undefined;
|
|
@@ -21827,6 +21911,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
21827
21911
|
onChangeSuccessMessage?: string | undefined;
|
|
21828
21912
|
}> | undefined;
|
|
21829
21913
|
}[] | undefined;
|
|
21914
|
+
hidden?: boolean | undefined;
|
|
21830
21915
|
resolvesTo?: {
|
|
21831
21916
|
key: string;
|
|
21832
21917
|
sensitive?: boolean | undefined;
|
|
@@ -22107,6 +22192,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
22107
22192
|
}> | undefined;
|
|
22108
22193
|
}>, "many">>;
|
|
22109
22194
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
22195
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
22110
22196
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
22111
22197
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
22112
22198
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -22423,6 +22509,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
22423
22509
|
onChangeSuccessMessage?: string | undefined;
|
|
22424
22510
|
}> | undefined;
|
|
22425
22511
|
}[] | undefined;
|
|
22512
|
+
hidden?: boolean | undefined;
|
|
22426
22513
|
resolvesTo?: {
|
|
22427
22514
|
key: string;
|
|
22428
22515
|
sensitive?: boolean | undefined;
|
|
@@ -22535,6 +22622,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
22535
22622
|
onChangeSuccessMessage?: string | undefined;
|
|
22536
22623
|
}> | undefined;
|
|
22537
22624
|
}[] | undefined;
|
|
22625
|
+
hidden?: boolean | undefined;
|
|
22538
22626
|
resolvesTo?: {
|
|
22539
22627
|
key: string;
|
|
22540
22628
|
sensitive?: boolean | undefined;
|
|
@@ -22786,6 +22874,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
22786
22874
|
onChangeSuccessMessage?: string | undefined;
|
|
22787
22875
|
}> | undefined;
|
|
22788
22876
|
}[] | undefined;
|
|
22877
|
+
hidden?: boolean | undefined;
|
|
22789
22878
|
resolvesTo?: {
|
|
22790
22879
|
key: string;
|
|
22791
22880
|
sensitive?: boolean | undefined;
|
|
@@ -22896,6 +22985,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
22896
22985
|
onChangeSuccessMessage?: string | undefined;
|
|
22897
22986
|
}> | undefined;
|
|
22898
22987
|
}[] | undefined;
|
|
22988
|
+
hidden?: boolean | undefined;
|
|
22899
22989
|
resolvesTo?: {
|
|
22900
22990
|
key: string;
|
|
22901
22991
|
sensitive?: boolean | undefined;
|
|
@@ -23006,6 +23096,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23006
23096
|
onChangeSuccessMessage?: string | undefined;
|
|
23007
23097
|
}> | undefined;
|
|
23008
23098
|
}[] | undefined;
|
|
23099
|
+
hidden?: boolean | undefined;
|
|
23009
23100
|
resolvesTo?: {
|
|
23010
23101
|
key: string;
|
|
23011
23102
|
sensitive?: boolean | undefined;
|
|
@@ -23118,6 +23209,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23118
23209
|
onChangeSuccessMessage?: string | undefined;
|
|
23119
23210
|
}> | undefined;
|
|
23120
23211
|
}[] | undefined;
|
|
23212
|
+
hidden?: boolean | undefined;
|
|
23121
23213
|
resolvesTo?: {
|
|
23122
23214
|
key: string;
|
|
23123
23215
|
sensitive?: boolean | undefined;
|
|
@@ -23227,6 +23319,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23227
23319
|
onChangeSuccessMessage?: string | undefined;
|
|
23228
23320
|
}> | undefined;
|
|
23229
23321
|
}[] | undefined;
|
|
23322
|
+
hidden?: boolean | undefined;
|
|
23230
23323
|
resolvesTo?: {
|
|
23231
23324
|
key: string;
|
|
23232
23325
|
sensitive?: boolean | undefined;
|
|
@@ -23372,6 +23465,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23372
23465
|
onChangeSuccessMessage?: string | undefined;
|
|
23373
23466
|
}> | undefined;
|
|
23374
23467
|
}[] | undefined;
|
|
23468
|
+
hidden?: boolean | undefined;
|
|
23375
23469
|
resolvesTo?: {
|
|
23376
23470
|
key: string;
|
|
23377
23471
|
sensitive?: boolean | undefined;
|
|
@@ -23515,6 +23609,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23515
23609
|
onChangeSuccessMessage?: string | undefined;
|
|
23516
23610
|
}> | undefined;
|
|
23517
23611
|
}[] | undefined;
|
|
23612
|
+
hidden?: boolean | undefined;
|
|
23518
23613
|
resolvesTo?: {
|
|
23519
23614
|
key: string;
|
|
23520
23615
|
sensitive?: boolean | undefined;
|
|
@@ -23658,6 +23753,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23658
23753
|
onChangeSuccessMessage?: string | undefined;
|
|
23659
23754
|
}> | undefined;
|
|
23660
23755
|
}[] | undefined;
|
|
23756
|
+
hidden?: boolean | undefined;
|
|
23661
23757
|
resolvesTo?: {
|
|
23662
23758
|
key: string;
|
|
23663
23759
|
sensitive?: boolean | undefined;
|
|
@@ -23767,6 +23863,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23767
23863
|
onChangeSuccessMessage?: string | undefined;
|
|
23768
23864
|
}> | undefined;
|
|
23769
23865
|
}[] | undefined;
|
|
23866
|
+
hidden?: boolean | undefined;
|
|
23770
23867
|
resolvesTo?: {
|
|
23771
23868
|
key: string;
|
|
23772
23869
|
sensitive?: boolean | undefined;
|
|
@@ -23883,6 +23980,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
23883
23980
|
onChangeSuccessMessage?: string | undefined;
|
|
23884
23981
|
}> | undefined;
|
|
23885
23982
|
}[] | undefined;
|
|
23983
|
+
hidden?: boolean | undefined;
|
|
23886
23984
|
resolvesTo?: {
|
|
23887
23985
|
key: string;
|
|
23888
23986
|
sensitive?: boolean | undefined;
|
|
@@ -24040,6 +24138,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24040
24138
|
onChangeSuccessMessage?: string | undefined;
|
|
24041
24139
|
}> | undefined;
|
|
24042
24140
|
}[] | undefined;
|
|
24141
|
+
hidden?: boolean | undefined;
|
|
24043
24142
|
resolvesTo?: {
|
|
24044
24143
|
key: string;
|
|
24045
24144
|
sensitive?: boolean | undefined;
|
|
@@ -24185,6 +24284,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24185
24284
|
onChangeSuccessMessage?: string | undefined;
|
|
24186
24285
|
}> | undefined;
|
|
24187
24286
|
}[] | undefined;
|
|
24287
|
+
hidden?: boolean | undefined;
|
|
24188
24288
|
resolvesTo?: {
|
|
24189
24289
|
key: string;
|
|
24190
24290
|
sensitive?: boolean | undefined;
|
|
@@ -24254,6 +24354,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24254
24354
|
noneLabel?: string | undefined;
|
|
24255
24355
|
onChangeSuccessMessage?: string | undefined;
|
|
24256
24356
|
}> | undefined;
|
|
24357
|
+
hidden?: boolean | undefined;
|
|
24257
24358
|
visibleWhen?: {
|
|
24258
24359
|
fieldKey: string;
|
|
24259
24360
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -24337,6 +24438,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24337
24438
|
onChangeSuccessMessage?: string | undefined;
|
|
24338
24439
|
}> | undefined;
|
|
24339
24440
|
}[] | undefined;
|
|
24441
|
+
hidden?: boolean | undefined;
|
|
24340
24442
|
resolvesTo?: {
|
|
24341
24443
|
key: string;
|
|
24342
24444
|
sensitive?: boolean | undefined;
|
|
@@ -24447,6 +24549,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24447
24549
|
onChangeSuccessMessage?: string | undefined;
|
|
24448
24550
|
}> | undefined;
|
|
24449
24551
|
}[] | undefined;
|
|
24552
|
+
hidden?: boolean | undefined;
|
|
24450
24553
|
resolvesTo?: {
|
|
24451
24554
|
key: string;
|
|
24452
24555
|
sensitive?: boolean | undefined;
|
|
@@ -24557,6 +24660,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24557
24660
|
onChangeSuccessMessage?: string | undefined;
|
|
24558
24661
|
}> | undefined;
|
|
24559
24662
|
}[] | undefined;
|
|
24663
|
+
hidden?: boolean | undefined;
|
|
24560
24664
|
resolvesTo?: {
|
|
24561
24665
|
key: string;
|
|
24562
24666
|
sensitive?: boolean | undefined;
|
|
@@ -24669,6 +24773,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24669
24773
|
onChangeSuccessMessage?: string | undefined;
|
|
24670
24774
|
}> | undefined;
|
|
24671
24775
|
}[] | undefined;
|
|
24776
|
+
hidden?: boolean | undefined;
|
|
24672
24777
|
resolvesTo?: {
|
|
24673
24778
|
key: string;
|
|
24674
24779
|
sensitive?: boolean | undefined;
|
|
@@ -24778,6 +24883,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24778
24883
|
onChangeSuccessMessage?: string | undefined;
|
|
24779
24884
|
}> | undefined;
|
|
24780
24885
|
}[] | undefined;
|
|
24886
|
+
hidden?: boolean | undefined;
|
|
24781
24887
|
resolvesTo?: {
|
|
24782
24888
|
key: string;
|
|
24783
24889
|
sensitive?: boolean | undefined;
|
|
@@ -24923,6 +25029,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
24923
25029
|
onChangeSuccessMessage?: string | undefined;
|
|
24924
25030
|
}> | undefined;
|
|
24925
25031
|
}[] | undefined;
|
|
25032
|
+
hidden?: boolean | undefined;
|
|
24926
25033
|
resolvesTo?: {
|
|
24927
25034
|
key: string;
|
|
24928
25035
|
sensitive?: boolean | undefined;
|
|
@@ -25066,6 +25173,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25066
25173
|
onChangeSuccessMessage?: string | undefined;
|
|
25067
25174
|
}> | undefined;
|
|
25068
25175
|
}[] | undefined;
|
|
25176
|
+
hidden?: boolean | undefined;
|
|
25069
25177
|
resolvesTo?: {
|
|
25070
25178
|
key: string;
|
|
25071
25179
|
sensitive?: boolean | undefined;
|
|
@@ -25209,6 +25317,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25209
25317
|
onChangeSuccessMessage?: string | undefined;
|
|
25210
25318
|
}> | undefined;
|
|
25211
25319
|
}[] | undefined;
|
|
25320
|
+
hidden?: boolean | undefined;
|
|
25212
25321
|
resolvesTo?: {
|
|
25213
25322
|
key: string;
|
|
25214
25323
|
sensitive?: boolean | undefined;
|
|
@@ -25318,6 +25427,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25318
25427
|
onChangeSuccessMessage?: string | undefined;
|
|
25319
25428
|
}> | undefined;
|
|
25320
25429
|
}[] | undefined;
|
|
25430
|
+
hidden?: boolean | undefined;
|
|
25321
25431
|
resolvesTo?: {
|
|
25322
25432
|
key: string;
|
|
25323
25433
|
sensitive?: boolean | undefined;
|
|
@@ -25434,6 +25544,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25434
25544
|
onChangeSuccessMessage?: string | undefined;
|
|
25435
25545
|
}> | undefined;
|
|
25436
25546
|
}[] | undefined;
|
|
25547
|
+
hidden?: boolean | undefined;
|
|
25437
25548
|
resolvesTo?: {
|
|
25438
25549
|
key: string;
|
|
25439
25550
|
sensitive?: boolean | undefined;
|
|
@@ -25591,6 +25702,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25591
25702
|
onChangeSuccessMessage?: string | undefined;
|
|
25592
25703
|
}> | undefined;
|
|
25593
25704
|
}[] | undefined;
|
|
25705
|
+
hidden?: boolean | undefined;
|
|
25594
25706
|
resolvesTo?: {
|
|
25595
25707
|
key: string;
|
|
25596
25708
|
sensitive?: boolean | undefined;
|
|
@@ -25736,6 +25848,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25736
25848
|
onChangeSuccessMessage?: string | undefined;
|
|
25737
25849
|
}> | undefined;
|
|
25738
25850
|
}[] | undefined;
|
|
25851
|
+
hidden?: boolean | undefined;
|
|
25739
25852
|
resolvesTo?: {
|
|
25740
25853
|
key: string;
|
|
25741
25854
|
sensitive?: boolean | undefined;
|
|
@@ -25804,6 +25917,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25804
25917
|
noneLabel?: string | undefined;
|
|
25805
25918
|
onChangeSuccessMessage?: string | undefined;
|
|
25806
25919
|
}> | undefined;
|
|
25920
|
+
hidden?: boolean | undefined;
|
|
25807
25921
|
visibleWhen?: {
|
|
25808
25922
|
fieldKey: string;
|
|
25809
25923
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -25813,21 +25927,25 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
25813
25927
|
}>, z.ZodObject<{
|
|
25814
25928
|
id: z.ZodOptional<z.ZodString>;
|
|
25815
25929
|
type: z.ZodLiteral<"native">;
|
|
25930
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
25816
25931
|
renderer: z.ZodString;
|
|
25817
25932
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
25818
25933
|
}, "strip", z.ZodTypeAny, {
|
|
25819
25934
|
type: "native";
|
|
25820
25935
|
renderer: string;
|
|
25821
25936
|
id?: string | undefined;
|
|
25937
|
+
hidden?: boolean | undefined;
|
|
25822
25938
|
props?: Record<string, unknown> | undefined;
|
|
25823
25939
|
}, {
|
|
25824
25940
|
type: "native";
|
|
25825
25941
|
renderer: string;
|
|
25826
25942
|
id?: string | undefined;
|
|
25943
|
+
hidden?: boolean | undefined;
|
|
25827
25944
|
props?: Record<string, unknown> | undefined;
|
|
25828
25945
|
}>, z.ZodObject<{
|
|
25829
25946
|
id: z.ZodOptional<z.ZodString>;
|
|
25830
25947
|
type: z.ZodLiteral<"action">;
|
|
25948
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
25831
25949
|
label: z.ZodString;
|
|
25832
25950
|
description: z.ZodOptional<z.ZodString>;
|
|
25833
25951
|
functionName: z.ZodString;
|
|
@@ -26040,6 +26158,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
26040
26158
|
onChangeSuccessMessage?: string | undefined;
|
|
26041
26159
|
}> | undefined;
|
|
26042
26160
|
successMessage?: string | undefined;
|
|
26161
|
+
hidden?: boolean | undefined;
|
|
26043
26162
|
visibleWhen?: {
|
|
26044
26163
|
fieldKey: string;
|
|
26045
26164
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -26094,6 +26213,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
26094
26213
|
onChangeSuccessMessage?: string | undefined;
|
|
26095
26214
|
}> | undefined;
|
|
26096
26215
|
successMessage?: string | undefined;
|
|
26216
|
+
hidden?: boolean | undefined;
|
|
26097
26217
|
visibleWhen?: {
|
|
26098
26218
|
fieldKey: string;
|
|
26099
26219
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -26322,6 +26442,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
26322
26442
|
}> | undefined;
|
|
26323
26443
|
}>, "many">>;
|
|
26324
26444
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
26445
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
26325
26446
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
26326
26447
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
26327
26448
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -26635,6 +26756,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
26635
26756
|
onChangeSuccessMessage?: string | undefined;
|
|
26636
26757
|
}> | undefined;
|
|
26637
26758
|
}[] | undefined;
|
|
26759
|
+
hidden?: boolean | undefined;
|
|
26638
26760
|
resolvesTo?: {
|
|
26639
26761
|
key: string;
|
|
26640
26762
|
sensitive?: boolean | undefined;
|
|
@@ -26744,6 +26866,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
26744
26866
|
onChangeSuccessMessage?: string | undefined;
|
|
26745
26867
|
}> | undefined;
|
|
26746
26868
|
}[] | undefined;
|
|
26869
|
+
hidden?: boolean | undefined;
|
|
26747
26870
|
resolvesTo?: {
|
|
26748
26871
|
key: string;
|
|
26749
26872
|
sensitive?: boolean | undefined;
|
|
@@ -26988,6 +27111,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
26988
27111
|
}> | undefined;
|
|
26989
27112
|
}>, "many">>;
|
|
26990
27113
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
27114
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
26991
27115
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
26992
27116
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
26993
27117
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -27303,6 +27427,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
27303
27427
|
onChangeSuccessMessage?: string | undefined;
|
|
27304
27428
|
}> | undefined;
|
|
27305
27429
|
}[] | undefined;
|
|
27430
|
+
hidden?: boolean | undefined;
|
|
27306
27431
|
resolvesTo?: {
|
|
27307
27432
|
key: string;
|
|
27308
27433
|
sensitive?: boolean | undefined;
|
|
@@ -27413,6 +27538,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
27413
27538
|
onChangeSuccessMessage?: string | undefined;
|
|
27414
27539
|
}> | undefined;
|
|
27415
27540
|
}[] | undefined;
|
|
27541
|
+
hidden?: boolean | undefined;
|
|
27416
27542
|
resolvesTo?: {
|
|
27417
27543
|
key: string;
|
|
27418
27544
|
sensitive?: boolean | undefined;
|
|
@@ -27657,6 +27783,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
27657
27783
|
}> | undefined;
|
|
27658
27784
|
}>, "many">>;
|
|
27659
27785
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
27786
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
27660
27787
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
27661
27788
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
27662
27789
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -27972,6 +28099,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
27972
28099
|
onChangeSuccessMessage?: string | undefined;
|
|
27973
28100
|
}> | undefined;
|
|
27974
28101
|
}[] | undefined;
|
|
28102
|
+
hidden?: boolean | undefined;
|
|
27975
28103
|
resolvesTo?: {
|
|
27976
28104
|
key: string;
|
|
27977
28105
|
sensitive?: boolean | undefined;
|
|
@@ -28082,6 +28210,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
28082
28210
|
onChangeSuccessMessage?: string | undefined;
|
|
28083
28211
|
}> | undefined;
|
|
28084
28212
|
}[] | undefined;
|
|
28213
|
+
hidden?: boolean | undefined;
|
|
28085
28214
|
resolvesTo?: {
|
|
28086
28215
|
key: string;
|
|
28087
28216
|
sensitive?: boolean | undefined;
|
|
@@ -28326,6 +28455,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
28326
28455
|
}> | undefined;
|
|
28327
28456
|
}>, "many">>;
|
|
28328
28457
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
28458
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
28329
28459
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
28330
28460
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
28331
28461
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -28645,6 +28775,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
28645
28775
|
onChangeSuccessMessage?: string | undefined;
|
|
28646
28776
|
}> | undefined;
|
|
28647
28777
|
}[] | undefined;
|
|
28778
|
+
hidden?: boolean | undefined;
|
|
28648
28779
|
resolvesTo?: {
|
|
28649
28780
|
key: string;
|
|
28650
28781
|
sensitive?: boolean | undefined;
|
|
@@ -28757,6 +28888,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
28757
28888
|
onChangeSuccessMessage?: string | undefined;
|
|
28758
28889
|
}> | undefined;
|
|
28759
28890
|
}[] | undefined;
|
|
28891
|
+
hidden?: boolean | undefined;
|
|
28760
28892
|
resolvesTo?: {
|
|
28761
28893
|
key: string;
|
|
28762
28894
|
sensitive?: boolean | undefined;
|
|
@@ -29001,6 +29133,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
29001
29133
|
}> | undefined;
|
|
29002
29134
|
}>, "many">>;
|
|
29003
29135
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
29136
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
29004
29137
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
29005
29138
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
29006
29139
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -29522,6 +29655,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
29522
29655
|
onChangeSuccessMessage?: string | undefined;
|
|
29523
29656
|
}> | undefined;
|
|
29524
29657
|
}[] | undefined;
|
|
29658
|
+
hidden?: boolean | undefined;
|
|
29525
29659
|
resolvesTo?: {
|
|
29526
29660
|
key: string;
|
|
29527
29661
|
sensitive?: boolean | undefined;
|
|
@@ -29665,6 +29799,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
29665
29799
|
onChangeSuccessMessage?: string | undefined;
|
|
29666
29800
|
}> | undefined;
|
|
29667
29801
|
}[] | undefined;
|
|
29802
|
+
hidden?: boolean | undefined;
|
|
29668
29803
|
resolvesTo?: {
|
|
29669
29804
|
key: string;
|
|
29670
29805
|
sensitive?: boolean | undefined;
|
|
@@ -29943,6 +30078,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
29943
30078
|
}> | undefined;
|
|
29944
30079
|
}>, "many">>;
|
|
29945
30080
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
30081
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
29946
30082
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
29947
30083
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
29948
30084
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -30468,6 +30604,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
30468
30604
|
onChangeSuccessMessage?: string | undefined;
|
|
30469
30605
|
}> | undefined;
|
|
30470
30606
|
}[] | undefined;
|
|
30607
|
+
hidden?: boolean | undefined;
|
|
30471
30608
|
resolvesTo?: {
|
|
30472
30609
|
key: string;
|
|
30473
30610
|
sensitive?: boolean | undefined;
|
|
@@ -30613,6 +30750,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
30613
30750
|
onChangeSuccessMessage?: string | undefined;
|
|
30614
30751
|
}> | undefined;
|
|
30615
30752
|
}[] | undefined;
|
|
30753
|
+
hidden?: boolean | undefined;
|
|
30616
30754
|
resolvesTo?: {
|
|
30617
30755
|
key: string;
|
|
30618
30756
|
sensitive?: boolean | undefined;
|
|
@@ -30891,6 +31029,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
30891
31029
|
}> | undefined;
|
|
30892
31030
|
}>, "many">>;
|
|
30893
31031
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
31032
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
30894
31033
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
30895
31034
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
30896
31035
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -31412,6 +31551,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
31412
31551
|
onChangeSuccessMessage?: string | undefined;
|
|
31413
31552
|
}> | undefined;
|
|
31414
31553
|
}[] | undefined;
|
|
31554
|
+
hidden?: boolean | undefined;
|
|
31415
31555
|
resolvesTo?: {
|
|
31416
31556
|
key: string;
|
|
31417
31557
|
sensitive?: boolean | undefined;
|
|
@@ -31555,6 +31695,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
31555
31695
|
onChangeSuccessMessage?: string | undefined;
|
|
31556
31696
|
}> | undefined;
|
|
31557
31697
|
}[] | undefined;
|
|
31698
|
+
hidden?: boolean | undefined;
|
|
31558
31699
|
resolvesTo?: {
|
|
31559
31700
|
key: string;
|
|
31560
31701
|
sensitive?: boolean | undefined;
|
|
@@ -31833,6 +31974,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
31833
31974
|
}> | undefined;
|
|
31834
31975
|
}>, "many">>;
|
|
31835
31976
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
31977
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
31836
31978
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
31837
31979
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
31838
31980
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -32146,6 +32288,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
32146
32288
|
onChangeSuccessMessage?: string | undefined;
|
|
32147
32289
|
}> | undefined;
|
|
32148
32290
|
}[] | undefined;
|
|
32291
|
+
hidden?: boolean | undefined;
|
|
32149
32292
|
resolvesTo?: {
|
|
32150
32293
|
key: string;
|
|
32151
32294
|
sensitive?: boolean | undefined;
|
|
@@ -32255,6 +32398,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
32255
32398
|
onChangeSuccessMessage?: string | undefined;
|
|
32256
32399
|
}> | undefined;
|
|
32257
32400
|
}[] | undefined;
|
|
32401
|
+
hidden?: boolean | undefined;
|
|
32258
32402
|
resolvesTo?: {
|
|
32259
32403
|
key: string;
|
|
32260
32404
|
sensitive?: boolean | undefined;
|
|
@@ -32499,6 +32643,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
32499
32643
|
}> | undefined;
|
|
32500
32644
|
}>, "many">>;
|
|
32501
32645
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
32646
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
32502
32647
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
32503
32648
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
32504
32649
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -32812,6 +32957,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
32812
32957
|
onChangeSuccessMessage?: string | undefined;
|
|
32813
32958
|
}> | undefined;
|
|
32814
32959
|
}[] | undefined;
|
|
32960
|
+
hidden?: boolean | undefined;
|
|
32815
32961
|
resolvesTo?: {
|
|
32816
32962
|
key: string;
|
|
32817
32963
|
sensitive?: boolean | undefined;
|
|
@@ -32921,6 +33067,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
32921
33067
|
onChangeSuccessMessage?: string | undefined;
|
|
32922
33068
|
}> | undefined;
|
|
32923
33069
|
}[] | undefined;
|
|
33070
|
+
hidden?: boolean | undefined;
|
|
32924
33071
|
resolvesTo?: {
|
|
32925
33072
|
key: string;
|
|
32926
33073
|
sensitive?: boolean | undefined;
|
|
@@ -33165,6 +33312,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
33165
33312
|
}> | undefined;
|
|
33166
33313
|
}>, "many">>;
|
|
33167
33314
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
33315
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
33168
33316
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
33169
33317
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
33170
33318
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -33706,6 +33854,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
33706
33854
|
onChangeSuccessMessage?: string | undefined;
|
|
33707
33855
|
}> | undefined;
|
|
33708
33856
|
}[] | undefined;
|
|
33857
|
+
hidden?: boolean | undefined;
|
|
33709
33858
|
resolvesTo?: {
|
|
33710
33859
|
key: string;
|
|
33711
33860
|
sensitive?: boolean | undefined;
|
|
@@ -33856,6 +34005,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
33856
34005
|
onChangeSuccessMessage?: string | undefined;
|
|
33857
34006
|
}> | undefined;
|
|
33858
34007
|
}[] | undefined;
|
|
34008
|
+
hidden?: boolean | undefined;
|
|
33859
34009
|
resolvesTo?: {
|
|
33860
34010
|
key: string;
|
|
33861
34011
|
sensitive?: boolean | undefined;
|
|
@@ -34134,6 +34284,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
34134
34284
|
}> | undefined;
|
|
34135
34285
|
}>, "many">>;
|
|
34136
34286
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
34287
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
34137
34288
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
34138
34289
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
34139
34290
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -34699,6 +34850,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
34699
34850
|
onChangeSuccessMessage?: string | undefined;
|
|
34700
34851
|
}> | undefined;
|
|
34701
34852
|
}[] | undefined;
|
|
34853
|
+
hidden?: boolean | undefined;
|
|
34702
34854
|
resolvesTo?: {
|
|
34703
34855
|
key: string;
|
|
34704
34856
|
sensitive?: boolean | undefined;
|
|
@@ -34858,6 +35010,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
34858
35010
|
onChangeSuccessMessage?: string | undefined;
|
|
34859
35011
|
}> | undefined;
|
|
34860
35012
|
}[] | undefined;
|
|
35013
|
+
hidden?: boolean | undefined;
|
|
34861
35014
|
resolvesTo?: {
|
|
34862
35015
|
key: string;
|
|
34863
35016
|
sensitive?: boolean | undefined;
|
|
@@ -35138,6 +35291,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
35138
35291
|
}> | undefined;
|
|
35139
35292
|
}>, "many">>;
|
|
35140
35293
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
35294
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
35141
35295
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
35142
35296
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
35143
35297
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -35454,6 +35608,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
35454
35608
|
onChangeSuccessMessage?: string | undefined;
|
|
35455
35609
|
}> | undefined;
|
|
35456
35610
|
}[] | undefined;
|
|
35611
|
+
hidden?: boolean | undefined;
|
|
35457
35612
|
resolvesTo?: {
|
|
35458
35613
|
key: string;
|
|
35459
35614
|
sensitive?: boolean | undefined;
|
|
@@ -35566,6 +35721,7 @@ export declare const ConfigBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
35566
35721
|
onChangeSuccessMessage?: string | undefined;
|
|
35567
35722
|
}> | undefined;
|
|
35568
35723
|
}[] | undefined;
|
|
35724
|
+
hidden?: boolean | undefined;
|
|
35569
35725
|
resolvesTo?: {
|
|
35570
35726
|
key: string;
|
|
35571
35727
|
sensitive?: boolean | undefined;
|
|
@@ -35803,6 +35959,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
35803
35959
|
blocks: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
35804
35960
|
id: z.ZodOptional<z.ZodString>;
|
|
35805
35961
|
type: z.ZodLiteral<"section">;
|
|
35962
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
35806
35963
|
title: z.ZodString;
|
|
35807
35964
|
description: z.ZodOptional<z.ZodString>;
|
|
35808
35965
|
menuLabel: z.ZodOptional<z.ZodString>;
|
|
@@ -35990,6 +36147,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
35990
36147
|
onChangeSuccessMessage?: string | undefined;
|
|
35991
36148
|
}> | undefined;
|
|
35992
36149
|
menuLabel?: string | undefined;
|
|
36150
|
+
hidden?: boolean | undefined;
|
|
35993
36151
|
visibleWhen?: {
|
|
35994
36152
|
fieldKey: string;
|
|
35995
36153
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -36030,6 +36188,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
36030
36188
|
onChangeSuccessMessage?: string | undefined;
|
|
36031
36189
|
}> | undefined;
|
|
36032
36190
|
menuLabel?: string | undefined;
|
|
36191
|
+
hidden?: boolean | undefined;
|
|
36033
36192
|
visibleWhen?: {
|
|
36034
36193
|
fieldKey: string;
|
|
36035
36194
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -36039,6 +36198,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
36039
36198
|
}>, z.ZodObject<{
|
|
36040
36199
|
id: z.ZodOptional<z.ZodString>;
|
|
36041
36200
|
type: z.ZodLiteral<"description">;
|
|
36201
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
36042
36202
|
text: z.ZodString;
|
|
36043
36203
|
helperLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
36044
36204
|
key: z.ZodString;
|
|
@@ -36459,6 +36619,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
36459
36619
|
onChangeSuccessMessage?: string | undefined;
|
|
36460
36620
|
}> | undefined;
|
|
36461
36621
|
}[] | undefined;
|
|
36622
|
+
hidden?: boolean | undefined;
|
|
36462
36623
|
visibleWhen?: {
|
|
36463
36624
|
fieldKey: string;
|
|
36464
36625
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -36529,6 +36690,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
36529
36690
|
onChangeSuccessMessage?: string | undefined;
|
|
36530
36691
|
}> | undefined;
|
|
36531
36692
|
}[] | undefined;
|
|
36693
|
+
hidden?: boolean | undefined;
|
|
36532
36694
|
visibleWhen?: {
|
|
36533
36695
|
fieldKey: string;
|
|
36534
36696
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -36537,6 +36699,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
36537
36699
|
}>, z.ZodObject<{
|
|
36538
36700
|
id: z.ZodOptional<z.ZodString>;
|
|
36539
36701
|
type: z.ZodLiteral<"divider">;
|
|
36702
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
36540
36703
|
visibleWhen: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
36541
36704
|
fieldKey: z.ZodString;
|
|
36542
36705
|
operator: z.ZodEnum<["eq", "ne", "in", "notIn", "exists", "notExists"]>;
|
|
@@ -36553,6 +36716,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
36553
36716
|
}, "strip", z.ZodTypeAny, {
|
|
36554
36717
|
type: "divider";
|
|
36555
36718
|
id?: string | undefined;
|
|
36719
|
+
hidden?: boolean | undefined;
|
|
36556
36720
|
visibleWhen?: {
|
|
36557
36721
|
fieldKey: string;
|
|
36558
36722
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -36561,6 +36725,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
36561
36725
|
}, {
|
|
36562
36726
|
type: "divider";
|
|
36563
36727
|
id?: string | undefined;
|
|
36728
|
+
hidden?: boolean | undefined;
|
|
36564
36729
|
visibleWhen?: {
|
|
36565
36730
|
fieldKey: string;
|
|
36566
36731
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -36569,6 +36734,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
36569
36734
|
}>, z.ZodObject<{
|
|
36570
36735
|
id: z.ZodOptional<z.ZodString>;
|
|
36571
36736
|
type: z.ZodLiteral<"banner">;
|
|
36737
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
36572
36738
|
tone: z.ZodDefault<z.ZodEnum<["info", "success", "warning", "danger"]>>;
|
|
36573
36739
|
title: z.ZodOptional<z.ZodString>;
|
|
36574
36740
|
description: z.ZodString;
|
|
@@ -36755,6 +36921,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
36755
36921
|
noneLabel?: string | undefined;
|
|
36756
36922
|
onChangeSuccessMessage?: string | undefined;
|
|
36757
36923
|
}> | undefined;
|
|
36924
|
+
hidden?: boolean | undefined;
|
|
36758
36925
|
visibleWhen?: {
|
|
36759
36926
|
fieldKey: string;
|
|
36760
36927
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -36794,6 +36961,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
36794
36961
|
onChangeSuccessMessage?: string | undefined;
|
|
36795
36962
|
}> | undefined;
|
|
36796
36963
|
tone?: "success" | "info" | "warning" | "danger" | undefined;
|
|
36964
|
+
hidden?: boolean | undefined;
|
|
36797
36965
|
visibleWhen?: {
|
|
36798
36966
|
fieldKey: string;
|
|
36799
36967
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -36802,6 +36970,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
36802
36970
|
}>, z.ZodObject<{
|
|
36803
36971
|
id: z.ZodOptional<z.ZodString>;
|
|
36804
36972
|
type: z.ZodLiteral<"group">;
|
|
36973
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
36805
36974
|
title: z.ZodOptional<z.ZodString>;
|
|
36806
36975
|
description: z.ZodOptional<z.ZodString>;
|
|
36807
36976
|
layout: z.ZodDefault<z.ZodEnum<["column", "row", "grid"]>>;
|
|
@@ -37029,6 +37198,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
37029
37198
|
}> | undefined;
|
|
37030
37199
|
}>, "many">>;
|
|
37031
37200
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
37201
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
37032
37202
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
37033
37203
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
37034
37204
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -37342,6 +37512,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
37342
37512
|
onChangeSuccessMessage?: string | undefined;
|
|
37343
37513
|
}> | undefined;
|
|
37344
37514
|
}[] | undefined;
|
|
37515
|
+
hidden?: boolean | undefined;
|
|
37345
37516
|
resolvesTo?: {
|
|
37346
37517
|
key: string;
|
|
37347
37518
|
sensitive?: boolean | undefined;
|
|
@@ -37451,6 +37622,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
37451
37622
|
onChangeSuccessMessage?: string | undefined;
|
|
37452
37623
|
}> | undefined;
|
|
37453
37624
|
}[] | undefined;
|
|
37625
|
+
hidden?: boolean | undefined;
|
|
37454
37626
|
resolvesTo?: {
|
|
37455
37627
|
key: string;
|
|
37456
37628
|
sensitive?: boolean | undefined;
|
|
@@ -37695,6 +37867,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
37695
37867
|
}> | undefined;
|
|
37696
37868
|
}>, "many">>;
|
|
37697
37869
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
37870
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
37698
37871
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
37699
37872
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
37700
37873
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -38010,6 +38183,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
38010
38183
|
onChangeSuccessMessage?: string | undefined;
|
|
38011
38184
|
}> | undefined;
|
|
38012
38185
|
}[] | undefined;
|
|
38186
|
+
hidden?: boolean | undefined;
|
|
38013
38187
|
resolvesTo?: {
|
|
38014
38188
|
key: string;
|
|
38015
38189
|
sensitive?: boolean | undefined;
|
|
@@ -38120,6 +38294,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
38120
38294
|
onChangeSuccessMessage?: string | undefined;
|
|
38121
38295
|
}> | undefined;
|
|
38122
38296
|
}[] | undefined;
|
|
38297
|
+
hidden?: boolean | undefined;
|
|
38123
38298
|
resolvesTo?: {
|
|
38124
38299
|
key: string;
|
|
38125
38300
|
sensitive?: boolean | undefined;
|
|
@@ -38364,6 +38539,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
38364
38539
|
}> | undefined;
|
|
38365
38540
|
}>, "many">>;
|
|
38366
38541
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
38542
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
38367
38543
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
38368
38544
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
38369
38545
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -38679,6 +38855,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
38679
38855
|
onChangeSuccessMessage?: string | undefined;
|
|
38680
38856
|
}> | undefined;
|
|
38681
38857
|
}[] | undefined;
|
|
38858
|
+
hidden?: boolean | undefined;
|
|
38682
38859
|
resolvesTo?: {
|
|
38683
38860
|
key: string;
|
|
38684
38861
|
sensitive?: boolean | undefined;
|
|
@@ -38789,6 +38966,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
38789
38966
|
onChangeSuccessMessage?: string | undefined;
|
|
38790
38967
|
}> | undefined;
|
|
38791
38968
|
}[] | undefined;
|
|
38969
|
+
hidden?: boolean | undefined;
|
|
38792
38970
|
resolvesTo?: {
|
|
38793
38971
|
key: string;
|
|
38794
38972
|
sensitive?: boolean | undefined;
|
|
@@ -39033,6 +39211,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
39033
39211
|
}> | undefined;
|
|
39034
39212
|
}>, "many">>;
|
|
39035
39213
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
39214
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
39036
39215
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
39037
39216
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
39038
39217
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -39352,6 +39531,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
39352
39531
|
onChangeSuccessMessage?: string | undefined;
|
|
39353
39532
|
}> | undefined;
|
|
39354
39533
|
}[] | undefined;
|
|
39534
|
+
hidden?: boolean | undefined;
|
|
39355
39535
|
resolvesTo?: {
|
|
39356
39536
|
key: string;
|
|
39357
39537
|
sensitive?: boolean | undefined;
|
|
@@ -39464,6 +39644,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
39464
39644
|
onChangeSuccessMessage?: string | undefined;
|
|
39465
39645
|
}> | undefined;
|
|
39466
39646
|
}[] | undefined;
|
|
39647
|
+
hidden?: boolean | undefined;
|
|
39467
39648
|
resolvesTo?: {
|
|
39468
39649
|
key: string;
|
|
39469
39650
|
sensitive?: boolean | undefined;
|
|
@@ -39708,6 +39889,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
39708
39889
|
}> | undefined;
|
|
39709
39890
|
}>, "many">>;
|
|
39710
39891
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
39892
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
39711
39893
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
39712
39894
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
39713
39895
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -40229,6 +40411,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
40229
40411
|
onChangeSuccessMessage?: string | undefined;
|
|
40230
40412
|
}> | undefined;
|
|
40231
40413
|
}[] | undefined;
|
|
40414
|
+
hidden?: boolean | undefined;
|
|
40232
40415
|
resolvesTo?: {
|
|
40233
40416
|
key: string;
|
|
40234
40417
|
sensitive?: boolean | undefined;
|
|
@@ -40372,6 +40555,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
40372
40555
|
onChangeSuccessMessage?: string | undefined;
|
|
40373
40556
|
}> | undefined;
|
|
40374
40557
|
}[] | undefined;
|
|
40558
|
+
hidden?: boolean | undefined;
|
|
40375
40559
|
resolvesTo?: {
|
|
40376
40560
|
key: string;
|
|
40377
40561
|
sensitive?: boolean | undefined;
|
|
@@ -40650,6 +40834,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
40650
40834
|
}> | undefined;
|
|
40651
40835
|
}>, "many">>;
|
|
40652
40836
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
40837
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
40653
40838
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
40654
40839
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
40655
40840
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -41175,6 +41360,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
41175
41360
|
onChangeSuccessMessage?: string | undefined;
|
|
41176
41361
|
}> | undefined;
|
|
41177
41362
|
}[] | undefined;
|
|
41363
|
+
hidden?: boolean | undefined;
|
|
41178
41364
|
resolvesTo?: {
|
|
41179
41365
|
key: string;
|
|
41180
41366
|
sensitive?: boolean | undefined;
|
|
@@ -41320,6 +41506,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
41320
41506
|
onChangeSuccessMessage?: string | undefined;
|
|
41321
41507
|
}> | undefined;
|
|
41322
41508
|
}[] | undefined;
|
|
41509
|
+
hidden?: boolean | undefined;
|
|
41323
41510
|
resolvesTo?: {
|
|
41324
41511
|
key: string;
|
|
41325
41512
|
sensitive?: boolean | undefined;
|
|
@@ -41598,6 +41785,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
41598
41785
|
}> | undefined;
|
|
41599
41786
|
}>, "many">>;
|
|
41600
41787
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
41788
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
41601
41789
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
41602
41790
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
41603
41791
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -42119,6 +42307,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
42119
42307
|
onChangeSuccessMessage?: string | undefined;
|
|
42120
42308
|
}> | undefined;
|
|
42121
42309
|
}[] | undefined;
|
|
42310
|
+
hidden?: boolean | undefined;
|
|
42122
42311
|
resolvesTo?: {
|
|
42123
42312
|
key: string;
|
|
42124
42313
|
sensitive?: boolean | undefined;
|
|
@@ -42262,6 +42451,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
42262
42451
|
onChangeSuccessMessage?: string | undefined;
|
|
42263
42452
|
}> | undefined;
|
|
42264
42453
|
}[] | undefined;
|
|
42454
|
+
hidden?: boolean | undefined;
|
|
42265
42455
|
resolvesTo?: {
|
|
42266
42456
|
key: string;
|
|
42267
42457
|
sensitive?: boolean | undefined;
|
|
@@ -42540,6 +42730,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
42540
42730
|
}> | undefined;
|
|
42541
42731
|
}>, "many">>;
|
|
42542
42732
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
42733
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
42543
42734
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
42544
42735
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
42545
42736
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -42853,6 +43044,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
42853
43044
|
onChangeSuccessMessage?: string | undefined;
|
|
42854
43045
|
}> | undefined;
|
|
42855
43046
|
}[] | undefined;
|
|
43047
|
+
hidden?: boolean | undefined;
|
|
42856
43048
|
resolvesTo?: {
|
|
42857
43049
|
key: string;
|
|
42858
43050
|
sensitive?: boolean | undefined;
|
|
@@ -42962,6 +43154,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
42962
43154
|
onChangeSuccessMessage?: string | undefined;
|
|
42963
43155
|
}> | undefined;
|
|
42964
43156
|
}[] | undefined;
|
|
43157
|
+
hidden?: boolean | undefined;
|
|
42965
43158
|
resolvesTo?: {
|
|
42966
43159
|
key: string;
|
|
42967
43160
|
sensitive?: boolean | undefined;
|
|
@@ -43206,6 +43399,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
43206
43399
|
}> | undefined;
|
|
43207
43400
|
}>, "many">>;
|
|
43208
43401
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
43402
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
43209
43403
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
43210
43404
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
43211
43405
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -43519,6 +43713,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
43519
43713
|
onChangeSuccessMessage?: string | undefined;
|
|
43520
43714
|
}> | undefined;
|
|
43521
43715
|
}[] | undefined;
|
|
43716
|
+
hidden?: boolean | undefined;
|
|
43522
43717
|
resolvesTo?: {
|
|
43523
43718
|
key: string;
|
|
43524
43719
|
sensitive?: boolean | undefined;
|
|
@@ -43628,6 +43823,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
43628
43823
|
onChangeSuccessMessage?: string | undefined;
|
|
43629
43824
|
}> | undefined;
|
|
43630
43825
|
}[] | undefined;
|
|
43826
|
+
hidden?: boolean | undefined;
|
|
43631
43827
|
resolvesTo?: {
|
|
43632
43828
|
key: string;
|
|
43633
43829
|
sensitive?: boolean | undefined;
|
|
@@ -43872,6 +44068,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
43872
44068
|
}> | undefined;
|
|
43873
44069
|
}>, "many">>;
|
|
43874
44070
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
44071
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
43875
44072
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
43876
44073
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
43877
44074
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -44413,6 +44610,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
44413
44610
|
onChangeSuccessMessage?: string | undefined;
|
|
44414
44611
|
}> | undefined;
|
|
44415
44612
|
}[] | undefined;
|
|
44613
|
+
hidden?: boolean | undefined;
|
|
44416
44614
|
resolvesTo?: {
|
|
44417
44615
|
key: string;
|
|
44418
44616
|
sensitive?: boolean | undefined;
|
|
@@ -44563,6 +44761,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
44563
44761
|
onChangeSuccessMessage?: string | undefined;
|
|
44564
44762
|
}> | undefined;
|
|
44565
44763
|
}[] | undefined;
|
|
44764
|
+
hidden?: boolean | undefined;
|
|
44566
44765
|
resolvesTo?: {
|
|
44567
44766
|
key: string;
|
|
44568
44767
|
sensitive?: boolean | undefined;
|
|
@@ -44841,6 +45040,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
44841
45040
|
}> | undefined;
|
|
44842
45041
|
}>, "many">>;
|
|
44843
45042
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
45043
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
44844
45044
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
44845
45045
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
44846
45046
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -45406,6 +45606,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
45406
45606
|
onChangeSuccessMessage?: string | undefined;
|
|
45407
45607
|
}> | undefined;
|
|
45408
45608
|
}[] | undefined;
|
|
45609
|
+
hidden?: boolean | undefined;
|
|
45409
45610
|
resolvesTo?: {
|
|
45410
45611
|
key: string;
|
|
45411
45612
|
sensitive?: boolean | undefined;
|
|
@@ -45565,6 +45766,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
45565
45766
|
onChangeSuccessMessage?: string | undefined;
|
|
45566
45767
|
}> | undefined;
|
|
45567
45768
|
}[] | undefined;
|
|
45769
|
+
hidden?: boolean | undefined;
|
|
45568
45770
|
resolvesTo?: {
|
|
45569
45771
|
key: string;
|
|
45570
45772
|
sensitive?: boolean | undefined;
|
|
@@ -45845,6 +46047,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
45845
46047
|
}> | undefined;
|
|
45846
46048
|
}>, "many">>;
|
|
45847
46049
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
46050
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
45848
46051
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
45849
46052
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
45850
46053
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -46161,6 +46364,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
46161
46364
|
onChangeSuccessMessage?: string | undefined;
|
|
46162
46365
|
}> | undefined;
|
|
46163
46366
|
}[] | undefined;
|
|
46367
|
+
hidden?: boolean | undefined;
|
|
46164
46368
|
resolvesTo?: {
|
|
46165
46369
|
key: string;
|
|
46166
46370
|
sensitive?: boolean | undefined;
|
|
@@ -46273,6 +46477,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
46273
46477
|
onChangeSuccessMessage?: string | undefined;
|
|
46274
46478
|
}> | undefined;
|
|
46275
46479
|
}[] | undefined;
|
|
46480
|
+
hidden?: boolean | undefined;
|
|
46276
46481
|
resolvesTo?: {
|
|
46277
46482
|
key: string;
|
|
46278
46483
|
sensitive?: boolean | undefined;
|
|
@@ -46524,6 +46729,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
46524
46729
|
onChangeSuccessMessage?: string | undefined;
|
|
46525
46730
|
}> | undefined;
|
|
46526
46731
|
}[] | undefined;
|
|
46732
|
+
hidden?: boolean | undefined;
|
|
46527
46733
|
resolvesTo?: {
|
|
46528
46734
|
key: string;
|
|
46529
46735
|
sensitive?: boolean | undefined;
|
|
@@ -46634,6 +46840,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
46634
46840
|
onChangeSuccessMessage?: string | undefined;
|
|
46635
46841
|
}> | undefined;
|
|
46636
46842
|
}[] | undefined;
|
|
46843
|
+
hidden?: boolean | undefined;
|
|
46637
46844
|
resolvesTo?: {
|
|
46638
46845
|
key: string;
|
|
46639
46846
|
sensitive?: boolean | undefined;
|
|
@@ -46744,6 +46951,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
46744
46951
|
onChangeSuccessMessage?: string | undefined;
|
|
46745
46952
|
}> | undefined;
|
|
46746
46953
|
}[] | undefined;
|
|
46954
|
+
hidden?: boolean | undefined;
|
|
46747
46955
|
resolvesTo?: {
|
|
46748
46956
|
key: string;
|
|
46749
46957
|
sensitive?: boolean | undefined;
|
|
@@ -46856,6 +47064,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
46856
47064
|
onChangeSuccessMessage?: string | undefined;
|
|
46857
47065
|
}> | undefined;
|
|
46858
47066
|
}[] | undefined;
|
|
47067
|
+
hidden?: boolean | undefined;
|
|
46859
47068
|
resolvesTo?: {
|
|
46860
47069
|
key: string;
|
|
46861
47070
|
sensitive?: boolean | undefined;
|
|
@@ -46965,6 +47174,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
46965
47174
|
onChangeSuccessMessage?: string | undefined;
|
|
46966
47175
|
}> | undefined;
|
|
46967
47176
|
}[] | undefined;
|
|
47177
|
+
hidden?: boolean | undefined;
|
|
46968
47178
|
resolvesTo?: {
|
|
46969
47179
|
key: string;
|
|
46970
47180
|
sensitive?: boolean | undefined;
|
|
@@ -47110,6 +47320,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
47110
47320
|
onChangeSuccessMessage?: string | undefined;
|
|
47111
47321
|
}> | undefined;
|
|
47112
47322
|
}[] | undefined;
|
|
47323
|
+
hidden?: boolean | undefined;
|
|
47113
47324
|
resolvesTo?: {
|
|
47114
47325
|
key: string;
|
|
47115
47326
|
sensitive?: boolean | undefined;
|
|
@@ -47253,6 +47464,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
47253
47464
|
onChangeSuccessMessage?: string | undefined;
|
|
47254
47465
|
}> | undefined;
|
|
47255
47466
|
}[] | undefined;
|
|
47467
|
+
hidden?: boolean | undefined;
|
|
47256
47468
|
resolvesTo?: {
|
|
47257
47469
|
key: string;
|
|
47258
47470
|
sensitive?: boolean | undefined;
|
|
@@ -47396,6 +47608,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
47396
47608
|
onChangeSuccessMessage?: string | undefined;
|
|
47397
47609
|
}> | undefined;
|
|
47398
47610
|
}[] | undefined;
|
|
47611
|
+
hidden?: boolean | undefined;
|
|
47399
47612
|
resolvesTo?: {
|
|
47400
47613
|
key: string;
|
|
47401
47614
|
sensitive?: boolean | undefined;
|
|
@@ -47505,6 +47718,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
47505
47718
|
onChangeSuccessMessage?: string | undefined;
|
|
47506
47719
|
}> | undefined;
|
|
47507
47720
|
}[] | undefined;
|
|
47721
|
+
hidden?: boolean | undefined;
|
|
47508
47722
|
resolvesTo?: {
|
|
47509
47723
|
key: string;
|
|
47510
47724
|
sensitive?: boolean | undefined;
|
|
@@ -47621,6 +47835,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
47621
47835
|
onChangeSuccessMessage?: string | undefined;
|
|
47622
47836
|
}> | undefined;
|
|
47623
47837
|
}[] | undefined;
|
|
47838
|
+
hidden?: boolean | undefined;
|
|
47624
47839
|
resolvesTo?: {
|
|
47625
47840
|
key: string;
|
|
47626
47841
|
sensitive?: boolean | undefined;
|
|
@@ -47778,6 +47993,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
47778
47993
|
onChangeSuccessMessage?: string | undefined;
|
|
47779
47994
|
}> | undefined;
|
|
47780
47995
|
}[] | undefined;
|
|
47996
|
+
hidden?: boolean | undefined;
|
|
47781
47997
|
resolvesTo?: {
|
|
47782
47998
|
key: string;
|
|
47783
47999
|
sensitive?: boolean | undefined;
|
|
@@ -47923,6 +48139,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
47923
48139
|
onChangeSuccessMessage?: string | undefined;
|
|
47924
48140
|
}> | undefined;
|
|
47925
48141
|
}[] | undefined;
|
|
48142
|
+
hidden?: boolean | undefined;
|
|
47926
48143
|
resolvesTo?: {
|
|
47927
48144
|
key: string;
|
|
47928
48145
|
sensitive?: boolean | undefined;
|
|
@@ -47992,6 +48209,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
47992
48209
|
noneLabel?: string | undefined;
|
|
47993
48210
|
onChangeSuccessMessage?: string | undefined;
|
|
47994
48211
|
}> | undefined;
|
|
48212
|
+
hidden?: boolean | undefined;
|
|
47995
48213
|
visibleWhen?: {
|
|
47996
48214
|
fieldKey: string;
|
|
47997
48215
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -48075,6 +48293,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
48075
48293
|
onChangeSuccessMessage?: string | undefined;
|
|
48076
48294
|
}> | undefined;
|
|
48077
48295
|
}[] | undefined;
|
|
48296
|
+
hidden?: boolean | undefined;
|
|
48078
48297
|
resolvesTo?: {
|
|
48079
48298
|
key: string;
|
|
48080
48299
|
sensitive?: boolean | undefined;
|
|
@@ -48185,6 +48404,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
48185
48404
|
onChangeSuccessMessage?: string | undefined;
|
|
48186
48405
|
}> | undefined;
|
|
48187
48406
|
}[] | undefined;
|
|
48407
|
+
hidden?: boolean | undefined;
|
|
48188
48408
|
resolvesTo?: {
|
|
48189
48409
|
key: string;
|
|
48190
48410
|
sensitive?: boolean | undefined;
|
|
@@ -48295,6 +48515,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
48295
48515
|
onChangeSuccessMessage?: string | undefined;
|
|
48296
48516
|
}> | undefined;
|
|
48297
48517
|
}[] | undefined;
|
|
48518
|
+
hidden?: boolean | undefined;
|
|
48298
48519
|
resolvesTo?: {
|
|
48299
48520
|
key: string;
|
|
48300
48521
|
sensitive?: boolean | undefined;
|
|
@@ -48407,6 +48628,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
48407
48628
|
onChangeSuccessMessage?: string | undefined;
|
|
48408
48629
|
}> | undefined;
|
|
48409
48630
|
}[] | undefined;
|
|
48631
|
+
hidden?: boolean | undefined;
|
|
48410
48632
|
resolvesTo?: {
|
|
48411
48633
|
key: string;
|
|
48412
48634
|
sensitive?: boolean | undefined;
|
|
@@ -48516,6 +48738,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
48516
48738
|
onChangeSuccessMessage?: string | undefined;
|
|
48517
48739
|
}> | undefined;
|
|
48518
48740
|
}[] | undefined;
|
|
48741
|
+
hidden?: boolean | undefined;
|
|
48519
48742
|
resolvesTo?: {
|
|
48520
48743
|
key: string;
|
|
48521
48744
|
sensitive?: boolean | undefined;
|
|
@@ -48661,6 +48884,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
48661
48884
|
onChangeSuccessMessage?: string | undefined;
|
|
48662
48885
|
}> | undefined;
|
|
48663
48886
|
}[] | undefined;
|
|
48887
|
+
hidden?: boolean | undefined;
|
|
48664
48888
|
resolvesTo?: {
|
|
48665
48889
|
key: string;
|
|
48666
48890
|
sensitive?: boolean | undefined;
|
|
@@ -48804,6 +49028,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
48804
49028
|
onChangeSuccessMessage?: string | undefined;
|
|
48805
49029
|
}> | undefined;
|
|
48806
49030
|
}[] | undefined;
|
|
49031
|
+
hidden?: boolean | undefined;
|
|
48807
49032
|
resolvesTo?: {
|
|
48808
49033
|
key: string;
|
|
48809
49034
|
sensitive?: boolean | undefined;
|
|
@@ -48947,6 +49172,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
48947
49172
|
onChangeSuccessMessage?: string | undefined;
|
|
48948
49173
|
}> | undefined;
|
|
48949
49174
|
}[] | undefined;
|
|
49175
|
+
hidden?: boolean | undefined;
|
|
48950
49176
|
resolvesTo?: {
|
|
48951
49177
|
key: string;
|
|
48952
49178
|
sensitive?: boolean | undefined;
|
|
@@ -49056,6 +49282,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
49056
49282
|
onChangeSuccessMessage?: string | undefined;
|
|
49057
49283
|
}> | undefined;
|
|
49058
49284
|
}[] | undefined;
|
|
49285
|
+
hidden?: boolean | undefined;
|
|
49059
49286
|
resolvesTo?: {
|
|
49060
49287
|
key: string;
|
|
49061
49288
|
sensitive?: boolean | undefined;
|
|
@@ -49172,6 +49399,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
49172
49399
|
onChangeSuccessMessage?: string | undefined;
|
|
49173
49400
|
}> | undefined;
|
|
49174
49401
|
}[] | undefined;
|
|
49402
|
+
hidden?: boolean | undefined;
|
|
49175
49403
|
resolvesTo?: {
|
|
49176
49404
|
key: string;
|
|
49177
49405
|
sensitive?: boolean | undefined;
|
|
@@ -49329,6 +49557,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
49329
49557
|
onChangeSuccessMessage?: string | undefined;
|
|
49330
49558
|
}> | undefined;
|
|
49331
49559
|
}[] | undefined;
|
|
49560
|
+
hidden?: boolean | undefined;
|
|
49332
49561
|
resolvesTo?: {
|
|
49333
49562
|
key: string;
|
|
49334
49563
|
sensitive?: boolean | undefined;
|
|
@@ -49474,6 +49703,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
49474
49703
|
onChangeSuccessMessage?: string | undefined;
|
|
49475
49704
|
}> | undefined;
|
|
49476
49705
|
}[] | undefined;
|
|
49706
|
+
hidden?: boolean | undefined;
|
|
49477
49707
|
resolvesTo?: {
|
|
49478
49708
|
key: string;
|
|
49479
49709
|
sensitive?: boolean | undefined;
|
|
@@ -49542,6 +49772,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
49542
49772
|
noneLabel?: string | undefined;
|
|
49543
49773
|
onChangeSuccessMessage?: string | undefined;
|
|
49544
49774
|
}> | undefined;
|
|
49775
|
+
hidden?: boolean | undefined;
|
|
49545
49776
|
visibleWhen?: {
|
|
49546
49777
|
fieldKey: string;
|
|
49547
49778
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -49551,21 +49782,25 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
49551
49782
|
}>, z.ZodObject<{
|
|
49552
49783
|
id: z.ZodOptional<z.ZodString>;
|
|
49553
49784
|
type: z.ZodLiteral<"native">;
|
|
49785
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
49554
49786
|
renderer: z.ZodString;
|
|
49555
49787
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
49556
49788
|
}, "strip", z.ZodTypeAny, {
|
|
49557
49789
|
type: "native";
|
|
49558
49790
|
renderer: string;
|
|
49559
49791
|
id?: string | undefined;
|
|
49792
|
+
hidden?: boolean | undefined;
|
|
49560
49793
|
props?: Record<string, unknown> | undefined;
|
|
49561
49794
|
}, {
|
|
49562
49795
|
type: "native";
|
|
49563
49796
|
renderer: string;
|
|
49564
49797
|
id?: string | undefined;
|
|
49798
|
+
hidden?: boolean | undefined;
|
|
49565
49799
|
props?: Record<string, unknown> | undefined;
|
|
49566
49800
|
}>, z.ZodObject<{
|
|
49567
49801
|
id: z.ZodOptional<z.ZodString>;
|
|
49568
49802
|
type: z.ZodLiteral<"action">;
|
|
49803
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
49569
49804
|
label: z.ZodString;
|
|
49570
49805
|
description: z.ZodOptional<z.ZodString>;
|
|
49571
49806
|
functionName: z.ZodString;
|
|
@@ -49778,6 +50013,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
49778
50013
|
onChangeSuccessMessage?: string | undefined;
|
|
49779
50014
|
}> | undefined;
|
|
49780
50015
|
successMessage?: string | undefined;
|
|
50016
|
+
hidden?: boolean | undefined;
|
|
49781
50017
|
visibleWhen?: {
|
|
49782
50018
|
fieldKey: string;
|
|
49783
50019
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -49832,6 +50068,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
49832
50068
|
onChangeSuccessMessage?: string | undefined;
|
|
49833
50069
|
}> | undefined;
|
|
49834
50070
|
successMessage?: string | undefined;
|
|
50071
|
+
hidden?: boolean | undefined;
|
|
49835
50072
|
visibleWhen?: {
|
|
49836
50073
|
fieldKey: string;
|
|
49837
50074
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -50060,6 +50297,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
50060
50297
|
}> | undefined;
|
|
50061
50298
|
}>, "many">>;
|
|
50062
50299
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
50300
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
50063
50301
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
50064
50302
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
50065
50303
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -50373,6 +50611,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
50373
50611
|
onChangeSuccessMessage?: string | undefined;
|
|
50374
50612
|
}> | undefined;
|
|
50375
50613
|
}[] | undefined;
|
|
50614
|
+
hidden?: boolean | undefined;
|
|
50376
50615
|
resolvesTo?: {
|
|
50377
50616
|
key: string;
|
|
50378
50617
|
sensitive?: boolean | undefined;
|
|
@@ -50482,6 +50721,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
50482
50721
|
onChangeSuccessMessage?: string | undefined;
|
|
50483
50722
|
}> | undefined;
|
|
50484
50723
|
}[] | undefined;
|
|
50724
|
+
hidden?: boolean | undefined;
|
|
50485
50725
|
resolvesTo?: {
|
|
50486
50726
|
key: string;
|
|
50487
50727
|
sensitive?: boolean | undefined;
|
|
@@ -50726,6 +50966,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
50726
50966
|
}> | undefined;
|
|
50727
50967
|
}>, "many">>;
|
|
50728
50968
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
50969
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
50729
50970
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
50730
50971
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
50731
50972
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -51041,6 +51282,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
51041
51282
|
onChangeSuccessMessage?: string | undefined;
|
|
51042
51283
|
}> | undefined;
|
|
51043
51284
|
}[] | undefined;
|
|
51285
|
+
hidden?: boolean | undefined;
|
|
51044
51286
|
resolvesTo?: {
|
|
51045
51287
|
key: string;
|
|
51046
51288
|
sensitive?: boolean | undefined;
|
|
@@ -51151,6 +51393,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
51151
51393
|
onChangeSuccessMessage?: string | undefined;
|
|
51152
51394
|
}> | undefined;
|
|
51153
51395
|
}[] | undefined;
|
|
51396
|
+
hidden?: boolean | undefined;
|
|
51154
51397
|
resolvesTo?: {
|
|
51155
51398
|
key: string;
|
|
51156
51399
|
sensitive?: boolean | undefined;
|
|
@@ -51395,6 +51638,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
51395
51638
|
}> | undefined;
|
|
51396
51639
|
}>, "many">>;
|
|
51397
51640
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
51641
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
51398
51642
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
51399
51643
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
51400
51644
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -51710,6 +51954,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
51710
51954
|
onChangeSuccessMessage?: string | undefined;
|
|
51711
51955
|
}> | undefined;
|
|
51712
51956
|
}[] | undefined;
|
|
51957
|
+
hidden?: boolean | undefined;
|
|
51713
51958
|
resolvesTo?: {
|
|
51714
51959
|
key: string;
|
|
51715
51960
|
sensitive?: boolean | undefined;
|
|
@@ -51820,6 +52065,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
51820
52065
|
onChangeSuccessMessage?: string | undefined;
|
|
51821
52066
|
}> | undefined;
|
|
51822
52067
|
}[] | undefined;
|
|
52068
|
+
hidden?: boolean | undefined;
|
|
51823
52069
|
resolvesTo?: {
|
|
51824
52070
|
key: string;
|
|
51825
52071
|
sensitive?: boolean | undefined;
|
|
@@ -52064,6 +52310,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
52064
52310
|
}> | undefined;
|
|
52065
52311
|
}>, "many">>;
|
|
52066
52312
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
52313
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
52067
52314
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
52068
52315
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
52069
52316
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -52383,6 +52630,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
52383
52630
|
onChangeSuccessMessage?: string | undefined;
|
|
52384
52631
|
}> | undefined;
|
|
52385
52632
|
}[] | undefined;
|
|
52633
|
+
hidden?: boolean | undefined;
|
|
52386
52634
|
resolvesTo?: {
|
|
52387
52635
|
key: string;
|
|
52388
52636
|
sensitive?: boolean | undefined;
|
|
@@ -52495,6 +52743,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
52495
52743
|
onChangeSuccessMessage?: string | undefined;
|
|
52496
52744
|
}> | undefined;
|
|
52497
52745
|
}[] | undefined;
|
|
52746
|
+
hidden?: boolean | undefined;
|
|
52498
52747
|
resolvesTo?: {
|
|
52499
52748
|
key: string;
|
|
52500
52749
|
sensitive?: boolean | undefined;
|
|
@@ -52739,6 +52988,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
52739
52988
|
}> | undefined;
|
|
52740
52989
|
}>, "many">>;
|
|
52741
52990
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
52991
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
52742
52992
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
52743
52993
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
52744
52994
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -53260,6 +53510,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
53260
53510
|
onChangeSuccessMessage?: string | undefined;
|
|
53261
53511
|
}> | undefined;
|
|
53262
53512
|
}[] | undefined;
|
|
53513
|
+
hidden?: boolean | undefined;
|
|
53263
53514
|
resolvesTo?: {
|
|
53264
53515
|
key: string;
|
|
53265
53516
|
sensitive?: boolean | undefined;
|
|
@@ -53403,6 +53654,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
53403
53654
|
onChangeSuccessMessage?: string | undefined;
|
|
53404
53655
|
}> | undefined;
|
|
53405
53656
|
}[] | undefined;
|
|
53657
|
+
hidden?: boolean | undefined;
|
|
53406
53658
|
resolvesTo?: {
|
|
53407
53659
|
key: string;
|
|
53408
53660
|
sensitive?: boolean | undefined;
|
|
@@ -53681,6 +53933,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
53681
53933
|
}> | undefined;
|
|
53682
53934
|
}>, "many">>;
|
|
53683
53935
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
53936
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
53684
53937
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
53685
53938
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
53686
53939
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -54206,6 +54459,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
54206
54459
|
onChangeSuccessMessage?: string | undefined;
|
|
54207
54460
|
}> | undefined;
|
|
54208
54461
|
}[] | undefined;
|
|
54462
|
+
hidden?: boolean | undefined;
|
|
54209
54463
|
resolvesTo?: {
|
|
54210
54464
|
key: string;
|
|
54211
54465
|
sensitive?: boolean | undefined;
|
|
@@ -54351,6 +54605,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
54351
54605
|
onChangeSuccessMessage?: string | undefined;
|
|
54352
54606
|
}> | undefined;
|
|
54353
54607
|
}[] | undefined;
|
|
54608
|
+
hidden?: boolean | undefined;
|
|
54354
54609
|
resolvesTo?: {
|
|
54355
54610
|
key: string;
|
|
54356
54611
|
sensitive?: boolean | undefined;
|
|
@@ -54629,6 +54884,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
54629
54884
|
}> | undefined;
|
|
54630
54885
|
}>, "many">>;
|
|
54631
54886
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
54887
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
54632
54888
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
54633
54889
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
54634
54890
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -55150,6 +55406,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
55150
55406
|
onChangeSuccessMessage?: string | undefined;
|
|
55151
55407
|
}> | undefined;
|
|
55152
55408
|
}[] | undefined;
|
|
55409
|
+
hidden?: boolean | undefined;
|
|
55153
55410
|
resolvesTo?: {
|
|
55154
55411
|
key: string;
|
|
55155
55412
|
sensitive?: boolean | undefined;
|
|
@@ -55293,6 +55550,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
55293
55550
|
onChangeSuccessMessage?: string | undefined;
|
|
55294
55551
|
}> | undefined;
|
|
55295
55552
|
}[] | undefined;
|
|
55553
|
+
hidden?: boolean | undefined;
|
|
55296
55554
|
resolvesTo?: {
|
|
55297
55555
|
key: string;
|
|
55298
55556
|
sensitive?: boolean | undefined;
|
|
@@ -55571,6 +55829,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
55571
55829
|
}> | undefined;
|
|
55572
55830
|
}>, "many">>;
|
|
55573
55831
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
55832
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
55574
55833
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
55575
55834
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
55576
55835
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -55884,6 +56143,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
55884
56143
|
onChangeSuccessMessage?: string | undefined;
|
|
55885
56144
|
}> | undefined;
|
|
55886
56145
|
}[] | undefined;
|
|
56146
|
+
hidden?: boolean | undefined;
|
|
55887
56147
|
resolvesTo?: {
|
|
55888
56148
|
key: string;
|
|
55889
56149
|
sensitive?: boolean | undefined;
|
|
@@ -55993,6 +56253,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
55993
56253
|
onChangeSuccessMessage?: string | undefined;
|
|
55994
56254
|
}> | undefined;
|
|
55995
56255
|
}[] | undefined;
|
|
56256
|
+
hidden?: boolean | undefined;
|
|
55996
56257
|
resolvesTo?: {
|
|
55997
56258
|
key: string;
|
|
55998
56259
|
sensitive?: boolean | undefined;
|
|
@@ -56237,6 +56498,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
56237
56498
|
}> | undefined;
|
|
56238
56499
|
}>, "many">>;
|
|
56239
56500
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
56501
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
56240
56502
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
56241
56503
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
56242
56504
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -56550,6 +56812,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
56550
56812
|
onChangeSuccessMessage?: string | undefined;
|
|
56551
56813
|
}> | undefined;
|
|
56552
56814
|
}[] | undefined;
|
|
56815
|
+
hidden?: boolean | undefined;
|
|
56553
56816
|
resolvesTo?: {
|
|
56554
56817
|
key: string;
|
|
56555
56818
|
sensitive?: boolean | undefined;
|
|
@@ -56659,6 +56922,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
56659
56922
|
onChangeSuccessMessage?: string | undefined;
|
|
56660
56923
|
}> | undefined;
|
|
56661
56924
|
}[] | undefined;
|
|
56925
|
+
hidden?: boolean | undefined;
|
|
56662
56926
|
resolvesTo?: {
|
|
56663
56927
|
key: string;
|
|
56664
56928
|
sensitive?: boolean | undefined;
|
|
@@ -56903,6 +57167,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
56903
57167
|
}> | undefined;
|
|
56904
57168
|
}>, "many">>;
|
|
56905
57169
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
57170
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
56906
57171
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
56907
57172
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
56908
57173
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -57444,6 +57709,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
57444
57709
|
onChangeSuccessMessage?: string | undefined;
|
|
57445
57710
|
}> | undefined;
|
|
57446
57711
|
}[] | undefined;
|
|
57712
|
+
hidden?: boolean | undefined;
|
|
57447
57713
|
resolvesTo?: {
|
|
57448
57714
|
key: string;
|
|
57449
57715
|
sensitive?: boolean | undefined;
|
|
@@ -57594,6 +57860,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
57594
57860
|
onChangeSuccessMessage?: string | undefined;
|
|
57595
57861
|
}> | undefined;
|
|
57596
57862
|
}[] | undefined;
|
|
57863
|
+
hidden?: boolean | undefined;
|
|
57597
57864
|
resolvesTo?: {
|
|
57598
57865
|
key: string;
|
|
57599
57866
|
sensitive?: boolean | undefined;
|
|
@@ -57872,6 +58139,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
57872
58139
|
}> | undefined;
|
|
57873
58140
|
}>, "many">>;
|
|
57874
58141
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
58142
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
57875
58143
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
57876
58144
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
57877
58145
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -58437,6 +58705,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
58437
58705
|
onChangeSuccessMessage?: string | undefined;
|
|
58438
58706
|
}> | undefined;
|
|
58439
58707
|
}[] | undefined;
|
|
58708
|
+
hidden?: boolean | undefined;
|
|
58440
58709
|
resolvesTo?: {
|
|
58441
58710
|
key: string;
|
|
58442
58711
|
sensitive?: boolean | undefined;
|
|
@@ -58596,6 +58865,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
58596
58865
|
onChangeSuccessMessage?: string | undefined;
|
|
58597
58866
|
}> | undefined;
|
|
58598
58867
|
}[] | undefined;
|
|
58868
|
+
hidden?: boolean | undefined;
|
|
58599
58869
|
resolvesTo?: {
|
|
58600
58870
|
key: string;
|
|
58601
58871
|
sensitive?: boolean | undefined;
|
|
@@ -58876,6 +59146,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
58876
59146
|
}> | undefined;
|
|
58877
59147
|
}>, "many">>;
|
|
58878
59148
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
59149
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
58879
59150
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
58880
59151
|
validationRegex: z.ZodOptional<z.ZodString>;
|
|
58881
59152
|
storageClass: z.ZodOptional<z.ZodEnum<["config", "credential", "transient", "media"]>>;
|
|
@@ -59192,6 +59463,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
59192
59463
|
onChangeSuccessMessage?: string | undefined;
|
|
59193
59464
|
}> | undefined;
|
|
59194
59465
|
}[] | undefined;
|
|
59466
|
+
hidden?: boolean | undefined;
|
|
59195
59467
|
resolvesTo?: {
|
|
59196
59468
|
key: string;
|
|
59197
59469
|
sensitive?: boolean | undefined;
|
|
@@ -59304,6 +59576,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
59304
59576
|
onChangeSuccessMessage?: string | undefined;
|
|
59305
59577
|
}> | undefined;
|
|
59306
59578
|
}[] | undefined;
|
|
59579
|
+
hidden?: boolean | undefined;
|
|
59307
59580
|
resolvesTo?: {
|
|
59308
59581
|
key: string;
|
|
59309
59582
|
sensitive?: boolean | undefined;
|
|
@@ -60159,6 +60432,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
60159
60432
|
onChangeSuccessMessage?: string | undefined;
|
|
60160
60433
|
}> | undefined;
|
|
60161
60434
|
}[] | undefined;
|
|
60435
|
+
hidden?: boolean | undefined;
|
|
60162
60436
|
resolvesTo?: {
|
|
60163
60437
|
key: string;
|
|
60164
60438
|
sensitive?: boolean | undefined;
|
|
@@ -60269,6 +60543,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
60269
60543
|
onChangeSuccessMessage?: string | undefined;
|
|
60270
60544
|
}> | undefined;
|
|
60271
60545
|
}[] | undefined;
|
|
60546
|
+
hidden?: boolean | undefined;
|
|
60272
60547
|
resolvesTo?: {
|
|
60273
60548
|
key: string;
|
|
60274
60549
|
sensitive?: boolean | undefined;
|
|
@@ -60379,6 +60654,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
60379
60654
|
onChangeSuccessMessage?: string | undefined;
|
|
60380
60655
|
}> | undefined;
|
|
60381
60656
|
}[] | undefined;
|
|
60657
|
+
hidden?: boolean | undefined;
|
|
60382
60658
|
resolvesTo?: {
|
|
60383
60659
|
key: string;
|
|
60384
60660
|
sensitive?: boolean | undefined;
|
|
@@ -60491,6 +60767,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
60491
60767
|
onChangeSuccessMessage?: string | undefined;
|
|
60492
60768
|
}> | undefined;
|
|
60493
60769
|
}[] | undefined;
|
|
60770
|
+
hidden?: boolean | undefined;
|
|
60494
60771
|
resolvesTo?: {
|
|
60495
60772
|
key: string;
|
|
60496
60773
|
sensitive?: boolean | undefined;
|
|
@@ -60600,6 +60877,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
60600
60877
|
onChangeSuccessMessage?: string | undefined;
|
|
60601
60878
|
}> | undefined;
|
|
60602
60879
|
}[] | undefined;
|
|
60880
|
+
hidden?: boolean | undefined;
|
|
60603
60881
|
resolvesTo?: {
|
|
60604
60882
|
key: string;
|
|
60605
60883
|
sensitive?: boolean | undefined;
|
|
@@ -60745,6 +61023,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
60745
61023
|
onChangeSuccessMessage?: string | undefined;
|
|
60746
61024
|
}> | undefined;
|
|
60747
61025
|
}[] | undefined;
|
|
61026
|
+
hidden?: boolean | undefined;
|
|
60748
61027
|
resolvesTo?: {
|
|
60749
61028
|
key: string;
|
|
60750
61029
|
sensitive?: boolean | undefined;
|
|
@@ -60888,6 +61167,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
60888
61167
|
onChangeSuccessMessage?: string | undefined;
|
|
60889
61168
|
}> | undefined;
|
|
60890
61169
|
}[] | undefined;
|
|
61170
|
+
hidden?: boolean | undefined;
|
|
60891
61171
|
resolvesTo?: {
|
|
60892
61172
|
key: string;
|
|
60893
61173
|
sensitive?: boolean | undefined;
|
|
@@ -61031,6 +61311,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
61031
61311
|
onChangeSuccessMessage?: string | undefined;
|
|
61032
61312
|
}> | undefined;
|
|
61033
61313
|
}[] | undefined;
|
|
61314
|
+
hidden?: boolean | undefined;
|
|
61034
61315
|
resolvesTo?: {
|
|
61035
61316
|
key: string;
|
|
61036
61317
|
sensitive?: boolean | undefined;
|
|
@@ -61140,6 +61421,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
61140
61421
|
onChangeSuccessMessage?: string | undefined;
|
|
61141
61422
|
}> | undefined;
|
|
61142
61423
|
}[] | undefined;
|
|
61424
|
+
hidden?: boolean | undefined;
|
|
61143
61425
|
resolvesTo?: {
|
|
61144
61426
|
key: string;
|
|
61145
61427
|
sensitive?: boolean | undefined;
|
|
@@ -61256,6 +61538,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
61256
61538
|
onChangeSuccessMessage?: string | undefined;
|
|
61257
61539
|
}> | undefined;
|
|
61258
61540
|
}[] | undefined;
|
|
61541
|
+
hidden?: boolean | undefined;
|
|
61259
61542
|
resolvesTo?: {
|
|
61260
61543
|
key: string;
|
|
61261
61544
|
sensitive?: boolean | undefined;
|
|
@@ -61413,6 +61696,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
61413
61696
|
onChangeSuccessMessage?: string | undefined;
|
|
61414
61697
|
}> | undefined;
|
|
61415
61698
|
}[] | undefined;
|
|
61699
|
+
hidden?: boolean | undefined;
|
|
61416
61700
|
resolvesTo?: {
|
|
61417
61701
|
key: string;
|
|
61418
61702
|
sensitive?: boolean | undefined;
|
|
@@ -61558,6 +61842,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
61558
61842
|
onChangeSuccessMessage?: string | undefined;
|
|
61559
61843
|
}> | undefined;
|
|
61560
61844
|
}[] | undefined;
|
|
61845
|
+
hidden?: boolean | undefined;
|
|
61561
61846
|
resolvesTo?: {
|
|
61562
61847
|
key: string;
|
|
61563
61848
|
sensitive?: boolean | undefined;
|
|
@@ -61628,6 +61913,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
61628
61913
|
onChangeSuccessMessage?: string | undefined;
|
|
61629
61914
|
}> | undefined;
|
|
61630
61915
|
menuLabel?: string | undefined;
|
|
61916
|
+
hidden?: boolean | undefined;
|
|
61631
61917
|
visibleWhen?: {
|
|
61632
61918
|
fieldKey: string;
|
|
61633
61919
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -61699,6 +61985,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
61699
61985
|
onChangeSuccessMessage?: string | undefined;
|
|
61700
61986
|
}> | undefined;
|
|
61701
61987
|
}[] | undefined;
|
|
61988
|
+
hidden?: boolean | undefined;
|
|
61702
61989
|
visibleWhen?: {
|
|
61703
61990
|
fieldKey: string;
|
|
61704
61991
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -61707,6 +61994,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
61707
61994
|
} | {
|
|
61708
61995
|
type: "divider";
|
|
61709
61996
|
id?: string | undefined;
|
|
61997
|
+
hidden?: boolean | undefined;
|
|
61710
61998
|
visibleWhen?: {
|
|
61711
61999
|
fieldKey: string;
|
|
61712
62000
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -61746,6 +62034,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
61746
62034
|
noneLabel?: string | undefined;
|
|
61747
62035
|
onChangeSuccessMessage?: string | undefined;
|
|
61748
62036
|
}> | undefined;
|
|
62037
|
+
hidden?: boolean | undefined;
|
|
61749
62038
|
visibleWhen?: {
|
|
61750
62039
|
fieldKey: string;
|
|
61751
62040
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -61829,6 +62118,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
61829
62118
|
onChangeSuccessMessage?: string | undefined;
|
|
61830
62119
|
}> | undefined;
|
|
61831
62120
|
}[] | undefined;
|
|
62121
|
+
hidden?: boolean | undefined;
|
|
61832
62122
|
resolvesTo?: {
|
|
61833
62123
|
key: string;
|
|
61834
62124
|
sensitive?: boolean | undefined;
|
|
@@ -61939,6 +62229,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
61939
62229
|
onChangeSuccessMessage?: string | undefined;
|
|
61940
62230
|
}> | undefined;
|
|
61941
62231
|
}[] | undefined;
|
|
62232
|
+
hidden?: boolean | undefined;
|
|
61942
62233
|
resolvesTo?: {
|
|
61943
62234
|
key: string;
|
|
61944
62235
|
sensitive?: boolean | undefined;
|
|
@@ -62049,6 +62340,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
62049
62340
|
onChangeSuccessMessage?: string | undefined;
|
|
62050
62341
|
}> | undefined;
|
|
62051
62342
|
}[] | undefined;
|
|
62343
|
+
hidden?: boolean | undefined;
|
|
62052
62344
|
resolvesTo?: {
|
|
62053
62345
|
key: string;
|
|
62054
62346
|
sensitive?: boolean | undefined;
|
|
@@ -62161,6 +62453,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
62161
62453
|
onChangeSuccessMessage?: string | undefined;
|
|
62162
62454
|
}> | undefined;
|
|
62163
62455
|
}[] | undefined;
|
|
62456
|
+
hidden?: boolean | undefined;
|
|
62164
62457
|
resolvesTo?: {
|
|
62165
62458
|
key: string;
|
|
62166
62459
|
sensitive?: boolean | undefined;
|
|
@@ -62270,6 +62563,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
62270
62563
|
onChangeSuccessMessage?: string | undefined;
|
|
62271
62564
|
}> | undefined;
|
|
62272
62565
|
}[] | undefined;
|
|
62566
|
+
hidden?: boolean | undefined;
|
|
62273
62567
|
resolvesTo?: {
|
|
62274
62568
|
key: string;
|
|
62275
62569
|
sensitive?: boolean | undefined;
|
|
@@ -62415,6 +62709,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
62415
62709
|
onChangeSuccessMessage?: string | undefined;
|
|
62416
62710
|
}> | undefined;
|
|
62417
62711
|
}[] | undefined;
|
|
62712
|
+
hidden?: boolean | undefined;
|
|
62418
62713
|
resolvesTo?: {
|
|
62419
62714
|
key: string;
|
|
62420
62715
|
sensitive?: boolean | undefined;
|
|
@@ -62558,6 +62853,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
62558
62853
|
onChangeSuccessMessage?: string | undefined;
|
|
62559
62854
|
}> | undefined;
|
|
62560
62855
|
}[] | undefined;
|
|
62856
|
+
hidden?: boolean | undefined;
|
|
62561
62857
|
resolvesTo?: {
|
|
62562
62858
|
key: string;
|
|
62563
62859
|
sensitive?: boolean | undefined;
|
|
@@ -62701,6 +62997,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
62701
62997
|
onChangeSuccessMessage?: string | undefined;
|
|
62702
62998
|
}> | undefined;
|
|
62703
62999
|
}[] | undefined;
|
|
63000
|
+
hidden?: boolean | undefined;
|
|
62704
63001
|
resolvesTo?: {
|
|
62705
63002
|
key: string;
|
|
62706
63003
|
sensitive?: boolean | undefined;
|
|
@@ -62810,6 +63107,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
62810
63107
|
onChangeSuccessMessage?: string | undefined;
|
|
62811
63108
|
}> | undefined;
|
|
62812
63109
|
}[] | undefined;
|
|
63110
|
+
hidden?: boolean | undefined;
|
|
62813
63111
|
resolvesTo?: {
|
|
62814
63112
|
key: string;
|
|
62815
63113
|
sensitive?: boolean | undefined;
|
|
@@ -62926,6 +63224,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
62926
63224
|
onChangeSuccessMessage?: string | undefined;
|
|
62927
63225
|
}> | undefined;
|
|
62928
63226
|
}[] | undefined;
|
|
63227
|
+
hidden?: boolean | undefined;
|
|
62929
63228
|
resolvesTo?: {
|
|
62930
63229
|
key: string;
|
|
62931
63230
|
sensitive?: boolean | undefined;
|
|
@@ -63083,6 +63382,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
63083
63382
|
onChangeSuccessMessage?: string | undefined;
|
|
63084
63383
|
}> | undefined;
|
|
63085
63384
|
}[] | undefined;
|
|
63385
|
+
hidden?: boolean | undefined;
|
|
63086
63386
|
resolvesTo?: {
|
|
63087
63387
|
key: string;
|
|
63088
63388
|
sensitive?: boolean | undefined;
|
|
@@ -63228,6 +63528,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
63228
63528
|
onChangeSuccessMessage?: string | undefined;
|
|
63229
63529
|
}> | undefined;
|
|
63230
63530
|
}[] | undefined;
|
|
63531
|
+
hidden?: boolean | undefined;
|
|
63231
63532
|
resolvesTo?: {
|
|
63232
63533
|
key: string;
|
|
63233
63534
|
sensitive?: boolean | undefined;
|
|
@@ -63297,6 +63598,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
63297
63598
|
noneLabel?: string | undefined;
|
|
63298
63599
|
onChangeSuccessMessage?: string | undefined;
|
|
63299
63600
|
}> | undefined;
|
|
63601
|
+
hidden?: boolean | undefined;
|
|
63300
63602
|
visibleWhen?: {
|
|
63301
63603
|
fieldKey: string;
|
|
63302
63604
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -63306,6 +63608,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
63306
63608
|
type: "native";
|
|
63307
63609
|
renderer: string;
|
|
63308
63610
|
id?: string | undefined;
|
|
63611
|
+
hidden?: boolean | undefined;
|
|
63309
63612
|
props?: Record<string, unknown> | undefined;
|
|
63310
63613
|
} | {
|
|
63311
63614
|
type: "action";
|
|
@@ -63344,6 +63647,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
63344
63647
|
onChangeSuccessMessage?: string | undefined;
|
|
63345
63648
|
}> | undefined;
|
|
63346
63649
|
successMessage?: string | undefined;
|
|
63650
|
+
hidden?: boolean | undefined;
|
|
63347
63651
|
visibleWhen?: {
|
|
63348
63652
|
fieldKey: string;
|
|
63349
63653
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -63601,6 +63905,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
63601
63905
|
onChangeSuccessMessage?: string | undefined;
|
|
63602
63906
|
}> | undefined;
|
|
63603
63907
|
}[] | undefined;
|
|
63908
|
+
hidden?: boolean | undefined;
|
|
63604
63909
|
resolvesTo?: {
|
|
63605
63910
|
key: string;
|
|
63606
63911
|
sensitive?: boolean | undefined;
|
|
@@ -63711,6 +64016,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
63711
64016
|
onChangeSuccessMessage?: string | undefined;
|
|
63712
64017
|
}> | undefined;
|
|
63713
64018
|
}[] | undefined;
|
|
64019
|
+
hidden?: boolean | undefined;
|
|
63714
64020
|
resolvesTo?: {
|
|
63715
64021
|
key: string;
|
|
63716
64022
|
sensitive?: boolean | undefined;
|
|
@@ -63821,6 +64127,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
63821
64127
|
onChangeSuccessMessage?: string | undefined;
|
|
63822
64128
|
}> | undefined;
|
|
63823
64129
|
}[] | undefined;
|
|
64130
|
+
hidden?: boolean | undefined;
|
|
63824
64131
|
resolvesTo?: {
|
|
63825
64132
|
key: string;
|
|
63826
64133
|
sensitive?: boolean | undefined;
|
|
@@ -63933,6 +64240,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
63933
64240
|
onChangeSuccessMessage?: string | undefined;
|
|
63934
64241
|
}> | undefined;
|
|
63935
64242
|
}[] | undefined;
|
|
64243
|
+
hidden?: boolean | undefined;
|
|
63936
64244
|
resolvesTo?: {
|
|
63937
64245
|
key: string;
|
|
63938
64246
|
sensitive?: boolean | undefined;
|
|
@@ -64042,6 +64350,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
64042
64350
|
onChangeSuccessMessage?: string | undefined;
|
|
64043
64351
|
}> | undefined;
|
|
64044
64352
|
}[] | undefined;
|
|
64353
|
+
hidden?: boolean | undefined;
|
|
64045
64354
|
resolvesTo?: {
|
|
64046
64355
|
key: string;
|
|
64047
64356
|
sensitive?: boolean | undefined;
|
|
@@ -64187,6 +64496,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
64187
64496
|
onChangeSuccessMessage?: string | undefined;
|
|
64188
64497
|
}> | undefined;
|
|
64189
64498
|
}[] | undefined;
|
|
64499
|
+
hidden?: boolean | undefined;
|
|
64190
64500
|
resolvesTo?: {
|
|
64191
64501
|
key: string;
|
|
64192
64502
|
sensitive?: boolean | undefined;
|
|
@@ -64330,6 +64640,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
64330
64640
|
onChangeSuccessMessage?: string | undefined;
|
|
64331
64641
|
}> | undefined;
|
|
64332
64642
|
}[] | undefined;
|
|
64643
|
+
hidden?: boolean | undefined;
|
|
64333
64644
|
resolvesTo?: {
|
|
64334
64645
|
key: string;
|
|
64335
64646
|
sensitive?: boolean | undefined;
|
|
@@ -64473,6 +64784,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
64473
64784
|
onChangeSuccessMessage?: string | undefined;
|
|
64474
64785
|
}> | undefined;
|
|
64475
64786
|
}[] | undefined;
|
|
64787
|
+
hidden?: boolean | undefined;
|
|
64476
64788
|
resolvesTo?: {
|
|
64477
64789
|
key: string;
|
|
64478
64790
|
sensitive?: boolean | undefined;
|
|
@@ -64582,6 +64894,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
64582
64894
|
onChangeSuccessMessage?: string | undefined;
|
|
64583
64895
|
}> | undefined;
|
|
64584
64896
|
}[] | undefined;
|
|
64897
|
+
hidden?: boolean | undefined;
|
|
64585
64898
|
resolvesTo?: {
|
|
64586
64899
|
key: string;
|
|
64587
64900
|
sensitive?: boolean | undefined;
|
|
@@ -64698,6 +65011,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
64698
65011
|
onChangeSuccessMessage?: string | undefined;
|
|
64699
65012
|
}> | undefined;
|
|
64700
65013
|
}[] | undefined;
|
|
65014
|
+
hidden?: boolean | undefined;
|
|
64701
65015
|
resolvesTo?: {
|
|
64702
65016
|
key: string;
|
|
64703
65017
|
sensitive?: boolean | undefined;
|
|
@@ -64855,6 +65169,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
64855
65169
|
onChangeSuccessMessage?: string | undefined;
|
|
64856
65170
|
}> | undefined;
|
|
64857
65171
|
}[] | undefined;
|
|
65172
|
+
hidden?: boolean | undefined;
|
|
64858
65173
|
resolvesTo?: {
|
|
64859
65174
|
key: string;
|
|
64860
65175
|
sensitive?: boolean | undefined;
|
|
@@ -65000,6 +65315,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
65000
65315
|
onChangeSuccessMessage?: string | undefined;
|
|
65001
65316
|
}> | undefined;
|
|
65002
65317
|
}[] | undefined;
|
|
65318
|
+
hidden?: boolean | undefined;
|
|
65003
65319
|
resolvesTo?: {
|
|
65004
65320
|
key: string;
|
|
65005
65321
|
sensitive?: boolean | undefined;
|
|
@@ -65070,6 +65386,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
65070
65386
|
onChangeSuccessMessage?: string | undefined;
|
|
65071
65387
|
}> | undefined;
|
|
65072
65388
|
menuLabel?: string | undefined;
|
|
65389
|
+
hidden?: boolean | undefined;
|
|
65073
65390
|
visibleWhen?: {
|
|
65074
65391
|
fieldKey: string;
|
|
65075
65392
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -65141,6 +65458,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
65141
65458
|
onChangeSuccessMessage?: string | undefined;
|
|
65142
65459
|
}> | undefined;
|
|
65143
65460
|
}[] | undefined;
|
|
65461
|
+
hidden?: boolean | undefined;
|
|
65144
65462
|
visibleWhen?: {
|
|
65145
65463
|
fieldKey: string;
|
|
65146
65464
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -65149,6 +65467,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
65149
65467
|
} | {
|
|
65150
65468
|
type: "divider";
|
|
65151
65469
|
id?: string | undefined;
|
|
65470
|
+
hidden?: boolean | undefined;
|
|
65152
65471
|
visibleWhen?: {
|
|
65153
65472
|
fieldKey: string;
|
|
65154
65473
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -65188,6 +65507,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
65188
65507
|
onChangeSuccessMessage?: string | undefined;
|
|
65189
65508
|
}> | undefined;
|
|
65190
65509
|
tone?: "success" | "info" | "warning" | "danger" | undefined;
|
|
65510
|
+
hidden?: boolean | undefined;
|
|
65191
65511
|
visibleWhen?: {
|
|
65192
65512
|
fieldKey: string;
|
|
65193
65513
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -65271,6 +65591,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
65271
65591
|
onChangeSuccessMessage?: string | undefined;
|
|
65272
65592
|
}> | undefined;
|
|
65273
65593
|
}[] | undefined;
|
|
65594
|
+
hidden?: boolean | undefined;
|
|
65274
65595
|
resolvesTo?: {
|
|
65275
65596
|
key: string;
|
|
65276
65597
|
sensitive?: boolean | undefined;
|
|
@@ -65381,6 +65702,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
65381
65702
|
onChangeSuccessMessage?: string | undefined;
|
|
65382
65703
|
}> | undefined;
|
|
65383
65704
|
}[] | undefined;
|
|
65705
|
+
hidden?: boolean | undefined;
|
|
65384
65706
|
resolvesTo?: {
|
|
65385
65707
|
key: string;
|
|
65386
65708
|
sensitive?: boolean | undefined;
|
|
@@ -65491,6 +65813,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
65491
65813
|
onChangeSuccessMessage?: string | undefined;
|
|
65492
65814
|
}> | undefined;
|
|
65493
65815
|
}[] | undefined;
|
|
65816
|
+
hidden?: boolean | undefined;
|
|
65494
65817
|
resolvesTo?: {
|
|
65495
65818
|
key: string;
|
|
65496
65819
|
sensitive?: boolean | undefined;
|
|
@@ -65603,6 +65926,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
65603
65926
|
onChangeSuccessMessage?: string | undefined;
|
|
65604
65927
|
}> | undefined;
|
|
65605
65928
|
}[] | undefined;
|
|
65929
|
+
hidden?: boolean | undefined;
|
|
65606
65930
|
resolvesTo?: {
|
|
65607
65931
|
key: string;
|
|
65608
65932
|
sensitive?: boolean | undefined;
|
|
@@ -65712,6 +66036,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
65712
66036
|
onChangeSuccessMessage?: string | undefined;
|
|
65713
66037
|
}> | undefined;
|
|
65714
66038
|
}[] | undefined;
|
|
66039
|
+
hidden?: boolean | undefined;
|
|
65715
66040
|
resolvesTo?: {
|
|
65716
66041
|
key: string;
|
|
65717
66042
|
sensitive?: boolean | undefined;
|
|
@@ -65857,6 +66182,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
65857
66182
|
onChangeSuccessMessage?: string | undefined;
|
|
65858
66183
|
}> | undefined;
|
|
65859
66184
|
}[] | undefined;
|
|
66185
|
+
hidden?: boolean | undefined;
|
|
65860
66186
|
resolvesTo?: {
|
|
65861
66187
|
key: string;
|
|
65862
66188
|
sensitive?: boolean | undefined;
|
|
@@ -66000,6 +66326,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
66000
66326
|
onChangeSuccessMessage?: string | undefined;
|
|
66001
66327
|
}> | undefined;
|
|
66002
66328
|
}[] | undefined;
|
|
66329
|
+
hidden?: boolean | undefined;
|
|
66003
66330
|
resolvesTo?: {
|
|
66004
66331
|
key: string;
|
|
66005
66332
|
sensitive?: boolean | undefined;
|
|
@@ -66143,6 +66470,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
66143
66470
|
onChangeSuccessMessage?: string | undefined;
|
|
66144
66471
|
}> | undefined;
|
|
66145
66472
|
}[] | undefined;
|
|
66473
|
+
hidden?: boolean | undefined;
|
|
66146
66474
|
resolvesTo?: {
|
|
66147
66475
|
key: string;
|
|
66148
66476
|
sensitive?: boolean | undefined;
|
|
@@ -66252,6 +66580,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
66252
66580
|
onChangeSuccessMessage?: string | undefined;
|
|
66253
66581
|
}> | undefined;
|
|
66254
66582
|
}[] | undefined;
|
|
66583
|
+
hidden?: boolean | undefined;
|
|
66255
66584
|
resolvesTo?: {
|
|
66256
66585
|
key: string;
|
|
66257
66586
|
sensitive?: boolean | undefined;
|
|
@@ -66368,6 +66697,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
66368
66697
|
onChangeSuccessMessage?: string | undefined;
|
|
66369
66698
|
}> | undefined;
|
|
66370
66699
|
}[] | undefined;
|
|
66700
|
+
hidden?: boolean | undefined;
|
|
66371
66701
|
resolvesTo?: {
|
|
66372
66702
|
key: string;
|
|
66373
66703
|
sensitive?: boolean | undefined;
|
|
@@ -66525,6 +66855,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
66525
66855
|
onChangeSuccessMessage?: string | undefined;
|
|
66526
66856
|
}> | undefined;
|
|
66527
66857
|
}[] | undefined;
|
|
66858
|
+
hidden?: boolean | undefined;
|
|
66528
66859
|
resolvesTo?: {
|
|
66529
66860
|
key: string;
|
|
66530
66861
|
sensitive?: boolean | undefined;
|
|
@@ -66670,6 +67001,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
66670
67001
|
onChangeSuccessMessage?: string | undefined;
|
|
66671
67002
|
}> | undefined;
|
|
66672
67003
|
}[] | undefined;
|
|
67004
|
+
hidden?: boolean | undefined;
|
|
66673
67005
|
resolvesTo?: {
|
|
66674
67006
|
key: string;
|
|
66675
67007
|
sensitive?: boolean | undefined;
|
|
@@ -66738,6 +67070,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
66738
67070
|
noneLabel?: string | undefined;
|
|
66739
67071
|
onChangeSuccessMessage?: string | undefined;
|
|
66740
67072
|
}> | undefined;
|
|
67073
|
+
hidden?: boolean | undefined;
|
|
66741
67074
|
visibleWhen?: {
|
|
66742
67075
|
fieldKey: string;
|
|
66743
67076
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|
|
@@ -66748,6 +67081,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
66748
67081
|
type: "native";
|
|
66749
67082
|
renderer: string;
|
|
66750
67083
|
id?: string | undefined;
|
|
67084
|
+
hidden?: boolean | undefined;
|
|
66751
67085
|
props?: Record<string, unknown> | undefined;
|
|
66752
67086
|
} | {
|
|
66753
67087
|
type: "action";
|
|
@@ -66786,6 +67120,7 @@ export declare const GetConfigSchemaOutputSchema: z.ZodObject<{
|
|
|
66786
67120
|
onChangeSuccessMessage?: string | undefined;
|
|
66787
67121
|
}> | undefined;
|
|
66788
67122
|
successMessage?: string | undefined;
|
|
67123
|
+
hidden?: boolean | undefined;
|
|
66789
67124
|
visibleWhen?: {
|
|
66790
67125
|
fieldKey: string;
|
|
66791
67126
|
operator: "eq" | "ne" | "in" | "notIn" | "exists" | "notExists";
|