@encatch/schema 1.0.1-beta.2 → 1.1.0-beta.10

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.
@@ -86,7 +86,7 @@ export declare const feedbackConfigurationItemSchema: z.ZodObject<{
86
86
  customPosition: z.ZodBoolean;
87
87
  customIconPosition: z.ZodBoolean;
88
88
  customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
89
- allowMultipleQuestionsPerSection: z.ZodBoolean;
89
+ enableShareableKeyboardNavigation: z.ZodDefault<z.ZodBoolean>;
90
90
  rtl: z.ZodBoolean;
91
91
  previousButton: z.ZodEnum<{
92
92
  never: "never";
@@ -97,28 +97,6 @@ export declare const feedbackConfigurationItemSchema: z.ZodObject<{
97
97
  selectedIconPosition: z.ZodString;
98
98
  selectedPosition: z.ZodString;
99
99
  }, z.core.$strip>;
100
- frequencyAndScheduling: z.ZodOptional<z.ZodObject<{
101
- surveyType: z.ZodEnum<{
102
- S: "S";
103
- R: "R";
104
- }>;
105
- showOnce: z.ZodEnum<{
106
- Y: "Y";
107
- N: "N";
108
- }>;
109
- stopWhenResponsesCount: z.ZodString;
110
- recurringValue: z.ZodString;
111
- recurringUnit: z.ZodEnum<{
112
- minutes: "minutes";
113
- hours: "hours";
114
- days: "days";
115
- weeks: "weeks";
116
- months: "months";
117
- years: "years";
118
- }>;
119
- startDate: z.ZodString;
120
- stopDate: z.ZodString;
121
- }, z.core.$strip>>;
122
100
  }, z.core.$strip>;
123
101
  export declare const fetchFormConfigSchema: z.ZodObject<{
124
102
  feedbackConfigurationId: z.ZodString;
@@ -193,9 +171,18 @@ export declare const formConfigurationResponseSchema: z.ZodObject<{
193
171
  formTitle: z.ZodString;
194
172
  formDescription: z.ZodString;
195
173
  }, z.core.$strip>;
174
+ export declare const logicJumpRuleSchema: z.ZodObject<{
175
+ jsonLogic: z.ZodRecord<z.ZodString, z.ZodUnknown>;
176
+ targetQuestionId: z.ZodString;
177
+ }, z.core.$strip>;
178
+ export declare const logicJumpRulesSchema: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
179
+ jsonLogic: z.ZodRecord<z.ZodString, z.ZodUnknown>;
180
+ targetQuestionId: z.ZodString;
181
+ }, z.core.$strip>>>;
196
182
  export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
197
183
  questions: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
198
184
  id: z.ZodString;
185
+ slug: z.ZodOptional<z.ZodString>;
199
186
  title: z.ZodString;
200
187
  description: z.ZodOptional<z.ZodString>;
201
188
  describe: z.ZodOptional<z.ZodString>;
@@ -204,15 +191,15 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
204
191
  errorMessage: z.ZodOptional<z.ZodString>;
205
192
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
206
193
  type: z.ZodEnum<{
194
+ custom: "custom";
195
+ pattern: "pattern";
207
196
  required: "required";
208
197
  min: "min";
209
198
  max: "max";
210
199
  minLength: "minLength";
211
200
  maxLength: "maxLength";
212
- pattern: "pattern";
213
201
  email: "email";
214
202
  url: "url";
215
- custom: "custom";
216
203
  }>;
217
204
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
218
205
  message: z.ZodOptional<z.ZodString>;
@@ -243,7 +230,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
243
230
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
244
231
  left: "left";
245
232
  center: "center";
233
+ justify: "justify";
246
234
  }>>>;
235
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
247
236
  type: z.ZodLiteral<"rating">;
248
237
  showLabels: z.ZodOptional<z.ZodBoolean>;
249
238
  minLabel: z.ZodOptional<z.ZodString>;
@@ -265,6 +254,7 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
265
254
  color: z.ZodOptional<z.ZodString>;
266
255
  }, z.core.$strip>, z.ZodObject<{
267
256
  id: z.ZodString;
257
+ slug: z.ZodOptional<z.ZodString>;
268
258
  title: z.ZodString;
269
259
  description: z.ZodOptional<z.ZodString>;
270
260
  describe: z.ZodOptional<z.ZodString>;
@@ -273,15 +263,15 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
273
263
  errorMessage: z.ZodOptional<z.ZodString>;
274
264
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
275
265
  type: z.ZodEnum<{
266
+ custom: "custom";
267
+ pattern: "pattern";
276
268
  required: "required";
277
269
  min: "min";
278
270
  max: "max";
279
271
  minLength: "minLength";
280
272
  maxLength: "maxLength";
281
- pattern: "pattern";
282
273
  email: "email";
283
274
  url: "url";
284
- custom: "custom";
285
275
  }>;
286
276
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
287
277
  message: z.ZodOptional<z.ZodString>;
@@ -312,27 +302,30 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
312
302
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
313
303
  left: "left";
314
304
  center: "center";
305
+ justify: "justify";
315
306
  }>>>;
307
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
316
308
  type: z.ZodLiteral<"annotation">;
317
309
  annotationText: z.ZodOptional<z.ZodString>;
318
310
  noAnnotationText: z.ZodOptional<z.ZodString>;
319
311
  }, z.core.$strip>, z.ZodObject<{
320
312
  id: z.ZodString;
313
+ slug: z.ZodOptional<z.ZodString>;
321
314
  describe: z.ZodOptional<z.ZodString>;
322
315
  required: z.ZodDefault<z.ZodBoolean>;
323
316
  isHidden: z.ZodDefault<z.ZodBoolean>;
324
317
  errorMessage: z.ZodOptional<z.ZodString>;
325
318
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
326
319
  type: z.ZodEnum<{
320
+ custom: "custom";
321
+ pattern: "pattern";
327
322
  required: "required";
328
323
  min: "min";
329
324
  max: "max";
330
325
  minLength: "minLength";
331
326
  maxLength: "maxLength";
332
- pattern: "pattern";
333
327
  email: "email";
334
328
  url: "url";
335
- custom: "custom";
336
329
  }>;
337
330
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
338
331
  message: z.ZodOptional<z.ZodString>;
@@ -363,29 +356,31 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
363
356
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
364
357
  left: "left";
365
358
  center: "center";
359
+ justify: "justify";
366
360
  }>>>;
361
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
367
362
  type: z.ZodLiteral<"welcome">;
368
363
  title: z.ZodString;
369
364
  description: z.ZodOptional<z.ZodString>;
370
- buttonLabel: z.ZodOptional<z.ZodString>;
371
365
  imageUrl: z.ZodOptional<z.ZodString>;
372
366
  }, z.core.$strip>, z.ZodObject<{
373
367
  id: z.ZodString;
368
+ slug: z.ZodOptional<z.ZodString>;
374
369
  describe: z.ZodOptional<z.ZodString>;
375
370
  required: z.ZodDefault<z.ZodBoolean>;
376
371
  isHidden: z.ZodDefault<z.ZodBoolean>;
377
372
  errorMessage: z.ZodOptional<z.ZodString>;
378
373
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
379
374
  type: z.ZodEnum<{
375
+ custom: "custom";
376
+ pattern: "pattern";
380
377
  required: "required";
381
378
  min: "min";
382
379
  max: "max";
383
380
  minLength: "minLength";
384
381
  maxLength: "maxLength";
385
- pattern: "pattern";
386
382
  email: "email";
387
383
  url: "url";
388
- custom: "custom";
389
384
  }>;
390
385
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
391
386
  message: z.ZodOptional<z.ZodString>;
@@ -416,29 +411,31 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
416
411
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
417
412
  left: "left";
418
413
  center: "center";
414
+ justify: "justify";
419
415
  }>>>;
416
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
420
417
  type: z.ZodLiteral<"thank_you">;
421
418
  title: z.ZodString;
422
419
  description: z.ZodOptional<z.ZodString>;
