@strapi/content-type-builder 5.15.0 → 5.16.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/admin/components/CustomRadioGroup/Styles.js +2 -4
- package/dist/admin/components/CustomRadioGroup/Styles.js.map +1 -1
- package/dist/admin/components/CustomRadioGroup/Styles.mjs +2 -4
- package/dist/admin/components/CustomRadioGroup/Styles.mjs.map +1 -1
- package/dist/admin/components/DataManager/DataManagerProvider.js +10 -22
- package/dist/admin/components/DataManager/DataManagerProvider.js.map +1 -1
- package/dist/admin/components/DataManager/DataManagerProvider.mjs +10 -22
- package/dist/admin/components/DataManager/DataManagerProvider.mjs.map +1 -1
- package/dist/admin/components/DataManager/utils/cleanData.js +98 -16
- package/dist/admin/components/DataManager/utils/cleanData.js.map +1 -1
- package/dist/admin/components/DataManager/utils/cleanData.mjs +98 -16
- package/dist/admin/components/DataManager/utils/cleanData.mjs.map +1 -1
- package/dist/admin/components/DynamicZoneList.js +15 -28
- package/dist/admin/components/DynamicZoneList.js.map +1 -1
- package/dist/admin/components/DynamicZoneList.mjs +15 -28
- package/dist/admin/components/DynamicZoneList.mjs.map +1 -1
- package/dist/admin/components/FormModal/attributes/advancedForm.js +18 -3
- package/dist/admin/components/FormModal/attributes/advancedForm.js.map +1 -1
- package/dist/admin/components/FormModal/attributes/advancedForm.mjs +18 -3
- package/dist/admin/components/FormModal/attributes/advancedForm.mjs.map +1 -1
- package/dist/admin/components/Relation/RelationNaturePicker/Components.js +7 -0
- package/dist/admin/components/Relation/RelationNaturePicker/Components.js.map +1 -1
- package/dist/admin/components/Relation/RelationNaturePicker/Components.mjs +7 -0
- package/dist/admin/components/Relation/RelationNaturePicker/Components.mjs.map +1 -1
- package/dist/admin/src/components/DataManager/utils/cleanData.d.ts +287 -273
- package/dist/admin/translations/en.json.js +2 -0
- package/dist/admin/translations/en.json.js.map +1 -1
- package/dist/admin/translations/en.json.mjs +2 -0
- package/dist/admin/translations/en.json.mjs.map +1 -1
- package/dist/admin/translations/fr.json.js +4 -0
- package/dist/admin/translations/fr.json.js.map +1 -1
- package/dist/admin/translations/fr.json.mjs +4 -0
- package/dist/admin/translations/fr.json.mjs.map +1 -1
- package/dist/server/controllers/validation/common.js +0 -6
- package/dist/server/controllers/validation/common.js.map +1 -1
- package/dist/server/controllers/validation/common.mjs +1 -6
- package/dist/server/controllers/validation/common.mjs.map +1 -1
- package/dist/server/controllers/validation/schema.js +4 -1
- package/dist/server/controllers/validation/schema.js.map +1 -1
- package/dist/server/controllers/validation/schema.mjs +4 -1
- package/dist/server/controllers/validation/schema.mjs.map +1 -1
- package/dist/server/controllers/validation/types.js +9 -2
- package/dist/server/controllers/validation/types.js.map +1 -1
- package/dist/server/controllers/validation/types.mjs +10 -3
- package/dist/server/controllers/validation/types.mjs.map +1 -1
- package/dist/server/src/controllers/validation/schema.d.ts +192 -0
- package/dist/server/src/controllers/validation/schema.d.ts.map +1 -1
- package/dist/server/src/services/schema.d.ts +6 -0
- package/dist/server/src/services/schema.d.ts.map +1 -1
- package/dist/server/src/utils/attributes.d.ts +1 -0
- package/dist/server/src/utils/attributes.d.ts.map +1 -1
- package/package.json +7 -7
|
@@ -3918,6 +3918,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3918
3918
|
customReplacements?: string[][] | undefined;
|
|
3919
3919
|
preserveLeadingUnderscore?: boolean | undefined;
|
|
3920
3920
|
}>>;
|
|
3921
|
+
regex: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
3921
3922
|
}>, "strip", z.ZodTypeAny, {
|
|
3922
3923
|
type: "uid";
|
|
3923
3924
|
required?: boolean | undefined;
|
|
@@ -3926,6 +3927,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3926
3927
|
configurable?: boolean | null | undefined;
|
|
3927
3928
|
minLength?: number | undefined;
|
|
3928
3929
|
maxLength?: number | undefined;
|
|
3930
|
+
regex?: string | undefined;
|
|
3929
3931
|
targetField?: string | null | undefined;
|
|
3930
3932
|
options?: {
|
|
3931
3933
|
separator?: string | undefined;
|
|
@@ -3943,6 +3945,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3943
3945
|
configurable?: boolean | null | undefined;
|
|
3944
3946
|
minLength?: number | undefined;
|
|
3945
3947
|
maxLength?: number | undefined;
|
|
3948
|
+
regex?: string | undefined;
|
|
3946
3949
|
targetField?: string | null | undefined;
|
|
3947
3950
|
options?: {
|
|
3948
3951
|
separator?: string | undefined;
|
|
@@ -4237,6 +4240,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4237
4240
|
configurable?: boolean | null | undefined;
|
|
4238
4241
|
minLength?: number | undefined;
|
|
4239
4242
|
maxLength?: number | undefined;
|
|
4243
|
+
regex?: string | undefined;
|
|
4240
4244
|
targetField?: string | null | undefined;
|
|
4241
4245
|
options?: {
|
|
4242
4246
|
separator?: string | undefined;
|
|
@@ -4510,6 +4514,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4510
4514
|
configurable?: boolean | null | undefined;
|
|
4511
4515
|
minLength?: number | undefined;
|
|
4512
4516
|
maxLength?: number | undefined;
|
|
4517
|
+
regex?: string | undefined;
|
|
4513
4518
|
targetField?: string | null | undefined;
|
|
4514
4519
|
options?: {
|
|
4515
4520
|
separator?: string | undefined;
|
|
@@ -4783,6 +4788,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4783
4788
|
configurable?: boolean | null | undefined;
|
|
4784
4789
|
minLength?: number | undefined;
|
|
4785
4790
|
maxLength?: number | undefined;
|
|
4791
|
+
regex?: string | undefined;
|
|
4786
4792
|
targetField?: string | null | undefined;
|
|
4787
4793
|
options?: {
|
|
4788
4794
|
separator?: string | undefined;
|
|
@@ -5056,6 +5062,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5056
5062
|
configurable?: boolean | null | undefined;
|
|
5057
5063
|
minLength?: number | undefined;
|
|
5058
5064
|
maxLength?: number | undefined;
|
|
5065
|
+
regex?: string | undefined;
|
|
5059
5066
|
targetField?: string | null | undefined;
|
|
5060
5067
|
options?: {
|
|
5061
5068
|
separator?: string | undefined;
|
|
@@ -5329,6 +5336,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5329
5336
|
configurable?: boolean | null | undefined;
|
|
5330
5337
|
minLength?: number | undefined;
|
|
5331
5338
|
maxLength?: number | undefined;
|
|
5339
|
+
regex?: string | undefined;
|
|
5332
5340
|
targetField?: string | null | undefined;
|
|
5333
5341
|
options?: {
|
|
5334
5342
|
separator?: string | undefined;
|
|
@@ -5602,6 +5610,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5602
5610
|
configurable?: boolean | null | undefined;
|
|
5603
5611
|
minLength?: number | undefined;
|
|
5604
5612
|
maxLength?: number | undefined;
|
|
5613
|
+
regex?: string | undefined;
|
|
5605
5614
|
targetField?: string | null | undefined;
|
|
5606
5615
|
options?: {
|
|
5607
5616
|
separator?: string | undefined;
|
|
@@ -5875,6 +5884,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5875
5884
|
configurable?: boolean | null | undefined;
|
|
5876
5885
|
minLength?: number | undefined;
|
|
5877
5886
|
maxLength?: number | undefined;
|
|
5887
|
+
regex?: string | undefined;
|
|
5878
5888
|
targetField?: string | null | undefined;
|
|
5879
5889
|
options?: {
|
|
5880
5890
|
separator?: string | undefined;
|
|
@@ -6148,6 +6158,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6148
6158
|
configurable?: boolean | null | undefined;
|
|
6149
6159
|
minLength?: number | undefined;
|
|
6150
6160
|
maxLength?: number | undefined;
|
|
6161
|
+
regex?: string | undefined;
|
|
6151
6162
|
targetField?: string | null | undefined;
|
|
6152
6163
|
options?: {
|
|
6153
6164
|
separator?: string | undefined;
|
|
@@ -6421,6 +6432,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6421
6432
|
configurable?: boolean | null | undefined;
|
|
6422
6433
|
minLength?: number | undefined;
|
|
6423
6434
|
maxLength?: number | undefined;
|
|
6435
|
+
regex?: string | undefined;
|
|
6424
6436
|
targetField?: string | null | undefined;
|
|
6425
6437
|
options?: {
|
|
6426
6438
|
separator?: string | undefined;
|
|
@@ -6694,6 +6706,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6694
6706
|
configurable?: boolean | null | undefined;
|
|
6695
6707
|
minLength?: number | undefined;
|
|
6696
6708
|
maxLength?: number | undefined;
|
|
6709
|
+
regex?: string | undefined;
|
|
6697
6710
|
targetField?: string | null | undefined;
|
|
6698
6711
|
options?: {
|
|
6699
6712
|
separator?: string | undefined;
|
|
@@ -6971,6 +6984,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6971
6984
|
configurable?: boolean | null | undefined;
|
|
6972
6985
|
minLength?: number | undefined;
|
|
6973
6986
|
maxLength?: number | undefined;
|
|
6987
|
+
regex?: string | undefined;
|
|
6974
6988
|
targetField?: string | null | undefined;
|
|
6975
6989
|
options?: {
|
|
6976
6990
|
separator?: string | undefined;
|
|
@@ -7248,6 +7262,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7248
7262
|
configurable?: boolean | null | undefined;
|
|
7249
7263
|
minLength?: number | undefined;
|
|
7250
7264
|
maxLength?: number | undefined;
|
|
7265
|
+
regex?: string | undefined;
|
|
7251
7266
|
targetField?: string | null | undefined;
|
|
7252
7267
|
options?: {
|
|
7253
7268
|
separator?: string | undefined;
|
|
@@ -7525,6 +7540,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7525
7540
|
configurable?: boolean | null | undefined;
|
|
7526
7541
|
minLength?: number | undefined;
|
|
7527
7542
|
maxLength?: number | undefined;
|
|
7543
|
+
regex?: string | undefined;
|
|
7528
7544
|
targetField?: string | null | undefined;
|
|
7529
7545
|
options?: {
|
|
7530
7546
|
separator?: string | undefined;
|
|
@@ -7802,6 +7818,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7802
7818
|
configurable?: boolean | null | undefined;
|
|
7803
7819
|
minLength?: number | undefined;
|
|
7804
7820
|
maxLength?: number | undefined;
|
|
7821
|
+
regex?: string | undefined;
|
|
7805
7822
|
targetField?: string | null | undefined;
|
|
7806
7823
|
options?: {
|
|
7807
7824
|
separator?: string | undefined;
|
|
@@ -8082,6 +8099,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8082
8099
|
configurable?: boolean | null | undefined;
|
|
8083
8100
|
minLength?: number | undefined;
|
|
8084
8101
|
maxLength?: number | undefined;
|
|
8102
|
+
regex?: string | undefined;
|
|
8085
8103
|
targetField?: string | null | undefined;
|
|
8086
8104
|
options?: {
|
|
8087
8105
|
separator?: string | undefined;
|
|
@@ -8369,6 +8387,7 @@ declare const createComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8369
8387
|
configurable?: boolean | null | undefined;
|
|
8370
8388
|
minLength?: number | undefined;
|
|
8371
8389
|
maxLength?: number | undefined;
|
|
8390
|
+
regex?: string | undefined;
|
|
8372
8391
|
targetField?: string | null | undefined;
|
|
8373
8392
|
options?: {
|
|
8374
8393
|
separator?: string | undefined;
|
|
@@ -12314,6 +12333,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12314
12333
|
customReplacements?: string[][] | undefined;
|
|
12315
12334
|
preserveLeadingUnderscore?: boolean | undefined;
|
|
12316
12335
|
}>>;
|
|
12336
|
+
regex: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
12317
12337
|
}>, "strip", z.ZodTypeAny, {
|
|
12318
12338
|
type: "uid";
|
|
12319
12339
|
required?: boolean | undefined;
|
|
@@ -12322,6 +12342,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12322
12342
|
configurable?: boolean | null | undefined;
|
|
12323
12343
|
minLength?: number | undefined;
|
|
12324
12344
|
maxLength?: number | undefined;
|
|
12345
|
+
regex?: string | undefined;
|
|
12325
12346
|
targetField?: string | null | undefined;
|
|
12326
12347
|
options?: {
|
|
12327
12348
|
separator?: string | undefined;
|
|
@@ -12339,6 +12360,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12339
12360
|
configurable?: boolean | null | undefined;
|
|
12340
12361
|
minLength?: number | undefined;
|
|
12341
12362
|
maxLength?: number | undefined;
|
|
12363
|
+
regex?: string | undefined;
|
|
12342
12364
|
targetField?: string | null | undefined;
|
|
12343
12365
|
options?: {
|
|
12344
12366
|
separator?: string | undefined;
|
|
@@ -12633,6 +12655,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12633
12655
|
configurable?: boolean | null | undefined;
|
|
12634
12656
|
minLength?: number | undefined;
|
|
12635
12657
|
maxLength?: number | undefined;
|
|
12658
|
+
regex?: string | undefined;
|
|
12636
12659
|
targetField?: string | null | undefined;
|
|
12637
12660
|
options?: {
|
|
12638
12661
|
separator?: string | undefined;
|
|
@@ -12906,6 +12929,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12906
12929
|
configurable?: boolean | null | undefined;
|
|
12907
12930
|
minLength?: number | undefined;
|
|
12908
12931
|
maxLength?: number | undefined;
|
|
12932
|
+
regex?: string | undefined;
|
|
12909
12933
|
targetField?: string | null | undefined;
|
|
12910
12934
|
options?: {
|
|
12911
12935
|
separator?: string | undefined;
|
|
@@ -13179,6 +13203,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13179
13203
|
configurable?: boolean | null | undefined;
|
|
13180
13204
|
minLength?: number | undefined;
|
|
13181
13205
|
maxLength?: number | undefined;
|
|
13206
|
+
regex?: string | undefined;
|
|
13182
13207
|
targetField?: string | null | undefined;
|
|
13183
13208
|
options?: {
|
|
13184
13209
|
separator?: string | undefined;
|
|
@@ -13452,6 +13477,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13452
13477
|
configurable?: boolean | null | undefined;
|
|
13453
13478
|
minLength?: number | undefined;
|
|
13454
13479
|
maxLength?: number | undefined;
|
|
13480
|
+
regex?: string | undefined;
|
|
13455
13481
|
targetField?: string | null | undefined;
|
|
13456
13482
|
options?: {
|
|
13457
13483
|
separator?: string | undefined;
|
|
@@ -13725,6 +13751,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13725
13751
|
configurable?: boolean | null | undefined;
|
|
13726
13752
|
minLength?: number | undefined;
|
|
13727
13753
|
maxLength?: number | undefined;
|
|
13754
|
+
regex?: string | undefined;
|
|
13728
13755
|
targetField?: string | null | undefined;
|
|
13729
13756
|
options?: {
|
|
13730
13757
|
separator?: string | undefined;
|
|
@@ -13998,6 +14025,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13998
14025
|
configurable?: boolean | null | undefined;
|
|
13999
14026
|
minLength?: number | undefined;
|
|
14000
14027
|
maxLength?: number | undefined;
|
|
14028
|
+
regex?: string | undefined;
|
|
14001
14029
|
targetField?: string | null | undefined;
|
|
14002
14030
|
options?: {
|
|
14003
14031
|
separator?: string | undefined;
|
|
@@ -14271,6 +14299,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14271
14299
|
configurable?: boolean | null | undefined;
|
|
14272
14300
|
minLength?: number | undefined;
|
|
14273
14301
|
maxLength?: number | undefined;
|
|
14302
|
+
regex?: string | undefined;
|
|
14274
14303
|
targetField?: string | null | undefined;
|
|
14275
14304
|
options?: {
|
|
14276
14305
|
separator?: string | undefined;
|
|
@@ -14544,6 +14573,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14544
14573
|
configurable?: boolean | null | undefined;
|
|
14545
14574
|
minLength?: number | undefined;
|
|
14546
14575
|
maxLength?: number | undefined;
|
|
14576
|
+
regex?: string | undefined;
|
|
14547
14577
|
targetField?: string | null | undefined;
|
|
14548
14578
|
options?: {
|
|
14549
14579
|
separator?: string | undefined;
|
|
@@ -14817,6 +14847,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14817
14847
|
configurable?: boolean | null | undefined;
|
|
14818
14848
|
minLength?: number | undefined;
|
|
14819
14849
|
maxLength?: number | undefined;
|
|
14850
|
+
regex?: string | undefined;
|
|
14820
14851
|
targetField?: string | null | undefined;
|
|
14821
14852
|
options?: {
|
|
14822
14853
|
separator?: string | undefined;
|
|
@@ -15090,6 +15121,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15090
15121
|
configurable?: boolean | null | undefined;
|
|
15091
15122
|
minLength?: number | undefined;
|
|
15092
15123
|
maxLength?: number | undefined;
|
|
15124
|
+
regex?: string | undefined;
|
|
15093
15125
|
targetField?: string | null | undefined;
|
|
15094
15126
|
options?: {
|
|
15095
15127
|
separator?: string | undefined;
|
|
@@ -15367,6 +15399,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15367
15399
|
configurable?: boolean | null | undefined;
|
|
15368
15400
|
minLength?: number | undefined;
|
|
15369
15401
|
maxLength?: number | undefined;
|
|
15402
|
+
regex?: string | undefined;
|
|
15370
15403
|
targetField?: string | null | undefined;
|
|
15371
15404
|
options?: {
|
|
15372
15405
|
separator?: string | undefined;
|
|
@@ -15644,6 +15677,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15644
15677
|
configurable?: boolean | null | undefined;
|
|
15645
15678
|
minLength?: number | undefined;
|
|
15646
15679
|
maxLength?: number | undefined;
|
|
15680
|
+
regex?: string | undefined;
|
|
15647
15681
|
targetField?: string | null | undefined;
|
|
15648
15682
|
options?: {
|
|
15649
15683
|
separator?: string | undefined;
|
|
@@ -19570,6 +19604,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19570
19604
|
customReplacements?: string[][] | undefined;
|
|
19571
19605
|
preserveLeadingUnderscore?: boolean | undefined;
|
|
19572
19606
|
}>>;
|
|
19607
|
+
regex: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
19573
19608
|
}>, "strip", z.ZodTypeAny, {
|
|
19574
19609
|
type: "uid";
|
|
19575
19610
|
required?: boolean | undefined;
|
|
@@ -19578,6 +19613,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19578
19613
|
configurable?: boolean | null | undefined;
|
|
19579
19614
|
minLength?: number | undefined;
|
|
19580
19615
|
maxLength?: number | undefined;
|
|
19616
|
+
regex?: string | undefined;
|
|
19581
19617
|
targetField?: string | null | undefined;
|
|
19582
19618
|
options?: {
|
|
19583
19619
|
separator?: string | undefined;
|
|
@@ -19595,6 +19631,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19595
19631
|
configurable?: boolean | null | undefined;
|
|
19596
19632
|
minLength?: number | undefined;
|
|
19597
19633
|
maxLength?: number | undefined;
|
|
19634
|
+
regex?: string | undefined;
|
|
19598
19635
|
targetField?: string | null | undefined;
|
|
19599
19636
|
options?: {
|
|
19600
19637
|
separator?: string | undefined;
|
|
@@ -19889,6 +19926,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
19889
19926
|
configurable?: boolean | null | undefined;
|
|
19890
19927
|
minLength?: number | undefined;
|
|
19891
19928
|
maxLength?: number | undefined;
|
|
19929
|
+
regex?: string | undefined;
|
|
19892
19930
|
targetField?: string | null | undefined;
|
|
19893
19931
|
options?: {
|
|
19894
19932
|
separator?: string | undefined;
|
|
@@ -20162,6 +20200,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
20162
20200
|
configurable?: boolean | null | undefined;
|
|
20163
20201
|
minLength?: number | undefined;
|
|
20164
20202
|
maxLength?: number | undefined;
|
|
20203
|
+
regex?: string | undefined;
|
|
20165
20204
|
targetField?: string | null | undefined;
|
|
20166
20205
|
options?: {
|
|
20167
20206
|
separator?: string | undefined;
|
|
@@ -20435,6 +20474,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
20435
20474
|
configurable?: boolean | null | undefined;
|
|
20436
20475
|
minLength?: number | undefined;
|
|
20437
20476
|
maxLength?: number | undefined;
|
|
20477
|
+
regex?: string | undefined;
|
|
20438
20478
|
targetField?: string | null | undefined;
|
|
20439
20479
|
options?: {
|
|
20440
20480
|
separator?: string | undefined;
|
|
@@ -20708,6 +20748,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
20708
20748
|
configurable?: boolean | null | undefined;
|
|
20709
20749
|
minLength?: number | undefined;
|
|
20710
20750
|
maxLength?: number | undefined;
|
|
20751
|
+
regex?: string | undefined;
|
|
20711
20752
|
targetField?: string | null | undefined;
|
|
20712
20753
|
options?: {
|
|
20713
20754
|
separator?: string | undefined;
|
|
@@ -20981,6 +21022,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
20981
21022
|
configurable?: boolean | null | undefined;
|
|
20982
21023
|
minLength?: number | undefined;
|
|
20983
21024
|
maxLength?: number | undefined;
|
|
21025
|
+
regex?: string | undefined;
|
|
20984
21026
|
targetField?: string | null | undefined;
|
|
20985
21027
|
options?: {
|
|
20986
21028
|
separator?: string | undefined;
|
|
@@ -21254,6 +21296,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
21254
21296
|
configurable?: boolean | null | undefined;
|
|
21255
21297
|
minLength?: number | undefined;
|
|
21256
21298
|
maxLength?: number | undefined;
|
|
21299
|
+
regex?: string | undefined;
|
|
21257
21300
|
targetField?: string | null | undefined;
|
|
21258
21301
|
options?: {
|
|
21259
21302
|
separator?: string | undefined;
|
|
@@ -21527,6 +21570,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
21527
21570
|
configurable?: boolean | null | undefined;
|
|
21528
21571
|
minLength?: number | undefined;
|
|
21529
21572
|
maxLength?: number | undefined;
|
|
21573
|
+
regex?: string | undefined;
|
|
21530
21574
|
targetField?: string | null | undefined;
|
|
21531
21575
|
options?: {
|
|
21532
21576
|
separator?: string | undefined;
|
|
@@ -21800,6 +21844,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
21800
21844
|
configurable?: boolean | null | undefined;
|
|
21801
21845
|
minLength?: number | undefined;
|
|
21802
21846
|
maxLength?: number | undefined;
|
|
21847
|
+
regex?: string | undefined;
|
|
21803
21848
|
targetField?: string | null | undefined;
|
|
21804
21849
|
options?: {
|
|
21805
21850
|
separator?: string | undefined;
|
|
@@ -22073,6 +22118,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
22073
22118
|
configurable?: boolean | null | undefined;
|
|
22074
22119
|
minLength?: number | undefined;
|
|
22075
22120
|
maxLength?: number | undefined;
|
|
22121
|
+
regex?: string | undefined;
|
|
22076
22122
|
targetField?: string | null | undefined;
|
|
22077
22123
|
options?: {
|
|
22078
22124
|
separator?: string | undefined;
|
|
@@ -22346,6 +22392,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
22346
22392
|
configurable?: boolean | null | undefined;
|
|
22347
22393
|
minLength?: number | undefined;
|
|
22348
22394
|
maxLength?: number | undefined;
|
|
22395
|
+
regex?: string | undefined;
|
|
22349
22396
|
targetField?: string | null | undefined;
|
|
22350
22397
|
options?: {
|
|
22351
22398
|
separator?: string | undefined;
|
|
@@ -22623,6 +22670,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
22623
22670
|
configurable?: boolean | null | undefined;
|
|
22624
22671
|
minLength?: number | undefined;
|
|
22625
22672
|
maxLength?: number | undefined;
|
|
22673
|
+
regex?: string | undefined;
|
|
22626
22674
|
targetField?: string | null | undefined;
|
|
22627
22675
|
options?: {
|
|
22628
22676
|
separator?: string | undefined;
|
|
@@ -22900,6 +22948,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
22900
22948
|
configurable?: boolean | null | undefined;
|
|
22901
22949
|
minLength?: number | undefined;
|
|
22902
22950
|
maxLength?: number | undefined;
|
|
22951
|
+
regex?: string | undefined;
|
|
22903
22952
|
targetField?: string | null | undefined;
|
|
22904
22953
|
options?: {
|
|
22905
22954
|
separator?: string | undefined;
|
|
@@ -23189,6 +23238,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
23189
23238
|
configurable?: boolean | null | undefined;
|
|
23190
23239
|
minLength?: number | undefined;
|
|
23191
23240
|
maxLength?: number | undefined;
|
|
23241
|
+
regex?: string | undefined;
|
|
23192
23242
|
targetField?: string | null | undefined;
|
|
23193
23243
|
options?: {
|
|
23194
23244
|
separator?: string | undefined;
|
|
@@ -23466,6 +23516,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
23466
23516
|
configurable?: boolean | null | undefined;
|
|
23467
23517
|
minLength?: number | undefined;
|
|
23468
23518
|
maxLength?: number | undefined;
|
|
23519
|
+
regex?: string | undefined;
|
|
23469
23520
|
targetField?: string | null | undefined;
|
|
23470
23521
|
options?: {
|
|
23471
23522
|
separator?: string | undefined;
|
|
@@ -23746,6 +23797,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
23746
23797
|
configurable?: boolean | null | undefined;
|
|
23747
23798
|
minLength?: number | undefined;
|
|
23748
23799
|
maxLength?: number | undefined;
|
|
23800
|
+
regex?: string | undefined;
|
|
23749
23801
|
targetField?: string | null | undefined;
|
|
23750
23802
|
options?: {
|
|
23751
23803
|
separator?: string | undefined;
|
|
@@ -24023,6 +24075,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
24023
24075
|
configurable?: boolean | null | undefined;
|
|
24024
24076
|
minLength?: number | undefined;
|
|
24025
24077
|
maxLength?: number | undefined;
|
|
24078
|
+
regex?: string | undefined;
|
|
24026
24079
|
targetField?: string | null | undefined;
|
|
24027
24080
|
options?: {
|
|
24028
24081
|
separator?: string | undefined;
|
|
@@ -24306,6 +24359,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
24306
24359
|
configurable?: boolean | null | undefined;
|
|
24307
24360
|
minLength?: number | undefined;
|
|
24308
24361
|
maxLength?: number | undefined;
|
|
24362
|
+
regex?: string | undefined;
|
|
24309
24363
|
targetField?: string | null | undefined;
|
|
24310
24364
|
options?: {
|
|
24311
24365
|
separator?: string | undefined;
|
|
@@ -24583,6 +24637,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
24583
24637
|
configurable?: boolean | null | undefined;
|
|
24584
24638
|
minLength?: number | undefined;
|
|
24585
24639
|
maxLength?: number | undefined;
|
|
24640
|
+
regex?: string | undefined;
|
|
24586
24641
|
targetField?: string | null | undefined;
|
|
24587
24642
|
options?: {
|
|
24588
24643
|
separator?: string | undefined;
|
|
@@ -24872,6 +24927,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
24872
24927
|
configurable?: boolean | null | undefined;
|
|
24873
24928
|
minLength?: number | undefined;
|
|
24874
24929
|
maxLength?: number | undefined;
|
|
24930
|
+
regex?: string | undefined;
|
|
24875
24931
|
targetField?: string | null | undefined;
|
|
24876
24932
|
options?: {
|
|
24877
24933
|
separator?: string | undefined;
|
|
@@ -25149,6 +25205,7 @@ declare const updateComponentSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
25149
25205
|
configurable?: boolean | null | undefined;
|
|
25150
25206
|
minLength?: number | undefined;
|
|
25151
25207
|
maxLength?: number | undefined;
|
|
25208
|
+
regex?: string | undefined;
|
|
25152
25209
|
targetField?: string | null | undefined;
|
|
25153
25210
|
options?: {
|
|
25154
25211
|
separator?: string | undefined;
|
|
@@ -29109,6 +29166,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
29109
29166
|
customReplacements?: string[][] | undefined;
|
|
29110
29167
|
preserveLeadingUnderscore?: boolean | undefined;
|
|
29111
29168
|
}>>;
|
|
29169
|
+
regex: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
29112
29170
|
}>, "strip", z.ZodTypeAny, {
|
|
29113
29171
|
type: "uid";
|
|
29114
29172
|
required?: boolean | undefined;
|
|
@@ -29117,6 +29175,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
29117
29175
|
configurable?: boolean | null | undefined;
|
|
29118
29176
|
minLength?: number | undefined;
|
|
29119
29177
|
maxLength?: number | undefined;
|
|
29178
|
+
regex?: string | undefined;
|
|
29120
29179
|
targetField?: string | null | undefined;
|
|
29121
29180
|
options?: {
|
|
29122
29181
|
separator?: string | undefined;
|
|
@@ -29134,6 +29193,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
29134
29193
|
configurable?: boolean | null | undefined;
|
|
29135
29194
|
minLength?: number | undefined;
|
|
29136
29195
|
maxLength?: number | undefined;
|
|
29196
|
+
regex?: string | undefined;
|
|
29137
29197
|
targetField?: string | null | undefined;
|
|
29138
29198
|
options?: {
|
|
29139
29199
|
separator?: string | undefined;
|
|
@@ -29428,6 +29488,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
29428
29488
|
configurable?: boolean | null | undefined;
|
|
29429
29489
|
minLength?: number | undefined;
|
|
29430
29490
|
maxLength?: number | undefined;
|
|
29491
|
+
regex?: string | undefined;
|
|
29431
29492
|
targetField?: string | null | undefined;
|
|
29432
29493
|
options?: {
|
|
29433
29494
|
separator?: string | undefined;
|
|
@@ -29701,6 +29762,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
29701
29762
|
configurable?: boolean | null | undefined;
|
|
29702
29763
|
minLength?: number | undefined;
|
|
29703
29764
|
maxLength?: number | undefined;
|
|
29765
|
+
regex?: string | undefined;
|
|
29704
29766
|
targetField?: string | null | undefined;
|
|
29705
29767
|
options?: {
|
|
29706
29768
|
separator?: string | undefined;
|
|
@@ -29974,6 +30036,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
29974
30036
|
configurable?: boolean | null | undefined;
|
|
29975
30037
|
minLength?: number | undefined;
|
|
29976
30038
|
maxLength?: number | undefined;
|
|
30039
|
+
regex?: string | undefined;
|
|
29977
30040
|
targetField?: string | null | undefined;
|
|
29978
30041
|
options?: {
|
|
29979
30042
|
separator?: string | undefined;
|
|
@@ -30247,6 +30310,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
30247
30310
|
configurable?: boolean | null | undefined;
|
|
30248
30311
|
minLength?: number | undefined;
|
|
30249
30312
|
maxLength?: number | undefined;
|
|
30313
|
+
regex?: string | undefined;
|
|
30250
30314
|
targetField?: string | null | undefined;
|
|
30251
30315
|
options?: {
|
|
30252
30316
|
separator?: string | undefined;
|
|
@@ -30520,6 +30584,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
30520
30584
|
configurable?: boolean | null | undefined;
|
|
30521
30585
|
minLength?: number | undefined;
|
|
30522
30586
|
maxLength?: number | undefined;
|
|
30587
|
+
regex?: string | undefined;
|
|
30523
30588
|
targetField?: string | null | undefined;
|
|
30524
30589
|
options?: {
|
|
30525
30590
|
separator?: string | undefined;
|
|
@@ -30793,6 +30858,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
30793
30858
|
configurable?: boolean | null | undefined;
|
|
30794
30859
|
minLength?: number | undefined;
|
|
30795
30860
|
maxLength?: number | undefined;
|
|
30861
|
+
regex?: string | undefined;
|
|
30796
30862
|
targetField?: string | null | undefined;
|
|
30797
30863
|
options?: {
|
|
30798
30864
|
separator?: string | undefined;
|
|
@@ -31066,6 +31132,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
31066
31132
|
configurable?: boolean | null | undefined;
|
|
31067
31133
|
minLength?: number | undefined;
|
|
31068
31134
|
maxLength?: number | undefined;
|
|
31135
|
+
regex?: string | undefined;
|
|
31069
31136
|
targetField?: string | null | undefined;
|
|
31070
31137
|
options?: {
|
|
31071
31138
|
separator?: string | undefined;
|
|
@@ -31339,6 +31406,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
31339
31406
|
configurable?: boolean | null | undefined;
|
|
31340
31407
|
minLength?: number | undefined;
|
|
31341
31408
|
maxLength?: number | undefined;
|
|
31409
|
+
regex?: string | undefined;
|
|
31342
31410
|
targetField?: string | null | undefined;
|
|
31343
31411
|
options?: {
|
|
31344
31412
|
separator?: string | undefined;
|
|
@@ -31612,6 +31680,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
31612
31680
|
configurable?: boolean | null | undefined;
|
|
31613
31681
|
minLength?: number | undefined;
|
|
31614
31682
|
maxLength?: number | undefined;
|
|
31683
|
+
regex?: string | undefined;
|
|
31615
31684
|
targetField?: string | null | undefined;
|
|
31616
31685
|
options?: {
|
|
31617
31686
|
separator?: string | undefined;
|
|
@@ -31885,6 +31954,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
31885
31954
|
configurable?: boolean | null | undefined;
|
|
31886
31955
|
minLength?: number | undefined;
|
|
31887
31956
|
maxLength?: number | undefined;
|
|
31957
|
+
regex?: string | undefined;
|
|
31888
31958
|
targetField?: string | null | undefined;
|
|
31889
31959
|
options?: {
|
|
31890
31960
|
separator?: string | undefined;
|
|
@@ -32162,6 +32232,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
32162
32232
|
configurable?: boolean | null | undefined;
|
|
32163
32233
|
minLength?: number | undefined;
|
|
32164
32234
|
maxLength?: number | undefined;
|
|
32235
|
+
regex?: string | undefined;
|
|
32165
32236
|
targetField?: string | null | undefined;
|
|
32166
32237
|
options?: {
|
|
32167
32238
|
separator?: string | undefined;
|
|
@@ -32439,6 +32510,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
32439
32510
|
configurable?: boolean | null | undefined;
|
|
32440
32511
|
minLength?: number | undefined;
|
|
32441
32512
|
maxLength?: number | undefined;
|
|
32513
|
+
regex?: string | undefined;
|
|
32442
32514
|
targetField?: string | null | undefined;
|
|
32443
32515
|
options?: {
|
|
32444
32516
|
separator?: string | undefined;
|
|
@@ -32716,6 +32788,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
32716
32788
|
configurable?: boolean | null | undefined;
|
|
32717
32789
|
minLength?: number | undefined;
|
|
32718
32790
|
maxLength?: number | undefined;
|
|
32791
|
+
regex?: string | undefined;
|
|
32719
32792
|
targetField?: string | null | undefined;
|
|
32720
32793
|
options?: {
|
|
32721
32794
|
separator?: string | undefined;
|
|
@@ -32993,6 +33066,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
32993
33066
|
configurable?: boolean | null | undefined;
|
|
32994
33067
|
minLength?: number | undefined;
|
|
32995
33068
|
maxLength?: number | undefined;
|
|
33069
|
+
regex?: string | undefined;
|
|
32996
33070
|
targetField?: string | null | undefined;
|
|
32997
33071
|
options?: {
|
|
32998
33072
|
separator?: string | undefined;
|
|
@@ -33270,6 +33344,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
33270
33344
|
configurable?: boolean | null | undefined;
|
|
33271
33345
|
minLength?: number | undefined;
|
|
33272
33346
|
maxLength?: number | undefined;
|
|
33347
|
+
regex?: string | undefined;
|
|
33273
33348
|
targetField?: string | null | undefined;
|
|
33274
33349
|
options?: {
|
|
33275
33350
|
separator?: string | undefined;
|
|
@@ -33547,6 +33622,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
33547
33622
|
configurable?: boolean | null | undefined;
|
|
33548
33623
|
minLength?: number | undefined;
|
|
33549
33624
|
maxLength?: number | undefined;
|
|
33625
|
+
regex?: string | undefined;
|
|
33550
33626
|
targetField?: string | null | undefined;
|
|
33551
33627
|
options?: {
|
|
33552
33628
|
separator?: string | undefined;
|
|
@@ -33829,6 +33905,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
33829
33905
|
configurable?: boolean | null | undefined;
|
|
33830
33906
|
minLength?: number | undefined;
|
|
33831
33907
|
maxLength?: number | undefined;
|
|
33908
|
+
regex?: string | undefined;
|
|
33832
33909
|
targetField?: string | null | undefined;
|
|
33833
33910
|
options?: {
|
|
33834
33911
|
separator?: string | undefined;
|
|
@@ -34118,6 +34195,7 @@ declare const createSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
34118
34195
|
configurable?: boolean | null | undefined;
|
|
34119
34196
|
minLength?: number | undefined;
|
|
34120
34197
|
maxLength?: number | undefined;
|
|
34198
|
+
regex?: string | undefined;
|
|
34121
34199
|
targetField?: string | null | undefined;
|
|
34122
34200
|
options?: {
|
|
34123
34201
|
separator?: string | undefined;
|
|
@@ -38073,6 +38151,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
38073
38151
|
customReplacements?: string[][] | undefined;
|
|
38074
38152
|
preserveLeadingUnderscore?: boolean | undefined;
|
|
38075
38153
|
}>>;
|
|
38154
|
+
regex: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
38076
38155
|
}>, "strip", z.ZodTypeAny, {
|
|
38077
38156
|
type: "uid";
|
|
38078
38157
|
required?: boolean | undefined;
|
|
@@ -38081,6 +38160,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
38081
38160
|
configurable?: boolean | null | undefined;
|
|
38082
38161
|
minLength?: number | undefined;
|
|
38083
38162
|
maxLength?: number | undefined;
|
|
38163
|
+
regex?: string | undefined;
|
|
38084
38164
|
targetField?: string | null | undefined;
|
|
38085
38165
|
options?: {
|
|
38086
38166
|
separator?: string | undefined;
|
|
@@ -38098,6 +38178,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
38098
38178
|
configurable?: boolean | null | undefined;
|
|
38099
38179
|
minLength?: number | undefined;
|
|
38100
38180
|
maxLength?: number | undefined;
|
|
38181
|
+
regex?: string | undefined;
|
|
38101
38182
|
targetField?: string | null | undefined;
|
|
38102
38183
|
options?: {
|
|
38103
38184
|
separator?: string | undefined;
|
|
@@ -38392,6 +38473,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
38392
38473
|
configurable?: boolean | null | undefined;
|
|
38393
38474
|
minLength?: number | undefined;
|
|
38394
38475
|
maxLength?: number | undefined;
|
|
38476
|
+
regex?: string | undefined;
|
|
38395
38477
|
targetField?: string | null | undefined;
|
|
38396
38478
|
options?: {
|
|
38397
38479
|
separator?: string | undefined;
|
|
@@ -38665,6 +38747,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
38665
38747
|
configurable?: boolean | null | undefined;
|
|
38666
38748
|
minLength?: number | undefined;
|
|
38667
38749
|
maxLength?: number | undefined;
|
|
38750
|
+
regex?: string | undefined;
|
|
38668
38751
|
targetField?: string | null | undefined;
|
|
38669
38752
|
options?: {
|
|
38670
38753
|
separator?: string | undefined;
|
|
@@ -38938,6 +39021,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
38938
39021
|
configurable?: boolean | null | undefined;
|
|
38939
39022
|
minLength?: number | undefined;
|
|
38940
39023
|
maxLength?: number | undefined;
|
|
39024
|
+
regex?: string | undefined;
|
|
38941
39025
|
targetField?: string | null | undefined;
|
|
38942
39026
|
options?: {
|
|
38943
39027
|
separator?: string | undefined;
|
|
@@ -39211,6 +39295,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
39211
39295
|
configurable?: boolean | null | undefined;
|
|
39212
39296
|
minLength?: number | undefined;
|
|
39213
39297
|
maxLength?: number | undefined;
|
|
39298
|
+
regex?: string | undefined;
|
|
39214
39299
|
targetField?: string | null | undefined;
|
|
39215
39300
|
options?: {
|
|
39216
39301
|
separator?: string | undefined;
|
|
@@ -39484,6 +39569,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
39484
39569
|
configurable?: boolean | null | undefined;
|
|
39485
39570
|
minLength?: number | undefined;
|
|
39486
39571
|
maxLength?: number | undefined;
|
|
39572
|
+
regex?: string | undefined;
|
|
39487
39573
|
targetField?: string | null | undefined;
|
|
39488
39574
|
options?: {
|
|
39489
39575
|
separator?: string | undefined;
|
|
@@ -39757,6 +39843,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
39757
39843
|
configurable?: boolean | null | undefined;
|
|
39758
39844
|
minLength?: number | undefined;
|
|
39759
39845
|
maxLength?: number | undefined;
|
|
39846
|
+
regex?: string | undefined;
|
|
39760
39847
|
targetField?: string | null | undefined;
|
|
39761
39848
|
options?: {
|
|
39762
39849
|
separator?: string | undefined;
|
|
@@ -40030,6 +40117,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
40030
40117
|
configurable?: boolean | null | undefined;
|
|
40031
40118
|
minLength?: number | undefined;
|
|
40032
40119
|
maxLength?: number | undefined;
|
|
40120
|
+
regex?: string | undefined;
|
|
40033
40121
|
targetField?: string | null | undefined;
|
|
40034
40122
|
options?: {
|
|
40035
40123
|
separator?: string | undefined;
|
|
@@ -40303,6 +40391,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
40303
40391
|
configurable?: boolean | null | undefined;
|
|
40304
40392
|
minLength?: number | undefined;
|
|
40305
40393
|
maxLength?: number | undefined;
|
|
40394
|
+
regex?: string | undefined;
|
|
40306
40395
|
targetField?: string | null | undefined;
|
|
40307
40396
|
options?: {
|
|
40308
40397
|
separator?: string | undefined;
|
|
@@ -40576,6 +40665,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
40576
40665
|
configurable?: boolean | null | undefined;
|
|
40577
40666
|
minLength?: number | undefined;
|
|
40578
40667
|
maxLength?: number | undefined;
|
|
40668
|
+
regex?: string | undefined;
|
|
40579
40669
|
targetField?: string | null | undefined;
|
|
40580
40670
|
options?: {
|
|
40581
40671
|
separator?: string | undefined;
|
|
@@ -40849,6 +40939,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
40849
40939
|
configurable?: boolean | null | undefined;
|
|
40850
40940
|
minLength?: number | undefined;
|
|
40851
40941
|
maxLength?: number | undefined;
|
|
40942
|
+
regex?: string | undefined;
|
|
40852
40943
|
targetField?: string | null | undefined;
|
|
40853
40944
|
options?: {
|
|
40854
40945
|
separator?: string | undefined;
|
|
@@ -41126,6 +41217,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
41126
41217
|
configurable?: boolean | null | undefined;
|
|
41127
41218
|
minLength?: number | undefined;
|
|
41128
41219
|
maxLength?: number | undefined;
|
|
41220
|
+
regex?: string | undefined;
|
|
41129
41221
|
targetField?: string | null | undefined;
|
|
41130
41222
|
options?: {
|
|
41131
41223
|
separator?: string | undefined;
|
|
@@ -41403,6 +41495,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
41403
41495
|
configurable?: boolean | null | undefined;
|
|
41404
41496
|
minLength?: number | undefined;
|
|
41405
41497
|
maxLength?: number | undefined;
|
|
41498
|
+
regex?: string | undefined;
|
|
41406
41499
|
targetField?: string | null | undefined;
|
|
41407
41500
|
options?: {
|
|
41408
41501
|
separator?: string | undefined;
|
|
@@ -41680,6 +41773,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
41680
41773
|
configurable?: boolean | null | undefined;
|
|
41681
41774
|
minLength?: number | undefined;
|
|
41682
41775
|
maxLength?: number | undefined;
|
|
41776
|
+
regex?: string | undefined;
|
|
41683
41777
|
targetField?: string | null | undefined;
|
|
41684
41778
|
options?: {
|
|
41685
41779
|
separator?: string | undefined;
|
|
@@ -41957,6 +42051,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
41957
42051
|
configurable?: boolean | null | undefined;
|
|
41958
42052
|
minLength?: number | undefined;
|
|
41959
42053
|
maxLength?: number | undefined;
|
|
42054
|
+
regex?: string | undefined;
|
|
41960
42055
|
targetField?: string | null | undefined;
|
|
41961
42056
|
options?: {
|
|
41962
42057
|
separator?: string | undefined;
|
|
@@ -42234,6 +42329,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
42234
42329
|
configurable?: boolean | null | undefined;
|
|
42235
42330
|
minLength?: number | undefined;
|
|
42236
42331
|
maxLength?: number | undefined;
|
|
42332
|
+
regex?: string | undefined;
|
|
42237
42333
|
targetField?: string | null | undefined;
|
|
42238
42334
|
options?: {
|
|
42239
42335
|
separator?: string | undefined;
|
|
@@ -42511,6 +42607,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
42511
42607
|
configurable?: boolean | null | undefined;
|
|
42512
42608
|
minLength?: number | undefined;
|
|
42513
42609
|
maxLength?: number | undefined;
|
|
42610
|
+
regex?: string | undefined;
|
|
42514
42611
|
targetField?: string | null | undefined;
|
|
42515
42612
|
options?: {
|
|
42516
42613
|
separator?: string | undefined;
|
|
@@ -42793,6 +42890,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
42793
42890
|
configurable?: boolean | null | undefined;
|
|
42794
42891
|
minLength?: number | undefined;
|
|
42795
42892
|
maxLength?: number | undefined;
|
|
42893
|
+
regex?: string | undefined;
|
|
42796
42894
|
targetField?: string | null | undefined;
|
|
42797
42895
|
options?: {
|
|
42798
42896
|
separator?: string | undefined;
|
|
@@ -43082,6 +43180,7 @@ declare const createCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
43082
43180
|
configurable?: boolean | null | undefined;
|
|
43083
43181
|
minLength?: number | undefined;
|
|
43084
43182
|
maxLength?: number | undefined;
|
|
43183
|
+
regex?: string | undefined;
|
|
43085
43184
|
targetField?: string | null | undefined;
|
|
43086
43185
|
options?: {
|
|
43087
43186
|
separator?: string | undefined;
|
|
@@ -47033,6 +47132,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
47033
47132
|
customReplacements?: string[][] | undefined;
|
|
47034
47133
|
preserveLeadingUnderscore?: boolean | undefined;
|
|
47035
47134
|
}>>;
|
|
47135
|
+
regex: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
47036
47136
|
}>, "strip", z.ZodTypeAny, {
|
|
47037
47137
|
type: "uid";
|
|
47038
47138
|
required?: boolean | undefined;
|
|
@@ -47041,6 +47141,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
47041
47141
|
configurable?: boolean | null | undefined;
|
|
47042
47142
|
minLength?: number | undefined;
|
|
47043
47143
|
maxLength?: number | undefined;
|
|
47144
|
+
regex?: string | undefined;
|
|
47044
47145
|
targetField?: string | null | undefined;
|
|
47045
47146
|
options?: {
|
|
47046
47147
|
separator?: string | undefined;
|
|
@@ -47058,6 +47159,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
47058
47159
|
configurable?: boolean | null | undefined;
|
|
47059
47160
|
minLength?: number | undefined;
|
|
47060
47161
|
maxLength?: number | undefined;
|
|
47162
|
+
regex?: string | undefined;
|
|
47061
47163
|
targetField?: string | null | undefined;
|
|
47062
47164
|
options?: {
|
|
47063
47165
|
separator?: string | undefined;
|
|
@@ -47352,6 +47454,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
47352
47454
|
configurable?: boolean | null | undefined;
|
|
47353
47455
|
minLength?: number | undefined;
|
|
47354
47456
|
maxLength?: number | undefined;
|
|
47457
|
+
regex?: string | undefined;
|
|
47355
47458
|
targetField?: string | null | undefined;
|
|
47356
47459
|
options?: {
|
|
47357
47460
|
separator?: string | undefined;
|
|
@@ -47625,6 +47728,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
47625
47728
|
configurable?: boolean | null | undefined;
|
|
47626
47729
|
minLength?: number | undefined;
|
|
47627
47730
|
maxLength?: number | undefined;
|
|
47731
|
+
regex?: string | undefined;
|
|
47628
47732
|
targetField?: string | null | undefined;
|
|
47629
47733
|
options?: {
|
|
47630
47734
|
separator?: string | undefined;
|
|
@@ -47898,6 +48002,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
47898
48002
|
configurable?: boolean | null | undefined;
|
|
47899
48003
|
minLength?: number | undefined;
|
|
47900
48004
|
maxLength?: number | undefined;
|
|
48005
|
+
regex?: string | undefined;
|
|
47901
48006
|
targetField?: string | null | undefined;
|
|
47902
48007
|
options?: {
|
|
47903
48008
|
separator?: string | undefined;
|
|
@@ -48171,6 +48276,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
48171
48276
|
configurable?: boolean | null | undefined;
|
|
48172
48277
|
minLength?: number | undefined;
|
|
48173
48278
|
maxLength?: number | undefined;
|
|
48279
|
+
regex?: string | undefined;
|
|
48174
48280
|
targetField?: string | null | undefined;
|
|
48175
48281
|
options?: {
|
|
48176
48282
|
separator?: string | undefined;
|
|
@@ -48444,6 +48550,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
48444
48550
|
configurable?: boolean | null | undefined;
|
|
48445
48551
|
minLength?: number | undefined;
|
|
48446
48552
|
maxLength?: number | undefined;
|
|
48553
|
+
regex?: string | undefined;
|
|
48447
48554
|
targetField?: string | null | undefined;
|
|
48448
48555
|
options?: {
|
|
48449
48556
|
separator?: string | undefined;
|
|
@@ -48717,6 +48824,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
48717
48824
|
configurable?: boolean | null | undefined;
|
|
48718
48825
|
minLength?: number | undefined;
|
|
48719
48826
|
maxLength?: number | undefined;
|
|
48827
|
+
regex?: string | undefined;
|
|
48720
48828
|
targetField?: string | null | undefined;
|
|
48721
48829
|
options?: {
|
|
48722
48830
|
separator?: string | undefined;
|
|
@@ -48990,6 +49098,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
48990
49098
|
configurable?: boolean | null | undefined;
|
|
48991
49099
|
minLength?: number | undefined;
|
|
48992
49100
|
maxLength?: number | undefined;
|
|
49101
|
+
regex?: string | undefined;
|
|
48993
49102
|
targetField?: string | null | undefined;
|
|
48994
49103
|
options?: {
|
|
48995
49104
|
separator?: string | undefined;
|
|
@@ -49263,6 +49372,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
49263
49372
|
configurable?: boolean | null | undefined;
|
|
49264
49373
|
minLength?: number | undefined;
|
|
49265
49374
|
maxLength?: number | undefined;
|
|
49375
|
+
regex?: string | undefined;
|
|
49266
49376
|
targetField?: string | null | undefined;
|
|
49267
49377
|
options?: {
|
|
49268
49378
|
separator?: string | undefined;
|
|
@@ -49536,6 +49646,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
49536
49646
|
configurable?: boolean | null | undefined;
|
|
49537
49647
|
minLength?: number | undefined;
|
|
49538
49648
|
maxLength?: number | undefined;
|
|
49649
|
+
regex?: string | undefined;
|
|
49539
49650
|
targetField?: string | null | undefined;
|
|
49540
49651
|
options?: {
|
|
49541
49652
|
separator?: string | undefined;
|
|
@@ -49809,6 +49920,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
49809
49920
|
configurable?: boolean | null | undefined;
|
|
49810
49921
|
minLength?: number | undefined;
|
|
49811
49922
|
maxLength?: number | undefined;
|
|
49923
|
+
regex?: string | undefined;
|
|
49812
49924
|
targetField?: string | null | undefined;
|
|
49813
49925
|
options?: {
|
|
49814
49926
|
separator?: string | undefined;
|
|
@@ -50086,6 +50198,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
50086
50198
|
configurable?: boolean | null | undefined;
|
|
50087
50199
|
minLength?: number | undefined;
|
|
50088
50200
|
maxLength?: number | undefined;
|
|
50201
|
+
regex?: string | undefined;
|
|
50089
50202
|
targetField?: string | null | undefined;
|
|
50090
50203
|
options?: {
|
|
50091
50204
|
separator?: string | undefined;
|
|
@@ -50363,6 +50476,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
50363
50476
|
configurable?: boolean | null | undefined;
|
|
50364
50477
|
minLength?: number | undefined;
|
|
50365
50478
|
maxLength?: number | undefined;
|
|
50479
|
+
regex?: string | undefined;
|
|
50366
50480
|
targetField?: string | null | undefined;
|
|
50367
50481
|
options?: {
|
|
50368
50482
|
separator?: string | undefined;
|
|
@@ -54289,6 +54403,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
54289
54403
|
customReplacements?: string[][] | undefined;
|
|
54290
54404
|
preserveLeadingUnderscore?: boolean | undefined;
|
|
54291
54405
|
}>>;
|
|
54406
|
+
regex: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
54292
54407
|
}>, "strip", z.ZodTypeAny, {
|
|
54293
54408
|
type: "uid";
|
|
54294
54409
|
required?: boolean | undefined;
|
|
@@ -54297,6 +54412,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
54297
54412
|
configurable?: boolean | null | undefined;
|
|
54298
54413
|
minLength?: number | undefined;
|
|
54299
54414
|
maxLength?: number | undefined;
|
|
54415
|
+
regex?: string | undefined;
|
|
54300
54416
|
targetField?: string | null | undefined;
|
|
54301
54417
|
options?: {
|
|
54302
54418
|
separator?: string | undefined;
|
|
@@ -54314,6 +54430,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
54314
54430
|
configurable?: boolean | null | undefined;
|
|
54315
54431
|
minLength?: number | undefined;
|
|
54316
54432
|
maxLength?: number | undefined;
|
|
54433
|
+
regex?: string | undefined;
|
|
54317
54434
|
targetField?: string | null | undefined;
|
|
54318
54435
|
options?: {
|
|
54319
54436
|
separator?: string | undefined;
|
|
@@ -54608,6 +54725,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
54608
54725
|
configurable?: boolean | null | undefined;
|
|
54609
54726
|
minLength?: number | undefined;
|
|
54610
54727
|
maxLength?: number | undefined;
|
|
54728
|
+
regex?: string | undefined;
|
|
54611
54729
|
targetField?: string | null | undefined;
|
|
54612
54730
|
options?: {
|
|
54613
54731
|
separator?: string | undefined;
|
|
@@ -54881,6 +54999,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
54881
54999
|
configurable?: boolean | null | undefined;
|
|
54882
55000
|
minLength?: number | undefined;
|
|
54883
55001
|
maxLength?: number | undefined;
|
|
55002
|
+
regex?: string | undefined;
|
|
54884
55003
|
targetField?: string | null | undefined;
|
|
54885
55004
|
options?: {
|
|
54886
55005
|
separator?: string | undefined;
|
|
@@ -55154,6 +55273,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
55154
55273
|
configurable?: boolean | null | undefined;
|
|
55155
55274
|
minLength?: number | undefined;
|
|
55156
55275
|
maxLength?: number | undefined;
|
|
55276
|
+
regex?: string | undefined;
|
|
55157
55277
|
targetField?: string | null | undefined;
|
|
55158
55278
|
options?: {
|
|
55159
55279
|
separator?: string | undefined;
|
|
@@ -55427,6 +55547,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
55427
55547
|
configurable?: boolean | null | undefined;
|
|
55428
55548
|
minLength?: number | undefined;
|
|
55429
55549
|
maxLength?: number | undefined;
|
|
55550
|
+
regex?: string | undefined;
|
|
55430
55551
|
targetField?: string | null | undefined;
|
|
55431
55552
|
options?: {
|
|
55432
55553
|
separator?: string | undefined;
|
|
@@ -55700,6 +55821,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
55700
55821
|
configurable?: boolean | null | undefined;
|
|
55701
55822
|
minLength?: number | undefined;
|
|
55702
55823
|
maxLength?: number | undefined;
|
|
55824
|
+
regex?: string | undefined;
|
|
55703
55825
|
targetField?: string | null | undefined;
|
|
55704
55826
|
options?: {
|
|
55705
55827
|
separator?: string | undefined;
|
|
@@ -55973,6 +56095,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
55973
56095
|
configurable?: boolean | null | undefined;
|
|
55974
56096
|
minLength?: number | undefined;
|
|
55975
56097
|
maxLength?: number | undefined;
|
|
56098
|
+
regex?: string | undefined;
|
|
55976
56099
|
targetField?: string | null | undefined;
|
|
55977
56100
|
options?: {
|
|
55978
56101
|
separator?: string | undefined;
|
|
@@ -56246,6 +56369,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
56246
56369
|
configurable?: boolean | null | undefined;
|
|
56247
56370
|
minLength?: number | undefined;
|
|
56248
56371
|
maxLength?: number | undefined;
|
|
56372
|
+
regex?: string | undefined;
|
|
56249
56373
|
targetField?: string | null | undefined;
|
|
56250
56374
|
options?: {
|
|
56251
56375
|
separator?: string | undefined;
|
|
@@ -56519,6 +56643,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
56519
56643
|
configurable?: boolean | null | undefined;
|
|
56520
56644
|
minLength?: number | undefined;
|
|
56521
56645
|
maxLength?: number | undefined;
|
|
56646
|
+
regex?: string | undefined;
|
|
56522
56647
|
targetField?: string | null | undefined;
|
|
56523
56648
|
options?: {
|
|
56524
56649
|
separator?: string | undefined;
|
|
@@ -56792,6 +56917,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
56792
56917
|
configurable?: boolean | null | undefined;
|
|
56793
56918
|
minLength?: number | undefined;
|
|
56794
56919
|
maxLength?: number | undefined;
|
|
56920
|
+
regex?: string | undefined;
|
|
56795
56921
|
targetField?: string | null | undefined;
|
|
56796
56922
|
options?: {
|
|
56797
56923
|
separator?: string | undefined;
|
|
@@ -57065,6 +57191,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
57065
57191
|
configurable?: boolean | null | undefined;
|
|
57066
57192
|
minLength?: number | undefined;
|
|
57067
57193
|
maxLength?: number | undefined;
|
|
57194
|
+
regex?: string | undefined;
|
|
57068
57195
|
targetField?: string | null | undefined;
|
|
57069
57196
|
options?: {
|
|
57070
57197
|
separator?: string | undefined;
|
|
@@ -57342,6 +57469,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
57342
57469
|
configurable?: boolean | null | undefined;
|
|
57343
57470
|
minLength?: number | undefined;
|
|
57344
57471
|
maxLength?: number | undefined;
|
|
57472
|
+
regex?: string | undefined;
|
|
57345
57473
|
targetField?: string | null | undefined;
|
|
57346
57474
|
options?: {
|
|
57347
57475
|
separator?: string | undefined;
|
|
@@ -57619,6 +57747,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
57619
57747
|
configurable?: boolean | null | undefined;
|
|
57620
57748
|
minLength?: number | undefined;
|
|
57621
57749
|
maxLength?: number | undefined;
|
|
57750
|
+
regex?: string | undefined;
|
|
57622
57751
|
targetField?: string | null | undefined;
|
|
57623
57752
|
options?: {
|
|
57624
57753
|
separator?: string | undefined;
|
|
@@ -57908,6 +58037,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
57908
58037
|
configurable?: boolean | null | undefined;
|
|
57909
58038
|
minLength?: number | undefined;
|
|
57910
58039
|
maxLength?: number | undefined;
|
|
58040
|
+
regex?: string | undefined;
|
|
57911
58041
|
targetField?: string | null | undefined;
|
|
57912
58042
|
options?: {
|
|
57913
58043
|
separator?: string | undefined;
|
|
@@ -58185,6 +58315,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
58185
58315
|
configurable?: boolean | null | undefined;
|
|
58186
58316
|
minLength?: number | undefined;
|
|
58187
58317
|
maxLength?: number | undefined;
|
|
58318
|
+
regex?: string | undefined;
|
|
58188
58319
|
targetField?: string | null | undefined;
|
|
58189
58320
|
options?: {
|
|
58190
58321
|
separator?: string | undefined;
|
|
@@ -58465,6 +58596,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
58465
58596
|
configurable?: boolean | null | undefined;
|
|
58466
58597
|
minLength?: number | undefined;
|
|
58467
58598
|
maxLength?: number | undefined;
|
|
58599
|
+
regex?: string | undefined;
|
|
58468
58600
|
targetField?: string | null | undefined;
|
|
58469
58601
|
options?: {
|
|
58470
58602
|
separator?: string | undefined;
|
|
@@ -58742,6 +58874,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
58742
58874
|
configurable?: boolean | null | undefined;
|
|
58743
58875
|
minLength?: number | undefined;
|
|
58744
58876
|
maxLength?: number | undefined;
|
|
58877
|
+
regex?: string | undefined;
|
|
58745
58878
|
targetField?: string | null | undefined;
|
|
58746
58879
|
options?: {
|
|
58747
58880
|
separator?: string | undefined;
|
|
@@ -59022,6 +59155,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
59022
59155
|
configurable?: boolean | null | undefined;
|
|
59023
59156
|
minLength?: number | undefined;
|
|
59024
59157
|
maxLength?: number | undefined;
|
|
59158
|
+
regex?: string | undefined;
|
|
59025
59159
|
targetField?: string | null | undefined;
|
|
59026
59160
|
options?: {
|
|
59027
59161
|
separator?: string | undefined;
|
|
@@ -59299,6 +59433,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
59299
59433
|
configurable?: boolean | null | undefined;
|
|
59300
59434
|
minLength?: number | undefined;
|
|
59301
59435
|
maxLength?: number | undefined;
|
|
59436
|
+
regex?: string | undefined;
|
|
59302
59437
|
targetField?: string | null | undefined;
|
|
59303
59438
|
options?: {
|
|
59304
59439
|
separator?: string | undefined;
|
|
@@ -59579,6 +59714,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
59579
59714
|
configurable?: boolean | null | undefined;
|
|
59580
59715
|
minLength?: number | undefined;
|
|
59581
59716
|
maxLength?: number | undefined;
|
|
59717
|
+
regex?: string | undefined;
|
|
59582
59718
|
targetField?: string | null | undefined;
|
|
59583
59719
|
options?: {
|
|
59584
59720
|
separator?: string | undefined;
|
|
@@ -59856,6 +59992,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
59856
59992
|
configurable?: boolean | null | undefined;
|
|
59857
59993
|
minLength?: number | undefined;
|
|
59858
59994
|
maxLength?: number | undefined;
|
|
59995
|
+
regex?: string | undefined;
|
|
59859
59996
|
targetField?: string | null | undefined;
|
|
59860
59997
|
options?: {
|
|
59861
59998
|
separator?: string | undefined;
|
|
@@ -60141,6 +60278,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
60141
60278
|
configurable?: boolean | null | undefined;
|
|
60142
60279
|
minLength?: number | undefined;
|
|
60143
60280
|
maxLength?: number | undefined;
|
|
60281
|
+
regex?: string | undefined;
|
|
60144
60282
|
targetField?: string | null | undefined;
|
|
60145
60283
|
options?: {
|
|
60146
60284
|
separator?: string | undefined;
|
|
@@ -60418,6 +60556,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
60418
60556
|
configurable?: boolean | null | undefined;
|
|
60419
60557
|
minLength?: number | undefined;
|
|
60420
60558
|
maxLength?: number | undefined;
|
|
60559
|
+
regex?: string | undefined;
|
|
60421
60560
|
targetField?: string | null | undefined;
|
|
60422
60561
|
options?: {
|
|
60423
60562
|
separator?: string | undefined;
|
|
@@ -60706,6 +60845,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
60706
60845
|
configurable?: boolean | null | undefined;
|
|
60707
60846
|
minLength?: number | undefined;
|
|
60708
60847
|
maxLength?: number | undefined;
|
|
60848
|
+
regex?: string | undefined;
|
|
60709
60849
|
targetField?: string | null | undefined;
|
|
60710
60850
|
options?: {
|
|
60711
60851
|
separator?: string | undefined;
|
|
@@ -60983,6 +61123,7 @@ declare const updateSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
60983
61123
|
configurable?: boolean | null | undefined;
|
|
60984
61124
|
minLength?: number | undefined;
|
|
60985
61125
|
maxLength?: number | undefined;
|
|
61126
|
+
regex?: string | undefined;
|
|
60986
61127
|
targetField?: string | null | undefined;
|
|
60987
61128
|
options?: {
|
|
60988
61129
|
separator?: string | undefined;
|
|
@@ -64930,6 +65071,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
64930
65071
|
customReplacements?: string[][] | undefined;
|
|
64931
65072
|
preserveLeadingUnderscore?: boolean | undefined;
|
|
64932
65073
|
}>>;
|
|
65074
|
+
regex: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
64933
65075
|
}>, "strip", z.ZodTypeAny, {
|
|
64934
65076
|
type: "uid";
|
|
64935
65077
|
required?: boolean | undefined;
|
|
@@ -64938,6 +65080,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
64938
65080
|
configurable?: boolean | null | undefined;
|
|
64939
65081
|
minLength?: number | undefined;
|
|
64940
65082
|
maxLength?: number | undefined;
|
|
65083
|
+
regex?: string | undefined;
|
|
64941
65084
|
targetField?: string | null | undefined;
|
|
64942
65085
|
options?: {
|
|
64943
65086
|
separator?: string | undefined;
|
|
@@ -64955,6 +65098,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
64955
65098
|
configurable?: boolean | null | undefined;
|
|
64956
65099
|
minLength?: number | undefined;
|
|
64957
65100
|
maxLength?: number | undefined;
|
|
65101
|
+
regex?: string | undefined;
|
|
64958
65102
|
targetField?: string | null | undefined;
|
|
64959
65103
|
options?: {
|
|
64960
65104
|
separator?: string | undefined;
|
|
@@ -65249,6 +65393,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
65249
65393
|
configurable?: boolean | null | undefined;
|
|
65250
65394
|
minLength?: number | undefined;
|
|
65251
65395
|
maxLength?: number | undefined;
|
|
65396
|
+
regex?: string | undefined;
|
|
65252
65397
|
targetField?: string | null | undefined;
|
|
65253
65398
|
options?: {
|
|
65254
65399
|
separator?: string | undefined;
|
|
@@ -65522,6 +65667,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
65522
65667
|
configurable?: boolean | null | undefined;
|
|
65523
65668
|
minLength?: number | undefined;
|
|
65524
65669
|
maxLength?: number | undefined;
|
|
65670
|
+
regex?: string | undefined;
|
|
65525
65671
|
targetField?: string | null | undefined;
|
|
65526
65672
|
options?: {
|
|
65527
65673
|
separator?: string | undefined;
|
|
@@ -65795,6 +65941,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
65795
65941
|
configurable?: boolean | null | undefined;
|
|
65796
65942
|
minLength?: number | undefined;
|
|
65797
65943
|
maxLength?: number | undefined;
|
|
65944
|
+
regex?: string | undefined;
|
|
65798
65945
|
targetField?: string | null | undefined;
|
|
65799
65946
|
options?: {
|
|
65800
65947
|
separator?: string | undefined;
|
|
@@ -66068,6 +66215,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
66068
66215
|
configurable?: boolean | null | undefined;
|
|
66069
66216
|
minLength?: number | undefined;
|
|
66070
66217
|
maxLength?: number | undefined;
|
|
66218
|
+
regex?: string | undefined;
|
|
66071
66219
|
targetField?: string | null | undefined;
|
|
66072
66220
|
options?: {
|
|
66073
66221
|
separator?: string | undefined;
|
|
@@ -66341,6 +66489,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
66341
66489
|
configurable?: boolean | null | undefined;
|
|
66342
66490
|
minLength?: number | undefined;
|
|
66343
66491
|
maxLength?: number | undefined;
|
|
66492
|
+
regex?: string | undefined;
|
|
66344
66493
|
targetField?: string | null | undefined;
|
|
66345
66494
|
options?: {
|
|
66346
66495
|
separator?: string | undefined;
|
|
@@ -66614,6 +66763,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
66614
66763
|
configurable?: boolean | null | undefined;
|
|
66615
66764
|
minLength?: number | undefined;
|
|
66616
66765
|
maxLength?: number | undefined;
|
|
66766
|
+
regex?: string | undefined;
|
|
66617
66767
|
targetField?: string | null | undefined;
|
|
66618
66768
|
options?: {
|
|
66619
66769
|
separator?: string | undefined;
|
|
@@ -66887,6 +67037,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
66887
67037
|
configurable?: boolean | null | undefined;
|
|
66888
67038
|
minLength?: number | undefined;
|
|
66889
67039
|
maxLength?: number | undefined;
|
|
67040
|
+
regex?: string | undefined;
|
|
66890
67041
|
targetField?: string | null | undefined;
|
|
66891
67042
|
options?: {
|
|
66892
67043
|
separator?: string | undefined;
|
|
@@ -67160,6 +67311,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
67160
67311
|
configurable?: boolean | null | undefined;
|
|
67161
67312
|
minLength?: number | undefined;
|
|
67162
67313
|
maxLength?: number | undefined;
|
|
67314
|
+
regex?: string | undefined;
|
|
67163
67315
|
targetField?: string | null | undefined;
|
|
67164
67316
|
options?: {
|
|
67165
67317
|
separator?: string | undefined;
|
|
@@ -67433,6 +67585,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
67433
67585
|
configurable?: boolean | null | undefined;
|
|
67434
67586
|
minLength?: number | undefined;
|
|
67435
67587
|
maxLength?: number | undefined;
|
|
67588
|
+
regex?: string | undefined;
|
|
67436
67589
|
targetField?: string | null | undefined;
|
|
67437
67590
|
options?: {
|
|
67438
67591
|
separator?: string | undefined;
|
|
@@ -67706,6 +67859,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
67706
67859
|
configurable?: boolean | null | undefined;
|
|
67707
67860
|
minLength?: number | undefined;
|
|
67708
67861
|
maxLength?: number | undefined;
|
|
67862
|
+
regex?: string | undefined;
|
|
67709
67863
|
targetField?: string | null | undefined;
|
|
67710
67864
|
options?: {
|
|
67711
67865
|
separator?: string | undefined;
|
|
@@ -67983,6 +68137,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
67983
68137
|
configurable?: boolean | null | undefined;
|
|
67984
68138
|
minLength?: number | undefined;
|
|
67985
68139
|
maxLength?: number | undefined;
|
|
68140
|
+
regex?: string | undefined;
|
|
67986
68141
|
targetField?: string | null | undefined;
|
|
67987
68142
|
options?: {
|
|
67988
68143
|
separator?: string | undefined;
|
|
@@ -68260,6 +68415,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
68260
68415
|
configurable?: boolean | null | undefined;
|
|
68261
68416
|
minLength?: number | undefined;
|
|
68262
68417
|
maxLength?: number | undefined;
|
|
68418
|
+
regex?: string | undefined;
|
|
68263
68419
|
targetField?: string | null | undefined;
|
|
68264
68420
|
options?: {
|
|
68265
68421
|
separator?: string | undefined;
|
|
@@ -72186,6 +72342,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
72186
72342
|
customReplacements?: string[][] | undefined;
|
|
72187
72343
|
preserveLeadingUnderscore?: boolean | undefined;
|
|
72188
72344
|
}>>;
|
|
72345
|
+
regex: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
72189
72346
|
}>, "strip", z.ZodTypeAny, {
|
|
72190
72347
|
type: "uid";
|
|
72191
72348
|
required?: boolean | undefined;
|
|
@@ -72194,6 +72351,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
72194
72351
|
configurable?: boolean | null | undefined;
|
|
72195
72352
|
minLength?: number | undefined;
|
|
72196
72353
|
maxLength?: number | undefined;
|
|
72354
|
+
regex?: string | undefined;
|
|
72197
72355
|
targetField?: string | null | undefined;
|
|
72198
72356
|
options?: {
|
|
72199
72357
|
separator?: string | undefined;
|
|
@@ -72211,6 +72369,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
72211
72369
|
configurable?: boolean | null | undefined;
|
|
72212
72370
|
minLength?: number | undefined;
|
|
72213
72371
|
maxLength?: number | undefined;
|
|
72372
|
+
regex?: string | undefined;
|
|
72214
72373
|
targetField?: string | null | undefined;
|
|
72215
72374
|
options?: {
|
|
72216
72375
|
separator?: string | undefined;
|
|
@@ -72505,6 +72664,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
72505
72664
|
configurable?: boolean | null | undefined;
|
|
72506
72665
|
minLength?: number | undefined;
|
|
72507
72666
|
maxLength?: number | undefined;
|
|
72667
|
+
regex?: string | undefined;
|
|
72508
72668
|
targetField?: string | null | undefined;
|
|
72509
72669
|
options?: {
|
|
72510
72670
|
separator?: string | undefined;
|
|
@@ -72778,6 +72938,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
72778
72938
|
configurable?: boolean | null | undefined;
|
|
72779
72939
|
minLength?: number | undefined;
|
|
72780
72940
|
maxLength?: number | undefined;
|
|
72941
|
+
regex?: string | undefined;
|
|
72781
72942
|
targetField?: string | null | undefined;
|
|
72782
72943
|
options?: {
|
|
72783
72944
|
separator?: string | undefined;
|
|
@@ -73051,6 +73212,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
73051
73212
|
configurable?: boolean | null | undefined;
|
|
73052
73213
|
minLength?: number | undefined;
|
|
73053
73214
|
maxLength?: number | undefined;
|
|
73215
|
+
regex?: string | undefined;
|
|
73054
73216
|
targetField?: string | null | undefined;
|
|
73055
73217
|
options?: {
|
|
73056
73218
|
separator?: string | undefined;
|
|
@@ -73324,6 +73486,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
73324
73486
|
configurable?: boolean | null | undefined;
|
|
73325
73487
|
minLength?: number | undefined;
|
|
73326
73488
|
maxLength?: number | undefined;
|
|
73489
|
+
regex?: string | undefined;
|
|
73327
73490
|
targetField?: string | null | undefined;
|
|
73328
73491
|
options?: {
|
|
73329
73492
|
separator?: string | undefined;
|
|
@@ -73597,6 +73760,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
73597
73760
|
configurable?: boolean | null | undefined;
|
|
73598
73761
|
minLength?: number | undefined;
|
|
73599
73762
|
maxLength?: number | undefined;
|
|
73763
|
+
regex?: string | undefined;
|
|
73600
73764
|
targetField?: string | null | undefined;
|
|
73601
73765
|
options?: {
|
|
73602
73766
|
separator?: string | undefined;
|
|
@@ -73870,6 +74034,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
73870
74034
|
configurable?: boolean | null | undefined;
|
|
73871
74035
|
minLength?: number | undefined;
|
|
73872
74036
|
maxLength?: number | undefined;
|
|
74037
|
+
regex?: string | undefined;
|
|
73873
74038
|
targetField?: string | null | undefined;
|
|
73874
74039
|
options?: {
|
|
73875
74040
|
separator?: string | undefined;
|
|
@@ -74143,6 +74308,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
74143
74308
|
configurable?: boolean | null | undefined;
|
|
74144
74309
|
minLength?: number | undefined;
|
|
74145
74310
|
maxLength?: number | undefined;
|
|
74311
|
+
regex?: string | undefined;
|
|
74146
74312
|
targetField?: string | null | undefined;
|
|
74147
74313
|
options?: {
|
|
74148
74314
|
separator?: string | undefined;
|
|
@@ -74416,6 +74582,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
74416
74582
|
configurable?: boolean | null | undefined;
|
|
74417
74583
|
minLength?: number | undefined;
|
|
74418
74584
|
maxLength?: number | undefined;
|
|
74585
|
+
regex?: string | undefined;
|
|
74419
74586
|
targetField?: string | null | undefined;
|
|
74420
74587
|
options?: {
|
|
74421
74588
|
separator?: string | undefined;
|
|
@@ -74689,6 +74856,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
74689
74856
|
configurable?: boolean | null | undefined;
|
|
74690
74857
|
minLength?: number | undefined;
|
|
74691
74858
|
maxLength?: number | undefined;
|
|
74859
|
+
regex?: string | undefined;
|
|
74692
74860
|
targetField?: string | null | undefined;
|
|
74693
74861
|
options?: {
|
|
74694
74862
|
separator?: string | undefined;
|
|
@@ -74962,6 +75130,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
74962
75130
|
configurable?: boolean | null | undefined;
|
|
74963
75131
|
minLength?: number | undefined;
|
|
74964
75132
|
maxLength?: number | undefined;
|
|
75133
|
+
regex?: string | undefined;
|
|
74965
75134
|
targetField?: string | null | undefined;
|
|
74966
75135
|
options?: {
|
|
74967
75136
|
separator?: string | undefined;
|
|
@@ -75239,6 +75408,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
75239
75408
|
configurable?: boolean | null | undefined;
|
|
75240
75409
|
minLength?: number | undefined;
|
|
75241
75410
|
maxLength?: number | undefined;
|
|
75411
|
+
regex?: string | undefined;
|
|
75242
75412
|
targetField?: string | null | undefined;
|
|
75243
75413
|
options?: {
|
|
75244
75414
|
separator?: string | undefined;
|
|
@@ -75516,6 +75686,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
75516
75686
|
configurable?: boolean | null | undefined;
|
|
75517
75687
|
minLength?: number | undefined;
|
|
75518
75688
|
maxLength?: number | undefined;
|
|
75689
|
+
regex?: string | undefined;
|
|
75519
75690
|
targetField?: string | null | undefined;
|
|
75520
75691
|
options?: {
|
|
75521
75692
|
separator?: string | undefined;
|
|
@@ -75805,6 +75976,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
75805
75976
|
configurable?: boolean | null | undefined;
|
|
75806
75977
|
minLength?: number | undefined;
|
|
75807
75978
|
maxLength?: number | undefined;
|
|
75979
|
+
regex?: string | undefined;
|
|
75808
75980
|
targetField?: string | null | undefined;
|
|
75809
75981
|
options?: {
|
|
75810
75982
|
separator?: string | undefined;
|
|
@@ -76082,6 +76254,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
76082
76254
|
configurable?: boolean | null | undefined;
|
|
76083
76255
|
minLength?: number | undefined;
|
|
76084
76256
|
maxLength?: number | undefined;
|
|
76257
|
+
regex?: string | undefined;
|
|
76085
76258
|
targetField?: string | null | undefined;
|
|
76086
76259
|
options?: {
|
|
76087
76260
|
separator?: string | undefined;
|
|
@@ -76362,6 +76535,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
76362
76535
|
configurable?: boolean | null | undefined;
|
|
76363
76536
|
minLength?: number | undefined;
|
|
76364
76537
|
maxLength?: number | undefined;
|
|
76538
|
+
regex?: string | undefined;
|
|
76365
76539
|
targetField?: string | null | undefined;
|
|
76366
76540
|
options?: {
|
|
76367
76541
|
separator?: string | undefined;
|
|
@@ -76639,6 +76813,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
76639
76813
|
configurable?: boolean | null | undefined;
|
|
76640
76814
|
minLength?: number | undefined;
|
|
76641
76815
|
maxLength?: number | undefined;
|
|
76816
|
+
regex?: string | undefined;
|
|
76642
76817
|
targetField?: string | null | undefined;
|
|
76643
76818
|
options?: {
|
|
76644
76819
|
separator?: string | undefined;
|
|
@@ -76919,6 +77094,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
76919
77094
|
configurable?: boolean | null | undefined;
|
|
76920
77095
|
minLength?: number | undefined;
|
|
76921
77096
|
maxLength?: number | undefined;
|
|
77097
|
+
regex?: string | undefined;
|
|
76922
77098
|
targetField?: string | null | undefined;
|
|
76923
77099
|
options?: {
|
|
76924
77100
|
separator?: string | undefined;
|
|
@@ -77196,6 +77372,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
77196
77372
|
configurable?: boolean | null | undefined;
|
|
77197
77373
|
minLength?: number | undefined;
|
|
77198
77374
|
maxLength?: number | undefined;
|
|
77375
|
+
regex?: string | undefined;
|
|
77199
77376
|
targetField?: string | null | undefined;
|
|
77200
77377
|
options?: {
|
|
77201
77378
|
separator?: string | undefined;
|
|
@@ -77476,6 +77653,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
77476
77653
|
configurable?: boolean | null | undefined;
|
|
77477
77654
|
minLength?: number | undefined;
|
|
77478
77655
|
maxLength?: number | undefined;
|
|
77656
|
+
regex?: string | undefined;
|
|
77479
77657
|
targetField?: string | null | undefined;
|
|
77480
77658
|
options?: {
|
|
77481
77659
|
separator?: string | undefined;
|
|
@@ -77753,6 +77931,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
77753
77931
|
configurable?: boolean | null | undefined;
|
|
77754
77932
|
minLength?: number | undefined;
|
|
77755
77933
|
maxLength?: number | undefined;
|
|
77934
|
+
regex?: string | undefined;
|
|
77756
77935
|
targetField?: string | null | undefined;
|
|
77757
77936
|
options?: {
|
|
77758
77937
|
separator?: string | undefined;
|
|
@@ -78038,6 +78217,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
78038
78217
|
configurable?: boolean | null | undefined;
|
|
78039
78218
|
minLength?: number | undefined;
|
|
78040
78219
|
maxLength?: number | undefined;
|
|
78220
|
+
regex?: string | undefined;
|
|
78041
78221
|
targetField?: string | null | undefined;
|
|
78042
78222
|
options?: {
|
|
78043
78223
|
separator?: string | undefined;
|
|
@@ -78315,6 +78495,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
78315
78495
|
configurable?: boolean | null | undefined;
|
|
78316
78496
|
minLength?: number | undefined;
|
|
78317
78497
|
maxLength?: number | undefined;
|
|
78498
|
+
regex?: string | undefined;
|
|
78318
78499
|
targetField?: string | null | undefined;
|
|
78319
78500
|
options?: {
|
|
78320
78501
|
separator?: string | undefined;
|
|
@@ -78603,6 +78784,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
78603
78784
|
configurable?: boolean | null | undefined;
|
|
78604
78785
|
minLength?: number | undefined;
|
|
78605
78786
|
maxLength?: number | undefined;
|
|
78787
|
+
regex?: string | undefined;
|
|
78606
78788
|
targetField?: string | null | undefined;
|
|
78607
78789
|
options?: {
|
|
78608
78790
|
separator?: string | undefined;
|
|
@@ -78880,6 +79062,7 @@ declare const updateCollectionTypeSchema: z.ZodObject<z.objectUtil.extendShape<z
|
|
|
78880
79062
|
configurable?: boolean | null | undefined;
|
|
78881
79063
|
minLength?: number | undefined;
|
|
78882
79064
|
maxLength?: number | undefined;
|
|
79065
|
+
regex?: string | undefined;
|
|
78883
79066
|
targetField?: string | null | undefined;
|
|
78884
79067
|
options?: {
|
|
78885
79068
|
separator?: string | undefined;
|
|
@@ -79192,6 +79375,7 @@ export declare const validateUpdateSchema: (data: unknown) => {
|
|
|
79192
79375
|
configurable?: boolean | null | undefined;
|
|
79193
79376
|
minLength?: number | undefined;
|
|
79194
79377
|
maxLength?: number | undefined;
|
|
79378
|
+
regex?: string | undefined;
|
|
79195
79379
|
targetField?: string | null | undefined;
|
|
79196
79380
|
options?: {
|
|
79197
79381
|
separator?: string | undefined;
|
|
@@ -79482,6 +79666,7 @@ export declare const validateUpdateSchema: (data: unknown) => {
|
|
|
79482
79666
|
configurable?: boolean | null | undefined;
|
|
79483
79667
|
minLength?: number | undefined;
|
|
79484
79668
|
maxLength?: number | undefined;
|
|
79669
|
+
regex?: string | undefined;
|
|
79485
79670
|
targetField?: string | null | undefined;
|
|
79486
79671
|
options?: {
|
|
79487
79672
|
separator?: string | undefined;
|
|
@@ -79759,6 +79944,7 @@ export declare const validateUpdateSchema: (data: unknown) => {
|
|
|
79759
79944
|
configurable?: boolean | null | undefined;
|
|
79760
79945
|
minLength?: number | undefined;
|
|
79761
79946
|
maxLength?: number | undefined;
|
|
79947
|
+
regex?: string | undefined;
|
|
79762
79948
|
targetField?: string | null | undefined;
|
|
79763
79949
|
options?: {
|
|
79764
79950
|
separator?: string | undefined;
|
|
@@ -80051,6 +80237,7 @@ export declare const validateUpdateSchema: (data: unknown) => {
|
|
|
80051
80237
|
configurable?: boolean | null | undefined;
|
|
80052
80238
|
minLength?: number | undefined;
|
|
80053
80239
|
maxLength?: number | undefined;
|
|
80240
|
+
regex?: string | undefined;
|
|
80054
80241
|
targetField?: string | null | undefined;
|
|
80055
80242
|
options?: {
|
|
80056
80243
|
separator?: string | undefined;
|
|
@@ -80342,6 +80529,7 @@ export declare const validateUpdateSchema: (data: unknown) => {
|
|
|
80342
80529
|
configurable?: boolean | null | undefined;
|
|
80343
80530
|
minLength?: number | undefined;
|
|
80344
80531
|
maxLength?: number | undefined;
|
|
80532
|
+
regex?: string | undefined;
|
|
80345
80533
|
targetField?: string | null | undefined;
|
|
80346
80534
|
options?: {
|
|
80347
80535
|
separator?: string | undefined;
|
|
@@ -80636,6 +80824,7 @@ export declare const validateUpdateSchema: (data: unknown) => {
|
|
|
80636
80824
|
configurable?: boolean | null | undefined;
|
|
80637
80825
|
minLength?: number | undefined;
|
|
80638
80826
|
maxLength?: number | undefined;
|
|
80827
|
+
regex?: string | undefined;
|
|
80639
80828
|
targetField?: string | null | undefined;
|
|
80640
80829
|
options?: {
|
|
80641
80830
|
separator?: string | undefined;
|
|
@@ -80913,6 +81102,7 @@ export declare const validateUpdateSchema: (data: unknown) => {
|
|
|
80913
81102
|
configurable?: boolean | null | undefined;
|
|
80914
81103
|
minLength?: number | undefined;
|
|
80915
81104
|
maxLength?: number | undefined;
|
|
81105
|
+
regex?: string | undefined;
|
|
80916
81106
|
targetField?: string | null | undefined;
|
|
80917
81107
|
options?: {
|
|
80918
81108
|
separator?: string | undefined;
|
|
@@ -81203,6 +81393,7 @@ export declare const validateUpdateSchema: (data: unknown) => {
|
|
|
81203
81393
|
configurable?: boolean | null | undefined;
|
|
81204
81394
|
minLength?: number | undefined;
|
|
81205
81395
|
maxLength?: number | undefined;
|
|
81396
|
+
regex?: string | undefined;
|
|
81206
81397
|
targetField?: string | null | undefined;
|
|
81207
81398
|
options?: {
|
|
81208
81399
|
separator?: string | undefined;
|
|
@@ -81480,6 +81671,7 @@ export declare const validateUpdateSchema: (data: unknown) => {
|
|
|
81480
81671
|
configurable?: boolean | null | undefined;
|
|
81481
81672
|
minLength?: number | undefined;
|
|
81482
81673
|
maxLength?: number | undefined;
|
|
81674
|
+
regex?: string | undefined;
|
|
81483
81675
|
targetField?: string | null | undefined;
|
|
81484
81676
|
options?: {
|
|
81485
81677
|
separator?: string | undefined;
|