@encatch/schema 1.2.0-beta.1 → 1.2.0-beta.11
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 +704 -168
- package/dist/esm/index.js.map +2 -2
- package/dist/types/index.d.ts +4 -4
- package/dist/types/schemas/api/fetch-feedback-schema.d.ts +698 -5
- package/dist/types/schemas/api/submit-feedback-schema.d.ts +126 -60
- package/dist/types/schemas/fields/answer-schema.d.ts +60 -26
- package/dist/types/schemas/fields/app-props-schema.d.ts +420 -2
- package/dist/types/schemas/fields/field-schema.d.ts +738 -14
- package/dist/types/schemas/fields/form-properties-schema.d.ts +422 -2
- package/dist/types/schemas/fields/other-screen-schema.d.ts +1 -0
- package/dist/types/schemas/fields/translations-schema.d.ts +367 -0
- package/package.json +1 -1
|
@@ -9,6 +9,7 @@ export declare const OtherFieldsSchema: z.ZodObject<{
|
|
|
9
9
|
remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
|
|
10
10
|
estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
|
|
11
11
|
respondentsShowMinThreshold: z.ZodOptional<z.ZodNumber>;
|
|
12
|
+
respondentsLabel: z.ZodOptional<z.ZodString>;
|
|
12
13
|
windowTitle: z.ZodOptional<z.ZodString>;
|
|
13
14
|
}, z.core.$strip>;
|
|
14
15
|
export declare const LanguageFieldSchema: z.ZodObject<{
|
|
@@ -57,6 +57,83 @@ export declare const longAnswerQuestionTranslationSchema: z.ZodObject<{
|
|
|
57
57
|
type: z.ZodLiteral<"long_text">;
|
|
58
58
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
59
59
|
}, z.core.$strip>;
|
|
60
|
+
export declare const videoAudioQuestionTranslationSchema: z.ZodObject<{
|
|
61
|
+
title: z.ZodString;
|
|
62
|
+
description: z.ZodOptional<z.ZodString>;
|
|
63
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
64
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
65
|
+
type: z.ZodLiteral<"video_audio">;
|
|
66
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
67
|
+
modeTabLabelVideo: z.ZodOptional<z.ZodString>;
|
|
68
|
+
modeTabLabelAudio: z.ZodOptional<z.ZodString>;
|
|
69
|
+
modeTabLabelPhoto: z.ZodOptional<z.ZodString>;
|
|
70
|
+
modeTabLabelText: z.ZodOptional<z.ZodString>;
|
|
71
|
+
recordButtonLabel: z.ZodOptional<z.ZodString>;
|
|
72
|
+
uploadMediaButtonLabel: z.ZodOptional<z.ZodString>;
|
|
73
|
+
videoIdleHint: z.ZodOptional<z.ZodString>;
|
|
74
|
+
photoEmptyHint: z.ZodOptional<z.ZodString>;
|
|
75
|
+
photoUseCameraButtonLabel: z.ZodOptional<z.ZodString>;
|
|
76
|
+
photoUploadImageButtonLabel: z.ZodOptional<z.ZodString>;
|
|
77
|
+
}, z.core.$strip>;
|
|
78
|
+
export declare const dateQuestionTranslationSchema: z.ZodObject<{
|
|
79
|
+
title: z.ZodString;
|
|
80
|
+
description: z.ZodOptional<z.ZodString>;
|
|
81
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
82
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
83
|
+
type: z.ZodLiteral<"date">;
|
|
84
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
85
|
+
segmentLabelDD: z.ZodOptional<z.ZodString>;
|
|
86
|
+
segmentLabelMM: z.ZodOptional<z.ZodString>;
|
|
87
|
+
segmentLabelYYYY: z.ZodOptional<z.ZodString>;
|
|
88
|
+
}, z.core.$strip>;
|
|
89
|
+
export declare const signatureQuestionTranslationSchema: z.ZodObject<{
|
|
90
|
+
title: z.ZodString;
|
|
91
|
+
description: z.ZodOptional<z.ZodString>;
|
|
92
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
93
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
94
|
+
type: z.ZodLiteral<"signature">;
|
|
95
|
+
clearButtonLabel: z.ZodOptional<z.ZodString>;
|
|
96
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
97
|
+
modeTabLabelType: z.ZodOptional<z.ZodString>;
|
|
98
|
+
modeTabLabelDraw: z.ZodOptional<z.ZodString>;
|
|
99
|
+
modeTabLabelUpload: z.ZodOptional<z.ZodString>;
|
|
100
|
+
drawCanvasHint: z.ZodOptional<z.ZodString>;
|
|
101
|
+
uploadZonePrimary: z.ZodOptional<z.ZodString>;
|
|
102
|
+
uploadZoneDrag: z.ZodOptional<z.ZodString>;
|
|
103
|
+
}, z.core.$strip>;
|
|
104
|
+
export declare const schedulerQuestionTranslationSchema: z.ZodObject<{
|
|
105
|
+
title: z.ZodString;
|
|
106
|
+
description: z.ZodOptional<z.ZodString>;
|
|
107
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
108
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
109
|
+
type: z.ZodLiteral<"scheduler">;
|
|
110
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
111
|
+
scheduleMeetingLabel: z.ZodOptional<z.ZodString>;
|
|
112
|
+
}, z.core.$strip>;
|
|
113
|
+
export declare const qnaWithAiQuestionTranslationSchema: z.ZodObject<{
|
|
114
|
+
title: z.ZodString;
|
|
115
|
+
description: z.ZodOptional<z.ZodString>;
|
|
116
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
117
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
118
|
+
type: z.ZodLiteral<"qna_with_ai">;
|
|
119
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
120
|
+
askButtonLabel: z.ZodOptional<z.ZodString>;
|
|
121
|
+
emptyStateHint: z.ZodOptional<z.ZodString>;
|
|
122
|
+
pairsRemainingTemplate: z.ZodOptional<z.ZodString>;
|
|
123
|
+
pairsLimitReachedTemplate: z.ZodOptional<z.ZodString>;
|
|
124
|
+
}, z.core.$strip>;
|
|
125
|
+
export declare const paymentsUpiQuestionTranslationSchema: z.ZodObject<{
|
|
126
|
+
title: z.ZodString;
|
|
127
|
+
description: z.ZodOptional<z.ZodString>;
|
|
128
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
129
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
130
|
+
type: z.ZodLiteral<"payments_upi">;
|
|
131
|
+
qrLabel: z.ZodOptional<z.ZodString>;
|
|
132
|
+
openUpiAppLabel: z.ZodOptional<z.ZodString>;
|
|
133
|
+
copyUpiIdLabel: z.ZodOptional<z.ZodString>;
|
|
134
|
+
transactionIdLabel: z.ZodOptional<z.ZodString>;
|
|
135
|
+
transactionIdPlaceholder: z.ZodOptional<z.ZodString>;
|
|
136
|
+
}, z.core.$strip>;
|
|
60
137
|
export declare const nestedSelectionQuestionTranslationSchema: z.ZodObject<{
|
|
61
138
|
title: z.ZodString;
|
|
62
139
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -178,6 +255,77 @@ export declare const questionTranslationSchema: z.ZodUnion<readonly [z.ZodObject
|
|
|
178
255
|
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
179
256
|
type: z.ZodLiteral<"long_text">;
|
|
180
257
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
258
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
259
|
+
title: z.ZodString;
|
|
260
|
+
description: z.ZodOptional<z.ZodString>;
|
|
261
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
262
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
263
|
+
type: z.ZodLiteral<"video_audio">;
|
|
264
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
265
|
+
modeTabLabelVideo: z.ZodOptional<z.ZodString>;
|
|
266
|
+
modeTabLabelAudio: z.ZodOptional<z.ZodString>;
|
|
267
|
+
modeTabLabelPhoto: z.ZodOptional<z.ZodString>;
|
|
268
|
+
modeTabLabelText: z.ZodOptional<z.ZodString>;
|
|
269
|
+
recordButtonLabel: z.ZodOptional<z.ZodString>;
|
|
270
|
+
uploadMediaButtonLabel: z.ZodOptional<z.ZodString>;
|
|
271
|
+
videoIdleHint: z.ZodOptional<z.ZodString>;
|
|
272
|
+
photoEmptyHint: z.ZodOptional<z.ZodString>;
|
|
273
|
+
photoUseCameraButtonLabel: z.ZodOptional<z.ZodString>;
|
|
274
|
+
photoUploadImageButtonLabel: z.ZodOptional<z.ZodString>;
|
|
275
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
276
|
+
title: z.ZodString;
|
|
277
|
+
description: z.ZodOptional<z.ZodString>;
|
|
278
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
279
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
280
|
+
type: z.ZodLiteral<"date">;
|
|
281
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
282
|
+
segmentLabelDD: z.ZodOptional<z.ZodString>;
|
|
283
|
+
segmentLabelMM: z.ZodOptional<z.ZodString>;
|
|
284
|
+
segmentLabelYYYY: z.ZodOptional<z.ZodString>;
|
|
285
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
286
|
+
title: z.ZodString;
|
|
287
|
+
description: z.ZodOptional<z.ZodString>;
|
|
288
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
289
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
290
|
+
type: z.ZodLiteral<"signature">;
|
|
291
|
+
clearButtonLabel: z.ZodOptional<z.ZodString>;
|
|
292
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
293
|
+
modeTabLabelType: z.ZodOptional<z.ZodString>;
|
|
294
|
+
modeTabLabelDraw: z.ZodOptional<z.ZodString>;
|
|
295
|
+
modeTabLabelUpload: z.ZodOptional<z.ZodString>;
|
|
296
|
+
drawCanvasHint: z.ZodOptional<z.ZodString>;
|
|
297
|
+
uploadZonePrimary: z.ZodOptional<z.ZodString>;
|
|
298
|
+
uploadZoneDrag: z.ZodOptional<z.ZodString>;
|
|
299
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
300
|
+
title: z.ZodString;
|
|
301
|
+
description: z.ZodOptional<z.ZodString>;
|
|
302
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
303
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
304
|
+
type: z.ZodLiteral<"scheduler">;
|
|
305
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
306
|
+
scheduleMeetingLabel: z.ZodOptional<z.ZodString>;
|
|
307
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
308
|
+
title: z.ZodString;
|
|
309
|
+
description: z.ZodOptional<z.ZodString>;
|
|
310
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
311
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
312
|
+
type: z.ZodLiteral<"qna_with_ai">;
|
|
313
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
314
|
+
askButtonLabel: z.ZodOptional<z.ZodString>;
|
|
315
|
+
emptyStateHint: z.ZodOptional<z.ZodString>;
|
|
316
|
+
pairsRemainingTemplate: z.ZodOptional<z.ZodString>;
|
|
317
|
+
pairsLimitReachedTemplate: z.ZodOptional<z.ZodString>;
|
|
318
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
319
|
+
title: z.ZodString;
|
|
320
|
+
description: z.ZodOptional<z.ZodString>;
|
|
321
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
322
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
323
|
+
type: z.ZodLiteral<"payments_upi">;
|
|
324
|
+
qrLabel: z.ZodOptional<z.ZodString>;
|
|
325
|
+
openUpiAppLabel: z.ZodOptional<z.ZodString>;
|
|
326
|
+
copyUpiIdLabel: z.ZodOptional<z.ZodString>;
|
|
327
|
+
transactionIdLabel: z.ZodOptional<z.ZodString>;
|
|
328
|
+
transactionIdPlaceholder: z.ZodOptional<z.ZodString>;
|
|
181
329
|
}, z.core.$strip>, z.ZodObject<{
|
|
182
330
|
title: z.ZodString;
|
|
183
331
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -301,6 +449,77 @@ export declare const questionTranslationsByLanguageSchema: z.ZodRecord<z.ZodStri
|
|
|
301
449
|
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
302
450
|
type: z.ZodLiteral<"long_text">;
|
|
303
451
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
452
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
453
|
+
title: z.ZodString;
|
|
454
|
+
description: z.ZodOptional<z.ZodString>;
|
|
455
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
456
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
457
|
+
type: z.ZodLiteral<"video_audio">;
|
|
458
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
459
|
+
modeTabLabelVideo: z.ZodOptional<z.ZodString>;
|
|
460
|
+
modeTabLabelAudio: z.ZodOptional<z.ZodString>;
|
|
461
|
+
modeTabLabelPhoto: z.ZodOptional<z.ZodString>;
|
|
462
|
+
modeTabLabelText: z.ZodOptional<z.ZodString>;
|
|
463
|
+
recordButtonLabel: z.ZodOptional<z.ZodString>;
|
|
464
|
+
uploadMediaButtonLabel: z.ZodOptional<z.ZodString>;
|
|
465
|
+
videoIdleHint: z.ZodOptional<z.ZodString>;
|
|
466
|
+
photoEmptyHint: z.ZodOptional<z.ZodString>;
|
|
467
|
+
photoUseCameraButtonLabel: z.ZodOptional<z.ZodString>;
|
|
468
|
+
photoUploadImageButtonLabel: z.ZodOptional<z.ZodString>;
|
|
469
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
470
|
+
title: z.ZodString;
|
|
471
|
+
description: z.ZodOptional<z.ZodString>;
|
|
472
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
473
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
474
|
+
type: z.ZodLiteral<"date">;
|
|
475
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
476
|
+
segmentLabelDD: z.ZodOptional<z.ZodString>;
|
|
477
|
+
segmentLabelMM: z.ZodOptional<z.ZodString>;
|
|
478
|
+
segmentLabelYYYY: z.ZodOptional<z.ZodString>;
|
|
479
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
480
|
+
title: z.ZodString;
|
|
481
|
+
description: z.ZodOptional<z.ZodString>;
|
|
482
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
483
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
484
|
+
type: z.ZodLiteral<"signature">;
|
|
485
|
+
clearButtonLabel: z.ZodOptional<z.ZodString>;
|
|
486
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
487
|
+
modeTabLabelType: z.ZodOptional<z.ZodString>;
|
|
488
|
+
modeTabLabelDraw: z.ZodOptional<z.ZodString>;
|
|
489
|
+
modeTabLabelUpload: z.ZodOptional<z.ZodString>;
|
|
490
|
+
drawCanvasHint: z.ZodOptional<z.ZodString>;
|
|
491
|
+
uploadZonePrimary: z.ZodOptional<z.ZodString>;
|
|
492
|
+
uploadZoneDrag: z.ZodOptional<z.ZodString>;
|
|
493
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
494
|
+
title: z.ZodString;
|
|
495
|
+
description: z.ZodOptional<z.ZodString>;
|
|
496
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
497
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
498
|
+
type: z.ZodLiteral<"scheduler">;
|
|
499
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
500
|
+
scheduleMeetingLabel: z.ZodOptional<z.ZodString>;
|
|
501
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
502
|
+
title: z.ZodString;
|
|
503
|
+
description: z.ZodOptional<z.ZodString>;
|
|
504
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
505
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
506
|
+
type: z.ZodLiteral<"qna_with_ai">;
|
|
507
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
508
|
+
askButtonLabel: z.ZodOptional<z.ZodString>;
|
|
509
|
+
emptyStateHint: z.ZodOptional<z.ZodString>;
|
|
510
|
+
pairsRemainingTemplate: z.ZodOptional<z.ZodString>;
|
|
511
|
+
pairsLimitReachedTemplate: z.ZodOptional<z.ZodString>;
|
|
512
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
513
|
+
title: z.ZodString;
|
|
514
|
+
description: z.ZodOptional<z.ZodString>;
|
|
515
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
516
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
517
|
+
type: z.ZodLiteral<"payments_upi">;
|
|
518
|
+
qrLabel: z.ZodOptional<z.ZodString>;
|
|
519
|
+
openUpiAppLabel: z.ZodOptional<z.ZodString>;
|
|
520
|
+
copyUpiIdLabel: z.ZodOptional<z.ZodString>;
|
|
521
|
+
transactionIdLabel: z.ZodOptional<z.ZodString>;
|
|
522
|
+
transactionIdPlaceholder: z.ZodOptional<z.ZodString>;
|
|
304
523
|
}, z.core.$strip>, z.ZodObject<{
|
|
305
524
|
title: z.ZodString;
|
|
306
525
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -413,6 +632,77 @@ export declare const questionCentricTranslationsSchema: z.ZodRecord<z.ZodString,
|
|
|
413
632
|
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
414
633
|
type: z.ZodLiteral<"long_text">;
|
|
415
634
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
635
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
636
|
+
title: z.ZodString;
|
|
637
|
+
description: z.ZodOptional<z.ZodString>;
|
|
638
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
639
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
640
|
+
type: z.ZodLiteral<"video_audio">;
|
|
641
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
642
|
+
modeTabLabelVideo: z.ZodOptional<z.ZodString>;
|
|
643
|
+
modeTabLabelAudio: z.ZodOptional<z.ZodString>;
|
|
644
|
+
modeTabLabelPhoto: z.ZodOptional<z.ZodString>;
|
|
645
|
+
modeTabLabelText: z.ZodOptional<z.ZodString>;
|
|
646
|
+
recordButtonLabel: z.ZodOptional<z.ZodString>;
|
|
647
|
+
uploadMediaButtonLabel: z.ZodOptional<z.ZodString>;
|
|
648
|
+
videoIdleHint: z.ZodOptional<z.ZodString>;
|
|
649
|
+
photoEmptyHint: z.ZodOptional<z.ZodString>;
|
|
650
|
+
photoUseCameraButtonLabel: z.ZodOptional<z.ZodString>;
|
|
651
|
+
photoUploadImageButtonLabel: z.ZodOptional<z.ZodString>;
|
|
652
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
653
|
+
title: z.ZodString;
|
|
654
|
+
description: z.ZodOptional<z.ZodString>;
|
|
655
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
656
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
657
|
+
type: z.ZodLiteral<"date">;
|
|
658
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
659
|
+
segmentLabelDD: z.ZodOptional<z.ZodString>;
|
|
660
|
+
segmentLabelMM: z.ZodOptional<z.ZodString>;
|
|
661
|
+
segmentLabelYYYY: z.ZodOptional<z.ZodString>;
|
|
662
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
663
|
+
title: z.ZodString;
|
|
664
|
+
description: z.ZodOptional<z.ZodString>;
|
|
665
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
666
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
667
|
+
type: z.ZodLiteral<"signature">;
|
|
668
|
+
clearButtonLabel: z.ZodOptional<z.ZodString>;
|
|
669
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
670
|
+
modeTabLabelType: z.ZodOptional<z.ZodString>;
|
|
671
|
+
modeTabLabelDraw: z.ZodOptional<z.ZodString>;
|
|
672
|
+
modeTabLabelUpload: z.ZodOptional<z.ZodString>;
|
|
673
|
+
drawCanvasHint: z.ZodOptional<z.ZodString>;
|
|
674
|
+
uploadZonePrimary: z.ZodOptional<z.ZodString>;
|
|
675
|
+
uploadZoneDrag: z.ZodOptional<z.ZodString>;
|
|
676
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
677
|
+
title: z.ZodString;
|
|
678
|
+
description: z.ZodOptional<z.ZodString>;
|
|
679
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
680
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
681
|
+
type: z.ZodLiteral<"scheduler">;
|
|
682
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
683
|
+
scheduleMeetingLabel: z.ZodOptional<z.ZodString>;
|
|
684
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
685
|
+
title: z.ZodString;
|
|
686
|
+
description: z.ZodOptional<z.ZodString>;
|
|
687
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
688
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
689
|
+
type: z.ZodLiteral<"qna_with_ai">;
|
|
690
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
691
|
+
askButtonLabel: z.ZodOptional<z.ZodString>;
|
|
692
|
+
emptyStateHint: z.ZodOptional<z.ZodString>;
|
|
693
|
+
pairsRemainingTemplate: z.ZodOptional<z.ZodString>;
|
|
694
|
+
pairsLimitReachedTemplate: z.ZodOptional<z.ZodString>;
|
|
695
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
696
|
+
title: z.ZodString;
|
|
697
|
+
description: z.ZodOptional<z.ZodString>;
|
|
698
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
699
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
700
|
+
type: z.ZodLiteral<"payments_upi">;
|
|
701
|
+
qrLabel: z.ZodOptional<z.ZodString>;
|
|
702
|
+
openUpiAppLabel: z.ZodOptional<z.ZodString>;
|
|
703
|
+
copyUpiIdLabel: z.ZodOptional<z.ZodString>;
|
|
704
|
+
transactionIdLabel: z.ZodOptional<z.ZodString>;
|
|
705
|
+
transactionIdPlaceholder: z.ZodOptional<z.ZodString>;
|
|
416
706
|
}, z.core.$strip>, z.ZodObject<{
|
|
417
707
|
title: z.ZodString;
|
|
418
708
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -525,6 +815,77 @@ export declare const translationsSchema: z.ZodRecord<z.ZodString, z.ZodRecord<z.
|
|
|
525
815
|
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
526
816
|
type: z.ZodLiteral<"long_text">;
|
|
527
817
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
818
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
819
|
+
title: z.ZodString;
|
|
820
|
+
description: z.ZodOptional<z.ZodString>;
|
|
821
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
822
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
823
|
+
type: z.ZodLiteral<"video_audio">;
|
|
824
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
825
|
+
modeTabLabelVideo: z.ZodOptional<z.ZodString>;
|
|
826
|
+
modeTabLabelAudio: z.ZodOptional<z.ZodString>;
|
|
827
|
+
modeTabLabelPhoto: z.ZodOptional<z.ZodString>;
|
|
828
|
+
modeTabLabelText: z.ZodOptional<z.ZodString>;
|
|
829
|
+
recordButtonLabel: z.ZodOptional<z.ZodString>;
|
|
830
|
+
uploadMediaButtonLabel: z.ZodOptional<z.ZodString>;
|
|
831
|
+
videoIdleHint: z.ZodOptional<z.ZodString>;
|
|
832
|
+
photoEmptyHint: z.ZodOptional<z.ZodString>;
|
|
833
|
+
photoUseCameraButtonLabel: z.ZodOptional<z.ZodString>;
|
|
834
|
+
photoUploadImageButtonLabel: z.ZodOptional<z.ZodString>;
|
|
835
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
836
|
+
title: z.ZodString;
|
|
837
|
+
description: z.ZodOptional<z.ZodString>;
|
|
838
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
839
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
840
|
+
type: z.ZodLiteral<"date">;
|
|
841
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
842
|
+
segmentLabelDD: z.ZodOptional<z.ZodString>;
|
|
843
|
+
segmentLabelMM: z.ZodOptional<z.ZodString>;
|
|
844
|
+
segmentLabelYYYY: z.ZodOptional<z.ZodString>;
|
|
845
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
846
|
+
title: z.ZodString;
|
|
847
|
+
description: z.ZodOptional<z.ZodString>;
|
|
848
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
849
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
850
|
+
type: z.ZodLiteral<"signature">;
|
|
851
|
+
clearButtonLabel: z.ZodOptional<z.ZodString>;
|
|
852
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
853
|
+
modeTabLabelType: z.ZodOptional<z.ZodString>;
|
|
854
|
+
modeTabLabelDraw: z.ZodOptional<z.ZodString>;
|
|
855
|
+
modeTabLabelUpload: z.ZodOptional<z.ZodString>;
|
|
856
|
+
drawCanvasHint: z.ZodOptional<z.ZodString>;
|
|
857
|
+
uploadZonePrimary: z.ZodOptional<z.ZodString>;
|
|
858
|
+
uploadZoneDrag: z.ZodOptional<z.ZodString>;
|
|
859
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
860
|
+
title: z.ZodString;
|
|
861
|
+
description: z.ZodOptional<z.ZodString>;
|
|
862
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
863
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
864
|
+
type: z.ZodLiteral<"scheduler">;
|
|
865
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
866
|
+
scheduleMeetingLabel: z.ZodOptional<z.ZodString>;
|
|
867
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
868
|
+
title: z.ZodString;
|
|
869
|
+
description: z.ZodOptional<z.ZodString>;
|
|
870
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
871
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
872
|
+
type: z.ZodLiteral<"qna_with_ai">;
|
|
873
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
874
|
+
askButtonLabel: z.ZodOptional<z.ZodString>;
|
|
875
|
+
emptyStateHint: z.ZodOptional<z.ZodString>;
|
|
876
|
+
pairsRemainingTemplate: z.ZodOptional<z.ZodString>;
|
|
877
|
+
pairsLimitReachedTemplate: z.ZodOptional<z.ZodString>;
|
|
878
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
879
|
+
title: z.ZodString;
|
|
880
|
+
description: z.ZodOptional<z.ZodString>;
|
|
881
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
882
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
883
|
+
type: z.ZodLiteral<"payments_upi">;
|
|
884
|
+
qrLabel: z.ZodOptional<z.ZodString>;
|
|
885
|
+
openUpiAppLabel: z.ZodOptional<z.ZodString>;
|
|
886
|
+
copyUpiIdLabel: z.ZodOptional<z.ZodString>;
|
|
887
|
+
transactionIdLabel: z.ZodOptional<z.ZodString>;
|
|
888
|
+
transactionIdPlaceholder: z.ZodOptional<z.ZodString>;
|
|
528
889
|
}, z.core.$strip>, z.ZodObject<{
|
|
529
890
|
title: z.ZodString;
|
|
530
891
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -600,6 +961,12 @@ export type MultipleChoiceQuestionTranslation = z.infer<typeof multipleChoiceQue
|
|
|
600
961
|
export type NpsQuestionTranslation = z.infer<typeof npsQuestionTranslationSchema>;
|
|
601
962
|
export type ShortAnswerQuestionTranslation = z.infer<typeof shortAnswerQuestionTranslationSchema>;
|
|
602
963
|
export type LongAnswerQuestionTranslation = z.infer<typeof longAnswerQuestionTranslationSchema>;
|
|
964
|
+
export type VideoAudioQuestionTranslation = z.infer<typeof videoAudioQuestionTranslationSchema>;
|
|
965
|
+
export type DateQuestionTranslation = z.infer<typeof dateQuestionTranslationSchema>;
|
|
966
|
+
export type SignatureQuestionTranslation = z.infer<typeof signatureQuestionTranslationSchema>;
|
|
967
|
+
export type SchedulerQuestionTranslation = z.infer<typeof schedulerQuestionTranslationSchema>;
|
|
968
|
+
export type QnaWithAiQuestionTranslation = z.infer<typeof qnaWithAiQuestionTranslationSchema>;
|
|
969
|
+
export type PaymentsUpiQuestionTranslation = z.infer<typeof paymentsUpiQuestionTranslationSchema>;
|
|
603
970
|
export type NestedSelectionQuestionTranslation = z.infer<typeof nestedSelectionQuestionTranslationSchema>;
|
|
604
971
|
export type AnnotationQuestionTranslation = z.infer<typeof annotationQuestionTranslationSchema>;
|
|
605
972
|
export type WelcomeQuestionTranslation = z.infer<typeof welcomeQuestionTranslationSchema>;
|
package/package.json
CHANGED