423
- buttonLabel: z.ZodOptional<z.ZodString>;
424
420
  imageUrl: z.ZodOptional<z.ZodString>;
425
421
  }, z.core.$strip>, z.ZodObject<{
426
422
  id: z.ZodString;
423
+ slug: z.ZodOptional<z.ZodString>;
427
424
  describe: z.ZodOptional<z.ZodString>;
428
425
  required: z.ZodDefault<z.ZodBoolean>;
429
426
  isHidden: z.ZodDefault<z.ZodBoolean>;
430
427
  errorMessage: z.ZodOptional<z.ZodString>;
431
428
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
432
429
  type: z.ZodEnum<{
430
+ custom: "custom";
431
+ pattern: "pattern";
433
432
  required: "required";
434
433
  min: "min";
435
434
  max: "max";
436
435
  minLength: "minLength";
437
436
  maxLength: "maxLength";
438
- pattern: "pattern";
439
437
  email: "email";
440
438
  url: "url";
441
- custom: "custom";
442
439
  }>;
443
440
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
444
441
  message: z.ZodOptional<z.ZodString>;
@@ -469,14 +466,16 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
469
466
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
470
467
  left: "left";
471
468
  center: "center";
469
+ justify: "justify";
472
470
  }>>>;
471
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
473
472
  type: z.ZodLiteral<"message_panel">;
474
473
  title: z.ZodString;
475
474
  description: z.ZodOptional<z.ZodString>;
476
- buttonLabel: z.ZodOptional<z.ZodString>;
477
475
  imageUrl: z.ZodOptional<z.ZodString>;
478
476
  }, z.core.$strip>, z.ZodObject<{
479
477
  id: z.ZodString;
478
+ slug: z.ZodOptional<z.ZodString>;
480
479
  title: z.ZodString;
481
480
  description: z.ZodOptional<z.ZodString>;
482
481
  describe: z.ZodOptional<z.ZodString>;
@@ -485,15 +484,15 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
485
484
  errorMessage: z.ZodOptional<z.ZodString>;
486
485
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
487
486
  type: z.ZodEnum<{
487
+ custom: "custom";
488
+ pattern: "pattern";
488
489
  required: "required";
489
490
  min: "min";
490
491
  max: "max";
491
492
  minLength: "minLength";
492
493
  maxLength: "maxLength";
493
- pattern: "pattern";
494
494
  email: "email";
495
495
  url: "url";
496
- custom: "custom";
497
496
  }>;
498
497
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
499
498
  message: z.ZodOptional<z.ZodString>;
@@ -524,10 +523,13 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
524
523
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
525
524
  left: "left";
526
525
  center: "center";
526
+ justify: "justify";
527
527
  }>>>;
528
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
528
529
  type: z.ZodLiteral<"exit_form">;
529
530
  }, z.core.$strip>, z.ZodObject<{
530
531
  id: z.ZodString;
532
+ slug: z.ZodOptional<z.ZodString>;
531
533
  title: z.ZodString;
532
534
  description: z.ZodOptional<z.ZodString>;
533
535
  describe: z.ZodOptional<z.ZodString>;
@@ -536,15 +538,15 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
536
538
  errorMessage: z.ZodOptional<z.ZodString>;
537
539
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
538
540
  type: z.ZodEnum<{
541
+ custom: "custom";
542
+ pattern: "pattern";
539
543
  required: "required";
540
544
  min: "min";
541
545
  max: "max";
542
546
  minLength: "minLength";
543
547
  maxLength: "maxLength";
544
- pattern: "pattern";
545
548
  email: "email";
546
549
  url: "url";
547
- custom: "custom";
548
550
  }>;
549
551
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
550
552
  message: z.ZodOptional<z.ZodString>;
@@ -575,7 +577,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
575
577
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
576
578
  left: "left";
577
579
  center: "center";
580
+ justify: "justify";
578
581
  }>>>;
582
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
579
583
  type: z.ZodLiteral<"yes_no">;
580
584
  yesLabel: z.ZodOptional<z.ZodString>;
581
585
  noLabel: z.ZodOptional<z.ZodString>;
@@ -585,6 +589,7 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
585
589
  }>>;
586
590
  }, z.core.$strip>, z.ZodObject<{
587
591
  id: z.ZodString;
592
+ slug: z.ZodOptional<z.ZodString>;
588
593
  title: z.ZodString;
589
594
  description: z.ZodOptional<z.ZodString>;
590
595
  describe: z.ZodOptional<z.ZodString>;
@@ -593,15 +598,69 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
593
598
  errorMessage: z.ZodOptional<z.ZodString>;
594
599
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
595
600
  type: z.ZodEnum<{
601
+ custom: "custom";
602
+ pattern: "pattern";
596
603
  required: "required";
597
604
  min: "min";
598
605
  max: "max";
599
606
  minLength: "minLength";
600
607
  maxLength: "maxLength";
601
- pattern: "pattern";
602
608
  email: "email";
603
609
  url: "url";
610
+ }>;
611
+ value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
612
+ message: z.ZodOptional<z.ZodString>;
613
+ describe: z.ZodOptional<z.ZodString>;
614
+ }, z.core.$strip>>>>;
615
+ visibility: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
616
+ field: z.ZodString;
617
+ operator: z.ZodEnum<{
618
+ equals: "equals";
619
+ not_equals: "not_equals";
620
+ contains: "contains";
621
+ not_contains: "not_contains";
622
+ greater_than: "greater_than";
623
+ less_than: "less_than";
624
+ is_empty: "is_empty";
625
+ is_not_empty: "is_not_empty";
626
+ }>;
627
+ value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
628
+ describe: z.ZodOptional<z.ZodString>;
629
+ }, z.core.$strip>>>>;
630
+ sectionId: z.ZodOptional<z.ZodString>;
631
+ status: z.ZodEnum<{
632
+ D: "D";
633
+ P: "P";
634
+ A: "A";
635
+ S: "S";
636
+ }>;
637
+ textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
638
+ left: "left";
639
+ center: "center";
640
+ justify: "justify";
641
+ }>>>;
642
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
643
+ type: z.ZodLiteral<"consent">;
644
+ }, z.core.$strip>, z.ZodObject<{
645
+ id: z.ZodString;
646
+ slug: z.ZodOptional<z.ZodString>;
647
+ title: z.ZodString;
648
+ description: z.ZodOptional<z.ZodString>;
649
+ describe: z.ZodOptional<z.ZodString>;
650
+ required: z.ZodDefault<z.ZodBoolean>;
651
+ isHidden: z.ZodDefault<z.ZodBoolean>;
652
+ errorMessage: z.ZodOptional<z.ZodString>;
653
+ validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
654
+ type: z.ZodEnum<{
604
655
  custom: "custom";
656
+ pattern: "pattern";
657
+ required: "required";
658
+ min: "min";
659
+ max: "max";
660
+ minLength: "minLength";
661
+ maxLength: "maxLength";
662
+ email: "email";
663
+ url: "url";
605
664
  }>;
606
665
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
607
666
  message: z.ZodOptional<z.ZodString>;
@@ -632,7 +691,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
632
691
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
633
692
  left: "left";
634
693
  center: "center";
694
+ justify: "justify";
635
695
  }>>>;
696
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
636
697
  type: z.ZodLiteral<"rating_matrix">;
637
698
  statements: z.ZodArray<z.ZodObject<{
638
699
  id: z.ZodString;
@@ -675,6 +736,7 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
675
736
  randomizeStatements: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
676
737
  }, z.core.$strip>, z.ZodObject<{
677
738
  id: z.ZodString;
739
+ slug: z.ZodOptional<z.ZodString>;
678
740
  title: z.ZodString;
679
741
  description: z.ZodOptional<z.ZodString>;
680
742
  describe: z.ZodOptional<z.ZodString>;
@@ -683,15 +745,15 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
683
745
  errorMessage: z.ZodOptional<z.ZodString>;
684
746
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
685
747
  type: z.ZodEnum<{
748
+ custom: "custom";
749
+ pattern: "pattern";
686
750
  required: "required";
687
751
  min: "min";
688
752
  max: "max";
689
753
  minLength: "minLength";
690
754
  maxLength: "maxLength";
691
- pattern: "pattern";
692
755
  email: "email";
693
756
  url: "url";
694
- custom: "custom";
695
757
  }>;
696
758
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
697
759
  message: z.ZodOptional<z.ZodString>;
@@ -722,7 +784,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
722
784
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
723
785
  left: "left";
724
786
  center: "center";
787
+ justify: "justify";
725
788
  }>>>;
