@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@encatch/schema",
3
- "version": "1.1.0",
3
+ "version": "1.2.0-beta.0",
4
4
  "description": "TypeScript schema definitions using Zod for validation and type inference of encatch product",
5
5
  "homepage": "https://encatch.com",
6
6
  "type": "module",