@encatch/schema 1.3.0-beta.0 → 1.3.0-beta.1
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 +824 -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 +190 -66
- package/dist/types/schemas/fields/app-props-schema.d.ts +101 -33
- package/dist/types/schemas/fields/completion-cta-schema.d.ts +51 -0
- package/dist/types/schemas/fields/field-schema.d.ts +193 -69
- package/dist/types/schemas/fields/form-properties-schema.d.ts +101 -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,37 @@ 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
|
+
}, z.core.$strip>>;
|
|
484
|
+
}, z.core.$strip>>;
|
|
454
485
|
}, z.core.$strip>, z.ZodObject<{
|
|
455
486
|
id: z.ZodString;
|
|
456
487
|
slug: z.ZodOptional<z.ZodString>;
|
|
@@ -462,13 +493,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
462
493
|
type: z.ZodEnum<{
|
|
463
494
|
custom: "custom";
|
|
464
495
|
pattern: "pattern";
|
|
496
|
+
url: "url";
|
|
465
497
|
email: "email";
|
|
466
498
|
required: "required";
|
|
467
499
|
min: "min";
|
|
468
500
|
max: "max";
|
|
469
501
|
minLength: "minLength";
|
|
470
502
|
maxLength: "maxLength";
|
|
471
|
-
url: "url";
|
|
472
503
|
}>;
|
|
473
504
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
474
505
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -527,13 +558,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
527
558
|
type: z.ZodEnum<{
|
|
528
559
|
custom: "custom";
|
|
529
560
|
pattern: "pattern";
|
|
561
|
+
url: "url";
|
|
530
562
|
email: "email";
|
|
531
563
|
required: "required";
|
|
532
564
|
min: "min";
|
|
533
565
|
max: "max";
|
|
534
566
|
minLength: "minLength";
|
|
535
567
|
maxLength: "maxLength";
|
|
536
|
-
url: "url";
|
|
537
568
|
}>;
|
|
538
569
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
539
570
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -576,6 +607,37 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
576
607
|
vimeo: "vimeo";
|
|
577
608
|
}>>;
|
|
578
609
|
type: z.ZodLiteral<"exit_form">;
|
|
610
|
+
completionCta: z.ZodOptional<z.ZodObject<{
|
|
611
|
+
label: z.ZodOptional<z.ZodString>;
|
|
612
|
+
autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
613
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
614
|
+
action: z.ZodLiteral<"dismiss">;
|
|
615
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
616
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
617
|
+
route: z.ZodString;
|
|
618
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
619
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
620
|
+
url: z.ZodString;
|
|
621
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
622
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
623
|
+
url: z.ZodString;
|
|
624
|
+
}, z.core.$strip>], "action">>;
|
|
625
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
626
|
+
action: z.ZodLiteral<"dismiss">;
|
|
627
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
628
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
629
|
+
route: z.ZodString;
|
|
630
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
631
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
632
|
+
url: z.ZodString;
|
|
633
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
634
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
635
|
+
url: z.ZodString;
|
|
636
|
+
}, z.core.$strip>], "action">>;
|
|
637
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
638
|
+
label: z.ZodString;
|
|
639
|
+
}, z.core.$strip>>;
|
|
640
|
+
}, z.core.$strip>>;
|
|
579
641
|
}, z.core.$strip>, z.ZodObject<{
|
|
580
642
|
id: z.ZodString;
|
|
581
643
|
slug: z.ZodOptional<z.ZodString>;
|
|
@@ -589,13 +651,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
589
651
|
type: z.ZodEnum<{
|
|
590
652
|
custom: "custom";
|
|
591
653
|
pattern: "pattern";
|
|
654
|
+
url: "url";
|
|
592
655
|
email: "email";
|
|
593
656
|
required: "required";
|
|
594
657
|
min: "min";
|
|
595
658
|
max: "max";
|
|
596
659
|
minLength: "minLength";
|
|
597
660
|
maxLength: "maxLength";
|
|
598
|
-
url: "url";
|
|
599
661
|
}>;
|
|
600
662
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
601
663
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -657,13 +719,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
657
719
|
type: z.ZodEnum<{
|
|
658
720
|
custom: "custom";
|
|
659
721
|
pattern: "pattern";
|
|
722
|
+
url: "url";
|
|
660
723
|
email: "email";
|
|
661
724
|
required: "required";
|
|
662
725
|
min: "min";
|
|
663
726
|
max: "max";
|
|
664
727
|
minLength: "minLength";
|
|
665
728
|
maxLength: "maxLength";
|
|
666
|
-
url: "url";
|
|
667
729
|
}>;
|
|
668
730
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
669
731
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -719,13 +781,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
719
781
|
type: z.ZodEnum<{
|
|
720
782
|
custom: "custom";
|
|
721
783
|
pattern: "pattern";
|
|
784
|
+
url: "url";
|
|
722
785
|
email: "email";
|
|
723
786
|
required: "required";
|
|
724
787
|
min: "min";
|
|
725
788
|
max: "max";
|
|
726
789
|
minLength: "minLength";
|
|
727
790
|
maxLength: "maxLength";
|
|
728
|
-
url: "url";
|
|
729
791
|
}>;
|
|
730
792
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
731
793
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -820,13 +882,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
820
882
|
type: z.ZodEnum<{
|
|
821
883
|
custom: "custom";
|
|
822
884
|
pattern: "pattern";
|
|
885
|
+
url: "url";
|
|
823
886
|
email: "email";
|
|
824
887
|
required: "required";
|
|
825
888
|
min: "min";
|
|
826
889
|
max: "max";
|
|
827
890
|
minLength: "minLength";
|
|
828
891
|
maxLength: "maxLength";
|
|
829
|
-
url: "url";
|
|
830
892
|
}>;
|
|
831
893
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
832
894
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -896,13 +958,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
896
958
|
type: z.ZodEnum<{
|
|
897
959
|
custom: "custom";
|
|
898
960
|
pattern: "pattern";
|
|
961
|
+
url: "url";
|
|
899
962
|
email: "email";
|
|
900
963
|
required: "required";
|
|
901
964
|
min: "min";
|
|
902
965
|
max: "max";
|
|
903
966
|
minLength: "minLength";
|
|
904
967
|
maxLength: "maxLength";
|
|
905
|
-
url: "url";
|
|
906
968
|
}>;
|
|
907
969
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
908
970
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -974,13 +1036,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
974
1036
|
type: z.ZodEnum<{
|
|
975
1037
|
custom: "custom";
|
|
976
1038
|
pattern: "pattern";
|
|
1039
|
+
url: "url";
|
|
977
1040
|
email: "email";
|
|
978
1041
|
required: "required";
|
|
979
1042
|
min: "min";
|
|
980
1043
|
max: "max";
|
|
981
1044
|
minLength: "minLength";
|
|
982
1045
|
maxLength: "maxLength";
|
|
983
|
-
url: "url";
|
|
984
1046
|
}>;
|
|
985
1047
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
986
1048
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1059,13 +1121,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1059
1121
|
type: z.ZodEnum<{
|
|
1060
1122
|
custom: "custom";
|
|
1061
1123
|
pattern: "pattern";
|
|
1124
|
+
url: "url";
|
|
1062
1125
|
email: "email";
|
|
1063
1126
|
required: "required";
|
|
1064
1127
|
min: "min";
|
|
1065
1128
|
max: "max";
|
|
1066
1129
|
minLength: "minLength";
|
|
1067
1130
|
maxLength: "maxLength";
|
|
1068
|
-
url: "url";
|
|
1069
1131
|
}>;
|
|
1070
1132
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1071
1133
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1145,13 +1207,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1145
1207
|
type: z.ZodEnum<{
|
|
1146
1208
|
custom: "custom";
|
|
1147
1209
|
pattern: "pattern";
|
|
1210
|
+
url: "url";
|
|
1148
1211
|
email: "email";
|
|
1149
1212
|
required: "required";
|
|
1150
1213
|
min: "min";
|
|
1151
1214
|
max: "max";
|
|
1152
1215
|
minLength: "minLength";
|
|
1153
1216
|
maxLength: "maxLength";
|
|
1154
|
-
url: "url";
|
|
1155
1217
|
}>;
|
|
1156
1218
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1157
1219
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1216,13 +1278,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1216
1278
|
type: z.ZodEnum<{
|
|
1217
1279
|
custom: "custom";
|
|
1218
1280
|
pattern: "pattern";
|
|
1281
|
+
url: "url";
|
|
1219
1282
|
email: "email";
|
|
1220
1283
|
required: "required";
|
|
1221
1284
|
min: "min";
|
|
1222
1285
|
max: "max";
|
|
1223
1286
|
minLength: "minLength";
|
|
1224
1287
|
maxLength: "maxLength";
|
|
1225
|
-
url: "url";
|
|
1226
1288
|
}>;
|
|
1227
1289
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1228
1290
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1288,13 +1350,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1288
1350
|
type: z.ZodEnum<{
|
|
1289
1351
|
custom: "custom";
|
|
1290
1352
|
pattern: "pattern";
|
|
1353
|
+
url: "url";
|
|
1291
1354
|
email: "email";
|
|
1292
1355
|
required: "required";
|
|
1293
1356
|
min: "min";
|
|
1294
1357
|
max: "max";
|
|
1295
1358
|
minLength: "minLength";
|
|
1296
1359
|
maxLength: "maxLength";
|
|
1297
|
-
url: "url";
|
|
1298
1360
|
}>;
|
|
1299
1361
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1300
1362
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1359,13 +1421,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1359
1421
|
type: z.ZodEnum<{
|
|
1360
1422
|
custom: "custom";
|
|
1361
1423
|
pattern: "pattern";
|
|
1424
|
+
url: "url";
|
|
1362
1425
|
email: "email";
|
|
1363
1426
|
required: "required";
|
|
1364
1427
|
min: "min";
|
|
1365
1428
|
max: "max";
|
|
1366
1429
|
minLength: "minLength";
|
|
1367
1430
|
maxLength: "maxLength";
|
|
1368
|
-
url: "url";
|
|
1369
1431
|
}>;
|
|
1370
1432
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1371
1433
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1437,13 +1499,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1437
1499
|
type: z.ZodEnum<{
|
|
1438
1500
|
custom: "custom";
|
|
1439
1501
|
pattern: "pattern";
|
|
1502
|
+
url: "url";
|
|
1440
1503
|
email: "email";
|
|
1441
1504
|
required: "required";
|
|
1442
1505
|
min: "min";
|
|
1443
1506
|
max: "max";
|
|
1444
1507
|
minLength: "minLength";
|
|
1445
1508
|
maxLength: "maxLength";
|
|
1446
|
-
url: "url";
|
|
1447
1509
|
}>;
|
|
1448
1510
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1449
1511
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1517,13 +1579,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1517
1579
|
type: z.ZodEnum<{
|
|
1518
1580
|
custom: "custom";
|
|
1519
1581
|
pattern: "pattern";
|
|
1582
|
+
url: "url";
|
|
1520
1583
|
email: "email";
|
|
1521
1584
|
required: "required";
|
|
1522
1585
|
min: "min";
|
|
1523
1586
|
max: "max";
|
|
1524
1587
|
minLength: "minLength";
|
|
1525
1588
|
maxLength: "maxLength";
|
|
1526
|
-
url: "url";
|
|
1527
1589
|
}>;
|
|
1528
1590
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1529
1591
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1590,13 +1652,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1590
1652
|
type: z.ZodEnum<{
|
|
1591
1653
|
custom: "custom";
|
|
1592
1654
|
pattern: "pattern";
|
|
1655
|
+
url: "url";
|
|
1593
1656
|
email: "email";
|
|
1594
1657
|
required: "required";
|
|
1595
1658
|
min: "min";
|
|
1596
1659
|
max: "max";
|
|
1597
1660
|
minLength: "minLength";
|
|
1598
1661
|
maxLength: "maxLength";
|
|
1599
|
-
url: "url";
|
|
1600
1662
|
}>;
|
|
1601
1663
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1602
1664
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1656,13 +1718,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1656
1718
|
type: z.ZodEnum<{
|
|
1657
1719
|
custom: "custom";
|
|
1658
1720
|
pattern: "pattern";
|
|
1721
|
+
url: "url";
|
|
1659
1722
|
email: "email";
|
|
1660
1723
|
required: "required";
|
|
1661
1724
|
min: "min";
|
|
1662
1725
|
max: "max";
|
|
1663
1726
|
minLength: "minLength";
|
|
1664
1727
|
maxLength: "maxLength";
|
|
1665
|
-
url: "url";
|
|
1666
1728
|
}>;
|
|
1667
1729
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1668
1730
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1733,13 +1795,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1733
1795
|
type: z.ZodEnum<{
|
|
1734
1796
|
custom: "custom";
|
|
1735
1797
|
pattern: "pattern";
|
|
1798
|
+
url: "url";
|
|
1736
1799
|
email: "email";
|
|
1737
1800
|
required: "required";
|
|
1738
1801
|
min: "min";
|
|
1739
1802
|
max: "max";
|
|
1740
1803
|
minLength: "minLength";
|
|
1741
1804
|
maxLength: "maxLength";
|
|
1742
|
-
url: "url";
|
|
1743
1805
|
}>;
|
|
1744
1806
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1745
1807
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1816,13 +1878,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1816
1878
|
type: z.ZodEnum<{
|
|
1817
1879
|
custom: "custom";
|
|
1818
1880
|
pattern: "pattern";
|
|
1881
|
+
url: "url";
|
|
1819
1882
|
email: "email";
|
|
1820
1883
|
required: "required";
|
|
1821
1884
|
min: "min";
|
|
1822
1885
|
max: "max";
|
|
1823
1886
|
minLength: "minLength";
|
|
1824
1887
|
maxLength: "maxLength";
|
|
1825
|
-
url: "url";
|
|
1826
1888
|
}>;
|
|
1827
1889
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1828
1890
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1902,13 +1964,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1902
1964
|
type: z.ZodEnum<{
|
|
1903
1965
|
custom: "custom";
|
|
1904
1966
|
pattern: "pattern";
|
|
1967
|
+
url: "url";
|
|
1905
1968
|
email: "email";
|
|
1906
1969
|
required: "required";
|
|
1907
1970
|
min: "min";
|
|
1908
1971
|
max: "max";
|
|
1909
1972
|
minLength: "minLength";
|
|
1910
1973
|
maxLength: "maxLength";
|
|
1911
|
-
url: "url";
|
|
1912
1974
|
}>;
|
|
1913
1975
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1914
1976
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -1969,13 +2031,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
1969
2031
|
type: z.ZodEnum<{
|
|
1970
2032
|
custom: "custom";
|
|
1971
2033
|
pattern: "pattern";
|
|
2034
|
+
url: "url";
|
|
1972
2035
|
email: "email";
|
|
1973
2036
|
required: "required";
|
|
1974
2037
|
min: "min";
|
|
1975
2038
|
max: "max";
|
|
1976
2039
|
minLength: "minLength";
|
|
1977
2040
|
maxLength: "maxLength";
|
|
1978
|
-
url: "url";
|
|
1979
2041
|
}>;
|
|
1980
2042
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1981
2043
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2033,13 +2095,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
2033
2095
|
type: z.ZodEnum<{
|
|
2034
2096
|
custom: "custom";
|
|
2035
2097
|
pattern: "pattern";
|
|
2098
|
+
url: "url";
|
|
2036
2099
|
email: "email";
|
|
2037
2100
|
required: "required";
|
|
2038
2101
|
min: "min";
|
|
2039
2102
|
max: "max";
|
|
2040
2103
|
minLength: "minLength";
|
|
2041
2104
|
maxLength: "maxLength";
|
|
2042
|
-
url: "url";
|
|
2043
2105
|
}>;
|
|
2044
2106
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2045
2107
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2102,13 +2164,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
2102
2164
|
type: z.ZodEnum<{
|
|
2103
2165
|
custom: "custom";
|
|
2104
2166
|
pattern: "pattern";
|
|
2167
|
+
url: "url";
|
|
2105
2168
|
email: "email";
|
|
2106
2169
|
required: "required";
|
|
2107
2170
|
min: "min";
|
|
2108
2171
|
max: "max";
|
|
2109
2172
|
minLength: "minLength";
|
|
2110
2173
|
maxLength: "maxLength";
|
|
2111
|
-
url: "url";
|
|
2112
2174
|
}>;
|
|
2113
2175
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2114
2176
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2166,13 +2228,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
2166
2228
|
type: z.ZodEnum<{
|
|
2167
2229
|
custom: "custom";
|
|
2168
2230
|
pattern: "pattern";
|
|
2231
|
+
url: "url";
|
|
2169
2232
|
email: "email";
|
|
2170
2233
|
required: "required";
|
|
2171
2234
|
min: "min";
|
|
2172
2235
|
max: "max";
|
|
2173
2236
|
minLength: "minLength";
|
|
2174
2237
|
maxLength: "maxLength";
|
|
2175
|
-
url: "url";
|
|
2176
2238
|
}>;
|
|
2177
2239
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2178
2240
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2232,13 +2294,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
2232
2294
|
type: z.ZodEnum<{
|
|
2233
2295
|
custom: "custom";
|
|
2234
2296
|
pattern: "pattern";
|
|
2297
|
+
url: "url";
|
|
2235
2298
|
email: "email";
|
|
2236
2299
|
required: "required";
|
|
2237
2300
|
min: "min";
|
|
2238
2301
|
max: "max";
|
|
2239
2302
|
minLength: "minLength";
|
|
2240
2303
|
maxLength: "maxLength";
|
|
2241
|
-
url: "url";
|
|
2242
2304
|
}>;
|
|
2243
2305
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2244
2306
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2331,13 +2393,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
2331
2393
|
type: z.ZodEnum<{
|
|
2332
2394
|
custom: "custom";
|
|
2333
2395
|
pattern: "pattern";
|
|
2396
|
+
url: "url";
|
|
2334
2397
|
email: "email";
|
|
2335
2398
|
required: "required";
|
|
2336
2399
|
min: "min";
|
|
2337
2400
|
max: "max";
|
|
2338
2401
|
minLength: "minLength";
|
|
2339
2402
|
maxLength: "maxLength";
|
|
2340
|
-
url: "url";
|
|
2341
2403
|
}>;
|
|
2342
2404
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2343
2405
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2419,13 +2481,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
2419
2481
|
type: z.ZodEnum<{
|
|
2420
2482
|
custom: "custom";
|
|
2421
2483
|
pattern: "pattern";
|
|
2484
|
+
url: "url";
|
|
2422
2485
|
email: "email";
|
|
2423
2486
|
required: "required";
|
|
2424
2487
|
min: "min";
|
|
2425
2488
|
max: "max";
|
|
2426
2489
|
minLength: "minLength";
|
|
2427
2490
|
maxLength: "maxLength";
|
|
2428
|
-
url: "url";
|
|
2429
2491
|
}>;
|
|
2430
2492
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2431
2493
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2491,13 +2553,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
2491
2553
|
type: z.ZodEnum<{
|
|
2492
2554
|
custom: "custom";
|
|
2493
2555
|
pattern: "pattern";
|
|
2556
|
+
url: "url";
|
|
2494
2557
|
email: "email";
|
|
2495
2558
|
required: "required";
|
|
2496
2559
|
min: "min";
|
|
2497
2560
|
max: "max";
|
|
2498
2561
|
minLength: "minLength";
|
|
2499
2562
|
maxLength: "maxLength";
|
|
2500
|
-
url: "url";
|
|
2501
2563
|
}>;
|
|
2502
2564
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2503
2565
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2561,13 +2623,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
|
|
|
2561
2623
|
type: z.ZodEnum<{
|
|
2562
2624
|
custom: "custom";
|
|
2563
2625
|
pattern: "pattern";
|
|
2626
|
+
url: "url";
|
|
2564
2627
|
email: "email";
|
|
2565
2628
|
required: "required";
|
|
2566
2629
|
min: "min";
|
|
2567
2630
|
max: "max";
|
|
2568
2631
|
minLength: "minLength";
|
|
2569
2632
|
maxLength: "maxLength";
|
|
2570
|
-
url: "url";
|
|
2571
2633
|
}>;
|
|
2572
2634
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2573
2635
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2691,13 +2753,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2691
2753
|
type: z.ZodEnum<{
|
|
2692
2754
|
custom: "custom";
|
|
2693
2755
|
pattern: "pattern";
|
|
2756
|
+
url: "url";
|
|
2694
2757
|
email: "email";
|
|
2695
2758
|
required: "required";
|
|
2696
2759
|
min: "min";
|
|
2697
2760
|
max: "max";
|
|
2698
2761
|
minLength: "minLength";
|
|
2699
2762
|
maxLength: "maxLength";
|
|
2700
|
-
url: "url";
|
|
2701
2763
|
}>;
|
|
2702
2764
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2703
2765
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2771,13 +2833,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2771
2833
|
type: z.ZodEnum<{
|
|
2772
2834
|
custom: "custom";
|
|
2773
2835
|
pattern: "pattern";
|
|
2836
|
+
url: "url";
|
|
2774
2837
|
email: "email";
|
|
2775
2838
|
required: "required";
|
|
2776
2839
|
min: "min";
|
|
2777
2840
|
max: "max";
|
|
2778
2841
|
minLength: "minLength";
|
|
2779
2842
|
maxLength: "maxLength";
|
|
2780
|
-
url: "url";
|
|
2781
2843
|
}>;
|
|
2782
2844
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2783
2845
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2833,13 +2895,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2833
2895
|
type: z.ZodEnum<{
|
|
2834
2896
|
custom: "custom";
|
|
2835
2897
|
pattern: "pattern";
|
|
2898
|
+
url: "url";
|
|
2836
2899
|
email: "email";
|
|
2837
2900
|
required: "required";
|
|
2838
2901
|
min: "min";
|
|
2839
2902
|
max: "max";
|
|
2840
2903
|
minLength: "minLength";
|
|
2841
2904
|
maxLength: "maxLength";
|
|
2842
|
-
url: "url";
|
|
2843
2905
|
}>;
|
|
2844
2906
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2845
2907
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2896,13 +2958,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2896
2958
|
type: z.ZodEnum<{
|
|
2897
2959
|
custom: "custom";
|
|
2898
2960
|
pattern: "pattern";
|
|
2961
|
+
url: "url";
|
|
2899
2962
|
email: "email";
|
|
2900
2963
|
required: "required";
|
|
2901
2964
|
min: "min";
|
|
2902
2965
|
max: "max";
|
|
2903
2966
|
minLength: "minLength";
|
|
2904
2967
|
maxLength: "maxLength";
|
|
2905
|
-
url: "url";
|
|
2906
2968
|
}>;
|
|
2907
2969
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2908
2970
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -2948,6 +3010,37 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2948
3010
|
title: z.ZodString;
|
|
2949
3011
|
description: z.ZodOptional<z.ZodString>;
|
|
2950
3012
|
imageUrl: z.ZodOptional<z.ZodString>;
|
|
3013
|
+
completionCta: z.ZodOptional<z.ZodObject<{
|
|
3014
|
+
label: z.ZodOptional<z.ZodString>;
|
|
3015
|
+
autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
3016
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3017
|
+
action: z.ZodLiteral<"dismiss">;
|
|
3018
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3019
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
3020
|
+
route: z.ZodString;
|
|
3021
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3022
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
3023
|
+
url: z.ZodString;
|
|
3024
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3025
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
3026
|
+
url: z.ZodString;
|
|
3027
|
+
}, z.core.$strip>], "action">>;
|
|
3028
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3029
|
+
action: z.ZodLiteral<"dismiss">;
|
|
3030
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3031
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
3032
|
+
route: z.ZodString;
|
|
3033
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3034
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
3035
|
+
url: z.ZodString;
|
|
3036
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3037
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
3038
|
+
url: z.ZodString;
|
|
3039
|
+
}, z.core.$strip>], "action">>;
|
|
3040
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
3041
|
+
label: z.ZodString;
|
|
3042
|
+
}, z.core.$strip>>;
|
|
3043
|
+
}, z.core.$strip>>;
|
|
2951
3044
|
}, z.core.$strip>, z.ZodObject<{
|
|
2952
3045
|
id: z.ZodString;
|
|
2953
3046
|
slug: z.ZodOptional<z.ZodString>;
|
|
@@ -2959,13 +3052,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
2959
3052
|
type: z.ZodEnum<{
|
|
2960
3053
|
custom: "custom";
|
|
2961
3054
|
pattern: "pattern";
|
|
3055
|
+
url: "url";
|
|
2962
3056
|
email: "email";
|
|
2963
3057
|
required: "required";
|
|
2964
3058
|
min: "min";
|
|
2965
3059
|
max: "max";
|
|
2966
3060
|
minLength: "minLength";
|
|
2967
3061
|
maxLength: "maxLength";
|
|
2968
|
-
url: "url";
|
|
2969
3062
|
}>;
|
|
2970
3063
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2971
3064
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3024,13 +3117,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3024
3117
|
type: z.ZodEnum<{
|
|
3025
3118
|
custom: "custom";
|
|
3026
3119
|
pattern: "pattern";
|
|
3120
|
+
url: "url";
|
|
3027
3121
|
email: "email";
|
|
3028
3122
|
required: "required";
|
|
3029
3123
|
min: "min";
|
|
3030
3124
|
max: "max";
|
|
3031
3125
|
minLength: "minLength";
|
|
3032
3126
|
maxLength: "maxLength";
|
|
3033
|
-
url: "url";
|
|
3034
3127
|
}>;
|
|
3035
3128
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3036
3129
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3073,6 +3166,37 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3073
3166
|
vimeo: "vimeo";
|
|
3074
3167
|
}>>;
|
|
3075
3168
|
type: z.ZodLiteral<"exit_form">;
|
|
3169
|
+
completionCta: z.ZodOptional<z.ZodObject<{
|
|
3170
|
+
label: z.ZodOptional<z.ZodString>;
|
|
3171
|
+
autoTriggerDelayMs: z.ZodOptional<z.ZodNumber>;
|
|
3172
|
+
inApp: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3173
|
+
action: z.ZodLiteral<"dismiss">;
|
|
3174
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3175
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
3176
|
+
route: z.ZodString;
|
|
3177
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3178
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
3179
|
+
url: z.ZodString;
|
|
3180
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3181
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
3182
|
+
url: z.ZodString;
|
|
3183
|
+
}, z.core.$strip>], "action">>;
|
|
3184
|
+
link: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3185
|
+
action: z.ZodLiteral<"dismiss">;
|
|
3186
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3187
|
+
action: z.ZodLiteral<"app_navigate">;
|
|
3188
|
+
route: z.ZodString;
|
|
3189
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3190
|
+
action: z.ZodLiteral<"redirect_internal">;
|
|
3191
|
+
url: z.ZodString;
|
|
3192
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3193
|
+
action: z.ZodLiteral<"redirect_external">;
|
|
3194
|
+
url: z.ZodString;
|
|
3195
|
+
}, z.core.$strip>], "action">>;
|
|
3196
|
+
secondary: z.ZodOptional<z.ZodObject<{
|
|
3197
|
+
label: z.ZodString;
|
|
3198
|
+
}, z.core.$strip>>;
|
|
3199
|
+
}, z.core.$strip>>;
|
|
3076
3200
|
}, z.core.$strip>, z.ZodObject<{
|
|
3077
3201
|
id: z.ZodString;
|
|
3078
3202
|
slug: z.ZodOptional<z.ZodString>;
|
|
@@ -3086,13 +3210,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3086
3210
|
type: z.ZodEnum<{
|
|
3087
3211
|
custom: "custom";
|
|
3088
3212
|
pattern: "pattern";
|
|
3213
|
+
url: "url";
|
|
3089
3214
|
email: "email";
|
|
3090
3215
|
required: "required";
|
|
3091
3216
|
min: "min";
|
|
3092
3217
|
max: "max";
|
|
3093
3218
|
minLength: "minLength";
|
|
3094
3219
|
maxLength: "maxLength";
|
|
3095
|
-
url: "url";
|
|
3096
3220
|
}>;
|
|
3097
3221
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3098
3222
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3154,13 +3278,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3154
3278
|
type: z.ZodEnum<{
|
|
3155
3279
|
custom: "custom";
|
|
3156
3280
|
pattern: "pattern";
|
|
3281
|
+
url: "url";
|
|
3157
3282
|
email: "email";
|
|
3158
3283
|
required: "required";
|
|
3159
3284
|
min: "min";
|
|
3160
3285
|
max: "max";
|
|
3161
3286
|
minLength: "minLength";
|
|
3162
3287
|
maxLength: "maxLength";
|
|
3163
|
-
url: "url";
|
|
3164
3288
|
}>;
|
|
3165
3289
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3166
3290
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3216,13 +3340,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3216
3340
|
type: z.ZodEnum<{
|
|
3217
3341
|
custom: "custom";
|
|
3218
3342
|
pattern: "pattern";
|
|
3343
|
+
url: "url";
|
|
3219
3344
|
email: "email";
|
|
3220
3345
|
required: "required";
|
|
3221
3346
|
min: "min";
|
|
3222
3347
|
max: "max";
|
|
3223
3348
|
minLength: "minLength";
|
|
3224
3349
|
maxLength: "maxLength";
|
|
3225
|
-
url: "url";
|
|
3226
3350
|
}>;
|
|
3227
3351
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3228
3352
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3317,13 +3441,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3317
3441
|
type: z.ZodEnum<{
|
|
3318
3442
|
custom: "custom";
|
|
3319
3443
|
pattern: "pattern";
|
|
3444
|
+
url: "url";
|
|
3320
3445
|
email: "email";
|
|
3321
3446
|
required: "required";
|
|
3322
3447
|
min: "min";
|
|
3323
3448
|
max: "max";
|
|
3324
3449
|
minLength: "minLength";
|
|
3325
3450
|
maxLength: "maxLength";
|
|
3326
|
-
url: "url";
|
|
3327
3451
|
}>;
|
|
3328
3452
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3329
3453
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3393,13 +3517,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3393
3517
|
type: z.ZodEnum<{
|
|
3394
3518
|
custom: "custom";
|
|
3395
3519
|
pattern: "pattern";
|
|
3520
|
+
url: "url";
|
|
3396
3521
|
email: "email";
|
|
3397
3522
|
required: "required";
|
|
3398
3523
|
min: "min";
|
|
3399
3524
|
max: "max";
|
|
3400
3525
|
minLength: "minLength";
|
|
3401
3526
|
maxLength: "maxLength";
|
|
3402
|
-
url: "url";
|
|
3403
3527
|
}>;
|
|
3404
3528
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3405
3529
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3471,13 +3595,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3471
3595
|
type: z.ZodEnum<{
|
|
3472
3596
|
custom: "custom";
|
|
3473
3597
|
pattern: "pattern";
|
|
3598
|
+
url: "url";
|
|
3474
3599
|
email: "email";
|
|
3475
3600
|
required: "required";
|
|
3476
3601
|
min: "min";
|
|
3477
3602
|
max: "max";
|
|
3478
3603
|
minLength: "minLength";
|
|
3479
3604
|
maxLength: "maxLength";
|
|
3480
|
-
url: "url";
|
|
3481
3605
|
}>;
|
|
3482
3606
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3483
3607
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3556,13 +3680,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3556
3680
|
type: z.ZodEnum<{
|
|
3557
3681
|
custom: "custom";
|
|
3558
3682
|
pattern: "pattern";
|
|
3683
|
+
url: "url";
|
|
3559
3684
|
email: "email";
|
|
3560
3685
|
required: "required";
|
|
3561
3686
|
min: "min";
|
|
3562
3687
|
max: "max";
|
|
3563
3688
|
minLength: "minLength";
|
|
3564
3689
|
maxLength: "maxLength";
|
|
3565
|
-
url: "url";
|
|
3566
3690
|
}>;
|
|
3567
3691
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3568
3692
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3642,13 +3766,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3642
3766
|
type: z.ZodEnum<{
|
|
3643
3767
|
custom: "custom";
|
|
3644
3768
|
pattern: "pattern";
|
|
3769
|
+
url: "url";
|
|
3645
3770
|
email: "email";
|
|
3646
3771
|
required: "required";
|
|
3647
3772
|
min: "min";
|
|
3648
3773
|
max: "max";
|
|
3649
3774
|
minLength: "minLength";
|
|
3650
3775
|
maxLength: "maxLength";
|
|
3651
|
-
url: "url";
|
|
3652
3776
|
}>;
|
|
3653
3777
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3654
3778
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3713,13 +3837,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3713
3837
|
type: z.ZodEnum<{
|
|
3714
3838
|
custom: "custom";
|
|
3715
3839
|
pattern: "pattern";
|
|
3840
|
+
url: "url";
|
|
3716
3841
|
email: "email";
|
|
3717
3842
|
required: "required";
|
|
3718
3843
|
min: "min";
|
|
3719
3844
|
max: "max";
|
|
3720
3845
|
minLength: "minLength";
|
|
3721
3846
|
maxLength: "maxLength";
|
|
3722
|
-
url: "url";
|
|
3723
3847
|
}>;
|
|
3724
3848
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3725
3849
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3785,13 +3909,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3785
3909
|
type: z.ZodEnum<{
|
|
3786
3910
|
custom: "custom";
|
|
3787
3911
|
pattern: "pattern";
|
|
3912
|
+
url: "url";
|
|
3788
3913
|
email: "email";
|
|
3789
3914
|
required: "required";
|
|
3790
3915
|
min: "min";
|
|
3791
3916
|
max: "max";
|
|
3792
3917
|
minLength: "minLength";
|
|
3793
3918
|
maxLength: "maxLength";
|
|
3794
|
-
url: "url";
|
|
3795
3919
|
}>;
|
|
3796
3920
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3797
3921
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3856,13 +3980,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3856
3980
|
type: z.ZodEnum<{
|
|
3857
3981
|
custom: "custom";
|
|
3858
3982
|
pattern: "pattern";
|
|
3983
|
+
url: "url";
|
|
3859
3984
|
email: "email";
|
|
3860
3985
|
required: "required";
|
|
3861
3986
|
min: "min";
|
|
3862
3987
|
max: "max";
|
|
3863
3988
|
minLength: "minLength";
|
|
3864
3989
|
maxLength: "maxLength";
|
|
3865
|
-
url: "url";
|
|
3866
3990
|
}>;
|
|
3867
3991
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3868
3992
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -3934,13 +4058,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
3934
4058
|
type: z.ZodEnum<{
|
|
3935
4059
|
custom: "custom";
|
|
3936
4060
|
pattern: "pattern";
|
|
4061
|
+
url: "url";
|
|
3937
4062
|
email: "email";
|
|
3938
4063
|
required: "required";
|
|
3939
4064
|
min: "min";
|
|
3940
4065
|
max: "max";
|
|
3941
4066
|
minLength: "minLength";
|
|
3942
4067
|
maxLength: "maxLength";
|
|
3943
|
-
url: "url";
|
|
3944
4068
|
}>;
|
|
3945
4069
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3946
4070
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4014,13 +4138,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4014
4138
|
type: z.ZodEnum<{
|
|
4015
4139
|
custom: "custom";
|
|
4016
4140
|
pattern: "pattern";
|
|
4141
|
+
url: "url";
|
|
4017
4142
|
email: "email";
|
|
4018
4143
|
required: "required";
|
|
4019
4144
|
min: "min";
|
|
4020
4145
|
max: "max";
|
|
4021
4146
|
minLength: "minLength";
|
|
4022
4147
|
maxLength: "maxLength";
|
|
4023
|
-
url: "url";
|
|
4024
4148
|
}>;
|
|
4025
4149
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4026
4150
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4087,13 +4211,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4087
4211
|
type: z.ZodEnum<{
|
|
4088
4212
|
custom: "custom";
|
|
4089
4213
|
pattern: "pattern";
|
|
4214
|
+
url: "url";
|
|
4090
4215
|
email: "email";
|
|
4091
4216
|
required: "required";
|
|
4092
4217
|
min: "min";
|
|
4093
4218
|
max: "max";
|
|
4094
4219
|
minLength: "minLength";
|
|
4095
4220
|
maxLength: "maxLength";
|
|
4096
|
-
url: "url";
|
|
4097
4221
|
}>;
|
|
4098
4222
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4099
4223
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4153,13 +4277,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4153
4277
|
type: z.ZodEnum<{
|
|
4154
4278
|
custom: "custom";
|
|
4155
4279
|
pattern: "pattern";
|
|
4280
|
+
url: "url";
|
|
4156
4281
|
email: "email";
|
|
4157
4282
|
required: "required";
|
|
4158
4283
|
min: "min";
|
|
4159
4284
|
max: "max";
|
|
4160
4285
|
minLength: "minLength";
|
|
4161
4286
|
maxLength: "maxLength";
|
|
4162
|
-
url: "url";
|
|
4163
4287
|
}>;
|
|
4164
4288
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4165
4289
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4230,13 +4354,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4230
4354
|
type: z.ZodEnum<{
|
|
4231
4355
|
custom: "custom";
|
|
4232
4356
|
pattern: "pattern";
|
|
4357
|
+
url: "url";
|
|
4233
4358
|
email: "email";
|
|
4234
4359
|
required: "required";
|
|
4235
4360
|
min: "min";
|
|
4236
4361
|
max: "max";
|
|
4237
4362
|
minLength: "minLength";
|
|
4238
4363
|
maxLength: "maxLength";
|
|
4239
|
-
url: "url";
|
|
4240
4364
|
}>;
|
|
4241
4365
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4242
4366
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4313,13 +4437,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4313
4437
|
type: z.ZodEnum<{
|
|
4314
4438
|
custom: "custom";
|
|
4315
4439
|
pattern: "pattern";
|
|
4440
|
+
url: "url";
|
|
4316
4441
|
email: "email";
|
|
4317
4442
|
required: "required";
|
|
4318
4443
|
min: "min";
|
|
4319
4444
|
max: "max";
|
|
4320
4445
|
minLength: "minLength";
|
|
4321
4446
|
maxLength: "maxLength";
|
|
4322
|
-
url: "url";
|
|
4323
4447
|
}>;
|
|
4324
4448
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4325
4449
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4399,13 +4523,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4399
4523
|
type: z.ZodEnum<{
|
|
4400
4524
|
custom: "custom";
|
|
4401
4525
|
pattern: "pattern";
|
|
4526
|
+
url: "url";
|
|
4402
4527
|
email: "email";
|
|
4403
4528
|
required: "required";
|
|
4404
4529
|
min: "min";
|
|
4405
4530
|
max: "max";
|
|
4406
4531
|
minLength: "minLength";
|
|
4407
4532
|
maxLength: "maxLength";
|
|
4408
|
-
url: "url";
|
|
4409
4533
|
}>;
|
|
4410
4534
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4411
4535
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4466,13 +4590,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4466
4590
|
type: z.ZodEnum<{
|
|
4467
4591
|
custom: "custom";
|
|
4468
4592
|
pattern: "pattern";
|
|
4593
|
+
url: "url";
|
|
4469
4594
|
email: "email";
|
|
4470
4595
|
required: "required";
|
|
4471
4596
|
min: "min";
|
|
4472
4597
|
max: "max";
|
|
4473
4598
|
minLength: "minLength";
|
|
4474
4599
|
maxLength: "maxLength";
|
|
4475
|
-
url: "url";
|
|
4476
4600
|
}>;
|
|
4477
4601
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4478
4602
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4530,13 +4654,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4530
4654
|
type: z.ZodEnum<{
|
|
4531
4655
|
custom: "custom";
|
|
4532
4656
|
pattern: "pattern";
|
|
4657
|
+
url: "url";
|
|
4533
4658
|
email: "email";
|
|
4534
4659
|
required: "required";
|
|
4535
4660
|
min: "min";
|
|
4536
4661
|
max: "max";
|
|
4537
4662
|
minLength: "minLength";
|
|
4538
4663
|
maxLength: "maxLength";
|
|
4539
|
-
url: "url";
|
|
4540
4664
|
}>;
|
|
4541
4665
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4542
4666
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4599,13 +4723,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4599
4723
|
type: z.ZodEnum<{
|
|
4600
4724
|
custom: "custom";
|
|
4601
4725
|
pattern: "pattern";
|
|
4726
|
+
url: "url";
|
|
4602
4727
|
email: "email";
|
|
4603
4728
|
required: "required";
|
|
4604
4729
|
min: "min";
|
|
4605
4730
|
max: "max";
|
|
4606
4731
|
minLength: "minLength";
|
|
4607
4732
|
maxLength: "maxLength";
|
|
4608
|
-
url: "url";
|
|
4609
4733
|
}>;
|
|
4610
4734
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4611
4735
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4663,13 +4787,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4663
4787
|
type: z.ZodEnum<{
|
|
4664
4788
|
custom: "custom";
|
|
4665
4789
|
pattern: "pattern";
|
|
4790
|
+
url: "url";
|
|
4666
4791
|
email: "email";
|
|
4667
4792
|
required: "required";
|
|
4668
4793
|
min: "min";
|
|
4669
4794
|
max: "max";
|
|
4670
4795
|
minLength: "minLength";
|
|
4671
4796
|
maxLength: "maxLength";
|
|
4672
|
-
url: "url";
|
|
4673
4797
|
}>;
|
|
4674
4798
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4675
4799
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4729,13 +4853,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4729
4853
|
type: z.ZodEnum<{
|
|
4730
4854
|
custom: "custom";
|
|
4731
4855
|
pattern: "pattern";
|
|
4856
|
+
url: "url";
|
|
4732
4857
|
email: "email";
|
|
4733
4858
|
required: "required";
|
|
4734
4859
|
min: "min";
|
|
4735
4860
|
max: "max";
|
|
4736
4861
|
minLength: "minLength";
|
|
4737
4862
|
maxLength: "maxLength";
|
|
4738
|
-
url: "url";
|
|
4739
4863
|
}>;
|
|
4740
4864
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4741
4865
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4828,13 +4952,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4828
4952
|
type: z.ZodEnum<{
|
|
4829
4953
|
custom: "custom";
|
|
4830
4954
|
pattern: "pattern";
|
|
4955
|
+
url: "url";
|
|
4831
4956
|
email: "email";
|
|
4832
4957
|
required: "required";
|
|
4833
4958
|
min: "min";
|
|
4834
4959
|
max: "max";
|
|
4835
4960
|
minLength: "minLength";
|
|
4836
4961
|
maxLength: "maxLength";
|
|
4837
|
-
url: "url";
|
|
4838
4962
|
}>;
|
|
4839
4963
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4840
4964
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4916,13 +5040,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4916
5040
|
type: z.ZodEnum<{
|
|
4917
5041
|
custom: "custom";
|
|
4918
5042
|
pattern: "pattern";
|
|
5043
|
+
url: "url";
|
|
4919
5044
|
email: "email";
|
|
4920
5045
|
required: "required";
|
|
4921
5046
|
min: "min";
|
|
4922
5047
|
max: "max";
|
|
4923
5048
|
minLength: "minLength";
|
|
4924
5049
|
maxLength: "maxLength";
|
|
4925
|
-
url: "url";
|
|
4926
5050
|
}>;
|
|
4927
5051
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4928
5052
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -4988,13 +5112,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
4988
5112
|
type: z.ZodEnum<{
|
|
4989
5113
|
custom: "custom";
|
|
4990
5114
|
pattern: "pattern";
|
|
5115
|
+
url: "url";
|
|
4991
5116
|
email: "email";
|
|
4992
5117
|
required: "required";
|
|
4993
5118
|
min: "min";
|
|
4994
5119
|
max: "max";
|
|
4995
5120
|
minLength: "minLength";
|
|
4996
5121
|
maxLength: "maxLength";
|
|
4997
|
-
url: "url";
|
|
4998
5122
|
}>;
|
|
4999
5123
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
5000
5124
|
message: z.ZodOptional<z.ZodString>;
|
|
@@ -5058,13 +5182,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
|
|
|
5058
5182
|
type: z.ZodEnum<{
|
|
5059
5183
|
custom: "custom";
|
|
5060
5184
|
pattern: "pattern";
|
|
5185
|
+
url: "url";
|
|
5061
5186
|
email: "email";
|
|
5062
5187
|
required: "required";
|
|
5063
5188
|
min: "min";
|
|
5064
5189
|
max: "max";
|
|
5065
5190
|
minLength: "minLength";
|
|
5066
5191
|
maxLength: "maxLength";
|
|
5067
|
-
url: "url";
|
|
5068
5192
|
}>;
|
|
5069
5193
|
value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
5070
5194
|
message: z.ZodOptional<z.ZodString>;
|