789
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
726
790
  type: z.ZodLiteral<"matrix_single_choice">;
727
791
  rows: z.ZodArray<z.ZodObject<{
728
792
  id: z.ZodString;
@@ -740,6 +804,7 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
740
804
  randomizeColumns: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
741
805
  }, z.core.$strip>, z.ZodObject<{
742
806
  id: z.ZodString;
807
+ slug: z.ZodOptional<z.ZodString>;
743
808
  title: z.ZodString;
744
809
  description: z.ZodOptional<z.ZodString>;
745
810
  describe: z.ZodOptional<z.ZodString>;
@@ -748,15 +813,15 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
748
813
  errorMessage: z.ZodOptional<z.ZodString>;
749
814
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
750
815
  type: z.ZodEnum<{
816
+ custom: "custom";
817
+ pattern: "pattern";
751
818
  required: "required";
752
819
  min: "min";
753
820
  max: "max";
754
821
  minLength: "minLength";
755
822
  maxLength: "maxLength";
756
- pattern: "pattern";
757
823
  email: "email";
758
824
  url: "url";
759
- custom: "custom";
760
825
  }>;
761
826
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
762
827
  message: z.ZodOptional<z.ZodString>;
@@ -787,7 +852,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
787
852
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
788
853
  left: "left";
789
854
  center: "center";
855
+ justify: "justify";
790
856
  }>>>;
857
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
791
858
  type: z.ZodLiteral<"matrix_multiple_choice">;
792
859
  rows: z.ZodArray<z.ZodObject<{
793
860
  id: z.ZodString;
@@ -807,6 +874,7 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
807
874
  randomizeColumns: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
808
875
  }, z.core.$strip>, z.ZodObject<{
809
876
  id: z.ZodString;
877
+ slug: z.ZodOptional<z.ZodString>;
810
878
  title: z.ZodString;
811
879
  description: z.ZodOptional<z.ZodString>;
812
880
  describe: z.ZodOptional<z.ZodString>;
@@ -815,15 +883,15 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
815
883
  errorMessage: z.ZodOptional<z.ZodString>;
816
884
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
817
885
  type: z.ZodEnum<{
886
+ custom: "custom";
887
+ pattern: "pattern";
818
888
  required: "required";
819
889
  min: "min";
820
890
  max: "max";
821
891
  minLength: "minLength";
822
892
  maxLength: "maxLength";
823
- pattern: "pattern";
824
893
  email: "email";
825
894
  url: "url";
826
- custom: "custom";
827
895
  }>;
828
896
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
829
897
  message: z.ZodOptional<z.ZodString>;
@@ -854,7 +922,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
854
922
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
855
923
  left: "left";
856
924
  center: "center";
925
+ justify: "justify";
857
926
  }>>>;
927
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
858
928
  type: z.ZodLiteral<"single_choice">;
859
929
  displayStyle: z.ZodOptional<z.ZodEnum<{
860
930
  radio: "radio";
@@ -878,6 +948,7 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
878
948
  }, z.core.$strip>>;
879
949
  }, z.core.$strip>, z.ZodObject<{
880
950
  id: z.ZodString;
951
+ slug: z.ZodOptional<z.ZodString>;
881
952
  title: z.ZodString;
882
953
  description: z.ZodOptional<z.ZodString>;
883
954
  describe: z.ZodOptional<z.ZodString>;
@@ -886,15 +957,15 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
886
957
  errorMessage: z.ZodOptional<z.ZodString>;
887
958
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
888
959
  type: z.ZodEnum<{
960
+ custom: "custom";
961
+ pattern: "pattern";
889
962
  required: "required";
890
963
  min: "min";
891
964
  max: "max";
892
965
  minLength: "minLength";
893
966
  maxLength: "maxLength";
894
- pattern: "pattern";
895
967
  email: "email";
896
968
  url: "url";
897
- custom: "custom";
898
969
  }>;
899
970
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
900
971
  message: z.ZodOptional<z.ZodString>;
@@ -925,7 +996,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
925
996
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
926
997
  left: "left";
927
998
  center: "center";
999
+ justify: "justify";
928
1000
  }>>>;
1001
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
929
1002
  type: z.ZodLiteral<"multiple_choice_multiple">;
930
1003
  displayStyle: z.ZodOptional<z.ZodEnum<{
931
1004
  list: "list";
@@ -950,6 +1023,7 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
950
1023
  }, z.core.$strip>>;
951
1024
  }, z.core.$strip>, z.ZodObject<{
952
1025
  id: z.ZodString;
1026
+ slug: z.ZodOptional<z.ZodString>;
953
1027
  title: z.ZodString;
954
1028
  description: z.ZodOptional<z.ZodString>;
955
1029
  describe: z.ZodOptional<z.ZodString>;
@@ -958,15 +1032,15 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
958
1032
  errorMessage: z.ZodOptional<z.ZodString>;
959
1033
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
960
1034
  type: z.ZodEnum<{
1035
+ custom: "custom";
1036
+ pattern: "pattern";
961
1037
  required: "required";
962
1038
  min: "min";
963
1039
  max: "max";
964
1040
  minLength: "minLength";
965
1041
  maxLength: "maxLength";
966
- pattern: "pattern";
967
1042
  email: "email";
968
1043
  url: "url";
969
- custom: "custom";
970
1044
  }>;
971
1045
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
972
1046
  message: z.ZodOptional<z.ZodString>;
@@ -997,7 +1071,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
997
1071
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
998
1072
  left: "left";
999
1073
  center: "center";
1074
+ justify: "justify";
1000
1075
  }>>>;
1076
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1001
1077
  type: z.ZodLiteral<"nps">;
1002
1078
  min: z.ZodLiteral<0>;
1003
1079
  max: z.ZodLiteral<10>;
@@ -1007,6 +1083,7 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
1007
1083
  prepopulatedValue: z.ZodOptional<z.ZodNumber>;
1008
1084
  }, z.core.$strip>, z.ZodObject<{
1009
1085
  id: z.ZodString;
1086
+ slug: z.ZodOptional<z.ZodString>;
1010
1087
  title: z.ZodString;
1011
1088
  description: z.ZodOptional<z.ZodString>;
1012
1089
  describe: z.ZodOptional<z.ZodString>;
@@ -1015,15 +1092,15 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
1015
1092
  errorMessage: z.ZodOptional<z.ZodString>;
1016
1093
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1017
1094
  type: z.ZodEnum<{
1095
+ custom: "custom";
1096
+ pattern: "pattern";
1018
1097
  required: "required";
1019
1098
  min: "min";
1020
1099
  max: "max";
1021
1100
  minLength: "minLength";
1022
1101
  maxLength: "maxLength";
1023
- pattern: "pattern";
1024
1102
  email: "email";
1025
1103
  url: "url";
1026
- custom: "custom";
1027
1104
  }>;
1028
1105
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1029
1106
  message: z.ZodOptional<z.ZodString>;
@@ -1054,7 +1131,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
1054
1131
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1055
1132
  left: "left";
1056
1133
  center: "center";
1134
+ justify: "justify";
1057
1135
  }>>>;
1136
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1058
1137
  type: z.ZodLiteral<"short_answer">;
1059
1138
  maxCharacters: z.ZodOptional<z.ZodNumber>;
1060
1139
  minCharacters: z.ZodOptional<z.ZodNumber>;
@@ -1067,6 +1146,7 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
1067
1146
  minCharactersToEnhance: z.ZodOptional<z.ZodNumber>;
