@encatch/schema 1.1.1 → 1.2.0-beta.1

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,10 @@ 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>;
12
+ windowTitle: z.ZodOptional<z.ZodString>;
9
13
  }, z.core.$strip>;
10
14
  export declare const LanguageFieldSchema: z.ZodObject<{
11
15
  value: z.ZodString;
@@ -21,6 +25,10 @@ export declare const OtherFieldsTranslationSchema: z.ZodObject<{
21
25
  aiEnhancementSuccessMessage: z.ZodString;
22
26
  aiEnhancementCooldownErrorMessage: z.ZodString;
23
27
  aiEnhancementMaxReachedErrorMessage: z.ZodString;
28
+ remindMeLaterButtonLabel: z.ZodOptional<z.ZodString>;
29
+ estimatedCompletionLabel: z.ZodOptional<z.ZodString>;
30
+ respondentsLabel: z.ZodOptional<z.ZodString>;
31
+ windowTitle: z.ZodOptional<z.ZodString>;
24
32
  }, z.core.$strip>;
25
33
  export type OtherFields = z.infer<typeof OtherFieldsSchema>;
26
34
  export type OtherFieldsTranslation = z.infer<typeof OtherFieldsTranslationSchema>;
@@ -69,6 +69,8 @@ export declare const featureSettingsSchema: z.ZodObject<{
69
69
  always: "always";
70
70
  auto: "auto";
71
71
  }>>;
72
+ maxDialogHeightPercentInApp: z.ZodOptional<z.ZodNumber>;
73
+ faviconUrl: z.ZodOptional<z.ZodString>;
72
74
  }, z.core.$strip>;
73
75
  export declare const themeColorsSchema: z.ZodObject<{
74
76
  theme: z.ZodOptional<z.ZodString>;
@@ -110,6 +112,8 @@ export declare const themeConfigurationSchema: z.ZodObject<{
110
112
  always: "always";
111
113
  auto: "auto";
112
114
  }>>;
115
+ maxDialogHeightPercentInApp: z.ZodOptional<z.ZodNumber>;
116
+ faviconUrl: z.ZodOptional<z.ZodString>;
113
117
  }, z.core.$strip>;
114
118
  selectedPosition: z.ZodEnum<{
115
119
  "top-left": "top-left";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@encatch/schema",
3
- "version": "1.1.1",
3
+ "version": "1.2.0-beta.1",
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",