@encatch/schema 1.1.0 → 1.2.0-beta.0
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 +425 -28
- package/dist/esm/index.js.map +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/types/schemas/api/fetch-feedback-schema.d.ts +2441 -395
- package/dist/types/schemas/api/submit-feedback-schema.d.ts +372 -0
- package/dist/types/schemas/fields/answer-schema.d.ts +196 -0
- package/dist/types/schemas/fields/app-props-schema.d.ts +1046 -18
- package/dist/types/schemas/fields/field-schema.d.ts +2438 -240
- package/dist/types/schemas/fields/form-properties-schema.d.ts +1058 -17
- package/dist/types/schemas/fields/other-screen-schema.d.ts +6 -0
- package/dist/types/schemas/fields/theme-schema.d.ts +2 -0
- package/package.json +1 -1
|
@@ -6,6 +6,9 @@ export declare const OtherFieldsSchema: z.ZodObject<{
|
|
|
6
6
|
aiEnhancementSuccessMessage: z.ZodString;
|
|
7
7
|
aiEnhancementCooldownErrorMessage: z.ZodString;
|
|
8
8
|
aiEnhancementMaxReachedErrorMessage: z.ZodString;
|
|
9
|
+
remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
|
|
10
|
+
estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
|
|
11
|
+
respondentsShowMinThreshold: z.ZodOptional<z.ZodNumber>;
|
|
9
12
|
}, z.core.$strip>;
|
|
10
13
|
export declare const LanguageFieldSchema: z.ZodObject<{
|
|
11
14
|
value: z.ZodString;
|
|
@@ -21,6 +24,9 @@ export declare const OtherFieldsTranslationSchema: z.ZodObject<{
|
|
|
21
24
|
aiEnhancementSuccessMessage: z.ZodString;
|
|
22
25
|
aiEnhancementCooldownErrorMessage: z.ZodString;
|
|
23
26
|
aiEnhancementMaxReachedErrorMessage: z.ZodString;
|
|
27
|
+
remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
|
|
28
|
+
estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
|
|
29
|
+
respondentsLabel: z.ZodOptional<z.ZodString>;
|
|
24
30
|
}, z.core.$strip>;
|
|
25
31
|
export type OtherFields = z.infer<typeof OtherFieldsSchema>;
|
|
26
32
|
export type OtherFieldsTranslation = z.infer<typeof OtherFieldsTranslationSchema>;
|
|
@@ -69,6 +69,7 @@ export declare const featureSettingsSchema: z.ZodObject<{
|
|
|
69
69
|
always: "always";
|
|
70
70
|
auto: "auto";
|
|
71
71
|
}>>;
|
|
72
|
+
maxDialogHeightPercentInApp: z.ZodOptional<z.ZodNumber>;
|
|
72
73
|
}, z.core.$strip>;
|
|
73
74
|
export declare const themeColorsSchema: z.ZodObject<{
|
|
74
75
|
theme: z.ZodOptional<z.ZodString>;
|
|
@@ -110,6 +111,7 @@ export declare const themeConfigurationSchema: z.ZodObject<{
|
|
|
110
111
|
always: "always";
|
|
111
112
|
auto: "auto";
|
|
112
113
|
}>>;
|
|
114
|
+
maxDialogHeightPercentInApp: z.ZodOptional<z.ZodNumber>;
|
|
113
115
|
}, z.core.$strip>;
|
|
114
116
|
selectedPosition: z.ZodEnum<{
|
|
115
117
|
"top-left": "top-left";
|
package/package.json
CHANGED