1068
1147
  }, z.core.$strip>, z.ZodObject<{
1069
1148
  id: z.ZodString;
1149
+ slug: z.ZodOptional<z.ZodString>;
1070
1150
  title: z.ZodString;
1071
1151
  description: z.ZodOptional<z.ZodString>;
1072
1152
  describe: z.ZodOptional<z.ZodString>;
@@ -1075,15 +1155,15 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
1075
1155
  errorMessage: z.ZodOptional<z.ZodString>;
1076
1156
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1077
1157
  type: z.ZodEnum<{
1158
+ custom: "custom";
1159
+ pattern: "pattern";
1078
1160
  required: "required";
1079
1161
  min: "min";
1080
1162
  max: "max";
1081
1163
  minLength: "minLength";
1082
1164
  maxLength: "maxLength";
1083
- pattern: "pattern";
1084
1165
  email: "email";
1085
1166
  url: "url";
1086
- custom: "custom";
1087
1167
  }>;
1088
1168
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1089
1169
  message: z.ZodOptional<z.ZodString>;
@@ -1114,7 +1194,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
1114
1194
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1115
1195
  left: "left";
1116
1196
  center: "center";
1197
+ justify: "justify";
1117
1198
  }>>>;
1199
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1118
1200
  type: z.ZodLiteral<"long_text">;
1119
1201
  maxCharacters: z.ZodOptional<z.ZodNumber>;
1120
1202
  minCharacters: z.ZodOptional<z.ZodNumber>;
@@ -1126,6 +1208,7 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
1126
1208
  minCharactersToEnhance: z.ZodOptional<z.ZodNumber>;
1127
1209
  }, z.core.$strip>, z.ZodObject<{
1128
1210
  id: z.ZodString;
1211
+ slug: z.ZodOptional<z.ZodString>;
1129
1212
  title: z.ZodString;
1130
1213
  description: z.ZodOptional<z.ZodString>;
1131
1214
  describe: z.ZodOptional<z.ZodString>;
@@ -1134,15 +1217,15 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
1134
1217
  errorMessage: z.ZodOptional<z.ZodString>;
1135
1218
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1136
1219
  type: z.ZodEnum<{
1220
+ custom: "custom";
1221
+ pattern: "pattern";
1137
1222
  required: "required";
1138
1223
  min: "min";
1139
1224
  max: "max";
1140
1225
  minLength: "minLength";
1141
1226
  maxLength: "maxLength";
1142
- pattern: "pattern";
1143
1227
  email: "email";
1144
1228
  url: "url";
1145
- custom: "custom";
1146
1229
  }>;
1147
1230
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1148
1231
  message: z.ZodOptional<z.ZodString>;
@@ -1173,7 +1256,9 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
1173
1256
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1174
1257
  left: "left";
1175
1258
  center: "center";
1259
+ justify: "justify";
1176
1260
  }>>>;
1261
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1177
1262
  type: z.ZodLiteral<"nested_selection">;
1178
1263
  placeholder: z.ZodOptional<z.ZodString>;
1179
1264
  options: z.ZodArray<z.ZodType<any, unknown, z.core.$ZodTypeInternals<any, unknown>>>;
@@ -1195,6 +1280,16 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
1195
1280
  sections: z.ZodArray<z.ZodObject<{
1196
1281
  id: z.ZodString;
1197
1282
  title: z.ZodString;
1283
+ description: z.ZodOptional<z.ZodString>;
1284
+ showTitle: z.ZodDefault<z.ZodBoolean>;
1285
+ showDescription: z.ZodDefault<z.ZodBoolean>;
1286
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1287
+ translations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1288
+ title: z.ZodString;
1289
+ description: z.ZodOptional<z.ZodString>;
1290
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1291
+ }, z.core.$strip>>>;
1292
+ inAppSingleQuestion: z.ZodDefault<z.ZodBoolean>;
1198
1293
  questionIds: z.ZodArray<z.ZodString>;
1199
1294
  }, z.core.$strip>>;
1200
1295
  translations: z.ZodRecord<z.ZodString, z.ZodAny>;
@@ -1202,6 +1297,12 @@ export declare const questionnaireFieldsResponseSchema: z.ZodObject<{
1202
1297
  value: z.ZodString;
1203
1298
  label: z.ZodString;
1204
1299
  }, z.core.$strip>>;
1300
+ isLogicJumpsEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1301
+ logicJumpRules: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
1302
+ jsonLogic: z.ZodRecord<z.ZodString, z.ZodUnknown>;
1303
+ targetQuestionId: z.ZodString;
1304
+ }, z.core.$strip>>>>;
1305
+ contextVariables: z.ZodOptional<z.ZodArray<z.ZodString>>;
1205
1306
  }, z.core.$strip>;
1206
1307
  export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1207
1308
  feedbackConfigurationId: z.ZodString;
@@ -1213,6 +1314,7 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1213
1314
  questionnaireFields: z.ZodObject<{
1214
1315
  questions: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
1215
1316
  id: z.ZodString;
1317
+ slug: z.ZodOptional<z.ZodString>;
1216
1318
  title: z.ZodString;
1217
1319
  description: z.ZodOptional<z.ZodString>;
1218
1320
  describe: z.ZodOptional<z.ZodString>;
@@ -1221,15 +1323,15 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1221
1323
  errorMessage: z.ZodOptional<z.ZodString>;
1222
1324
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1223
1325
  type: z.ZodEnum<{
1326
+ custom: "custom";
1327
+ pattern: "pattern";
1224
1328
  required: "required";
1225
1329
  min: "min";
1226
1330
  max: "max";
1227
1331
  minLength: "minLength";
1228
1332
  maxLength: "maxLength";
1229
- pattern: "pattern";
1230
1333
  email: "email";
1231
1334
  url: "url";
1232
- custom: "custom";
1233
1335
  }>;
1234
1336
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1235
1337
  message: z.ZodOptional<z.ZodString>;
@@ -1260,7 +1362,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1260
1362
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1261
1363
  left: "left";
1262
1364
  center: "center";
1365
+ justify: "justify";
1263
1366
  }>>>;
1367
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1264
1368
  type: z.ZodLiteral<"rating">;
1265
1369
  showLabels: z.ZodOptional<z.ZodBoolean>;
1266
1370
  minLabel: z.ZodOptional<z.ZodString>;
@@ -1282,6 +1386,7 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1282
1386
  color: z.ZodOptional<z.ZodString>;
1283
1387
  }, z.core.$strip>, z.ZodObject<{
1284
1388
  id: z.ZodString;
1389
+ slug: z.ZodOptional<z.ZodString>;
1285
1390
  title: z.ZodString;
1286
1391
  description: z.ZodOptional<z.ZodString>;
1287
1392
  describe: z.ZodOptional<z.ZodString>;
@@ -1290,15 +1395,15 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1290
1395
  errorMessage: z.ZodOptional<z.ZodString>;
1291
1396
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1292
1397
  type: z.ZodEnum<{
1398
+ custom: "custom";
1399
+ pattern: "pattern";
1293
1400
  required: "required";
1294
1401
  min: "min";
1295
1402
  max: "max";
1296
1403
  minLength: "minLength";
1297
1404
  maxLength: "maxLength";
1298
- pattern: "pattern";
1299
1405
  email: "email";
1300
1406
  url: "url";
1301
- custom: "custom";
1302
1407
  }>;
1303
1408
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1304
1409
  message: z.ZodOptional<z.ZodString>;
@@ -1329,27 +1434,30 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1329
1434
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1330
1435
  left: "left";
1331
1436
  center: "center";
1437
+ justify: "justify";
1332
1438
  }>>>;
1439
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1333
1440
  type: z.ZodLiteral<"annotation">;
1334
1441
  annotationText: z.ZodOptional<z.ZodString>;
1335
1442
  noAnnotationText: z.ZodOptional<z.ZodString>;
