@encatch/schema 0.1.14 → 0.1.16

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.
@@ -1,4 +1,28 @@
1
1
  import { z } from "zod";
2
+ export declare const customEventFieldOperatorSchema: z.ZodObject<{
3
+ name: z.ZodString;
4
+ label: z.ZodString;
5
+ }, z.core.$strip>;
6
+ export declare const customEventFieldSchema: z.ZodObject<{
7
+ name: z.ZodString;
8
+ label: z.ZodString;
9
+ placeholder: z.ZodString;
10
+ operators: z.ZodArray<z.ZodObject<{
11
+ name: z.ZodString;
12
+ label: z.ZodString;
13
+ }, z.core.$strip>>;
14
+ }, z.core.$strip>;
15
+ export declare const conditionalIfMetadataSchema: z.ZodObject<{
16
+ customEventFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
17
+ name: z.ZodString;
18
+ label: z.ZodString;
19
+ placeholder: z.ZodString;
20
+ operators: z.ZodArray<z.ZodObject<{
21
+ name: z.ZodString;
22
+ label: z.ZodString;
23
+ }, z.core.$strip>>;
24
+ }, z.core.$strip>>>;
25
+ }, z.core.$strip>;
2
26
  export declare const queryOutputSchema: z.ZodObject<{
3
27
  query: z.ZodString;
4
28
  naturalLanguage: z.ZodString;
@@ -14,6 +38,17 @@ export declare const conditionalIfSchema: z.ZodObject<{
14
38
  jsonLogic: z.ZodString;
15
39
  sqlQuery: z.ZodString;
16
40
  }, z.core.$strip>;
41
+ metadata: z.ZodOptional<z.ZodObject<{
42
+ customEventFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
43
+ name: z.ZodString;
44
+ label: z.ZodString;
45
+ placeholder: z.ZodString;
46
+ operators: z.ZodArray<z.ZodObject<{
47
+ name: z.ZodString;
48
+ label: z.ZodString;
49
+ }, z.core.$strip>>;
50
+ }, z.core.$strip>>>;
51
+ }, z.core.$strip>>;
17
52
  }, z.core.$strip>;
18
53
  export declare const triggerActionSchema: z.ZodObject<{
19
54
  triggerType: z.ZodString;
@@ -30,6 +65,17 @@ export declare const conditionalWhenSchema: z.ZodObject<{
30
65
  jsonLogic: z.ZodString;
31
66
  sqlQuery: z.ZodString;
32
67
  }, z.core.$strip>;
68
+ metadata: z.ZodOptional<z.ZodObject<{
69
+ customEventFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
70
+ name: z.ZodString;
71
+ label: z.ZodString;
72
+ placeholder: z.ZodString;
73
+ operators: z.ZodArray<z.ZodObject<{
74
+ name: z.ZodString;
75
+ label: z.ZodString;
76
+ }, z.core.$strip>>;
77
+ }, z.core.$strip>>>;
78
+ }, z.core.$strip>>;
33
79
  }, z.core.$strip>;
34
80
  then: z.ZodObject<{
35
81
  triggerType: z.ZodString;
@@ -115,6 +161,17 @@ export declare const audienceSegmentSchema: z.ZodObject<{
115
161
  jsonLogic: z.ZodString;
116
162
  sqlQuery: z.ZodString;
117
163
  }, z.core.$strip>;
164
+ metadata: z.ZodOptional<z.ZodObject<{
165
+ customEventFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
166
+ name: z.ZodString;
167
+ label: z.ZodString;
168
+ placeholder: z.ZodString;
169
+ operators: z.ZodArray<z.ZodObject<{
170
+ name: z.ZodString;
171
+ label: z.ZodString;
172
+ }, z.core.$strip>>;
173
+ }, z.core.$strip>>>;
174
+ }, z.core.$strip>>;
118
175
  }, z.core.$strip>;
