@encatch/schema 1.2.0-beta.0 → 1.2.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.
- package/dist/esm/index.js +150 -44
- package/dist/esm/index.js.map +2 -2
- package/dist/types/index.d.ts +1 -1
- package/dist/types/schemas/api/fetch-feedback-schema.d.ts +525 -5
- package/dist/types/schemas/api/submit-feedback-schema.d.ts +66 -60
- package/dist/types/schemas/fields/answer-schema.d.ts +30 -27
- package/dist/types/schemas/fields/app-props-schema.d.ts +325 -2
- package/dist/types/schemas/fields/field-schema.d.ts +535 -13
- package/dist/types/schemas/fields/form-properties-schema.d.ts +332 -2
- package/dist/types/schemas/fields/other-screen-schema.d.ts +3 -0
- package/dist/types/schemas/fields/theme-schema.d.ts +2 -0
- package/dist/types/schemas/fields/translations-schema.d.ts +310 -0
- package/package.json +1 -1
|
@@ -9,6 +9,8 @@ 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>;
|
|
13
|
+
windowTitle: z.ZodOptional<z.ZodString>;
|
|
12
14
|
}, z.core.$strip>;
|
|
13
15
|
export declare const LanguageFieldSchema: z.ZodObject<{
|
|
14
16
|
value: z.ZodString;
|
|
@@ -27,6 +29,7 @@ export declare const OtherFieldsTranslationSchema: z.ZodObject<{
|
|
|
27
29
|
remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
|
|
28
30
|
estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
|
|
29
31
|
respondentsLabel: z.ZodOptional<z.ZodString>;
|
|
32
|
+
windowTitle: z.ZodOptional<z.ZodString>;
|
|
30
33
|
}, z.core.$strip>;
|
|
31
34
|
export type OtherFields = z.infer<typeof OtherFieldsSchema>;
|
|
32
35
|
export type OtherFieldsTranslation = z.infer<typeof OtherFieldsTranslationSchema>;
|
|
@@ -70,6 +70,7 @@ export declare const featureSettingsSchema: z.ZodObject<{
|
|
|
70
70
|
auto: "auto";
|
|
71
71
|
}>>;
|
|
72
72
|
maxDialogHeightPercentInApp: z.ZodOptional<z.ZodNumber>;
|
|
73
|
+
faviconUrl: z.ZodOptional<z.ZodString>;
|
|
73
74
|
}, z.core.$strip>;
|
|
74
75
|
export declare const themeColorsSchema: z.ZodObject<{
|
|
75
76
|
theme: z.ZodOptional<z.ZodString>;
|
|
@@ -112,6 +113,7 @@ export declare const themeConfigurationSchema: z.ZodObject<{
|
|
|
112
113
|
auto: "auto";
|
|
113
114
|
}>>;
|
|
114
115
|
maxDialogHeightPercentInApp: z.ZodOptional<z.ZodNumber>;
|
|
116
|
+
faviconUrl: z.ZodOptional<z.ZodString>;
|
|
115
117
|
}, z.core.$strip>;
|
|
116
118
|
selectedPosition: z.ZodEnum<{
|
|
117
119
|
"top-left": "top-left";
|
|
@@ -57,6 +57,71 @@ 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>;
|
|
60
125
|
export declare const nestedSelectionQuestionTranslationSchema: z.ZodObject<{
|
|
61
126
|
title: z.ZodString;
|
|
62
127
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -178,6 +243,66 @@ export declare const questionTranslationSchema: z.ZodUnion<readonly [z.ZodObject
|
|
|
178
243
|
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
179
244
|
type: z.ZodLiteral<"long_text">;
|
|
180
245
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
246
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
247
|
+
title: z.ZodString;
|
|
248
|
+
description: z.ZodOptional<z.ZodString>;
|
|
249
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
250
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
251
|
+
type: z.ZodLiteral<"video_audio">;
|
|
252
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
253
|
+
modeTabLabelVideo: z.ZodOptional<z.ZodString>;
|
|
254
|
+
modeTabLabelAudio: z.ZodOptional<z.ZodString>;
|
|
255
|
+
modeTabLabelPhoto: z.ZodOptional<z.ZodString>;
|
|
256
|
+
modeTabLabelText: z.ZodOptional<z.ZodString>;
|
|
257
|
+
recordButtonLabel: z.ZodOptional<z.ZodString>;
|
|
258
|
+
uploadMediaButtonLabel: z.ZodOptional<z.ZodString>;
|
|
259
|
+
videoIdleHint: z.ZodOptional<z.ZodString>;
|
|
260
|
+
photoEmptyHint: z.ZodOptional<z.ZodString>;
|
|
261
|
+
photoUseCameraButtonLabel: z.ZodOptional<z.ZodString>;
|
|
262
|
+
photoUploadImageButtonLabel: z.ZodOptional<z.ZodString>;
|
|
263
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
264
|
+
title: z.ZodString;
|
|
265
|
+
description: z.ZodOptional<z.ZodString>;
|
|
266
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
267
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
268
|
+
type: z.ZodLiteral<"date">;
|
|
269
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
270
|
+
segmentLabelDD: z.ZodOptional<z.ZodString>;
|
|
271
|
+
segmentLabelMM: z.ZodOptional<z.ZodString>;
|
|
272
|
+
segmentLabelYYYY: z.ZodOptional<z.ZodString>;
|
|
273
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
274
|
+
title: z.ZodString;
|
|
275
|
+
description: z.ZodOptional<z.ZodString>;
|
|
276
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
277
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
278
|
+
type: z.ZodLiteral<"signature">;
|
|
279
|
+
clearButtonLabel: z.ZodOptional<z.ZodString>;
|
|
280
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
281
|
+
modeTabLabelType: z.ZodOptional<z.ZodString>;
|
|
282
|
+
modeTabLabelDraw: z.ZodOptional<z.ZodString>;
|
|
283
|
+
modeTabLabelUpload: z.ZodOptional<z.ZodString>;
|
|
284
|
+
drawCanvasHint: z.ZodOptional<z.ZodString>;
|
|
285
|
+
uploadZonePrimary: z.ZodOptional<z.ZodString>;
|
|
286
|
+
uploadZoneDrag: z.ZodOptional<z.ZodString>;
|
|
287
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
288
|
+
title: z.ZodString;
|
|
289
|
+
description: z.ZodOptional<z.ZodString>;
|
|
290
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
291
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
292
|
+
type: z.ZodLiteral<"scheduler">;
|
|
293
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
294
|
+
scheduleMeetingLabel: z.ZodOptional<z.ZodString>;
|
|
295
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
296
|
+
title: z.ZodString;
|
|
297
|
+
description: z.ZodOptional<z.ZodString>;
|
|
298
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
299
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
300
|
+
type: z.ZodLiteral<"qna_with_ai">;
|
|
301
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
302
|
+
askButtonLabel: z.ZodOptional<z.ZodString>;
|
|
303
|
+
emptyStateHint: z.ZodOptional<z.ZodString>;
|
|
304
|
+
pairsRemainingTemplate: z.ZodOptional<z.ZodString>;
|
|
305
|
+
pairsLimitReachedTemplate: z.ZodOptional<z.ZodString>;
|
|
181
306
|
}, z.core.$strip>, z.ZodObject<{
|
|
182
307
|
title: z.ZodString;
|
|
183
308
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -301,6 +426,66 @@ export declare const questionTranslationsByLanguageSchema: z.ZodRecord<z.ZodStri
|
|
|
301
426
|
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
302
427
|
type: z.ZodLiteral<"long_text">;
|
|
303
428
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
429
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
430
|
+
title: z.ZodString;
|
|
431
|
+
description: z.ZodOptional<z.ZodString>;
|
|
432
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
433
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
434
|
+
type: z.ZodLiteral<"video_audio">;
|
|
435
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
436
|
+
modeTabLabelVideo: z.ZodOptional<z.ZodString>;
|
|
437
|
+
modeTabLabelAudio: z.ZodOptional<z.ZodString>;
|
|
438
|
+
modeTabLabelPhoto: z.ZodOptional<z.ZodString>;
|
|
439
|
+
modeTabLabelText: z.ZodOptional<z.ZodString>;
|
|
440
|
+
recordButtonLabel: z.ZodOptional<z.ZodString>;
|
|
441
|
+
uploadMediaButtonLabel: z.ZodOptional<z.ZodString>;
|
|
442
|
+
videoIdleHint: z.ZodOptional<z.ZodString>;
|
|
443
|
+
photoEmptyHint: z.ZodOptional<z.ZodString>;
|
|
444
|
+
photoUseCameraButtonLabel: z.ZodOptional<z.ZodString>;
|
|
445
|
+
photoUploadImageButtonLabel: z.ZodOptional<z.ZodString>;
|
|
446
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
447
|
+
title: z.ZodString;
|
|
448
|
+
description: z.ZodOptional<z.ZodString>;
|
|
449
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
450
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
451
|
+
type: z.ZodLiteral<"date">;
|
|
452
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
453
|
+
segmentLabelDD: z.ZodOptional<z.ZodString>;
|
|
454
|
+
segmentLabelMM: z.ZodOptional<z.ZodString>;
|
|
455
|
+
segmentLabelYYYY: z.ZodOptional<z.ZodString>;
|
|
456
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
457
|
+
title: z.ZodString;
|
|
458
|
+
description: z.ZodOptional<z.ZodString>;
|
|
459
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
460
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
461
|
+
type: z.ZodLiteral<"signature">;
|
|
462
|
+
clearButtonLabel: z.ZodOptional<z.ZodString>;
|
|
463
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
464
|
+
modeTabLabelType: z.ZodOptional<z.ZodString>;
|
|
465
|
+
modeTabLabelDraw: z.ZodOptional<z.ZodString>;
|
|
466
|
+
modeTabLabelUpload: z.ZodOptional<z.ZodString>;
|
|
467
|
+
drawCanvasHint: z.ZodOptional<z.ZodString>;
|
|
468
|
+
uploadZonePrimary: z.ZodOptional<z.ZodString>;
|
|
469
|
+
uploadZoneDrag: z.ZodOptional<z.ZodString>;
|
|
470
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
471
|
+
title: z.ZodString;
|
|
472
|
+
description: z.ZodOptional<z.ZodString>;
|
|
473
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
474
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
475
|
+
type: z.ZodLiteral<"scheduler">;
|
|
476
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
477
|
+
scheduleMeetingLabel: z.ZodOptional<z.ZodString>;
|
|
478
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
479
|
+
title: z.ZodString;
|
|
480
|
+
description: z.ZodOptional<z.ZodString>;
|
|
481
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
482
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
483
|
+
type: z.ZodLiteral<"qna_with_ai">;
|
|
484
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
485
|
+
askButtonLabel: z.ZodOptional<z.ZodString>;
|
|
486
|
+
emptyStateHint: z.ZodOptional<z.ZodString>;
|
|
487
|
+
pairsRemainingTemplate: z.ZodOptional<z.ZodString>;
|
|
488
|
+
pairsLimitReachedTemplate: z.ZodOptional<z.ZodString>;
|
|
304
489
|
}, z.core.$strip>, z.ZodObject<{
|
|
305
490
|
title: z.ZodString;
|
|
306
491
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -413,6 +598,66 @@ export declare const questionCentricTranslationsSchema: z.ZodRecord<z.ZodString,
|
|
|
413
598
|
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
414
599
|
type: z.ZodLiteral<"long_text">;
|
|
415
600
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
601
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
602
|
+
title: z.ZodString;
|
|
603
|
+
description: z.ZodOptional<z.ZodString>;
|
|
604
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
605
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
606
|
+
type: z.ZodLiteral<"video_audio">;
|
|
607
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
608
|
+
modeTabLabelVideo: z.ZodOptional<z.ZodString>;
|
|
609
|
+
modeTabLabelAudio: z.ZodOptional<z.ZodString>;
|
|
610
|
+
modeTabLabelPhoto: z.ZodOptional<z.ZodString>;
|
|
611
|
+
modeTabLabelText: z.ZodOptional<z.ZodString>;
|
|
612
|
+
recordButtonLabel: z.ZodOptional<z.ZodString>;
|
|
613
|
+
uploadMediaButtonLabel: z.ZodOptional<z.ZodString>;
|
|
614
|
+
videoIdleHint: z.ZodOptional<z.ZodString>;
|
|
615
|
+
photoEmptyHint: z.ZodOptional<z.ZodString>;
|
|
616
|
+
photoUseCameraButtonLabel: z.ZodOptional<z.ZodString>;
|
|
617
|
+
photoUploadImageButtonLabel: z.ZodOptional<z.ZodString>;
|
|
618
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
619
|
+
title: z.ZodString;
|
|
620
|
+
description: z.ZodOptional<z.ZodString>;
|
|
621
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
622
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
623
|
+
type: z.ZodLiteral<"date">;
|
|
624
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
625
|
+
segmentLabelDD: z.ZodOptional<z.ZodString>;
|
|
626
|
+
segmentLabelMM: z.ZodOptional<z.ZodString>;
|
|
627
|
+
segmentLabelYYYY: z.ZodOptional<z.ZodString>;
|
|
628
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
629
|
+
title: z.ZodString;
|
|
630
|
+
description: z.ZodOptional<z.ZodString>;
|
|
631
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
632
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
633
|
+
type: z.ZodLiteral<"signature">;
|
|
634
|
+
clearButtonLabel: z.ZodOptional<z.ZodString>;
|
|
635
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
636
|
+
modeTabLabelType: z.ZodOptional<z.ZodString>;
|
|
637
|
+
modeTabLabelDraw: z.ZodOptional<z.ZodString>;
|
|
638
|
+
modeTabLabelUpload: z.ZodOptional<z.ZodString>;
|
|
639
|
+
drawCanvasHint: z.ZodOptional<z.ZodString>;
|
|
640
|
+
uploadZonePrimary: z.ZodOptional<z.ZodString>;
|
|
641
|
+
uploadZoneDrag: z.ZodOptional<z.ZodString>;
|
|
642
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
643
|
+
title: z.ZodString;
|
|
644
|
+
description: z.ZodOptional<z.ZodString>;
|
|
645
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
646
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
647
|
+
type: z.ZodLiteral<"scheduler">;
|
|
648
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
649
|
+
scheduleMeetingLabel: z.ZodOptional<z.ZodString>;
|
|
650
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
651
|
+
title: z.ZodString;
|
|
652
|
+
description: z.ZodOptional<z.ZodString>;
|
|
653
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
654
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
655
|
+
type: z.ZodLiteral<"qna_with_ai">;
|
|
656
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
657
|
+
askButtonLabel: z.ZodOptional<z.ZodString>;
|
|
658
|
+
emptyStateHint: z.ZodOptional<z.ZodString>;
|
|
659
|
+
pairsRemainingTemplate: z.ZodOptional<z.ZodString>;
|
|
660
|
+
pairsLimitReachedTemplate: z.ZodOptional<z.ZodString>;
|
|
416
661
|
}, z.core.$strip>, z.ZodObject<{
|
|
417
662
|
title: z.ZodString;
|
|
418
663
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -525,6 +770,66 @@ export declare const translationsSchema: z.ZodRecord<z.ZodString, z.ZodRecord<z.
|
|
|
525
770
|
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
526
771
|
type: z.ZodLiteral<"long_text">;
|
|
527
772
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
773
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
774
|
+
title: z.ZodString;
|
|
775
|
+
description: z.ZodOptional<z.ZodString>;
|
|
776
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
777
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
778
|
+
type: z.ZodLiteral<"video_audio">;
|
|
779
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
780
|
+
modeTabLabelVideo: z.ZodOptional<z.ZodString>;
|
|
781
|
+
modeTabLabelAudio: z.ZodOptional<z.ZodString>;
|
|
782
|
+
modeTabLabelPhoto: z.ZodOptional<z.ZodString>;
|
|
783
|
+
modeTabLabelText: z.ZodOptional<z.ZodString>;
|
|
784
|
+
recordButtonLabel: z.ZodOptional<z.ZodString>;
|
|
785
|
+
uploadMediaButtonLabel: z.ZodOptional<z.ZodString>;
|
|
786
|
+
videoIdleHint: z.ZodOptional<z.ZodString>;
|
|
787
|
+
photoEmptyHint: z.ZodOptional<z.ZodString>;
|
|
788
|
+
photoUseCameraButtonLabel: z.ZodOptional<z.ZodString>;
|
|
789
|
+
photoUploadImageButtonLabel: z.ZodOptional<z.ZodString>;
|
|
790
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
791
|
+
title: z.ZodString;
|
|
792
|
+
description: z.ZodOptional<z.ZodString>;
|
|
793
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
794
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
795
|
+
type: z.ZodLiteral<"date">;
|
|
796
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
797
|
+
segmentLabelDD: z.ZodOptional<z.ZodString>;
|
|
798
|
+
segmentLabelMM: z.ZodOptional<z.ZodString>;
|
|
799
|
+
segmentLabelYYYY: z.ZodOptional<z.ZodString>;
|
|
800
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
801
|
+
title: z.ZodString;
|
|
802
|
+
description: z.ZodOptional<z.ZodString>;
|
|
803
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
804
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
805
|
+
type: z.ZodLiteral<"signature">;
|
|
806
|
+
clearButtonLabel: z.ZodOptional<z.ZodString>;
|
|
807
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
808
|
+
modeTabLabelType: z.ZodOptional<z.ZodString>;
|
|
809
|
+
modeTabLabelDraw: z.ZodOptional<z.ZodString>;
|
|
810
|
+
modeTabLabelUpload: z.ZodOptional<z.ZodString>;
|
|
811
|
+
drawCanvasHint: z.ZodOptional<z.ZodString>;
|
|
812
|
+
uploadZonePrimary: z.ZodOptional<z.ZodString>;
|
|
813
|
+
uploadZoneDrag: z.ZodOptional<z.ZodString>;
|
|
814
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
815
|
+
title: z.ZodString;
|
|
816
|
+
description: z.ZodOptional<z.ZodString>;
|
|
817
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
818
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
819
|
+
type: z.ZodLiteral<"scheduler">;
|
|
820
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
821
|
+
scheduleMeetingLabel: z.ZodOptional<z.ZodString>;
|
|
822
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
823
|
+
title: z.ZodString;
|
|
824
|
+
description: z.ZodOptional<z.ZodString>;
|
|
825
|
+
errorMessage: z.ZodOptional<z.ZodString>;
|
|
826
|
+
nextButtonLabel: z.ZodOptional<z.ZodString>;
|
|
827
|
+
type: z.ZodLiteral<"qna_with_ai">;
|
|
828
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
829
|
+
askButtonLabel: z.ZodOptional<z.ZodString>;
|
|
830
|
+
emptyStateHint: z.ZodOptional<z.ZodString>;
|
|
831
|
+
pairsRemainingTemplate: z.ZodOptional<z.ZodString>;
|
|
832
|
+
pairsLimitReachedTemplate: z.ZodOptional<z.ZodString>;
|
|
528
833
|
}, z.core.$strip>, z.ZodObject<{
|
|
529
834
|
title: z.ZodString;
|
|
530
835
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -600,6 +905,11 @@ export type MultipleChoiceQuestionTranslation = z.infer<typeof multipleChoiceQue
|
|
|
600
905
|
export type NpsQuestionTranslation = z.infer<typeof npsQuestionTranslationSchema>;
|
|
601
906
|
export type ShortAnswerQuestionTranslation = z.infer<typeof shortAnswerQuestionTranslationSchema>;
|
|
602
907
|
export type LongAnswerQuestionTranslation = z.infer<typeof longAnswerQuestionTranslationSchema>;
|
|
908
|
+
export type VideoAudioQuestionTranslation = z.infer<typeof videoAudioQuestionTranslationSchema>;
|
|
909
|
+
export type DateQuestionTranslation = z.infer<typeof dateQuestionTranslationSchema>;
|
|
910
|
+
export type SignatureQuestionTranslation = z.infer<typeof signatureQuestionTranslationSchema>;
|
|
911
|
+
export type SchedulerQuestionTranslation = z.infer<typeof schedulerQuestionTranslationSchema>;
|
|
912
|
+
export type QnaWithAiQuestionTranslation = z.infer<typeof qnaWithAiQuestionTranslationSchema>;
|
|
603
913
|
export type NestedSelectionQuestionTranslation = z.infer<typeof nestedSelectionQuestionTranslationSchema>;
|
|
604
914
|
export type AnnotationQuestionTranslation = z.infer<typeof annotationQuestionTranslationSchema>;
|
|
605
915
|
export type WelcomeQuestionTranslation = z.infer<typeof welcomeQuestionTranslationSchema>;
|
package/package.json
CHANGED