1336
1443
  }, z.core.$strip>, z.ZodObject<{
1337
1444
  id: z.ZodString;
1445
+ slug: z.ZodOptional<z.ZodString>;
1338
1446
  describe: z.ZodOptional<z.ZodString>;
1339
1447
  required: z.ZodDefault<z.ZodBoolean>;
1340
1448
  isHidden: z.ZodDefault<z.ZodBoolean>;
1341
1449
  errorMessage: z.ZodOptional<z.ZodString>;
1342
1450
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1343
1451
  type: z.ZodEnum<{
1452
+ custom: "custom";
1453
+ pattern: "pattern";
1344
1454
  required: "required";
1345
1455
  min: "min";
1346
1456
  max: "max";
1347
1457
  minLength: "minLength";
1348
1458
  maxLength: "maxLength";
1349
- pattern: "pattern";
1350
1459
  email: "email";
1351
1460
  url: "url";
1352
- custom: "custom";
1353
1461
  }>;
1354
1462
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1355
1463
  message: z.ZodOptional<z.ZodString>;
@@ -1380,29 +1488,31 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1380
1488
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1381
1489
  left: "left";
1382
1490
  center: "center";
1491
+ justify: "justify";
1383
1492
  }>>>;
1493
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1384
1494
  type: z.ZodLiteral<"welcome">;
1385
1495
  title: z.ZodString;
1386
1496
  description: z.ZodOptional<z.ZodString>;
1387
- buttonLabel: z.ZodOptional<z.ZodString>;
1388
1497
  imageUrl: z.ZodOptional<z.ZodString>;
1389
1498
  }, z.core.$strip>, z.ZodObject<{
1390
1499
  id: z.ZodString;
1500
+ slug: z.ZodOptional<z.ZodString>;
1391
1501
  describe: z.ZodOptional<z.ZodString>;
1392
1502
  required: z.ZodDefault<z.ZodBoolean>;
1393
1503
  isHidden: z.ZodDefault<z.ZodBoolean>;
1394
1504
  errorMessage: z.ZodOptional<z.ZodString>;
1395
1505
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1396
1506
  type: z.ZodEnum<{
1507
+ custom: "custom";
1508
+ pattern: "pattern";
1397
1509
  required: "required";
1398
1510
  min: "min";
1399
1511
  max: "max";
1400
1512
  minLength: "minLength";
1401
1513
  maxLength: "maxLength";
1402
- pattern: "pattern";
1403
1514
  email: "email";
1404
1515
  url: "url";
1405
- custom: "custom";
1406
1516
  }>;
1407
1517
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1408
1518
  message: z.ZodOptional<z.ZodString>;
@@ -1433,29 +1543,31 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1433
1543
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1434
1544
  left: "left";
1435
1545
  center: "center";
1546
+ justify: "justify";
1436
1547
  }>>>;
1548
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1437
1549
  type: z.ZodLiteral<"thank_you">;
1438
1550
  title: z.ZodString;
1439
1551
  description: z.ZodOptional<z.ZodString>;
1440
- buttonLabel: z.ZodOptional<z.ZodString>;
1441
1552
  imageUrl: z.ZodOptional<z.ZodString>;
1442
1553
  }, z.core.$strip>, z.ZodObject<{
1443
1554
  id: z.ZodString;
1555
+ slug: z.ZodOptional<z.ZodString>;
1444
1556
  describe: z.ZodOptional<z.ZodString>;
1445
1557
  required: z.ZodDefault<z.ZodBoolean>;
1446
1558
  isHidden: z.ZodDefault<z.ZodBoolean>;
1447
1559
  errorMessage: z.ZodOptional<z.ZodString>;
1448
1560
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1449
1561
  type: z.ZodEnum<{
1562
+ custom: "custom";
1563
+ pattern: "pattern";
1450
1564
  required: "required";
1451
1565
  min: "min";
1452
1566
  max: "max";
1453
1567
  minLength: "minLength";
1454
1568
  maxLength: "maxLength";
1455
- pattern: "pattern";
1456
1569
  email: "email";
1457
1570
  url: "url";
1458
- custom: "custom";
1459
1571
  }>;
1460
1572
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1461
1573
  message: z.ZodOptional<z.ZodString>;
@@ -1486,14 +1598,16 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1486
1598
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1487
1599
  left: "left";
1488
1600
  center: "center";
1601
+ justify: "justify";
1489
1602
  }>>>;
1603
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1490
1604
  type: z.ZodLiteral<"message_panel">;
1491
1605
  title: z.ZodString;
1492
1606
  description: z.ZodOptional<z.ZodString>;
1493
- buttonLabel: z.ZodOptional<z.ZodString>;
1494
1607
  imageUrl: z.ZodOptional<z.ZodString>;
1495
1608
  }, z.core.$strip>, z.ZodObject<{
1496
1609
  id: z.ZodString;
1610
+ slug: z.ZodOptional<z.ZodString>;
1497
1611
  title: z.ZodString;
1498
1612
  description: z.ZodOptional<z.ZodString>;
1499
1613
  describe: z.ZodOptional<z.ZodString>;
@@ -1502,15 +1616,15 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1502
1616
  errorMessage: z.ZodOptional<z.ZodString>;
1503
1617
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1504
1618
  type: z.ZodEnum<{
1619
+ custom: "custom";
1620
+ pattern: "pattern";
1505
1621
  required: "required";
1506
1622
  min: "min";
1507
1623
  max: "max";
1508
1624
  minLength: "minLength";
1509
1625
  maxLength: "maxLength";
1510
- pattern: "pattern";
1511
1626
  email: "email";
1512
1627
  url: "url";
1513
- custom: "custom";
1514
1628
  }>;
1515
1629
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1516
1630
  message: z.ZodOptional<z.ZodString>;
@@ -1541,10 +1655,13 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1541
1655
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1542
1656
  left: "left";
1543
1657
  center: "center";
1658
+ justify: "justify";
1544
1659
  }>>>;
1660
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1545
1661
  type: z.ZodLiteral<"exit_form">;
1546
1662
  }, z.core.$strip>, z.ZodObject<{
1547
1663
  id: z.ZodString;
1664
+ slug: z.ZodOptional<z.ZodString>;
1548
1665
  title: z.ZodString;
1549
1666
  description: z.ZodOptional<z.ZodString>;
1550
1667
  describe: z.ZodOptional<z.ZodString>;
@@ -1553,15 +1670,15 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1553
1670
  errorMessage: z.ZodOptional<z.ZodString>;
1554
1671
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1555
1672
  type: z.ZodEnum<{
1673
+ custom: "custom";
1674
+ pattern: "pattern";
1556
1675
  required: "required";
1557
1676
  min: "min";
1558
1677
  max: "max";
1559
1678
  minLength: "minLength";
1560
1679
  maxLength: "maxLength";
1561
- pattern: "pattern";
1562
1680
  email: "email";
1563
1681
  url: "url";
1564
- custom: "custom";
1565
1682
  }>;
1566
1683
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1567
1684
  message: z.ZodOptional<z.ZodString>;
@@ -1592,7 +1709,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1592
1709
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1593
1710
  left: "left";
1594
1711
  center: "center";
1712
+ justify: "justify";
1595
1713
  }>>>;
1714
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1596
1715
  type: z.ZodLiteral<"yes_no">;
1597
1716
  yesLabel: z.ZodOptional<z.ZodString>;
1598
1717
  noLabel: z.ZodOptional<z.ZodString>;
@@ -1602,6 +1721,7 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1602
1721
  }>>;