119
176
  then: z.ZodObject<{
120
177
  triggerType: z.ZodString;
@@ -170,6 +227,17 @@ export declare const audienceTriggerPropertiesSchema: z.ZodObject<{
170
227
  jsonLogic: z.ZodString;
171
228
  sqlQuery: z.ZodString;
172
229
  }, z.core.$strip>;
230
+ metadata: z.ZodOptional<z.ZodObject<{
231
+ customEventFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
232
+ name: z.ZodString;
233
+ label: z.ZodString;
234
+ placeholder: z.ZodString;
235
+ operators: z.ZodArray<z.ZodObject<{
236
+ name: z.ZodString;
237
+ label: z.ZodString;
238
+ }, z.core.$strip>>;
239
+ }, z.core.$strip>>>;
240
+ }, z.core.$strip>>;
173
241
  }, z.core.$strip>;
174
242
  then: z.ZodObject<{
175
243
  triggerType: z.ZodString;
@@ -209,6 +277,9 @@ export declare const audienceTriggerPropertiesSchema: z.ZodObject<{
209
277
  }, z.core.$strip>;
210
278
  }, z.core.$strip>>;
211
279
  }, z.core.$strip>;
280
+ export type CustomEventFieldOperator = z.infer<typeof customEventFieldOperatorSchema>;
281
+ export type CustomEventField = z.infer<typeof customEventFieldSchema>;
282
+ export type ConditionalIfMetadata = z.infer<typeof conditionalIfMetadataSchema>;
212
283
  export type QueryOutput = z.infer<typeof queryOutputSchema>;
213
284
  export type ConditionalIf = z.infer<typeof conditionalIfSchema>;
214
285
  export type TriggerAction = z.infer<typeof triggerActionSchema>;
@@ -10,14 +10,14 @@ export declare const questionTypeSchema: z.ZodEnum<{
10
10
  annotation: "annotation";
11
11
  }>;
12
12
  export declare const QuestionTypes: {
13
- readonly RATING: "rating" | "single_choice" | "nps" | "nested_selection" | "multiple_choice_multiple" | "short_answer" | "long_text" | "annotation";
14
- readonly SINGLE_CHOICE: "rating" | "single_choice" | "nps" | "nested_selection" | "multiple_choice_multiple" | "short_answer" | "long_text" | "annotation";
15
- readonly NPS: "rating" | "single_choice" | "nps" | "nested_selection" | "multiple_choice_multiple" | "short_answer" | "long_text" | "annotation";
16
- readonly NESTED_SELECTION: "rating" | "single_choice" | "nps" | "nested_selection" | "multiple_choice_multiple" | "short_answer" | "long_text" | "annotation";
17
- readonly MULTIPLE_CHOICE_MULTIPLE: "rating" | "single_choice" | "nps" | "nested_selection" | "multiple_choice_multiple" | "short_answer" | "long_text" | "annotation";
18
- readonly SHORT_ANSWER: "rating" | "single_choice" | "nps" | "nested_selection" | "multiple_choice_multiple" | "short_answer" | "long_text" | "annotation";
19
- readonly LONG_TEXT: "rating" | "single_choice" | "nps" | "nested_selection" | "multiple_choice_multiple" | "short_answer" | "long_text" | "annotation";
20
- readonly ANNOTATION: "rating" | "single_choice" | "nps" | "nested_selection" | "multiple_choice_multiple" | "short_answer" | "long_text" | "annotation";
13
+ readonly RATING: "rating";
14
+ readonly SINGLE_CHOICE: "single_choice";
15
+ readonly NPS: "nps";
16
+ readonly NESTED_SELECTION: "nested_selection";
17
+ readonly MULTIPLE_CHOICE_MULTIPLE: "multiple_choice_multiple";
18
+ readonly SHORT_ANSWER: "short_answer";
19
+ readonly LONG_TEXT: "long_text";
20
+ readonly ANNOTATION: "annotation";
21
21
  };
