@encatch/schema 1.3.0-beta.0 → 1.3.0-beta.2
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/esm/index.js +830 -749
- package/dist/esm/index.js.map +4 -4
- package/dist/types/index.d.ts +1 -0
- package/dist/types/schemas/api/fetch-feedback-schema.d.ts +286 -66
- package/dist/types/schemas/fields/app-props-schema.d.ts +149 -33
- package/dist/types/schemas/fields/completion-cta-schema.d.ts +99 -0
- package/dist/types/schemas/fields/field-schema.d.ts +289 -69
- package/dist/types/schemas/fields/form-properties-schema.d.ts +149 -33
- package/dist/types/schemas/fields/translations-schema.d.ts +30 -0
- package/package.json +1 -1
|
@@ -37,13 +37,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
37
37
|
type: z.ZodEnum<{
|
|
38
38
|
custom: "custom";
|
|
39
39
|
pattern: "pattern";
|
|
40
|
+
url: "url";
|
|
40
41
|
email: "email";
|
|
41
42
|
required: "required";
|
|
42
43
|
min: "min";
|
|
43
44
|
max: "max";
|
|
44
45
|
minLength: "minLength";
|
|
45
46
|
maxLength: "maxLength";
|
|
46
|
-
url: "url";
|
|
47
47
|
}>;
|
|
48
48
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
49
49
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -117,13 +117,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
117
117
|
type: z.ZodEnum<{
|
|
118
118
|
custom: "custom";
|
|
119
119
|
pattern: "pattern";
|
|
120
|
+
url: "url";
|
|
120
121
|
email: "email";
|
|
121
122
|
required: "required";
|
|
122
123
|
min: "min";
|
|
123
124
|
max: "max";
|
|
124
125
|
minLength: "minLength";
|
|
125
126
|
maxLength: "maxLength";
|
|
126
|
-
url: "url";
|
|
127
127
|
}>;
|
|
128
128
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
129
129
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -179,13 +179,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
179
179
|
type: z.ZodEnum<{
|
|
180
180
|
custom: "custom";
|
|
181
181
|
pattern: "pattern";
|
|
182
|
+
url: "url";
|
|
182
183
|
email: "email";
|
|
183
184
|
required: "required";
|
|
184
185
|
min: "min";
|
|
185
186
|
max: "max";
|
|
186
187
|
minLength: "minLength";
|
|
187
188
|
maxLength: "maxLength";
|
|
188
|
-
url: "url";
|
|
189
189
|
}>;
|
|
190
190
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
191
191
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -242,13 +242,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
242
242
|
type: z.ZodEnum<{
|
|
243
243
|
custom: "custom";
|
|
244
244
|
pattern: "pattern";
|
|
245
|
+
url: "url";
|
|
245
246
|
email: "email";
|
|
246
247
|
required: "required";
|
|
247
248
|
min: "min";
|
|
248
249
|
max: "max";
|
|
249
250
|
minLength: "minLength";
|
|
250
251
|
maxLength: "maxLength";
|
|
251
|
-
url: "url";
|
|
252
252
|
}>;
|
|
253
253
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
254
254
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -294,6 +294,61 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
294
294
|
title: z.ZodString;
|
|
295
295
|
description: z.ZodOptional<z.ZodString>;
|
|
296
296
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
297
|
+
completionCta: z.ZodOptional<z.ZodObject<{
|
|
298
|
+
label: z.ZodOptional<z.ZodString>;
|
|
299
|
+
autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
300
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
301
|
+
action: z.ZodLiteral<"dismiss">;
|
|
302
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
303
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
304
|
+
route: z.ZodString;
|
|
305
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
306
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
307
|
+
url: z.ZodString;
|
|
308
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
309
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
310
|
+
url: z.ZodString;
|
|
311
|
+
}, z.core.$strip>], "action">>;
|
|
312
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
313
|
+
action: z.ZodLiteral<"dismiss">;
|
|
314
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
315
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
316
|
+
route: z.ZodString;
|
|
317
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
318
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
319
|
+
url: z.ZodString;
|
|
320
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
321
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
322
|
+
url: z.ZodString;
|
|
323
|
+
}, z.core.$strip>], "action">>;
|
|
324
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
325
|
+
label: z.ZodString;
|
|
326
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
327
|
+
action: z.ZodLiteral<"dismiss">;
|
|
328
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
329
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
330
|
+
route: z.ZodString;
|
|
331
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
332
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
333
|
+
url: z.ZodString;
|
|
334
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
335
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
336
|
+
url: z.ZodString;
|
|
337
|
+
}, z.core.$strip>], "action">>;
|
|
338
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
339
|
+
action: z.ZodLiteral<"dismiss">;
|
|
340
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
341
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
342
|
+
route: z.ZodString;
|
|
343
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
344
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
345
|
+
url: z.ZodString;
|
|
346
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
347
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
348
|
+
url: z.ZodString;
|
|
349
|
+
}, z.core.$strip>], "action">>;
|
|
350
|
+
}, z.core.$strip>>;
|
|
351
|
+
}, z.core.$strip>>;
|
|
297
352
|
}, z.core.$strip>, z.ZodObject<{
|
|
298
353
|
id: z.ZodString;
|
|
299
354
|
slug: z.ZodOptional<z.ZodString>;
|
|
@@ -305,13 +360,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
305
360
|
type: z.ZodEnum<{
|
|
306
361
|
custom: "custom";
|
|
307
362
|
pattern: "pattern";
|
|
363
|
+
url: "url";
|
|
308
364
|
email: "email";
|
|
309
365
|
required: "required";
|
|
310
366
|
min: "min";
|
|
311
367
|
max: "max";
|
|
312
368
|
minLength: "minLength";
|
|
313
369
|
maxLength: "maxLength";
|
|
314
|
-
url: "url";
|
|
315
370
|
}>;
|
|
316
371
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
317
372
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -370,13 +425,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
370
425
|
type: z.ZodEnum<{
|
|
371
426
|
custom: "custom";
|
|
372
427
|
pattern: "pattern";
|
|
428
|
+
url: "url";
|
|
373
429
|
email: "email";
|
|
374
430
|
required: "required";
|
|
375
431
|
min: "min";
|
|
376
432
|
max: "max";
|
|
377
433
|
minLength: "minLength";
|
|
378
434
|
maxLength: "maxLength";
|
|
379
|
-
url: "url";
|
|
380
435
|
}>;
|
|
381
436
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
382
437
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -419,6 +474,61 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
419
474
|
vimeo: "vimeo";
|
|
420
475
|
}>>;
|
|
421
476
|
type: z.ZodLiteral<"exit_form">;
|
|
477
|
+
completionCta: z.ZodOptional<z.ZodObject<{
|
|
478
|
+
label: z.ZodOptional<z.ZodString>;
|
|
479
|
+
autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
480
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
481
|
+
action: z.ZodLiteral<"dismiss">;
|
|
482
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
483
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
484
|
+
route: z.ZodString;
|
|
485
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
486
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
487
|
+
url: z.ZodString;
|
|
488
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
489
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
490
|
+
url: z.ZodString;
|
|
491
|
+
}, z.core.$strip>], "action">>;
|
|
492
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
493
|
+
action: z.ZodLiteral<"dismiss">;
|
|
494
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
495
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
496
|
+
route: z.ZodString;
|
|
497
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
498
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
499
|
+
url: z.ZodString;
|
|
500
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
501
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
502
|
+
url: z.ZodString;
|
|
503
|
+
}, z.core.$strip>], "action">>;
|
|
504
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
505
|
+
label: z.ZodString;
|
|
506
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
507
|
+
action: z.ZodLiteral<"dismiss">;
|
|
508
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
509
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
510
|
+
route: z.ZodString;
|
|
511
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
512
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
513
|
+
url: z.ZodString;
|
|
514
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
515
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
516
|
+
url: z.ZodString;
|
|
517
|
+
}, z.core.$strip>], "action">>;
|
|
518
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
519
|
+
action: z.ZodLiteral<"dismiss">;
|
|
520
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
521
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
522
|
+
route: z.ZodString;
|
|
523
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
524
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
525
|
+
url: z.ZodString;
|
|
526
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
527
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
528
|
+
url: z.ZodString;
|
|
529
|
+
}, z.core.$strip>], "action">>;
|
|
530
|
+
}, z.core.$strip>>;
|
|
531
|
+
}, z.core.$strip>>;
|
|
422
532
|
}, z.core.$strip>, z.ZodObject<{
|
|
423
533
|
id: z.ZodString;
|
|
424
534
|
slug: z.ZodOptional<z.ZodString>;
|
|
@@ -432,13 +542,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
432
542
|
type: z.ZodEnum<{
|
|
433
543
|
custom: "custom";
|
|
434
544
|
pattern: "pattern";
|
|
545
|
+
url: "url";
|
|
435
546
|
email: "email";
|
|
436
547
|
required: "required";
|
|
437
548
|
min: "min";
|
|
438
549
|
max: "max";
|
|
439
550
|
minLength: "minLength";
|
|
440
551
|
maxLength: "maxLength";
|
|
441
|
-
url: "url";
|
|
442
552
|
}>;
|
|
443
553
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
444
554
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -500,13 +610,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
500
610
|
type: z.ZodEnum<{
|
|
501
611
|
custom: "custom";
|
|
502
612
|
pattern: "pattern";
|
|
613
|
+
url: "url";
|
|
503
614
|
email: "email";
|
|
504
615
|
required: "required";
|
|
505
616
|
min: "min";
|
|
506
617
|
max: "max";
|
|
507
618
|
minLength: "minLength";
|
|
508
619
|
maxLength: "maxLength";
|
|
509
|
-
url: "url";
|
|
510
620
|
}>;
|
|
511
621
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
512
622
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -562,13 +672,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
562
672
|
type: z.ZodEnum<{
|
|
563
673
|
custom: "custom";
|
|
564
674
|
pattern: "pattern";
|
|
675
|
+
url: "url";
|
|
565
676
|
email: "email";
|
|
566
677
|
required: "required";
|
|
567
678
|
min: "min";
|
|
568
679
|
max: "max";
|
|
569
680
|
minLength: "minLength";
|
|
570
681
|
maxLength: "maxLength";
|
|
571
|
-
url: "url";
|
|
572
682
|
}>;
|
|
573
683
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
574
684
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -663,13 +773,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
663
773
|
type: z.ZodEnum<{
|
|
664
774
|
custom: "custom";
|
|
665
775
|
pattern: "pattern";
|
|
776
|
+
url: "url";
|
|
666
777
|
email: "email";
|
|
667
778
|
required: "required";
|
|
668
779
|
min: "min";
|
|
669
780
|
max: "max";
|
|
670
781
|
minLength: "minLength";
|
|
671
782
|
maxLength: "maxLength";
|
|
672
|
-
url: "url";
|
|
673
783
|
}>;
|
|
674
784
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
675
785
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -739,13 +849,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
739
849
|
type: z.ZodEnum<{
|
|
740
850
|
custom: "custom";
|
|
741
851
|
pattern: "pattern";
|
|
852
|
+
url: "url";
|
|
742
853
|
email: "email";
|
|
743
854
|
required: "required";
|
|
744
855
|
min: "min";
|
|
745
856
|
max: "max";
|
|
746
857
|
minLength: "minLength";
|
|
747
858
|
maxLength: "maxLength";
|
|
748
|
-
url: "url";
|
|
749
859
|
}>;
|
|
750
860
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
751
861
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -817,13 +927,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
817
927
|
type: z.ZodEnum<{
|
|
818
928
|
custom: "custom";
|
|
819
929
|
pattern: "pattern";
|
|
930
|
+
url: "url";
|
|
820
931
|
email: "email";
|
|
821
932
|
required: "required";
|
|
822
933
|
min: "min";
|
|
823
934
|
max: "max";
|
|
824
935
|
minLength: "minLength";
|
|
825
936
|
maxLength: "maxLength";
|
|
826
|
-
url: "url";
|
|
827
937
|
}>;
|
|
828
938
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
829
939
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -902,13 +1012,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
902
1012
|
type: z.ZodEnum<{
|
|
903
1013
|
custom: "custom";
|
|
904
1014
|
pattern: "pattern";
|
|
1015
|
+
url: "url";
|
|
905
1016
|
email: "email";
|
|
906
1017
|
required: "required";
|
|
907
1018
|
min: "min";
|
|
908
1019
|
max: "max";
|
|
909
1020
|
minLength: "minLength";
|
|
910
1021
|
maxLength: "maxLength";
|
|
911
|
-
url: "url";
|
|
912
1022
|
}>;
|
|
913
1023
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
914
1024
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -988,13 +1098,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
988
1098
|
type: z.ZodEnum<{
|
|
989
1099
|
custom: "custom";
|
|
990
1100
|
pattern: "pattern";
|
|
1101
|
+
url: "url";
|
|
991
1102
|
email: "email";
|
|
992
1103
|
required: "required";
|
|
993
1104
|
min: "min";
|
|
994
1105
|
max: "max";
|
|
995
1106
|
minLength: "minLength";
|
|
996
1107
|
maxLength: "maxLength";
|
|
997
|
-
url: "url";
|
|
998
1108
|
}>;
|
|
999
1109
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1000
1110
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1059,13 +1169,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
1059
1169
|
type: z.ZodEnum<{
|
|
1060
1170
|
custom: "custom";
|
|
1061
1171
|
pattern: "pattern";
|
|
1172
|
+
url: "url";
|
|
1062
1173
|
email: "email";
|
|
1063
1174
|
required: "required";
|
|
1064
1175
|
min: "min";
|
|
1065
1176
|
max: "max";
|
|
1066
1177
|
minLength: "minLength";
|
|
1067
1178
|
maxLength: "maxLength";
|
|
1068
|
-
url: "url";
|
|
1069
1179
|
}>;
|
|
1070
1180
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1071
1181
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1131,13 +1241,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
1131
1241
|
type: z.ZodEnum<{
|
|
1132
1242
|
custom: "custom";
|
|
1133
1243
|
pattern: "pattern";
|
|
1244
|
+
url: "url";
|
|
1134
1245
|
email: "email";
|
|
1135
1246
|
required: "required";
|
|
1136
1247
|
min: "min";
|
|
1137
1248
|
max: "max";
|
|
1138
1249
|
minLength: "minLength";
|
|
1139
1250
|
maxLength: "maxLength";
|
|
1140
|
-
url: "url";
|
|
1141
1251
|
}>;
|
|
1142
1252
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1143
1253
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1202,13 +1312,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
1202
1312
|
type: z.ZodEnum<{
|
|
1203
1313
|
custom: "custom";
|
|
1204
1314
|
pattern: "pattern";
|
|
1315
|
+
url: "url";
|
|
1205
1316
|
email: "email";
|
|
1206
1317
|
required: "required";
|
|
1207
1318
|
min: "min";
|
|
1208
1319
|
max: "max";
|
|
1209
1320
|
minLength: "minLength";
|
|
1210
1321
|
maxLength: "maxLength";
|
|
1211
|
-
url: "url";
|
|
1212
1322
|
}>;
|
|
1213
1323
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1214
1324
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1280,13 +1390,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
1280
1390
|
type: z.ZodEnum<{
|
|
1281
1391
|
custom: "custom";
|
|
1282
1392
|
pattern: "pattern";
|
|
1393
|
+
url: "url";
|
|
1283
1394
|
email: "email";
|
|
1284
1395
|
required: "required";
|
|
1285
1396
|
min: "min";
|
|
1286
1397
|
max: "max";
|
|
1287
1398
|
minLength: "minLength";
|
|
1288
1399
|
maxLength: "maxLength";
|
|
1289
|
-
url: "url";
|
|
1290
1400
|
}>;
|
|
1291
1401
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1292
1402
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1360,13 +1470,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
1360
1470
|
type: z.ZodEnum<{
|
|
1361
1471
|
custom: "custom";
|
|
1362
1472
|
pattern: "pattern";
|
|
1473
|
+
url: "url";
|
|
1363
1474
|
email: "email";
|
|
1364
1475
|
required: "required";
|
|
1365
1476
|
min: "min";
|
|
1366
1477
|
max: "max";
|
|
1367
1478
|
minLength: "minLength";
|
|
1368
1479
|
maxLength: "maxLength";
|
|
1369
|
-
url: "url";
|
|
1370
1480
|
}>;
|
|
1371
1481
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1372
1482
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1433,13 +1543,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
1433
1543
|
type: z.ZodEnum<{
|
|
1434
1544
|
custom: "custom";
|
|
1435
1545
|
pattern: "pattern";
|
|
1546
|
+
url: "url";
|
|
1436
1547
|
email: "email";
|
|
1437
1548
|
required: "required";
|
|
1438
1549
|
min: "min";
|
|
1439
1550
|
max: "max";
|
|
1440
1551
|
minLength: "minLength";
|
|
1441
1552
|
maxLength: "maxLength";
|
|
1442
|
-
url: "url";
|
|
1443
1553
|
}>;
|
|
1444
1554
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1445
1555
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1499,13 +1609,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
1499
1609
|
type: z.ZodEnum<{
|
|
1500
1610
|
custom: "custom";
|
|
1501
1611
|
pattern: "pattern";
|
|
1612
|
+
url: "url";
|
|
1502
1613
|
email: "email";
|
|
1503
1614
|
required: "required";
|
|
1504
1615
|
min: "min";
|
|
1505
1616
|
max: "max";
|
|
1506
1617
|
minLength: "minLength";
|
|
1507
1618
|
maxLength: "maxLength";
|
|
1508
|
-
url: "url";
|
|
1509
1619
|
}>;
|
|
1510
1620
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1511
1621
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1576,13 +1686,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
1576
1686
|
type: z.ZodEnum<{
|
|
1577
1687
|
custom: "custom";
|
|
1578
1688
|
pattern: "pattern";
|
|
1689
|
+
url: "url";
|
|
1579
1690
|
email: "email";
|
|
1580
1691
|
required: "required";
|
|
1581
1692
|
min: "min";
|
|
1582
1693
|
max: "max";
|
|
1583
1694
|
minLength: "minLength";
|
|
1584
1695
|
maxLength: "maxLength";
|
|
1585
|
-
url: "url";
|
|
1586
1696
|
}>;
|
|
1587
1697
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1588
1698
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1659,13 +1769,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
1659
1769
|
type: z.ZodEnum<{
|
|
1660
1770
|
custom: "custom";
|
|
1661
1771
|
pattern: "pattern";
|
|
1772
|
+
url: "url";
|
|
1662
1773
|
email: "email";
|
|
1663
1774
|
required: "required";
|
|
1664
1775
|
min: "min";
|
|
1665
1776
|
max: "max";
|
|
1666
1777
|
minLength: "minLength";
|
|
1667
1778
|
maxLength: "maxLength";
|
|
1668
|
-
url: "url";
|
|
1669
1779
|
}>;
|
|
1670
1780
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1671
1781
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1745,13 +1855,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
1745
1855
|
type: z.ZodEnum<{
|
|
1746
1856
|
custom: "custom";
|
|
1747
1857
|
pattern: "pattern";
|
|
1858
|
+
url: "url";
|
|
1748
1859
|
email: "email";
|
|
1749
1860
|
required: "required";
|
|
1750
1861
|
min: "min";
|
|
1751
1862
|
max: "max";
|
|
1752
1863
|
minLength: "minLength";
|
|
1753
1864
|
maxLength: "maxLength";
|
|
1754
|
-
url: "url";
|
|
1755
1865
|
}>;
|
|
1756
1866
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1757
1867
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1812,13 +1922,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
1812
1922
|
type: z.ZodEnum<{
|
|
1813
1923
|
custom: "custom";
|
|
1814
1924
|
pattern: "pattern";
|
|
1925
|
+
url: "url";
|
|
1815
1926
|
email: "email";
|
|
1816
1927
|
required: "required";
|
|
1817
1928
|
min: "min";
|
|
1818
1929
|
max: "max";
|
|
1819
1930
|
minLength: "minLength";
|
|
1820
1931
|
maxLength: "maxLength";
|
|
1821
|
-
url: "url";
|
|
1822
1932
|
}>;
|
|
1823
1933
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1824
1934
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1876,13 +1986,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
1876
1986
|
type: z.ZodEnum<{
|
|
1877
1987
|
custom: "custom";
|
|
1878
1988
|
pattern: "pattern";
|
|
1989
|
+
url: "url";
|
|
1879
1990
|
email: "email";
|
|
1880
1991
|
required: "required";
|
|
1881
1992
|
min: "min";
|
|
1882
1993
|
max: "max";
|
|
1883
1994
|
minLength: "minLength";
|
|
1884
1995
|
maxLength: "maxLength";
|
|
1885
|
-
url: "url";
|
|
1886
1996
|
}>;
|
|
1887
1997
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1888
1998
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1945,13 +2055,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
1945
2055
|
type: z.ZodEnum<{
|
|
1946
2056
|
custom: "custom";
|
|
1947
2057
|
pattern: "pattern";
|
|
2058
|
+
url: "url";
|
|
1948
2059
|
email: "email";
|
|
1949
2060
|
required: "required";
|
|
1950
2061
|
min: "min";
|
|
1951
2062
|
max: "max";
|
|
1952
2063
|
minLength: "minLength";
|
|
1953
2064
|
maxLength: "maxLength";
|
|
1954
|
-
url: "url";
|
|
1955
2065
|
}>;
|
|
1956
2066
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1957
2067
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2009,13 +2119,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
2009
2119
|
type: z.ZodEnum<{
|
|
2010
2120
|
custom: "custom";
|
|
2011
2121
|
pattern: "pattern";
|
|
2122
|
+
url: "url";
|
|
2012
2123
|
email: "email";
|
|
2013
2124
|
required: "required";
|
|
2014
2125
|
min: "min";
|
|
2015
2126
|
max: "max";
|
|
2016
2127
|
minLength: "minLength";
|
|
2017
2128
|
maxLength: "maxLength";
|
|
2018
|
-
url: "url";
|
|
2019
2129
|
}>;
|
|
2020
2130
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2021
2131
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2075,13 +2185,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
2075
2185
|
type: z.ZodEnum<{
|
|
2076
2186
|
custom: "custom";
|
|
2077
2187
|
pattern: "pattern";
|
|
2188
|
+
url: "url";
|
|
2078
2189
|
email: "email";
|
|
2079
2190
|
required: "required";
|
|
2080
2191
|
min: "min";
|
|
2081
2192
|
max: "max";
|
|
2082
2193
|
minLength: "minLength";
|
|
2083
2194
|
maxLength: "maxLength";
|
|
2084
|
-
url: "url";
|
|
2085
2195
|
}>;
|
|
2086
2196
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2087
2197
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2174,13 +2284,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
2174
2284
|
type: z.ZodEnum<{
|
|
2175
2285
|
custom: "custom";
|
|
2176
2286
|
pattern: "pattern";
|
|
2287
|
+
url: "url";
|
|
2177
2288
|
email: "email";
|
|
2178
2289
|
required: "required";
|
|
2179
2290
|
min: "min";
|
|
2180
2291
|
max: "max";
|
|
2181
2292
|
minLength: "minLength";
|
|
2182
2293
|
maxLength: "maxLength";
|
|
2183
|
-
url: "url";
|
|
2184
2294
|
}>;
|
|
2185
2295
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2186
2296
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2262,13 +2372,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
2262
2372
|
type: z.ZodEnum<{
|
|
2263
2373
|
custom: "custom";
|
|
2264
2374
|
pattern: "pattern";
|
|
2375
|
+
url: "url";
|
|
2265
2376
|
email: "email";
|
|
2266
2377
|
required: "required";
|
|
2267
2378
|
min: "min";
|
|
2268
2379
|
max: "max";
|
|
2269
2380
|
minLength: "minLength";
|
|
2270
2381
|
maxLength: "maxLength";
|
|
2271
|
-
url: "url";
|
|
2272
2382
|
}>;
|
|
2273
2383
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2274
2384
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2334,13 +2444,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
2334
2444
|
type: z.ZodEnum<{
|
|
2335
2445
|
custom: "custom";
|
|
2336
2446
|
pattern: "pattern";
|
|
2447
|
+
url: "url";
|
|
2337
2448
|
email: "email";
|
|
2338
2449
|
required: "required";
|
|
2339
2450
|
min: "min";
|
|
2340
2451
|
max: "max";
|
|
2341
2452
|
minLength: "minLength";
|
|
2342
2453
|
maxLength: "maxLength";
|
|
2343
|
-
url: "url";
|
|
2344
2454
|
}>;
|
|
2345
2455
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2346
2456
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2404,13 +2514,13 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
2404
2514
|
type: z.ZodEnum<{
|
|
2405
2515
|
custom: "custom";
|
|
2406
2516
|
pattern: "pattern";
|
|
2517
|
+
url: "url";
|
|
2407
2518
|
email: "email";
|
|
2408
2519
|
required: "required";
|
|
2409
2520
|
min: "min";
|
|
2410
2521
|
max: "max";
|
|
2411
2522
|
minLength: "minLength";
|
|
2412
2523
|
maxLength: "maxLength";
|
|
2413
|
-
url: "url";
|
|
2414
2524
|
}>;
|
|
2415
2525
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2416
2526
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2683,6 +2793,12 @@ export declare const appPropsSchema: z.ZodObject<{
|
|
|
2683
2793
|
errorMessage: z.ZodOptional<z.ZodString>;
|
|
2684
2794
|
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
2685
2795
|
type: z.ZodLiteral<"thank_you">;
|
|
2796
|
+
completionCta: z.ZodOptional<z.ZodObject<{
|
|
2797
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2798
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
2799
|
+
label: z.ZodOptional<z.ZodString>;
|
|
2800
|
+
}, z.core.$strip>>;
|
|
2801
|
+
}, z.core.$strip>>;
|
|
2686
2802
|
}, z.core.$strip>, z.ZodObject<{
|
|
2687
2803
|
title: z.ZodString;
|
|
2688
2804
|
description: z.ZodOptional<z.ZodString>;
|