1603
1722
  }, z.core.$strip>, z.ZodObject<{
1604
1723
  id: z.ZodString;
1724
+ slug: z.ZodOptional<z.ZodString>;
1605
1725
  title: z.ZodString;
1606
1726
  description: z.ZodOptional<z.ZodString>;
1607
1727
  describe: z.ZodOptional<z.ZodString>;
@@ -1610,15 +1730,69 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1610
1730
  errorMessage: z.ZodOptional<z.ZodString>;
1611
1731
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1612
1732
  type: z.ZodEnum<{
1733
+ custom: "custom";
1734
+ pattern: "pattern";
1613
1735
  required: "required";
1614
1736
  min: "min";
1615
1737
  max: "max";
1616
1738
  minLength: "minLength";
1617
1739
  maxLength: "maxLength";
1618
- pattern: "pattern";
1619
1740
  email: "email";
1620
1741
  url: "url";
1742
+ }>;
1743
+ value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1744
+ message: z.ZodOptional<z.ZodString>;
1745
+ describe: z.ZodOptional<z.ZodString>;
1746
+ }, z.core.$strip>>>>;
1747
+ visibility: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1748
+ field: z.ZodString;
1749
+ operator: z.ZodEnum<{
1750
+ equals: "equals";
1751
+ not_equals: "not_equals";
1752
+ contains: "contains";
1753
+ not_contains: "not_contains";
1754
+ greater_than: "greater_than";
1755
+ less_than: "less_than";
1756
+ is_empty: "is_empty";
1757
+ is_not_empty: "is_not_empty";
1758
+ }>;
1759
+ value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1760
+ describe: z.ZodOptional<z.ZodString>;
1761
+ }, z.core.$strip>>>>;
1762
+ sectionId: z.ZodOptional<z.ZodString>;
1763
+ status: z.ZodEnum<{
1764
+ D: "D";
1765
+ P: "P";
1766
+ A: "A";
1767
+ S: "S";
1768
+ }>;
1769
+ textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1770
+ left: "left";
1771
+ center: "center";
1772
+ justify: "justify";
1773
+ }>>>;
1774
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1775
+ type: z.ZodLiteral<"consent">;
1776
+ }, z.core.$strip>, z.ZodObject<{
1777
+ id: z.ZodString;
1778
+ slug: z.ZodOptional<z.ZodString>;
1779
+ title: z.ZodString;
1780
+ description: z.ZodOptional<z.ZodString>;
1781
+ describe: z.ZodOptional<z.ZodString>;
1782
+ required: z.ZodDefault<z.ZodBoolean>;
1783
+ isHidden: z.ZodDefault<z.ZodBoolean>;
1784
+ errorMessage: z.ZodOptional<z.ZodString>;
1785
+ validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1786
+ type: z.ZodEnum<{
1621
1787
  custom: "custom";
1788
+ pattern: "pattern";
1789
+ required: "required";
1790
+ min: "min";
1791
+ max: "max";
1792
+ minLength: "minLength";
1793
+ maxLength: "maxLength";
1794
+ email: "email";
1795
+ url: "url";
1622
1796
  }>;
1623
1797
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1624
1798
  message: z.ZodOptional<z.ZodString>;
@@ -1649,7 +1823,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1649
1823
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1650
1824
  left: "left";
1651
1825
  center: "center";
1826
+ justify: "justify";
1652
1827
  }>>>;
1828
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1653
1829
  type: z.ZodLiteral<"rating_matrix">;
1654
1830
  statements: z.ZodArray<z.ZodObject<{
1655
1831
  id: z.ZodString;
@@ -1692,6 +1868,7 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1692
1868
  randomizeStatements: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1693
1869
  }, z.core.$strip>, z.ZodObject<{
1694
1870
  id: z.ZodString;
1871
+ slug: z.ZodOptional<z.ZodString>;
1695
1872
  title: z.ZodString;
1696
1873
  description: z.ZodOptional<z.ZodString>;
1697
1874
  describe: z.ZodOptional<z.ZodString>;
@@ -1700,15 +1877,15 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1700
1877
  errorMessage: z.ZodOptional<z.ZodString>;
1701
1878
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1702
1879
  type: z.ZodEnum<{
1880
+ custom: "custom";
1881
+ pattern: "pattern";
1703
1882
  required: "required";
1704
1883
  min: "min";
1705
1884
  max: "max";
1706
1885
  minLength: "minLength";
1707
1886
  maxLength: "maxLength";
1708
- pattern: "pattern";
1709
1887
  email: "email";
1710
1888
  url: "url";
1711
- custom: "custom";
1712
1889
  }>;
1713
1890
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1714
1891
  message: z.ZodOptional<z.ZodString>;
@@ -1739,7 +1916,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1739
1916
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1740
1917
  left: "left";
1741
1918
  center: "center";
1919
+ justify: "justify";
1742
1920
  }>>>;
1921
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1743
1922
  type: z.ZodLiteral<"matrix_single_choice">;
1744
1923
  rows: z.ZodArray<z.ZodObject<{
1745
1924
  id: z.ZodString;
@@ -1757,6 +1936,7 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1757
1936
  randomizeColumns: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1758
1937
  }, z.core.$strip>, z.ZodObject<{
1759
1938
  id: z.ZodString;
1939
+ slug: z.ZodOptional<z.ZodString>;
1760
1940
  title: z.ZodString;
1761
1941
  description: z.ZodOptional<z.ZodString>;
1762
1942
  describe: z.ZodOptional<z.ZodString>;
@@ -1765,15 +1945,15 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1765
1945
  errorMessage: z.ZodOptional<z.ZodString>;
1766
1946
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1767
1947
  type: z.ZodEnum<{
1948
+ custom: "custom";
1949
+ pattern: "pattern";
1768
1950
  required: "required";
1769
1951
  min: "min";
1770
1952
  max: "max";
1771
1953
  minLength: "minLength";
1772
1954
  maxLength: "maxLength";
1773
- pattern: "pattern";
1774
1955
  email: "email";
1775
1956
  url: "url";
1776
- custom: "custom";
1777
1957
  }>;
1778
1958
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1779
1959
  message: z.ZodOptional<z.ZodString>;
@@ -1804,7 +1984,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1804
1984
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1805
1985
  left: "left";
1806
1986
  center: "center";
1987
+ justify: "justify";
1807
1988
  }>>>;
1989
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1808
1990
  type: z.ZodLiteral<"matrix_multiple_choice">;
1809
1991
  rows: z.ZodArray<z.ZodObject<{
1810
1992
  id: z.ZodString;
@@ -1824,6 +2006,7 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1824
2006
  randomizeColumns: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1825
2007
  }, z.core.$strip>, z.ZodObject<{
1826
2008
  id: z.ZodString;
2009
+ slug: z.ZodOptional<z.ZodString>;
1827
2010
  title: z.ZodString;
1828
2011
  description: z.ZodOptional<z.ZodString>;
1829
2012
  describe: z.ZodOptional<z.ZodString>;
@@ -1832,15 +2015,15 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1832
2015
  errorMessage: z.ZodOptional<z.ZodString>;
1833
2016
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1834
2017
  type: z.ZodEnum<{
2018
+ custom: "custom";
2019
+ pattern: "pattern";
1835
2020
  required: "required";
1836
2021
  min: "min";
1837
2022
  max: "max";
1838
2023
  minLength: "minLength";
1839
2024
  maxLength: "maxLength";
1840
- pattern: "pattern";
1841
2025
  email: "email";
1842
2026
  url: "url";
1843
- custom: "custom";
1844
2027
  }>;
1845
2028
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1846
2029
  message: z.ZodOptional<z.ZodString>;
@@ -1871,7 +2054,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1871
2054
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1872
2055
  left: "left";
1873
2056
  center: "center";
2057
+ justify: "justify";
1874
2058
  }>>>;
2059
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1875
2060
  type: z.ZodLiteral<"single_choice">;
1876
2061
  displayStyle: z.ZodOptional<z.ZodEnum<{
1877
2062
  radio: "radio";
@@ -1895,6 +2080,7 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1895
2080
  }, z.core.$strip>>;