22
22
  export declare const validationRuleTypeSchema: z.ZodEnum<{
23
23
  required: "required";
@@ -31,15 +31,15 @@ export declare const validationRuleTypeSchema: z.ZodEnum<{
31
31
  custom: "custom";
32
32
  }>;
33
33
  export declare const ValidationRuleTypes: {
34
- readonly REQUIRED: "required" | "min" | "max" | "minLength" | "maxLength" | "pattern" | "email" | "url" | "custom";
35
- readonly MIN: "required" | "min" | "max" | "minLength" | "maxLength" | "pattern" | "email" | "url" | "custom";
36
- readonly MAX: "required" | "min" | "max" | "minLength" | "maxLength" | "pattern" | "email" | "url" | "custom";
37
- readonly MIN_LENGTH: "required" | "min" | "max" | "minLength" | "maxLength" | "pattern" | "email" | "url" | "custom";
38
- readonly MAX_LENGTH: "required" | "min" | "max" | "minLength" | "maxLength" | "pattern" | "email" | "url" | "custom";
39
- readonly PATTERN: "required" | "min" | "max" | "minLength" | "maxLength" | "pattern" | "email" | "url" | "custom";
40
- readonly EMAIL: "required" | "min" | "max" | "minLength" | "maxLength" | "pattern" | "email" | "url" | "custom";
41
- readonly URL: "required" | "min" | "max" | "minLength" | "maxLength" | "pattern" | "email" | "url" | "custom";
42
- readonly CUSTOM: "required" | "min" | "max" | "minLength" | "maxLength" | "pattern" | "email" | "url" | "custom";
34
+ readonly REQUIRED: "required";
35
+ readonly MIN: "min";
36
+ readonly MAX: "max";
37
+ readonly MIN_LENGTH: "minLength";
38
+ readonly MAX_LENGTH: "maxLength";
39
+ readonly PATTERN: "pattern";
40
+ readonly EMAIL: "email";
41
+ readonly URL: "url";
42
+ readonly CUSTOM: "custom";
43
43
  };
44
44
  export declare const validationRuleSchema: z.ZodObject<{
45
45
  type: z.ZodEnum<{
@@ -68,14 +68,14 @@ export declare const visibilityConditionOperatorSchema: z.ZodEnum<{
68
68
  is_not_empty: "is_not_empty";
69
69
  }>;
70
70
  export declare const VisibilityConditionOperators: {
71
- readonly EQUALS: "equals" | "not_equals" | "contains" | "not_contains" | "greater_than" | "less_than" | "is_empty" | "is_not_empty";
72
- readonly NOT_EQUALS: "equals" | "not_equals" | "contains" | "not_contains" | "greater_than" | "less_than" | "is_empty" | "is_not_empty";
73
- readonly CONTAINS: "equals" | "not_equals" | "contains" | "not_contains" | "greater_than" | "less_than" | "is_empty" | "is_not_empty";
74
- readonly NOT_CONTAINS: "equals" | "not_equals" | "contains" | "not_contains" | "greater_than" | "less_than" | "is_empty" | "is_not_empty";
75
- readonly GREATER_THAN: "equals" | "not_equals" | "contains" | "not_contains" | "greater_than" | "less_than" | "is_empty" | "is_not_empty";
76
- readonly LESS_THAN: "equals" | "not_equals" | "contains" | "not_contains" | "greater_than" | "less_than" | "is_empty" | "is_not_empty";
77
- readonly IS_EMPTY: "equals" | "not_equals" | "contains" | "not_contains" | "greater_than" | "less_than" | "is_empty" | "is_not_empty";
78
- readonly IS_NOT_EMPTY: "equals" | "not_equals" | "contains" | "not_contains" | "greater_than" | "less_than" | "is_empty" | "is_not_empty";
71
+ readonly EQUALS: "equals";
72
+ readonly NOT_EQUALS: "not_equals";
73
+ readonly CONTAINS: "contains";
74
+ readonly NOT_CONTAINS: "not_contains";
75
+ readonly GREATER_THAN: "greater_than";
76
+ readonly LESS_THAN: "less_than";
77
+ readonly IS_EMPTY: "is_empty";
78
+ readonly IS_NOT_EMPTY: "is_not_empty";
79
79
  };
80
80
  export declare const visibilityConditionSchema: z.ZodObject<{
81
81
  field: z.ZodString;
@@ -104,10 +104,10 @@ export declare const questionStatusSchema: z.ZodEnum<{
104
104
  S: "S";
105
105
  }>;
106
106
  export declare const QuestionStatuses: {
107
- readonly DRAFT: "D" | "P" | "A" | "S";
108
- readonly PUBLISHED: "D" | "P" | "A" | "S";
109
- readonly ARCHIVED: "D" | "P" | "A" | "S";
110
- readonly SUSPENDED: "D" | "P" | "A" | "S";
107
+ readonly DRAFT: "D";
108
+ readonly PUBLISHED: "P";
109
+ readonly ARCHIVED: "A";
110
+ readonly SUSPENDED: "S";
111
111
  };
112
112
  export declare const ratingDisplayStyleSchema: z.ZodEnum<{
113
113
  star: "star";
@@ -118,12 +118,12 @@ export declare const ratingDisplayStyleSchema: z.ZodEnum<{
118
118
  "emoji-exp": "emoji-exp";
119
119
  }>;
120
120
  export declare const RatingDisplayStyles: {
121
- readonly STAR: "star" | "heart" | "thumbs-up" | "diamond" | "emoji" | "emoji-exp";
122
- readonly HEART: "star" | "heart" | "thumbs-up" | "diamond" | "emoji" | "emoji-exp";
123
- readonly THUMBS_UP: "star" | "heart" | "thumbs-up" | "diamond" | "emoji" | "emoji-exp";
124
- readonly DIAMOND: "star" | "heart" | "thumbs-up" | "diamond" | "emoji" | "emoji-exp";
125
- readonly EMOJI: "star" | "heart" | "thumbs-up" | "diamond" | "emoji" | "emoji-exp";
126
- readonly EMOJI_EXP: "star" | "heart" | "thumbs-up" | "diamond" | "emoji" | "emoji-exp";
121
+ readonly STAR: "star";
122
+ readonly HEART: "heart";
123
+ readonly THUMBS_UP: "thumbs_up";
124
+ readonly DIAMOND: "diamond";
125
+ readonly EMOJI: "emoji";
126
+ readonly EMOJI_EXP: "emoji_exp";
127
127
  };
128
128
  export declare const ratingRepresentationSizeSchema: z.ZodEnum<{
129
129
  small: "small";
@@ -131,9 +131,9 @@ export declare const ratingRepresentationSizeSchema: z.ZodEnum<{
131
131
  large: "large";
132
132
  }>;
133
133
  export declare const RatingRepresentationSizes: {
134
- readonly SMALL: "small" | "medium" | "large";
135
- readonly MEDIUM: "small" | "medium" | "large";
136
- readonly LARGE: "small" | "medium" | "large";
134
+ readonly SMALL: "small";
135
+ readonly MEDIUM: "medium";
136
+ readonly LARGE: "large";
137
137
  };
138
138
  export declare const multipleChoiceDisplayStyleSchema: z.ZodEnum<{
139
139
  radio: "radio";
@@ -142,10 +142,10 @@ export declare const multipleChoiceDisplayStyleSchema: z.ZodEnum<{
142
142
  dropdown: "dropdown";
143
143
  }>;
144
144
  export declare const MultipleChoiceDisplayStyles: {
145
- readonly RADIO: "radio" | "list" | "chip" | "dropdown";
146
- readonly LIST: "radio" | "list" | "chip" | "dropdown";
147
- readonly CHIP: "radio" | "list" | "chip" | "dropdown";
148
- readonly DROPDOWN: "radio" | "list" | "chip" | "dropdown";
145
+ readonly RADIO: "radio";
146
+ readonly LIST: "list";
147
+ readonly CHIP: "chip";
148
+ readonly DROPDOWN: "dropdown";
149
149
  };
150
150
  export declare const multipleChoiceMultipleDisplayStyleSchema: z.ZodEnum<{
151
151
  list: "list";
@@ -153,9 +153,9 @@ export declare const multipleChoiceMultipleDisplayStyleSchema: z.ZodEnum<{
153
153
  checkbox: "checkbox";
154
154
  }>;
155
155
  export declare const MultipleChoiceMultipleDisplayStyles: {
156
- readonly CHECKBOX: "list" | "chip" | "checkbox";
157
- readonly LIST: "list" | "chip" | "checkbox";
158
- readonly CHIP: "list" | "chip" | "checkbox";
156
+ readonly CHECKBOX: "checkbox";
157
+ readonly LIST: "list";
158
+ readonly CHIP: "chip";
159
159
  };
160
160
  export declare const choiceOrderOptionSchema: z.ZodEnum<{
161
161
  randomize: "randomize";
@@ -165,11 +165,11 @@ export declare const choiceOrderOptionSchema: z.ZodEnum<{
165
165
  none: "none";
166
166
  }>;
167
167
  export declare const ChoiceOrderOptions: {
168
- readonly RANDOMIZE: "randomize" | "flip" | "rotate" | "ascending" | "none";
169
- readonly FLIP: "randomize" | "flip" | "rotate" | "ascending" | "none";
170
- readonly ROTATE: "randomize" | "flip" | "rotate" | "ascending" | "none";
171
- readonly ASCENDING: "randomize" | "flip" | "rotate" | "ascending" | "none";
172
- readonly NONE: "randomize" | "flip" | "rotate" | "ascending" | "none";
168
+ readonly RANDOMIZE: "randomize";
169
+ readonly FLIP: "flip";
170
+ readonly ROTATE: "rotate";
171
+ readonly ASCENDING: "ascending";
172
+ readonly NONE: "none";
173
173
  };
174
174
  export declare const questionSchema: z.ZodObject<{
175
175
  id: z.ZodString;
@@ -894,6 +894,17 @@ export declare const formPropertiesSchema: z.ZodObject<{
894
894
  jsonLogic: z.ZodString;
895
895
  sqlQuery: z.ZodString;
896
896
  }, z.core.$strip>;
897
+ metadata: z.ZodOptional<z.ZodObject<{
898
+ customEventFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
899
+ name: z.ZodString;
900
+ label: z.ZodString;
901
+ placeholder: z.ZodString;
902
+ operators: z.ZodArray<z.ZodObject<{
903
+ name: z.ZodString;
904
+ label: z.ZodString;
905
+ }, z.core.$strip>>;
906
+ }, z.core.$strip>>>;
907
+ }, z.core.$strip>>;
897
908
  }, z.core.$strip>;
898
909
  then: z.ZodObject<{
899
910
  triggerType: z.ZodString;
@@ -4,16 +4,16 @@ export declare const surveyTypeSchema: z.ZodEnum<{
4
4
  O: "O";
5
5
  }>;
6
6
  export declare const SurveyTypes: {
7
- readonly RECURRING: "R" | "O";
8
- readonly ONE_TIME: "R" | "O";
7
+ readonly RECURRING: "R";
8
+ readonly ONE_TIME: "O";
9
9
  };
10
10
  export declare const yesNoSchema: z.ZodEnum<{
11
11
  Y: "Y";
12
12
  N: "N";
13
13
  }>;
14
14
  export declare const YesNoValues: {
15
- readonly YES: "Y" | "N";
16
- readonly NO: "Y" | "N";
15
+ readonly YES: "Y";
16
+ readonly NO: "N";
17
17
  };
18
18
  export declare const recurringUnitSchema: z.ZodEnum<{
19
19
  minutes: "minutes";
@@ -24,12 +24,12 @@ export declare const recurringUnitSchema: z.ZodEnum<{
24
24
  years: "years";
25
25
  }>;
26
26
  export declare const RecurringUnits: {
27
- readonly MINUTES: "minutes" | "hours" | "days" | "weeks" | "months" | "years";
28
- readonly HOURS: "minutes" | "hours" | "days" | "weeks" | "months" | "years";
29
- readonly DAYS: "minutes" | "hours" | "days" | "weeks" | "months" | "years";
30
- readonly WEEKS: "minutes" | "hours" | "days" | "weeks" | "months" | "years";
31
- readonly MONTHS: "minutes" | "hours" | "days" | "weeks" | "months" | "years";
32
- readonly YEARS: "minutes" | "hours" | "days" | "weeks" | "months" | "years";
27
+ readonly MINUTES: "minutes";
28
+ readonly HOURS: "hours";
29
+ readonly DAYS: "days";
30
+ readonly WEEKS: "weeks";
31
+ readonly MONTHS: "months";
32
+ readonly YEARS: "years";
33
33
  };
34
34
  export declare const frequencyAndSchedulingPropertiesSchema: z.ZodObject<{
35
35
  surveyType: z.ZodEnum<{
@@ -63,9 +63,9 @@ export declare const publicationStatusSchema: z.ZodEnum<{
63
63
  A: "A";
64
64
  }>;
65
65
  export declare const PublicationStatuses: {
66
- readonly PUBLISHED: "D" | "P" | "A";
67
- readonly DRAFT: "D" | "P" | "A";
68
- readonly ARCHIVED: "D" | "P" | "A";
66
+ readonly PUBLISHED: "P";
67
+ readonly DRAFT: "D";
68
+ readonly ARCHIVED: "A";
69
69
  };
70
70
  export declare const feedbackConfigurationSchema: z.ZodObject<{
71
71
  form_title: z.ZodString;
@@ -4,8 +4,8 @@ export declare const dismissBehaviorSchema: z.ZodEnum<{
4
4
  manual: "manual";
5
5
  }>;
6
6
  export declare const DismissBehaviors: {
7
- readonly FADE: "fade" | "manual";
8
- readonly MANUAL: "fade" | "manual";
7
+ readonly FADE: "fade";
8
+ readonly MANUAL: "manual";
9
9
  };
10
10
  export declare const WelcomeScreenFieldsSchema: z.ZodObject<{
11
11
  title: z.ZodString;
@@ -11,23 +11,23 @@ export declare const positionSchema: z.ZodEnum<{
11
11
  "bottom-right": "bottom-right";
12
12
  }>;
13
13
  export declare const Positions: {
14
- readonly TOP_LEFT: "top-left" | "top-center" | "top-right" | "middle-left" | "middle-center" | "middle-right" | "bottom-left" | "bottom-center" | "bottom-right";
15
- readonly TOP_CENTER: "top-left" | "top-center" | "top-right" | "middle-left" | "middle-center" | "middle-right" | "bottom-left" | "bottom-center" | "bottom-right";
16
- readonly TOP_RIGHT: "top-left" | "top-center" | "top-right" | "middle-left" | "middle-center" | "middle-right" | "bottom-left" | "bottom-center" | "bottom-right";
17
- readonly MIDDLE_LEFT: "top-left" | "top-center" | "top-right" | "middle-left" | "middle-center" | "middle-right" | "bottom-left" | "bottom-center" | "bottom-right";
18
- readonly MIDDLE_CENTER: "top-left" | "top-center" | "top-right" | "middle-left" | "middle-center" | "middle-right" | "bottom-left" | "bottom-center" | "bottom-right";
19
- readonly MIDDLE_RIGHT: "top-left" | "top-center" | "top-right" | "middle-left" | "middle-center" | "middle-right" | "bottom-left" | "bottom-center" | "bottom-right";
20
- readonly BOTTOM_LEFT: "top-left" | "top-center" | "top-right" | "middle-left" | "middle-center" | "middle-right" | "bottom-left" | "bottom-center" | "bottom-right";
21
- readonly BOTTOM_CENTER: "top-left" | "top-center" | "top-right" | "middle-left" | "middle-center" | "middle-right" | "bottom-left" | "bottom-center" | "bottom-right";
22
- readonly BOTTOM_RIGHT: "top-left" | "top-center" | "top-right" | "middle-left" | "middle-center" | "middle-right" | "bottom-left" | "bottom-center" | "bottom-right";
14
+ readonly TOP_LEFT: "top-left";
15
+ readonly TOP_CENTER: "top-center";
16
+ readonly TOP_RIGHT: "top-right";
17
+ readonly MIDDLE_LEFT: "middle-left";
18
+ readonly MIDDLE_CENTER: "middle-center";
19
+ readonly MIDDLE_RIGHT: "middle-right";
20
+ readonly BOTTOM_LEFT: "bottom-left";
21
+ readonly BOTTOM_CENTER: "bottom-center";
22
+ readonly BOTTOM_RIGHT: "bottom-right";
23
23
  };
24
24
  export declare const themeModeSchema: z.ZodEnum<{
25
25
  light: "light";
26
26
  dark: "dark";
27
27
  }>;
28
28
  export declare const ThemeModes: {
29
- readonly LIGHT: "light" | "dark";
30
- readonly DARK: "light" | "dark";
29
+ readonly LIGHT: "light";
30
+ readonly DARK: "dark";
31
31
  };
32
32
  export declare const featureSettingsSchema: z.ZodObject<{
33
33
  darkOverlay: z.ZodBoolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@encatch/schema",
3
- "version": "0.1.14",
3
+ "version": "0.1.16",
4
4
  "description": "TypeScript schema definitions using Zod for validation and type inference of encatch product",
5
5
  "main": "dist/esm/index.js",
6
6
  "module": "dist/esm/index.js",