@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
|
@@ -194,13 +194,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
194
194
|
type: z.ZodEnum<{
|
|
195
195
|
custom: "custom";
|
|
196
196
|
pattern: "pattern";
|
|
197
|
+
url: "url";
|
|
197
198
|
email: "email";
|
|
198
199
|
required: "required";
|
|
199
200
|
min: "min";
|
|
200
201
|
max: "max";
|
|
201
202
|
minLength: "minLength";
|
|
202
203
|
maxLength: "maxLength";
|
|
203
|
-
url: "url";
|
|
204
204
|
}>;
|
|
205
205
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
206
206
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -274,13 +274,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
274
274
|
type: z.ZodEnum<{
|
|
275
275
|
custom: "custom";
|
|
276
276
|
pattern: "pattern";
|
|
277
|
+
url: "url";
|
|
277
278
|
email: "email";
|
|
278
279
|
required: "required";
|
|
279
280
|
min: "min";
|
|
280
281
|
max: "max";
|
|
281
282
|
minLength: "minLength";
|
|
282
283
|
maxLength: "maxLength";
|
|
283
|
-
url: "url";
|
|
284
284
|
}>;
|
|
285
285
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
286
286
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -336,13 +336,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
336
336
|
type: z.ZodEnum<{
|
|
337
337
|
custom: "custom";
|
|
338
338
|
pattern: "pattern";
|
|
339
|
+
url: "url";
|
|
339
340
|
email: "email";
|
|
340
341
|
required: "required";
|
|
341
342
|
min: "min";
|
|
342
343
|
max: "max";
|
|
343
344
|
minLength: "minLength";
|
|
344
345
|
maxLength: "maxLength";
|
|
345
|
-
url: "url";
|
|
346
346
|
}>;
|
|
347
347
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
348
348
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -399,13 +399,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
399
399
|
type: z.ZodEnum<{
|
|
400
400
|
custom: "custom";
|
|
401
401
|
pattern: "pattern";
|
|
402
|
+
url: "url";
|
|
402
403
|
email: "email";
|
|
403
404
|
required: "required";
|
|
404
405
|
min: "min";
|
|
405
406
|
max: "max";
|
|
406
407
|
minLength: "minLength";
|
|
407
408
|
maxLength: "maxLength";
|
|
408
|
-
url: "url";
|
|
409
409
|
}>;
|
|
410
410
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
411
411
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -451,6 +451,61 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
451
451
|
title: z.ZodString;
|
|
452
452
|
description: z.ZodOptional<z.ZodString>;
|
|
453
453
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
454
|
+
completionCta: z.ZodOptional<z.ZodObject<{
|
|
455
|
+
label: z.ZodOptional<z.ZodString>;
|
|
456
|
+
autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
457
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
458
|
+
action: z.ZodLiteral<"dismiss">;
|
|
459
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
460
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
461
|
+
route: z.ZodString;
|
|
462
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
463
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
464
|
+
url: z.ZodString;
|
|
465
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
466
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
467
|
+
url: z.ZodString;
|
|
468
|
+
}, z.core.$strip>], "action">>;
|
|
469
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
470
|
+
action: z.ZodLiteral<"dismiss">;
|
|
471
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
472
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
473
|
+
route: z.ZodString;
|
|
474
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
475
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
476
|
+
url: z.ZodString;
|
|
477
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
478
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
479
|
+
url: z.ZodString;
|
|
480
|
+
}, z.core.$strip>], "action">>;
|
|
481
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
482
|
+
label: z.ZodString;
|
|
483
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
484
|
+
action: z.ZodLiteral<"dismiss">;
|
|
485
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
486
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
487
|
+
route: z.ZodString;
|
|
488
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
489
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
490
|
+
url: z.ZodString;
|
|
491
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
492
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
493
|
+
url: z.ZodString;
|
|
494
|
+
}, z.core.$strip>], "action">>;
|
|
495
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
496
|
+
action: z.ZodLiteral<"dismiss">;
|
|
497
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
498
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
499
|
+
route: z.ZodString;
|
|
500
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
501
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
502
|
+
url: z.ZodString;
|
|
503
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
504
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
505
|
+
url: z.ZodString;
|
|
506
|
+
}, z.core.$strip>], "action">>;
|
|
507
|
+
}, z.core.$strip>>;
|
|
508
|
+
}, z.core.$strip>>;
|
|
454
509
|
}, z.core.$strip>, z.ZodObject<{
|
|
455
510
|
id: z.ZodString;
|
|
456
511
|
slug: z.ZodOptional<z.ZodString>;
|
|
@@ -462,13 +517,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
462
517
|
type: z.ZodEnum<{
|
|
463
518
|
custom: "custom";
|
|
464
519
|
pattern: "pattern";
|
|
520
|
+
url: "url";
|
|
465
521
|
email: "email";
|
|
466
522
|
required: "required";
|
|
467
523
|
min: "min";
|
|
468
524
|
max: "max";
|
|
469
525
|
minLength: "minLength";
|
|
470
526
|
maxLength: "maxLength";
|
|
471
|
-
url: "url";
|
|
472
527
|
}>;
|
|
473
528
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
474
529
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -527,13 +582,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
527
582
|
type: z.ZodEnum<{
|
|
528
583
|
custom: "custom";
|
|
529
584
|
pattern: "pattern";
|
|
585
|
+
url: "url";
|
|
530
586
|
email: "email";
|
|
531
587
|
required: "required";
|
|
532
588
|
min: "min";
|
|
533
589
|
max: "max";
|
|
534
590
|
minLength: "minLength";
|
|
535
591
|
maxLength: "maxLength";
|
|
536
|
-
url: "url";
|
|
537
592
|
}>;
|
|
538
593
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
539
594
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -576,6 +631,61 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
576
631
|
vimeo: "vimeo";
|
|
577
632
|
}>>;
|
|
578
633
|
type: z.ZodLiteral<"exit_form">;
|
|
634
|
+
completionCta: z.ZodOptional<z.ZodObject<{
|
|
635
|
+
label: z.ZodOptional<z.ZodString>;
|
|
636
|
+
autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
637
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
638
|
+
action: z.ZodLiteral<"dismiss">;
|
|
639
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
640
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
641
|
+
route: z.ZodString;
|
|
642
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
643
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
644
|
+
url: z.ZodString;
|
|
645
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
646
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
647
|
+
url: z.ZodString;
|
|
648
|
+
}, z.core.$strip>], "action">>;
|
|
649
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
650
|
+
action: z.ZodLiteral<"dismiss">;
|
|
651
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
652
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
653
|
+
route: z.ZodString;
|
|
654
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
655
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
656
|
+
url: z.ZodString;
|
|
657
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
658
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
659
|
+
url: z.ZodString;
|
|
660
|
+
}, z.core.$strip>], "action">>;
|
|
661
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
662
|
+
label: z.ZodString;
|
|
663
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
664
|
+
action: z.ZodLiteral<"dismiss">;
|
|
665
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
666
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
667
|
+
route: z.ZodString;
|
|
668
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
669
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
670
|
+
url: z.ZodString;
|
|
671
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
672
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
673
|
+
url: z.ZodString;
|
|
674
|
+
}, z.core.$strip>], "action">>;
|
|
675
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
676
|
+
action: z.ZodLiteral<"dismiss">;
|
|
677
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
678
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
679
|
+
route: z.ZodString;
|
|
680
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
681
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
682
|
+
url: z.ZodString;
|
|
683
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
684
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
685
|
+
url: z.ZodString;
|
|
686
|
+
}, z.core.$strip>], "action">>;
|
|
687
|
+
}, z.core.$strip>>;
|
|
688
|
+
}, z.core.$strip>>;
|
|
579
689
|
}, z.core.$strip>, z.ZodObject<{
|
|
580
690
|
id: z.ZodString;
|
|
581
691
|
slug: z.ZodOptional<z.ZodString>;
|
|
@@ -589,13 +699,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
589
699
|
type: z.ZodEnum<{
|
|
590
700
|
custom: "custom";
|
|
591
701
|
pattern: "pattern";
|
|
702
|
+
url: "url";
|
|
592
703
|
email: "email";
|
|
593
704
|
required: "required";
|
|
594
705
|
min: "min";
|
|
595
706
|
max: "max";
|
|
596
707
|
minLength: "minLength";
|
|
597
708
|
maxLength: "maxLength";
|
|
598
|
-
url: "url";
|
|
599
709
|
}>;
|
|
600
710
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
601
711
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -657,13 +767,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
657
767
|
type: z.ZodEnum<{
|
|
658
768
|
custom: "custom";
|
|
659
769
|
pattern: "pattern";
|
|
770
|
+
url: "url";
|
|
660
771
|
email: "email";
|
|
661
772
|
required: "required";
|
|
662
773
|
min: "min";
|
|
663
774
|
max: "max";
|
|
664
775
|
minLength: "minLength";
|
|
665
776
|
maxLength: "maxLength";
|
|
666
|
-
url: "url";
|
|
667
777
|
}>;
|
|
668
778
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
669
779
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -719,13 +829,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
719
829
|
type: z.ZodEnum<{
|
|
720
830
|
custom: "custom";
|
|
721
831
|
pattern: "pattern";
|
|
832
|
+
url: "url";
|
|
722
833
|
email: "email";
|
|
723
834
|
required: "required";
|
|
724
835
|
min: "min";
|
|
725
836
|
max: "max";
|
|
726
837
|
minLength: "minLength";
|
|
727
838
|
maxLength: "maxLength";
|
|
728
|
-
url: "url";
|
|
729
839
|
}>;
|
|
730
840
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
731
841
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -820,13 +930,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
820
930
|
type: z.ZodEnum<{
|
|
821
931
|
custom: "custom";
|
|
822
932
|
pattern: "pattern";
|
|
933
|
+
url: "url";
|
|
823
934
|
email: "email";
|
|
824
935
|
required: "required";
|
|
825
936
|
min: "min";
|
|
826
937
|
max: "max";
|
|
827
938
|
minLength: "minLength";
|
|
828
939
|
maxLength: "maxLength";
|
|
829
|
-
url: "url";
|
|
830
940
|
}>;
|
|
831
941
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
832
942
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -896,13 +1006,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
896
1006
|
type: z.ZodEnum<{
|
|
897
1007
|
custom: "custom";
|
|
898
1008
|
pattern: "pattern";
|
|
1009
|
+
url: "url";
|
|
899
1010
|
email: "email";
|
|
900
1011
|
required: "required";
|
|
901
1012
|
min: "min";
|
|
902
1013
|
max: "max";
|
|
903
1014
|
minLength: "minLength";
|
|
904
1015
|
maxLength: "maxLength";
|
|
905
|
-
url: "url";
|
|
906
1016
|
}>;
|
|
907
1017
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
908
1018
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -974,13 +1084,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
974
1084
|
type: z.ZodEnum<{
|
|
975
1085
|
custom: "custom";
|
|
976
1086
|
pattern: "pattern";
|
|
1087
|
+
url: "url";
|
|
977
1088
|
email: "email";
|
|
978
1089
|
required: "required";
|
|
979
1090
|
min: "min";
|
|
980
1091
|
max: "max";
|
|
981
1092
|
minLength: "minLength";
|
|
982
1093
|
maxLength: "maxLength";
|
|
983
|
-
url: "url";
|
|
984
1094
|
}>;
|
|
985
1095
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
986
1096
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1059,13 +1169,13 @@ export declare const questionnaireFieldsResponseSchema: 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>;
|
|
@@ -1145,13 +1255,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1145
1255
|
type: z.ZodEnum<{
|
|
1146
1256
|
custom: "custom";
|
|
1147
1257
|
pattern: "pattern";
|
|
1258
|
+
url: "url";
|
|
1148
1259
|
email: "email";
|
|
1149
1260
|
required: "required";
|
|
1150
1261
|
min: "min";
|
|
1151
1262
|
max: "max";
|
|
1152
1263
|
minLength: "minLength";
|
|
1153
1264
|
maxLength: "maxLength";
|
|
1154
|
-
url: "url";
|
|
1155
1265
|
}>;
|
|
1156
1266
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1157
1267
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1216,13 +1326,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1216
1326
|
type: z.ZodEnum<{
|
|
1217
1327
|
custom: "custom";
|
|
1218
1328
|
pattern: "pattern";
|
|
1329
|
+
url: "url";
|
|
1219
1330
|
email: "email";
|
|
1220
1331
|
required: "required";
|
|
1221
1332
|
min: "min";
|
|
1222
1333
|
max: "max";
|
|
1223
1334
|
minLength: "minLength";
|
|
1224
1335
|
maxLength: "maxLength";
|
|
1225
|
-
url: "url";
|
|
1226
1336
|
}>;
|
|
1227
1337
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1228
1338
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1288,13 +1398,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1288
1398
|
type: z.ZodEnum<{
|
|
1289
1399
|
custom: "custom";
|
|
1290
1400
|
pattern: "pattern";
|
|
1401
|
+
url: "url";
|
|
1291
1402
|
email: "email";
|
|
1292
1403
|
required: "required";
|
|
1293
1404
|
min: "min";
|
|
1294
1405
|
max: "max";
|
|
1295
1406
|
minLength: "minLength";
|
|
1296
1407
|
maxLength: "maxLength";
|
|
1297
|
-
url: "url";
|
|
1298
1408
|
}>;
|
|
1299
1409
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1300
1410
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1359,13 +1469,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1359
1469
|
type: z.ZodEnum<{
|
|
1360
1470
|
custom: "custom";
|
|
1361
1471
|
pattern: "pattern";
|
|
1472
|
+
url: "url";
|
|
1362
1473
|
email: "email";
|
|
1363
1474
|
required: "required";
|
|
1364
1475
|
min: "min";
|
|
1365
1476
|
max: "max";
|
|
1366
1477
|
minLength: "minLength";
|
|
1367
1478
|
maxLength: "maxLength";
|
|
1368
|
-
url: "url";
|
|
1369
1479
|
}>;
|
|
1370
1480
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1371
1481
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1437,13 +1547,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1437
1547
|
type: z.ZodEnum<{
|
|
1438
1548
|
custom: "custom";
|
|
1439
1549
|
pattern: "pattern";
|
|
1550
|
+
url: "url";
|
|
1440
1551
|
email: "email";
|
|
1441
1552
|
required: "required";
|
|
1442
1553
|
min: "min";
|
|
1443
1554
|
max: "max";
|
|
1444
1555
|
minLength: "minLength";
|
|
1445
1556
|
maxLength: "maxLength";
|
|
1446
|
-
url: "url";
|
|
1447
1557
|
}>;
|
|
1448
1558
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1449
1559
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1517,13 +1627,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1517
1627
|
type: z.ZodEnum<{
|
|
1518
1628
|
custom: "custom";
|
|
1519
1629
|
pattern: "pattern";
|
|
1630
|
+
url: "url";
|
|
1520
1631
|
email: "email";
|
|
1521
1632
|
required: "required";
|
|
1522
1633
|
min: "min";
|
|
1523
1634
|
max: "max";
|
|
1524
1635
|
minLength: "minLength";
|
|
1525
1636
|
maxLength: "maxLength";
|
|
1526
|
-
url: "url";
|
|
1527
1637
|
}>;
|
|
1528
1638
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1529
1639
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1590,13 +1700,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1590
1700
|
type: z.ZodEnum<{
|
|
1591
1701
|
custom: "custom";
|
|
1592
1702
|
pattern: "pattern";
|
|
1703
|
+
url: "url";
|
|
1593
1704
|
email: "email";
|
|
1594
1705
|
required: "required";
|
|
1595
1706
|
min: "min";
|
|
1596
1707
|
max: "max";
|
|
1597
1708
|
minLength: "minLength";
|
|
1598
1709
|
maxLength: "maxLength";
|
|
1599
|
-
url: "url";
|
|
1600
1710
|
}>;
|
|
1601
1711
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1602
1712
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1656,13 +1766,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1656
1766
|
type: z.ZodEnum<{
|
|
1657
1767
|
custom: "custom";
|
|
1658
1768
|
pattern: "pattern";
|
|
1769
|
+
url: "url";
|
|
1659
1770
|
email: "email";
|
|
1660
1771
|
required: "required";
|
|
1661
1772
|
min: "min";
|
|
1662
1773
|
max: "max";
|
|
1663
1774
|
minLength: "minLength";
|
|
1664
1775
|
maxLength: "maxLength";
|
|
1665
|
-
url: "url";
|
|
1666
1776
|
}>;
|
|
1667
1777
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1668
1778
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1733,13 +1843,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1733
1843
|
type: z.ZodEnum<{
|
|
1734
1844
|
custom: "custom";
|
|
1735
1845
|
pattern: "pattern";
|
|
1846
|
+
url: "url";
|
|
1736
1847
|
email: "email";
|
|
1737
1848
|
required: "required";
|
|
1738
1849
|
min: "min";
|
|
1739
1850
|
max: "max";
|
|
1740
1851
|
minLength: "minLength";
|
|
1741
1852
|
maxLength: "maxLength";
|
|
1742
|
-
url: "url";
|
|
1743
1853
|
}>;
|
|
1744
1854
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1745
1855
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1816,13 +1926,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1816
1926
|
type: z.ZodEnum<{
|
|
1817
1927
|
custom: "custom";
|
|
1818
1928
|
pattern: "pattern";
|
|
1929
|
+
url: "url";
|
|
1819
1930
|
email: "email";
|
|
1820
1931
|
required: "required";
|
|
1821
1932
|
min: "min";
|
|
1822
1933
|
max: "max";
|
|
1823
1934
|
minLength: "minLength";
|
|
1824
1935
|
maxLength: "maxLength";
|
|
1825
|
-
url: "url";
|
|
1826
1936
|
}>;
|
|
1827
1937
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1828
1938
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1902,13 +2012,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1902
2012
|
type: z.ZodEnum<{
|
|
1903
2013
|
custom: "custom";
|
|
1904
2014
|
pattern: "pattern";
|
|
2015
|
+
url: "url";
|
|
1905
2016
|
email: "email";
|
|
1906
2017
|
required: "required";
|
|
1907
2018
|
min: "min";
|
|
1908
2019
|
max: "max";
|
|
1909
2020
|
minLength: "minLength";
|
|
1910
2021
|
maxLength: "maxLength";
|
|
1911
|
-
url: "url";
|
|
1912
2022
|
}>;
|
|
1913
2023
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1914
2024
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1969,13 +2079,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1969
2079
|
type: z.ZodEnum<{
|
|
1970
2080
|
custom: "custom";
|
|
1971
2081
|
pattern: "pattern";
|
|
2082
|
+
url: "url";
|
|
1972
2083
|
email: "email";
|
|
1973
2084
|
required: "required";
|
|
1974
2085
|
min: "min";
|
|
1975
2086
|
max: "max";
|
|
1976
2087
|
minLength: "minLength";
|
|
1977
2088
|
maxLength: "maxLength";
|
|
1978
|
-
url: "url";
|
|
1979
2089
|
}>;
|
|
1980
2090
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1981
2091
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2033,13 +2143,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
2033
2143
|
type: z.ZodEnum<{
|
|
2034
2144
|
custom: "custom";
|
|
2035
2145
|
pattern: "pattern";
|
|
2146
|
+
url: "url";
|
|
2036
2147
|
email: "email";
|
|
2037
2148
|
required: "required";
|
|
2038
2149
|
min: "min";
|
|
2039
2150
|
max: "max";
|
|
2040
2151
|
minLength: "minLength";
|
|
2041
2152
|
maxLength: "maxLength";
|
|
2042
|
-
url: "url";
|
|
2043
2153
|
}>;
|
|
2044
2154
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2045
2155
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2102,13 +2212,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
2102
2212
|
type: z.ZodEnum<{
|
|
2103
2213
|
custom: "custom";
|
|
2104
2214
|
pattern: "pattern";
|
|
2215
|
+
url: "url";
|
|
2105
2216
|
email: "email";
|
|
2106
2217
|
required: "required";
|
|
2107
2218
|
min: "min";
|
|
2108
2219
|
max: "max";
|
|
2109
2220
|
minLength: "minLength";
|
|
2110
2221
|
maxLength: "maxLength";
|
|
2111
|
-
url: "url";
|
|
2112
2222
|
}>;
|
|
2113
2223
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2114
2224
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2166,13 +2276,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
2166
2276
|
type: z.ZodEnum<{
|
|
2167
2277
|
custom: "custom";
|
|
2168
2278
|
pattern: "pattern";
|
|
2279
|
+
url: "url";
|
|
2169
2280
|
email: "email";
|
|
2170
2281
|
required: "required";
|
|
2171
2282
|
min: "min";
|
|
2172
2283
|
max: "max";
|
|
2173
2284
|
minLength: "minLength";
|
|
2174
2285
|
maxLength: "maxLength";
|
|
2175
|
-
url: "url";
|
|
2176
2286
|
}>;
|
|
2177
2287
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2178
2288
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2232,13 +2342,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
2232
2342
|
type: z.ZodEnum<{
|
|
2233
2343
|
custom: "custom";
|
|
2234
2344
|
pattern: "pattern";
|
|
2345
|
+
url: "url";
|
|
2235
2346
|
email: "email";
|
|
2236
2347
|
required: "required";
|
|
2237
2348
|
min: "min";
|
|
2238
2349
|
max: "max";
|
|
2239
2350
|
minLength: "minLength";
|
|
2240
2351
|
maxLength: "maxLength";
|
|
2241
|
-
url: "url";
|
|
2242
2352
|
}>;
|
|
2243
2353
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2244
2354
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2331,13 +2441,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
2331
2441
|
type: z.ZodEnum<{
|
|
2332
2442
|
custom: "custom";
|
|
2333
2443
|
pattern: "pattern";
|
|
2444
|
+
url: "url";
|
|
2334
2445
|
email: "email";
|
|
2335
2446
|
required: "required";
|
|
2336
2447
|
min: "min";
|
|
2337
2448
|
max: "max";
|
|
2338
2449
|
minLength: "minLength";
|
|
2339
2450
|
maxLength: "maxLength";
|
|
2340
|
-
url: "url";
|
|
2341
2451
|
}>;
|
|
2342
2452
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2343
2453
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2419,13 +2529,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
2419
2529
|
type: z.ZodEnum<{
|
|
2420
2530
|
custom: "custom";
|
|
2421
2531
|
pattern: "pattern";
|
|
2532
|
+
url: "url";
|
|
2422
2533
|
email: "email";
|
|
2423
2534
|
required: "required";
|
|
2424
2535
|
min: "min";
|
|
2425
2536
|
max: "max";
|
|
2426
2537
|
minLength: "minLength";
|
|
2427
2538
|
maxLength: "maxLength";
|
|
2428
|
-
url: "url";
|
|
2429
2539
|
}>;
|
|
2430
2540
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2431
2541
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2491,13 +2601,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
2491
2601
|
type: z.ZodEnum<{
|
|
2492
2602
|
custom: "custom";
|
|
2493
2603
|
pattern: "pattern";
|
|
2604
|
+
url: "url";
|
|
2494
2605
|
email: "email";
|
|
2495
2606
|
required: "required";
|
|
2496
2607
|
min: "min";
|
|
2497
2608
|
max: "max";
|
|
2498
2609
|
minLength: "minLength";
|
|
2499
2610
|
maxLength: "maxLength";
|
|
2500
|
-
url: "url";
|
|
2501
2611
|
}>;
|
|
2502
2612
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2503
2613
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2561,13 +2671,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
2561
2671
|
type: z.ZodEnum<{
|
|
2562
2672
|
custom: "custom";
|
|
2563
2673
|
pattern: "pattern";
|
|
2674
|
+
url: "url";
|
|
2564
2675
|
email: "email";
|
|
2565
2676
|
required: "required";
|
|
2566
2677
|
min: "min";
|
|
2567
2678
|
max: "max";
|
|
2568
2679
|
minLength: "minLength";
|
|
2569
2680
|
maxLength: "maxLength";
|
|
2570
|
-
url: "url";
|
|
2571
2681
|
}>;
|
|
2572
2682
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2573
2683
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2691,13 +2801,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2691
2801
|
type: z.ZodEnum<{
|
|
2692
2802
|
custom: "custom";
|
|
2693
2803
|
pattern: "pattern";
|
|
2804
|
+
url: "url";
|
|
2694
2805
|
email: "email";
|
|
2695
2806
|
required: "required";
|
|
2696
2807
|
min: "min";
|
|
2697
2808
|
max: "max";
|
|
2698
2809
|
minLength: "minLength";
|
|
2699
2810
|
maxLength: "maxLength";
|
|
2700
|
-
url: "url";
|
|
2701
2811
|
}>;
|
|
2702
2812
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2703
2813
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2771,13 +2881,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2771
2881
|
type: z.ZodEnum<{
|
|
2772
2882
|
custom: "custom";
|
|
2773
2883
|
pattern: "pattern";
|
|
2884
|
+
url: "url";
|
|
2774
2885
|
email: "email";
|
|
2775
2886
|
required: "required";
|
|
2776
2887
|
min: "min";
|
|
2777
2888
|
max: "max";
|
|
2778
2889
|
minLength: "minLength";
|
|
2779
2890
|
maxLength: "maxLength";
|
|
2780
|
-
url: "url";
|
|
2781
2891
|
}>;
|
|
2782
2892
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2783
2893
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2833,13 +2943,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2833
2943
|
type: z.ZodEnum<{
|
|
2834
2944
|
custom: "custom";
|
|
2835
2945
|
pattern: "pattern";
|
|
2946
|
+
url: "url";
|
|
2836
2947
|
email: "email";
|
|
2837
2948
|
required: "required";
|
|
2838
2949
|
min: "min";
|
|
2839
2950
|
max: "max";
|
|
2840
2951
|
minLength: "minLength";
|
|
2841
2952
|
maxLength: "maxLength";
|
|
2842
|
-
url: "url";
|
|
2843
2953
|
}>;
|
|
2844
2954
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2845
2955
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2896,13 +3006,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2896
3006
|
type: z.ZodEnum<{
|
|
2897
3007
|
custom: "custom";
|
|
2898
3008
|
pattern: "pattern";
|
|
3009
|
+
url: "url";
|
|
2899
3010
|
email: "email";
|
|
2900
3011
|
required: "required";
|
|
2901
3012
|
min: "min";
|
|
2902
3013
|
max: "max";
|
|
2903
3014
|
minLength: "minLength";
|
|
2904
3015
|
maxLength: "maxLength";
|
|
2905
|
-
url: "url";
|
|
2906
3016
|
}>;
|
|
2907
3017
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2908
3018
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2948,6 +3058,61 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2948
3058
|
title: z.ZodString;
|
|
2949
3059
|
description: z.ZodOptional<z.ZodString>;
|
|
2950
3060
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
3061
|
+
completionCta: z.ZodOptional<z.ZodObject<{
|
|
3062
|
+
label: z.ZodOptional<z.ZodString>;
|
|
3063
|
+
autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
3064
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3065
|
+
action: z.ZodLiteral<"dismiss">;
|
|
3066
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3067
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
3068
|
+
route: z.ZodString;
|
|
3069
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3070
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
3071
|
+
url: z.ZodString;
|
|
3072
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3073
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
3074
|
+
url: z.ZodString;
|
|
3075
|
+
}, z.core.$strip>], "action">>;
|
|
3076
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3077
|
+
action: z.ZodLiteral<"dismiss">;
|
|
3078
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3079
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
3080
|
+
route: z.ZodString;
|
|
3081
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3082
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
3083
|
+
url: z.ZodString;
|
|
3084
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3085
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
3086
|
+
url: z.ZodString;
|
|
3087
|
+
}, z.core.$strip>], "action">>;
|
|
3088
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
3089
|
+
label: z.ZodString;
|
|
3090
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3091
|
+
action: z.ZodLiteral<"dismiss">;
|
|
3092
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3093
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
3094
|
+
route: z.ZodString;
|
|
3095
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3096
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
3097
|
+
url: z.ZodString;
|
|
3098
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3099
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
3100
|
+
url: z.ZodString;
|
|
3101
|
+
}, z.core.$strip>], "action">>;
|
|
3102
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3103
|
+
action: z.ZodLiteral<"dismiss">;
|
|
3104
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3105
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
3106
|
+
route: z.ZodString;
|
|
3107
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3108
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
3109
|
+
url: z.ZodString;
|
|
3110
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3111
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
3112
|
+
url: z.ZodString;
|
|
3113
|
+
}, z.core.$strip>], "action">>;
|
|
3114
|
+
}, z.core.$strip>>;
|
|
3115
|
+
}, z.core.$strip>>;
|
|
2951
3116
|
}, z.core.$strip>, z.ZodObject<{
|
|
2952
3117
|
id: z.ZodString;
|
|
2953
3118
|
slug: z.ZodOptional<z.ZodString>;
|
|
@@ -2959,13 +3124,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2959
3124
|
type: z.ZodEnum<{
|
|
2960
3125
|
custom: "custom";
|
|
2961
3126
|
pattern: "pattern";
|
|
3127
|
+
url: "url";
|
|
2962
3128
|
email: "email";
|
|
2963
3129
|
required: "required";
|
|
2964
3130
|
min: "min";
|
|
2965
3131
|
max: "max";
|
|
2966
3132
|
minLength: "minLength";
|
|
2967
3133
|
maxLength: "maxLength";
|
|
2968
|
-
url: "url";
|
|
2969
3134
|
}>;
|
|
2970
3135
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2971
3136
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3024,13 +3189,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3024
3189
|
type: z.ZodEnum<{
|
|
3025
3190
|
custom: "custom";
|
|
3026
3191
|
pattern: "pattern";
|
|
3192
|
+
url: "url";
|
|
3027
3193
|
email: "email";
|
|
3028
3194
|
required: "required";
|
|
3029
3195
|
min: "min";
|
|
3030
3196
|
max: "max";
|
|
3031
3197
|
minLength: "minLength";
|
|
3032
3198
|
maxLength: "maxLength";
|
|
3033
|
-
url: "url";
|
|
3034
3199
|
}>;
|
|
3035
3200
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3036
3201
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3073,6 +3238,61 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3073
3238
|
vimeo: "vimeo";
|
|
3074
3239
|
}>>;
|
|
3075
3240
|
type: z.ZodLiteral<"exit_form">;
|
|
3241
|
+
completionCta: z.ZodOptional<z.ZodObject<{
|
|
3242
|
+
label: z.ZodOptional<z.ZodString>;
|
|
3243
|
+
autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
3244
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3245
|
+
action: z.ZodLiteral<"dismiss">;
|
|
3246
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3247
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
3248
|
+
route: z.ZodString;
|
|
3249
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3250
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
3251
|
+
url: z.ZodString;
|
|
3252
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3253
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
3254
|
+
url: z.ZodString;
|
|
3255
|
+
}, z.core.$strip>], "action">>;
|
|
3256
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3257
|
+
action: z.ZodLiteral<"dismiss">;
|
|
3258
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3259
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
3260
|
+
route: z.ZodString;
|
|
3261
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3262
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
3263
|
+
url: z.ZodString;
|
|
3264
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3265
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
3266
|
+
url: z.ZodString;
|
|
3267
|
+
}, z.core.$strip>], "action">>;
|
|
3268
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
3269
|
+
label: z.ZodString;
|
|
3270
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3271
|
+
action: z.ZodLiteral<"dismiss">;
|
|
3272
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3273
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
3274
|
+
route: z.ZodString;
|
|
3275
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3276
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
3277
|
+
url: z.ZodString;
|
|
3278
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3279
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
3280
|
+
url: z.ZodString;
|
|
3281
|
+
}, z.core.$strip>], "action">>;
|
|
3282
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3283
|
+
action: z.ZodLiteral<"dismiss">;
|
|
3284
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3285
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
3286
|
+
route: z.ZodString;
|
|
3287
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3288
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
3289
|
+
url: z.ZodString;
|
|
3290
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3291
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
3292
|
+
url: z.ZodString;
|
|
3293
|
+
}, z.core.$strip>], "action">>;
|
|
3294
|
+
}, z.core.$strip>>;
|
|
3295
|
+
}, z.core.$strip>>;
|
|
3076
3296
|
}, z.core.$strip>, z.ZodObject<{
|
|
3077
3297
|
id: z.ZodString;
|
|
3078
3298
|
slug: z.ZodOptional<z.ZodString>;
|
|
@@ -3086,13 +3306,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3086
3306
|
type: z.ZodEnum<{
|
|
3087
3307
|
custom: "custom";
|
|
3088
3308
|
pattern: "pattern";
|
|
3309
|
+
url: "url";
|
|
3089
3310
|
email: "email";
|
|
3090
3311
|
required: "required";
|
|
3091
3312
|
min: "min";
|
|
3092
3313
|
max: "max";
|
|
3093
3314
|
minLength: "minLength";
|
|
3094
3315
|
maxLength: "maxLength";
|
|
3095
|
-
url: "url";
|
|
3096
3316
|
}>;
|
|
3097
3317
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3098
3318
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3154,13 +3374,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3154
3374
|
type: z.ZodEnum<{
|
|
3155
3375
|
custom: "custom";
|
|
3156
3376
|
pattern: "pattern";
|
|
3377
|
+
url: "url";
|
|
3157
3378
|
email: "email";
|
|
3158
3379
|
required: "required";
|
|
3159
3380
|
min: "min";
|
|
3160
3381
|
max: "max";
|
|
3161
3382
|
minLength: "minLength";
|
|
3162
3383
|
maxLength: "maxLength";
|
|
3163
|
-
url: "url";
|
|
3164
3384
|
}>;
|
|
3165
3385
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3166
3386
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3216,13 +3436,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3216
3436
|
type: z.ZodEnum<{
|
|
3217
3437
|
custom: "custom";
|
|
3218
3438
|
pattern: "pattern";
|
|
3439
|
+
url: "url";
|
|
3219
3440
|
email: "email";
|
|
3220
3441
|
required: "required";
|
|
3221
3442
|
min: "min";
|
|
3222
3443
|
max: "max";
|
|
3223
3444
|
minLength: "minLength";
|
|
3224
3445
|
maxLength: "maxLength";
|
|
3225
|
-
url: "url";
|
|
3226
3446
|
}>;
|
|
3227
3447
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3228
3448
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3317,13 +3537,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3317
3537
|
type: z.ZodEnum<{
|
|
3318
3538
|
custom: "custom";
|
|
3319
3539
|
pattern: "pattern";
|
|
3540
|
+
url: "url";
|
|
3320
3541
|
email: "email";
|
|
3321
3542
|
required: "required";
|
|
3322
3543
|
min: "min";
|
|
3323
3544
|
max: "max";
|
|
3324
3545
|
minLength: "minLength";
|
|
3325
3546
|
maxLength: "maxLength";
|
|
3326
|
-
url: "url";
|
|
3327
3547
|
}>;
|
|
3328
3548
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3329
3549
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3393,13 +3613,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3393
3613
|
type: z.ZodEnum<{
|
|
3394
3614
|
custom: "custom";
|
|
3395
3615
|
pattern: "pattern";
|
|
3616
|
+
url: "url";
|
|
3396
3617
|
email: "email";
|
|
3397
3618
|
required: "required";
|
|
3398
3619
|
min: "min";
|
|
3399
3620
|
max: "max";
|
|
3400
3621
|
minLength: "minLength";
|
|
3401
3622
|
maxLength: "maxLength";
|
|
3402
|
-
url: "url";
|
|
3403
3623
|
}>;
|
|
3404
3624
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3405
3625
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3471,13 +3691,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3471
3691
|
type: z.ZodEnum<{
|
|
3472
3692
|
custom: "custom";
|
|
3473
3693
|
pattern: "pattern";
|
|
3694
|
+
url: "url";
|
|
3474
3695
|
email: "email";
|
|
3475
3696
|
required: "required";
|
|
3476
3697
|
min: "min";
|
|
3477
3698
|
max: "max";
|
|
3478
3699
|
minLength: "minLength";
|
|
3479
3700
|
maxLength: "maxLength";
|
|
3480
|
-
url: "url";
|
|
3481
3701
|
}>;
|
|
3482
3702
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3483
3703
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3556,13 +3776,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3556
3776
|
type: z.ZodEnum<{
|
|
3557
3777
|
custom: "custom";
|
|
3558
3778
|
pattern: "pattern";
|
|
3779
|
+
url: "url";
|
|
3559
3780
|
email: "email";
|
|
3560
3781
|
required: "required";
|
|
3561
3782
|
min: "min";
|
|
3562
3783
|
max: "max";
|
|
3563
3784
|
minLength: "minLength";
|
|
3564
3785
|
maxLength: "maxLength";
|
|
3565
|
-
url: "url";
|
|
3566
3786
|
}>;
|
|
3567
3787
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3568
3788
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3642,13 +3862,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3642
3862
|
type: z.ZodEnum<{
|
|
3643
3863
|
custom: "custom";
|
|
3644
3864
|
pattern: "pattern";
|
|
3865
|
+
url: "url";
|
|
3645
3866
|
email: "email";
|
|
3646
3867
|
required: "required";
|
|
3647
3868
|
min: "min";
|
|
3648
3869
|
max: "max";
|
|
3649
3870
|
minLength: "minLength";
|
|
3650
3871
|
maxLength: "maxLength";
|
|
3651
|
-
url: "url";
|
|
3652
3872
|
}>;
|
|
3653
3873
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3654
3874
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3713,13 +3933,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3713
3933
|
type: z.ZodEnum<{
|
|
3714
3934
|
custom: "custom";
|
|
3715
3935
|
pattern: "pattern";
|
|
3936
|
+
url: "url";
|
|
3716
3937
|
email: "email";
|
|
3717
3938
|
required: "required";
|
|
3718
3939
|
min: "min";
|
|
3719
3940
|
max: "max";
|
|
3720
3941
|
minLength: "minLength";
|
|
3721
3942
|
maxLength: "maxLength";
|
|
3722
|
-
url: "url";
|
|
3723
3943
|
}>;
|
|
3724
3944
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3725
3945
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3785,13 +4005,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3785
4005
|
type: z.ZodEnum<{
|
|
3786
4006
|
custom: "custom";
|
|
3787
4007
|
pattern: "pattern";
|
|
4008
|
+
url: "url";
|
|
3788
4009
|
email: "email";
|
|
3789
4010
|
required: "required";
|
|
3790
4011
|
min: "min";
|
|
3791
4012
|
max: "max";
|
|
3792
4013
|
minLength: "minLength";
|
|
3793
4014
|
maxLength: "maxLength";
|
|
3794
|
-
url: "url";
|
|
3795
4015
|
}>;
|
|
3796
4016
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3797
4017
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3856,13 +4076,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3856
4076
|
type: z.ZodEnum<{
|
|
3857
4077
|
custom: "custom";
|
|
3858
4078
|
pattern: "pattern";
|
|
4079
|
+
url: "url";
|
|
3859
4080
|
email: "email";
|
|
3860
4081
|
required: "required";
|
|
3861
4082
|
min: "min";
|
|
3862
4083
|
max: "max";
|
|
3863
4084
|
minLength: "minLength";
|
|
3864
4085
|
maxLength: "maxLength";
|
|
3865
|
-
url: "url";
|
|
3866
4086
|
}>;
|
|
3867
4087
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3868
4088
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3934,13 +4154,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3934
4154
|
type: z.ZodEnum<{
|
|
3935
4155
|
custom: "custom";
|
|
3936
4156
|
pattern: "pattern";
|
|
4157
|
+
url: "url";
|
|
3937
4158
|
email: "email";
|
|
3938
4159
|
required: "required";
|
|
3939
4160
|
min: "min";
|
|
3940
4161
|
max: "max";
|
|
3941
4162
|
minLength: "minLength";
|
|
3942
4163
|
maxLength: "maxLength";
|
|
3943
|
-
url: "url";
|
|
3944
4164
|
}>;
|
|
3945
4165
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3946
4166
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4014,13 +4234,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4014
4234
|
type: z.ZodEnum<{
|
|
4015
4235
|
custom: "custom";
|
|
4016
4236
|
pattern: "pattern";
|
|
4237
|
+
url: "url";
|
|
4017
4238
|
email: "email";
|
|
4018
4239
|
required: "required";
|
|
4019
4240
|
min: "min";
|
|
4020
4241
|
max: "max";
|
|
4021
4242
|
minLength: "minLength";
|
|
4022
4243
|
maxLength: "maxLength";
|
|
4023
|
-
url: "url";
|
|
4024
4244
|
}>;
|
|
4025
4245
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4026
4246
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4087,13 +4307,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4087
4307
|
type: z.ZodEnum<{
|
|
4088
4308
|
custom: "custom";
|
|
4089
4309
|
pattern: "pattern";
|
|
4310
|
+
url: "url";
|
|
4090
4311
|
email: "email";
|
|
4091
4312
|
required: "required";
|
|
4092
4313
|
min: "min";
|
|
4093
4314
|
max: "max";
|
|
4094
4315
|
minLength: "minLength";
|
|
4095
4316
|
maxLength: "maxLength";
|
|
4096
|
-
url: "url";
|
|
4097
4317
|
}>;
|
|
4098
4318
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4099
4319
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4153,13 +4373,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4153
4373
|
type: z.ZodEnum<{
|
|
4154
4374
|
custom: "custom";
|
|
4155
4375
|
pattern: "pattern";
|
|
4376
|
+
url: "url";
|
|
4156
4377
|
email: "email";
|
|
4157
4378
|
required: "required";
|
|
4158
4379
|
min: "min";
|
|
4159
4380
|
max: "max";
|
|
4160
4381
|
minLength: "minLength";
|
|
4161
4382
|
maxLength: "maxLength";
|
|
4162
|
-
url: "url";
|
|
4163
4383
|
}>;
|
|
4164
4384
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4165
4385
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4230,13 +4450,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4230
4450
|
type: z.ZodEnum<{
|
|
4231
4451
|
custom: "custom";
|
|
4232
4452
|
pattern: "pattern";
|
|
4453
|
+
url: "url";
|
|
4233
4454
|
email: "email";
|
|
4234
4455
|
required: "required";
|
|
4235
4456
|
min: "min";
|
|
4236
4457
|
max: "max";
|
|
4237
4458
|
minLength: "minLength";
|
|
4238
4459
|
maxLength: "maxLength";
|
|
4239
|
-
url: "url";
|
|
4240
4460
|
}>;
|
|
4241
4461
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4242
4462
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4313,13 +4533,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4313
4533
|
type: z.ZodEnum<{
|
|
4314
4534
|
custom: "custom";
|
|
4315
4535
|
pattern: "pattern";
|
|
4536
|
+
url: "url";
|
|
4316
4537
|
email: "email";
|
|
4317
4538
|
required: "required";
|
|
4318
4539
|
min: "min";
|
|
4319
4540
|
max: "max";
|
|
4320
4541
|
minLength: "minLength";
|
|
4321
4542
|
maxLength: "maxLength";
|
|
4322
|
-
url: "url";
|
|
4323
4543
|
}>;
|
|
4324
4544
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4325
4545
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4399,13 +4619,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4399
4619
|
type: z.ZodEnum<{
|
|
4400
4620
|
custom: "custom";
|
|
4401
4621
|
pattern: "pattern";
|
|
4622
|
+
url: "url";
|
|
4402
4623
|
email: "email";
|
|
4403
4624
|
required: "required";
|
|
4404
4625
|
min: "min";
|
|
4405
4626
|
max: "max";
|
|
4406
4627
|
minLength: "minLength";
|
|
4407
4628
|
maxLength: "maxLength";
|
|
4408
|
-
url: "url";
|
|
4409
4629
|
}>;
|
|
4410
4630
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4411
4631
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4466,13 +4686,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4466
4686
|
type: z.ZodEnum<{
|
|
4467
4687
|
custom: "custom";
|
|
4468
4688
|
pattern: "pattern";
|
|
4689
|
+
url: "url";
|
|
4469
4690
|
email: "email";
|
|
4470
4691
|
required: "required";
|
|
4471
4692
|
min: "min";
|
|
4472
4693
|
max: "max";
|
|
4473
4694
|
minLength: "minLength";
|
|
4474
4695
|
maxLength: "maxLength";
|
|
4475
|
-
url: "url";
|
|
4476
4696
|
}>;
|
|
4477
4697
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4478
4698
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4530,13 +4750,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4530
4750
|
type: z.ZodEnum<{
|
|
4531
4751
|
custom: "custom";
|
|
4532
4752
|
pattern: "pattern";
|
|
4753
|
+
url: "url";
|
|
4533
4754
|
email: "email";
|
|
4534
4755
|
required: "required";
|
|
4535
4756
|
min: "min";
|
|
4536
4757
|
max: "max";
|
|
4537
4758
|
minLength: "minLength";
|
|
4538
4759
|
maxLength: "maxLength";
|
|
4539
|
-
url: "url";
|
|
4540
4760
|
}>;
|
|
4541
4761
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4542
4762
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4599,13 +4819,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4599
4819
|
type: z.ZodEnum<{
|
|
4600
4820
|
custom: "custom";
|
|
4601
4821
|
pattern: "pattern";
|
|
4822
|
+
url: "url";
|
|
4602
4823
|
email: "email";
|
|
4603
4824
|
required: "required";
|
|
4604
4825
|
min: "min";
|
|
4605
4826
|
max: "max";
|
|
4606
4827
|
minLength: "minLength";
|
|
4607
4828
|
maxLength: "maxLength";
|
|
4608
|
-
url: "url";
|
|
4609
4829
|
}>;
|
|
4610
4830
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4611
4831
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4663,13 +4883,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4663
4883
|
type: z.ZodEnum<{
|
|
4664
4884
|
custom: "custom";
|
|
4665
4885
|
pattern: "pattern";
|
|
4886
|
+
url: "url";
|
|
4666
4887
|
email: "email";
|
|
4667
4888
|
required: "required";
|
|
4668
4889
|
min: "min";
|
|
4669
4890
|
max: "max";
|
|
4670
4891
|
minLength: "minLength";
|
|
4671
4892
|
maxLength: "maxLength";
|
|
4672
|
-
url: "url";
|
|
4673
4893
|
}>;
|
|
4674
4894
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4675
4895
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4729,13 +4949,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4729
4949
|
type: z.ZodEnum<{
|
|
4730
4950
|
custom: "custom";
|
|
4731
4951
|
pattern: "pattern";
|
|
4952
|
+
url: "url";
|
|
4732
4953
|
email: "email";
|
|
4733
4954
|
required: "required";
|
|
4734
4955
|
min: "min";
|
|
4735
4956
|
max: "max";
|
|
4736
4957
|
minLength: "minLength";
|
|
4737
4958
|
maxLength: "maxLength";
|
|
4738
|
-
url: "url";
|
|
4739
4959
|
}>;
|
|
4740
4960
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4741
4961
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4828,13 +5048,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4828
5048
|
type: z.ZodEnum<{
|
|
4829
5049
|
custom: "custom";
|
|
4830
5050
|
pattern: "pattern";
|
|
5051
|
+
url: "url";
|
|
4831
5052
|
email: "email";
|
|
4832
5053
|
required: "required";
|
|
4833
5054
|
min: "min";
|
|
4834
5055
|
max: "max";
|
|
4835
5056
|
minLength: "minLength";
|
|
4836
5057
|
maxLength: "maxLength";
|
|
4837
|
-
url: "url";
|
|
4838
5058
|
}>;
|
|
4839
5059
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4840
5060
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4916,13 +5136,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4916
5136
|
type: z.ZodEnum<{
|
|
4917
5137
|
custom: "custom";
|
|
4918
5138
|
pattern: "pattern";
|
|
5139
|
+
url: "url";
|
|
4919
5140
|
email: "email";
|
|
4920
5141
|
required: "required";
|
|
4921
5142
|
min: "min";
|
|
4922
5143
|
max: "max";
|
|
4923
5144
|
minLength: "minLength";
|
|
4924
5145
|
maxLength: "maxLength";
|
|
4925
|
-
url: "url";
|
|
4926
5146
|
}>;
|
|
4927
5147
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4928
5148
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4988,13 +5208,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4988
5208
|
type: z.ZodEnum<{
|
|
4989
5209
|
custom: "custom";
|
|
4990
5210
|
pattern: "pattern";
|
|
5211
|
+
url: "url";
|
|
4991
5212
|
email: "email";
|
|
4992
5213
|
required: "required";
|
|
4993
5214
|
min: "min";
|
|
4994
5215
|
max: "max";
|
|
4995
5216
|
minLength: "minLength";
|
|
4996
5217
|
maxLength: "maxLength";
|
|
4997
|
-
url: "url";
|
|
4998
5218
|
}>;
|
|
4999
5219
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
5000
5220
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -5058,13 +5278,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
5058
5278
|
type: z.ZodEnum<{
|
|
5059
5279
|
custom: "custom";
|
|
5060
5280
|
pattern: "pattern";
|
|
5281
|
+
url: "url";
|
|
5061
5282
|
email: "email";
|
|
5062
5283
|
required: "required";
|
|
5063
5284
|
min: "min";
|
|
5064
5285
|
max: "max";
|
|
5065
5286
|
minLength: "minLength";
|
|
5066
5287
|
maxLength: "maxLength";
|
|
5067
|
-
url: "url";
|
|
5068
5288
|
}>;
|
|
5069
5289
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
5070
5290
|
message: z.ZodOptional<z.ZodString>;
|