1896
2081
  }, z.core.$strip>, z.ZodObject<{
1897
2082
  id: z.ZodString;
2083
+ slug: z.ZodOptional<z.ZodString>;
1898
2084
  title: z.ZodString;
1899
2085
  description: z.ZodOptional<z.ZodString>;
1900
2086
  describe: z.ZodOptional<z.ZodString>;
@@ -1903,15 +2089,15 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1903
2089
  errorMessage: z.ZodOptional<z.ZodString>;
1904
2090
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1905
2091
  type: z.ZodEnum<{
2092
+ custom: "custom";
2093
+ pattern: "pattern";
1906
2094
  required: "required";
1907
2095
  min: "min";
1908
2096
  max: "max";
1909
2097
  minLength: "minLength";
1910
2098
  maxLength: "maxLength";
1911
- pattern: "pattern";
1912
2099
  email: "email";
1913
2100
  url: "url";
1914
- custom: "custom";
1915
2101
  }>;
1916
2102
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1917
2103
  message: z.ZodOptional<z.ZodString>;
@@ -1942,7 +2128,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1942
2128
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1943
2129
  left: "left";
1944
2130
  center: "center";
2131
+ justify: "justify";
1945
2132
  }>>>;
2133
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
1946
2134
  type: z.ZodLiteral<"multiple_choice_multiple">;
1947
2135
  displayStyle: z.ZodOptional<z.ZodEnum<{
1948
2136
  list: "list";
@@ -1967,6 +2155,7 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1967
2155
  }, z.core.$strip>>;
1968
2156
  }, z.core.$strip>, z.ZodObject<{
1969
2157
  id: z.ZodString;
2158
+ slug: z.ZodOptional<z.ZodString>;
1970
2159
  title: z.ZodString;
1971
2160
  description: z.ZodOptional<z.ZodString>;
1972
2161
  describe: z.ZodOptional<z.ZodString>;
@@ -1975,15 +2164,15 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
1975
2164
  errorMessage: z.ZodOptional<z.ZodString>;
1976
2165
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1977
2166
  type: z.ZodEnum<{
2167
+ custom: "custom";
2168
+ pattern: "pattern";
1978
2169
  required: "required";
1979
2170
  min: "min";
1980
2171
  max: "max";
1981
2172
  minLength: "minLength";
1982
2173
  maxLength: "maxLength";
1983
- pattern: "pattern";
1984
2174
  email: "email";
1985
2175
  url: "url";
1986
- custom: "custom";
1987
2176
  }>;
1988
2177
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1989
2178
  message: z.ZodOptional<z.ZodString>;
@@ -2014,7 +2203,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2014
2203
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2015
2204
  left: "left";
2016
2205
  center: "center";
2206
+ justify: "justify";
2017
2207
  }>>>;
2208
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
2018
2209
  type: z.ZodLiteral<"nps">;
2019
2210
  min: z.ZodLiteral<0>;
2020
2211
  max: z.ZodLiteral<10>;
@@ -2024,6 +2215,7 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2024
2215
  prepopulatedValue: z.ZodOptional<z.ZodNumber>;
2025
2216
  }, z.core.$strip>, z.ZodObject<{
2026
2217
  id: z.ZodString;
2218
+ slug: z.ZodOptional<z.ZodString>;
2027
2219
  title: z.ZodString;
2028
2220
  description: z.ZodOptional<z.ZodString>;
2029
2221
  describe: z.ZodOptional<z.ZodString>;
@@ -2032,15 +2224,15 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2032
2224
  errorMessage: z.ZodOptional<z.ZodString>;
2033
2225
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2034
2226
  type: z.ZodEnum<{
2227
+ custom: "custom";
2228
+ pattern: "pattern";
2035
2229
  required: "required";
2036
2230
  min: "min";
2037
2231
  max: "max";
2038
2232
  minLength: "minLength";
2039
2233
  maxLength: "maxLength";
2040
- pattern: "pattern";
2041
2234
  email: "email";
2042
2235
  url: "url";
2043
- custom: "custom";
2044
2236
  }>;
2045
2237
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2046
2238
  message: z.ZodOptional<z.ZodString>;
@@ -2071,7 +2263,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2071
2263
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2072
2264
  left: "left";
2073
2265
  center: "center";
2266
+ justify: "justify";
2074
2267
  }>>>;
2268
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
2075
2269
  type: z.ZodLiteral<"short_answer">;
2076
2270
  maxCharacters: z.ZodOptional<z.ZodNumber>;
2077
2271
  minCharacters: z.ZodOptional<z.ZodNumber>;
@@ -2084,6 +2278,7 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2084
2278
  minCharactersToEnhance: z.ZodOptional<z.ZodNumber>;
2085
2279
  }, z.core.$strip>, z.ZodObject<{
2086
2280
  id: z.ZodString;
2281
+ slug: z.ZodOptional<z.ZodString>;
2087
2282
  title: z.ZodString;
2088
2283
  description: z.ZodOptional<z.ZodString>;
2089
2284
  describe: z.ZodOptional<z.ZodString>;
@@ -2092,15 +2287,15 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2092
2287
  errorMessage: z.ZodOptional<z.ZodString>;
2093
2288
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2094
2289
  type: z.ZodEnum<{
2290
+ custom: "custom";
2291
+ pattern: "pattern";
2095
2292
  required: "required";
2096
2293
  min: "min";
2097
2294
  max: "max";
2098
2295
  minLength: "minLength";
2099
2296
  maxLength: "maxLength";
2100
- pattern: "pattern";
2101
2297
  email: "email";
2102
2298
  url: "url";
2103
- custom: "custom";
2104
2299
  }>;
2105
2300
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2106
2301
  message: z.ZodOptional<z.ZodString>;
@@ -2131,7 +2326,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2131
2326
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2132
2327
  left: "left";
2133
2328
  center: "center";
2329
+ justify: "justify";
2134
2330
  }>>>;
2331
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
2135
2332
  type: z.ZodLiteral<"long_text">;
2136
2333
  maxCharacters: z.ZodOptional<z.ZodNumber>;
2137
2334
  minCharacters: z.ZodOptional<z.ZodNumber>;
@@ -2143,6 +2340,7 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2143
2340
  minCharactersToEnhance: z.ZodOptional<z.ZodNumber>;
2144
2341
  }, z.core.$strip>, z.ZodObject<{
2145
2342
  id: z.ZodString;
2343
+ slug: z.ZodOptional<z.ZodString>;
2146
2344
  title: z.ZodString;
2147
2345
  description: z.ZodOptional<z.ZodString>;
2148
2346
  describe: z.ZodOptional<z.ZodString>;
@@ -2151,15 +2349,15 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2151
2349
  errorMessage: z.ZodOptional<z.ZodString>;
2152
2350
  validations: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2153
2351
  type: z.ZodEnum<{
2352
+ custom: "custom";
2353
+ pattern: "pattern";
2154
2354
  required: "required";
2155
2355
  min: "min";
2156
2356
  max: "max";
2157
2357
  minLength: "minLength";
2158
2358
  maxLength: "maxLength";
2159
- pattern: "pattern";
2160
2359
  email: "email";
2161
2360
  url: "url";
2162
- custom: "custom";
2163
2361
  }>;
2164
2362
  value: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2165
2363
  message: z.ZodOptional<z.ZodString>;
@@ -2190,7 +2388,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2190
2388
  textAlign: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2191
2389
  left: "left";
2192
2390
  center: "center";
2391
+ justify: "justify";
2193
2392
  }>>>;
2393
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
2194
2394
  type: z.ZodLiteral<"nested_selection">;
2195
2395
  placeholder: z.ZodOptional<z.ZodString>;
2196
2396
  options: z.ZodArray<z.ZodType<any, unknown, z.core.$ZodTypeInternals<any, unknown>>>;
@@ -2212,6 +2412,16 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2212
2412
  sections: z.ZodArray<z.ZodObject<{
2213
2413
  id: z.ZodString;
2214
2414
  title: z.ZodString;
2415
+ description: z.ZodOptional<z.ZodString>;
2416
+ showTitle: z.ZodDefault<z.ZodBoolean>;
2417
+ showDescription: z.ZodDefault<z.ZodBoolean>;
2418
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
2419
+ translations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
2420
+ title: z.ZodString;
2421
+ description: z.ZodOptional<z.ZodString>;
2422
+ nextButtonLabel: z.ZodOptional<z.ZodString>;
2423
+ }, z.core.$strip>>>;
2424
+ inAppSingleQuestion: z.ZodDefault<z.ZodBoolean>;
2215
2425
  questionIds: z.ZodArray<z.ZodString>;
2216
2426
  }, z.core.$strip>>;
2217
2427
  translations: z.ZodRecord<z.ZodString, z.ZodAny>;
@@ -2219,17 +2429,19 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2219
2429
  value: z.ZodString;
2220
2430
  label: z.ZodString;
2221
2431
  }, z.core.$strip>>;
2432
+ isLogicJumpsEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2433
+ logicJumpRules: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
2434
+ jsonLogic: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2435
+ targetQuestionId: z.ZodString;
2436
+ }, z.core.$strip>>>>;
2437
+ contextVariables: z.ZodOptional<z.ZodArray<z.ZodString>>;
2222
2438
  }, z.core.$strip>;
2223
2439
  otherConfigurationProperties: z.ZodDiscriminatedUnion<[z.ZodObject<{
2224
2440
  isEnabled: z.ZodLiteral<false>;
2225
2441
  otherFields: z.ZodObject<{
2226
- pagination: z.ZodBoolean;
2227
2442
  questionNumber: z.ZodBoolean;
2228
- pageTitle: z.ZodBoolean;
2229
- blockerFeedback: z.ZodBoolean;
2230
2443
  submitButtonLabel: z.ZodString;
2231
2444
  previousButtonLabel: z.ZodString;
2232
- nextButtonLabel: z.ZodString;
2233
2445
  aiEnhancementSuccessMessage: z.ZodString;
2234
2446
  aiEnhancementCooldownErrorMessage: z.ZodString;
2235
2447
  aiEnhancementMaxReachedErrorMessage: z.ZodString;
@@ -2237,7 +2449,6 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2237
2449
  translations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
2238
2450
  submitButtonLabel: z.ZodString;
2239
2451
  previousButtonLabel: z.ZodString;
2240
- nextButtonLabel: z.ZodString;
2241
2452
  aiEnhancementSuccessMessage: z.ZodString;
2242
2453
  aiEnhancementCooldownErrorMessage: z.ZodString;
2243
2454
  aiEnhancementMaxReachedErrorMessage: z.ZodString;
@@ -2245,13 +2456,9 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2245
2456
  }, z.core.$strip>, z.ZodObject<{
2246
2457
  isEnabled: z.ZodLiteral<true>;
2247
2458
  otherFields: z.ZodObject<{
2248
- pagination: z.ZodBoolean;
2249
2459
  questionNumber: z.ZodBoolean;
2250
- pageTitle: z.ZodBoolean;
2251
- blockerFeedback: z.ZodBoolean;
2252
2460
  submitButtonLabel: z.ZodString;
2253
2461
  previousButtonLabel: z.ZodString;
2254
- nextButtonLabel: z.ZodString;
2255
2462
  aiEnhancementSuccessMessage: z.ZodString;
2256
2463
  aiEnhancementCooldownErrorMessage: z.ZodString;
2257
2464
  aiEnhancementMaxReachedErrorMessage: z.ZodString;
@@ -2259,7 +2466,6 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2259
2466
  translations: z.ZodRecord<z.ZodString, z.ZodObject<{
2260
2467
  submitButtonLabel: z.ZodString;
2261
2468
  previousButtonLabel: z.ZodString;
2262
- nextButtonLabel: z.ZodString;
2263
2469
  aiEnhancementSuccessMessage: z.ZodString;
2264
2470
  aiEnhancementCooldownErrorMessage: z.ZodString;
2265
2471
  aiEnhancementMaxReachedErrorMessage: z.ZodString;
@@ -2276,25 +2482,24 @@ export declare const fetchFeedbackDetailsResponseSchema: z.ZodObject<{
2276
2482
  }, z.core.$strip>;
2277
2483
  }, z.core.$strip>;
2278
2484
  featureSettings: z.ZodObject<{
2279
- darkOverlay: z.ZodBoolean;
2280
- closeButton: z.ZodBoolean;
2281
- progressBar: z.ZodBoolean;
2282
- showBranding: z.ZodBoolean;
2485
+ darkOverlay: z.ZodDefault<z.ZodBoolean>;
2486
+ closeButton: z.ZodDefault<z.ZodBoolean>;
2487
+ progressBar: z.ZodDefault<z.ZodBoolean>;
2488
+ showBranding: z.ZodDefault<z.ZodBoolean>;
2283
2489
  customPosition: z.ZodBoolean;
2284
- customIconPosition: z.ZodBoolean;
2285
2490
  customCss: z.ZodOptional<z.ZodString>;
2286
- shareableMode: z.ZodOptional<z.ZodEnum<{
2491
+ shareableMode: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2287
2492
  light: "light";
2288
2493
  dark: "dark";
2289
2494
  system: "system";
2290
- }>>;
2291
- allowMultipleQuestionsPerSection: z.ZodBoolean;
2292
- rtl: z.ZodBoolean;
2293
- previousButton: z.ZodEnum<{
2495
+ }>>>;
2496
+ enableShareableKeyboardNavigation: z.ZodDefault<z.ZodBoolean>;
2497
+ rtl: z.ZodDefault<z.ZodBoolean>;
2498
+ previousButton: z.ZodDefault<z.ZodEnum<{
2294
2499
  never: "never";
2295
2500
  always: "always";
2296
2501
  auto: "auto";
2297
- }>;
2502
+ }>>;
2298
2503
  }, z.core.$strip>;
2299
2504
  selectedPosition: z.ZodEnum<{
2300
2505
  "top-left": "top-left";
@@ -2415,7 +2620,7 @@ export declare const fetchConfigurationListResponseSchema: z.ZodObject<{
2415
2620
  customPosition: z.ZodBoolean;
2416
2621
  customIconPosition: z.ZodBoolean;
2417
2622
  customCss: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2418
- allowMultipleQuestionsPerSection: z.ZodBoolean;
2623
+ enableShareableKeyboardNavigation: z.ZodDefault<z.ZodBoolean>;
2419
2624
  rtl: z.ZodBoolean;
2420
2625
  previousButton: z.ZodEnum<{
2421
2626
  never: "never";
@@ -2426,28 +2631,6 @@ export declare const fetchConfigurationListResponseSchema: z.ZodObject<{
2426
2631
  selectedIconPosition: z.ZodString;
2427
2632
  selectedPosition: z.ZodString;
2428
2633
  }, z.core.$strip>;
2429
- frequencyAndScheduling: z.ZodOptional<z.ZodObject<{
2430
- surveyType: z.ZodEnum<{
2431
- S: "S";
2432
- R: "R";
2433
- }>;
2434
- showOnce: z.ZodEnum<{
2435
- Y: "Y";
2436
- N: "N";
2437
- }>;
2438
- stopWhenResponsesCount: z.ZodString;
2439
- recurringValue: z.ZodString;
2440
- recurringUnit: z.ZodEnum<{
2441
- minutes: "minutes";
2442
- hours: "hours";
2443
- days: "days";
2444
- weeks: "weeks";
2445
- months: "months";
2446
- years: "years";
2447
- }>;
2448
- startDate: z.ZodString;
2449
- stopDate: z.ZodString;
2450
- }, z.core.$strip>>;
2451
2634
  }, z.core.$strip>>;
2452
2635
  }, z.core.$strict>;
2453
2636
  export type FeedbackConfigurationItem = z.infer<typeof feedbackConfigurationItemSchema>;
@@ -2458,3 +2641,5 @@ export type FormConfigurationResponse = z.infer<typeof formConfigurationResponse
2458
2641
  export type QuestionnaireFieldsResponse = z.infer<typeof questionnaireFieldsResponseSchema>;
2459
2642
  export type FetchFeedbackDetailsResponse = z.infer<typeof fetchFeedbackDetailsResponseSchema>;
2460
2643
  export type FetchConfigurationListResponse = z.infer<typeof fetchConfigurationListResponseSchema>;
2644
+ export type LogicJumpRule = z.infer<typeof logicJumpRuleSchema>;
2645
+ export type LogicJumpRules = z.infer<typeof logicJumpRulesSchema>;