@encatch/schema 0.1.22 → 0.1.24

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,5 +1,5 @@
1
1
  export { questionTypeSchema, validationRuleTypeSchema, validationRuleSchema, visibilityConditionSchema, sectionSchema, questionStatusSchema, ratingDisplayStyleSchema, ratingRepresentationSizeSchema, multipleChoiceDisplayStyleSchema, multipleChoiceMultipleDisplayStyleSchema, choiceOrderOptionSchema, questionSchema, ratingQuestionSchema, annotationQuestionSchema, questionOptionSchema, nestedOptionSchema, multipleChoiceSingleQuestionSchema, multipleChoiceMultipleQuestionSchema, npsQuestionSchema, shortAnswerQuestionSchema, longAnswerQuestionSchema, nestedDropdownQuestionSchema, combinedQuestionSchema, QuestionTypes, ValidationRuleTypes, VisibilityConditionOperators, QuestionStatuses, RatingDisplayStyles, RatingRepresentationSizes, MultipleChoiceDisplayStyles, MultipleChoiceMultipleDisplayStyles, ChoiceOrderOptions, type QuestionType, type ValidationRule, type VisibilityCondition, type QuestionStatus, type Question, type RatingDisplayStyle, type RatingRepresentationSize, type RatingQuestion, type AnnotationQuestion, type QuestionOption, type NestedOption, type MultipleChoiceDisplayStyle, type MultipleChoiceSingleQuestion, type MultipleChoiceMultipleDisplayStyle, type MultipleChoiceMultipleQuestion, type NpsQuestion, type ShortAnswerQuestion, type LongAnswerQuestion, type ChoiceOrderOption, type NestedDropdownQuestion, type Section, type CombinedQuestion, } from "./schemas/fields/field-schema";
2
- export { SimpleAnswerSchema, ChoiceAnswerSchema, MultipleChoiceAnswerSchema, ScaleAnswerSchema, ContinuousSumAnswerSchema, RankingAnswerSchema, TextAnswerSchema, AnswerSchema, type SimpleAnswer, type ChoiceAnswer, type MultipleChoiceAnswer, type ScaleAnswer, type ContinuousSumAnswer, type RankingAnswer, type TextAnswer, type Answer, } from "./schemas/fields/answer-schema";
2
+ export { AnnotationMarkerSchema, AnnotationSchema, AnswerItemSchema, QuestionsResponseSchema, AnswerSchema, type AnnotationMarker, type Annotation, type AnswerItem, type QuestionsResponse, type Answer, } from "./schemas/fields/answer-schema";
3
3
  export { surveyTypeSchema, yesNoSchema, recurringUnitSchema, frequencyAndSchedulingPropertiesSchema, externalPublishingPropertiesSchema, publicationStatusSchema, feedbackConfigurationSchema, SurveyTypes, YesNoValues, RecurringUnits, PublicationStatuses, type SurveyType, type YesNo, type RecurringUnit, type PublicationStatus, type FeedbackConfiguration, type FrequencyAndSchedulingProperties, type ExternalPublishingProperties, } from "./schemas/fields/form-schema";
4
4
  export { otherConfigurationPropertiesSchema, welcomeScreenPropertiesSchema, endScreenPropertiesSchema, appearancePropertiesSchema, formPropertiesSchema, type FormProperties, type OtherConfigurationProperties, type WelcomeScreenProperties, type EndScreenProperties, type AppearanceProperties, } from "./schemas/fields/form-properties-schema";
5
5
  export { dismissBehaviorSchema, WelcomeScreenFieldsSchema, EndScreenFieldsSchema, WelcomeFieldsTranslationSchema, EndFieldsTranslationSchema, OtherFieldsSchema, LanguageFieldSchema, LanguagesSchema, OtherFieldsTranslationSchema, DismissBehaviors, type WelcomeFields, type EndFields, type WelcomeFieldsTranslation, type EndFieldsTranslation, type OtherFields, type OtherFieldsTranslation, type LanguageField, type Languages, } from "./schemas/fields/other-screen-schema";
@@ -19,73 +19,49 @@ export declare const formConfigSchema: z.ZodObject<{
19
19
  }, z.core.$strip>;
20
20
  export declare const questionResponseSchema: z.ZodObject<{
21
21
  questionId: z.ZodString;
22
- answer: z.ZodDiscriminatedUnion<[z.ZodObject<{
23
- type: z.ZodLiteral<"simple">;
24
- value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
25
- }, z.core.$strip>, z.ZodObject<{
26
- type: z.ZodLiteral<"choice">;
27
- selectedOptionId: z.ZodString;
28
- }, z.core.$strip>, z.ZodObject<{
29
- type: z.ZodLiteral<"multiple_choice">;
30
- selectedOptionIds: z.ZodArray<z.ZodString>;
31
- }, z.core.$strip>, z.ZodObject<{
32
- type: z.ZodLiteral<"scale">;
33
- value: z.ZodNumber;
34
- }, z.core.$strip>, z.ZodObject<{
35
- type: z.ZodLiteral<"continuous_sum">;
36
- values: z.ZodArray<z.ZodObject<{
37
- optionId: z.ZodString;
38
- value: z.ZodNumber;
39
- }, z.core.$strip>>;
40
- }, z.core.$strip>, z.ZodObject<{
41
- type: z.ZodLiteral<"ranking">;
42
- ranks: z.ZodArray<z.ZodObject<{
43
- optionId: z.ZodString;
44
- rank: z.ZodNumber;
45
- }, z.core.$strip>>;
46
- }, z.core.$strip>, z.ZodObject<{
47
- type: z.ZodLiteral<"text">;
48
- values: z.ZodArray<z.ZodObject<{
49
- fieldId: z.ZodString;
50
- text: z.ZodString;
22
+ answer: z.ZodObject<{
23
+ nps: z.ZodOptional<z.ZodNumber>;
24
+ nested_selection: z.ZodOptional<z.ZodArray<z.ZodString>>;
25
+ long_text: z.ZodOptional<z.ZodString>;
26
+ short_answer: z.ZodOptional<z.ZodString>;
27
+ single_choice: z.ZodOptional<z.ZodString>;
28
+ rating: z.ZodOptional<z.ZodNumber>;
29
+ multiple_choice_multiple: z.ZodOptional<z.ZodArray<z.ZodString>>;
30
+ annotation: z.ZodOptional<z.ZodObject<{
31
+ file_type: z.ZodString;
32
+ file_name: z.ZodString;
33
+ markers: z.ZodArray<z.ZodObject<{
34
+ marker_no: z.ZodString;
35
+ timeline: z.ZodString;
36
+ comment: z.ZodString;
37
+ }, z.core.$strip>>;
51
38
  }, z.core.$strip>>;
52
- }, z.core.$strip>], "type">;
39
+ others: z.ZodOptional<z.ZodString>;
40
+ }, z.core.$strip>;
53
41
  type: z.ZodString;
54
42
  }, z.core.$strip>;
55
43
  export declare const responseSchema: z.ZodObject<{
56
44
  questions: z.ZodArray<z.ZodObject<{
57
45
  questionId: z.ZodString;
58
- answer: z.ZodDiscriminatedUnion<[z.ZodObject<{
59
- type: z.ZodLiteral<"simple">;
60
- value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
61
- }, z.core.$strip>, z.ZodObject<{
62
- type: z.ZodLiteral<"choice">;
63
- selectedOptionId: z.ZodString;
64
- }, z.core.$strip>, z.ZodObject<{
65
- type: z.ZodLiteral<"multiple_choice">;
66
- selectedOptionIds: z.ZodArray<z.ZodString>;
67
- }, z.core.$strip>, z.ZodObject<{
68
- type: z.ZodLiteral<"scale">;
69
- value: z.ZodNumber;
70
- }, z.core.$strip>, z.ZodObject<{
71
- type: z.ZodLiteral<"continuous_sum">;
72
- values: z.ZodArray<z.ZodObject<{
73
- optionId: z.ZodString;
74
- value: z.ZodNumber;
75
- }, z.core.$strip>>;
76
- }, z.core.$strip>, z.ZodObject<{
77
- type: z.ZodLiteral<"ranking">;
78
- ranks: z.ZodArray<z.ZodObject<{
79
- optionId: z.ZodString;
80
- rank: z.ZodNumber;
81
- }, z.core.$strip>>;
82
- }, z.core.$strip>, z.ZodObject<{
83
- type: z.ZodLiteral<"text">;
84
- values: z.ZodArray<z.ZodObject<{
85
- fieldId: z.ZodString;
86
- text: z.ZodString;
46
+ answer: z.ZodObject<{
47
+ nps: z.ZodOptional<z.ZodNumber>;
48
+ nested_selection: z.ZodOptional<z.ZodArray<z.ZodString>>;
49
+ long_text: z.ZodOptional<z.ZodString>;
50
+ short_answer: z.ZodOptional<z.ZodString>;
51
+ single_choice: z.ZodOptional<z.ZodString>;
52
+ rating: z.ZodOptional<z.ZodNumber>;
53
+ multiple_choice_multiple: z.ZodOptional<z.ZodArray<z.ZodString>>;
54
+ annotation: z.ZodOptional<z.ZodObject<{
55
+ file_type: z.ZodString;
56
+ file_name: z.ZodString;
57
+ markers: z.ZodArray<z.ZodObject<{
58
+ marker_no: z.ZodString;
59
+ timeline: z.ZodString;
60
+ comment: z.ZodString;
61
+ }, z.core.$strip>>;
87
62
  }, z.core.$strip>>;
88
- }, z.core.$strip>], "type">;
63
+ others: z.ZodOptional<z.ZodString>;
64
+ }, z.core.$strip>;
89
65
  type: z.ZodString;
90
66
  }, z.core.$strip>>;
91
67
  }, z.core.$strip>;
@@ -219,37 +195,25 @@ export declare const submitFeedbackSchema: z.ZodObject<{
219
195
  response: z.ZodObject<{
220
196
  questions: z.ZodArray<z.ZodObject<{
221
197
  questionId: z.ZodString;
222
- answer: z.ZodDiscriminatedUnion<[z.ZodObject<{
223
- type: z.ZodLiteral<"simple">;
224
- value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
225
- }, z.core.$strip>, z.ZodObject<{
226
- type: z.ZodLiteral<"choice">;
227
- selectedOptionId: z.ZodString;
228
- }, z.core.$strip>, z.ZodObject<{
229
- type: z.ZodLiteral<"multiple_choice">;
230
- selectedOptionIds: z.ZodArray<z.ZodString>;
231
- }, z.core.$strip>, z.ZodObject<{
232
- type: z.ZodLiteral<"scale">;
233
- value: z.ZodNumber;
234
- }, z.core.$strip>, z.ZodObject<{
235
- type: z.ZodLiteral<"continuous_sum">;
236
- values: z.ZodArray<z.ZodObject<{
237
- optionId: z.ZodString;
238
- value: z.ZodNumber;
239
- }, z.core.$strip>>;
240
- }, z.core.$strip>, z.ZodObject<{
241
- type: z.ZodLiteral<"ranking">;
242
- ranks: z.ZodArray<z.ZodObject<{
243
- optionId: z.ZodString;
244
- rank: z.ZodNumber;
245
- }, z.core.$strip>>;
246
- }, z.core.$strip>, z.ZodObject<{
247
- type: z.ZodLiteral<"text">;
248
- values: z.ZodArray<z.ZodObject<{
249
- fieldId: z.ZodString;
250
- text: z.ZodString;
198
+ answer: z.ZodObject<{
199
+ nps: z.ZodOptional<z.ZodNumber>;
200
+ nested_selection: z.ZodOptional<z.ZodArray<z.ZodString>>;
201
+ long_text: z.ZodOptional<z.ZodString>;
202
+ short_answer: z.ZodOptional<z.ZodString>;
203
+ single_choice: z.ZodOptional<z.ZodString>;
204
+ rating: z.ZodOptional<z.ZodNumber>;
205
+ multiple_choice_multiple: z.ZodOptional<z.ZodArray<z.ZodString>>;
206
+ annotation: z.ZodOptional<z.ZodObject<{
207
+ file_type: z.ZodString;
208
+ file_name: z.ZodString;
209
+ markers: z.ZodArray<z.ZodObject<{
210
+ marker_no: z.ZodString;
211
+ timeline: z.ZodString;
212
+ comment: z.ZodString;
213
+ }, z.core.$strip>>;
251
214
  }, z.core.$strip>>;
252
- }, z.core.$strip>], "type">;
215
+ others: z.ZodOptional<z.ZodString>;
216
+ }, z.core.$strip>;
253
217
  type: z.ZodString;
254
218
  }, z.core.$strip>>;
255
219
  }, z.core.$strip>;
@@ -335,37 +299,25 @@ export declare const feedbackRequestSchema: z.ZodUnion<readonly [z.ZodObject<{
335
299
  response: z.ZodObject<{
336
300
  questions: z.ZodArray<z.ZodObject<{
337
301
  questionId: z.ZodString;
338
- answer: z.ZodDiscriminatedUnion<[z.ZodObject<{
339
- type: z.ZodLiteral<"simple">;
340
- value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
341
- }, z.core.$strip>, z.ZodObject<{
342
- type: z.ZodLiteral<"choice">;
343
- selectedOptionId: z.ZodString;
344
- }, z.core.$strip>, z.ZodObject<{
345
- type: z.ZodLiteral<"multiple_choice">;
346
- selectedOptionIds: z.ZodArray<z.ZodString>;
347
- }, z.core.$strip>, z.ZodObject<{
348
- type: z.ZodLiteral<"scale">;
349
- value: z.ZodNumber;
350
- }, z.core.$strip>, z.ZodObject<{
351
- type: z.ZodLiteral<"continuous_sum">;
352
- values: z.ZodArray<z.ZodObject<{
353
- optionId: z.ZodString;
354
- value: z.ZodNumber;
355
- }, z.core.$strip>>;
356
- }, z.core.$strip>, z.ZodObject<{
357
- type: z.ZodLiteral<"ranking">;
358
- ranks: z.ZodArray<z.ZodObject<{
359
- optionId: z.ZodString;
360
- rank: z.ZodNumber;
361
- }, z.core.$strip>>;
362
- }, z.core.$strip>, z.ZodObject<{
363
- type: z.ZodLiteral<"text">;
364
- values: z.ZodArray<z.ZodObject<{
365
- fieldId: z.ZodString;
366
- text: z.ZodString;
302
+ answer: z.ZodObject<{
303
+ nps: z.ZodOptional<z.ZodNumber>;
304
+ nested_selection: z.ZodOptional<z.ZodArray<z.ZodString>>;
305
+ long_text: z.ZodOptional<z.ZodString>;
306
+ short_answer: z.ZodOptional<z.ZodString>;
307
+ single_choice: z.ZodOptional<z.ZodString>;
308
+ rating: z.ZodOptional<z.ZodNumber>;
309
+ multiple_choice_multiple: z.ZodOptional<z.ZodArray<z.ZodString>>;
310
+ annotation: z.ZodOptional<z.ZodObject<{
311
+ file_type: z.ZodString;
312
+ file_name: z.ZodString;
313
+ markers: z.ZodArray<z.ZodObject<{
314
+ marker_no: z.ZodString;
315
+ timeline: z.ZodString;
316
+ comment: z.ZodString;
317
+ }, z.core.$strip>>;
367
318
  }, z.core.$strip>>;
368
- }, z.core.$strip>], "type">;
319
+ others: z.ZodOptional<z.ZodString>;
320
+ }, z.core.$strip>;
369
321
  type: z.ZodString;
370
322
  }, z.core.$strip>>;
371
323
  }, z.core.$strip>;
@@ -1,77 +1,82 @@
1
1
  import { z } from "zod";
2
- export declare const SimpleAnswerSchema: z.ZodObject<{
3
- type: z.ZodLiteral<"simple">;
4
- value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
2
+ export declare const AnnotationMarkerSchema: z.ZodObject<{
3
+ marker_no: z.ZodString;
4
+ timeline: z.ZodString;
5
+ comment: z.ZodString;
5
6
  }, z.core.$strip>;
6
- export declare const ChoiceAnswerSchema: z.ZodObject<{
7
- type: z.ZodLiteral<"choice">;
8
- selectedOptionId: z.ZodString;
9
- }, z.core.$strip>;
10
- export declare const MultipleChoiceAnswerSchema: z.ZodObject<{
11
- type: z.ZodLiteral<"multiple_choice">;
12
- selectedOptionIds: z.ZodArray<z.ZodString>;
13
- }, z.core.$strip>;
14
- export declare const ScaleAnswerSchema: z.ZodObject<{
15
- type: z.ZodLiteral<"scale">;
16
- value: z.ZodNumber;
17
- }, z.core.$strip>;
18
- export declare const ContinuousSumAnswerSchema: z.ZodObject<{
19
- type: z.ZodLiteral<"continuous_sum">;
20
- values: z.ZodArray<z.ZodObject<{
21
- optionId: z.ZodString;
22
- value: z.ZodNumber;
7
+ export declare const AnnotationSchema: z.ZodObject<{
8
+ file_type: z.ZodString;
9
+ file_name: z.ZodString;
10
+ markers: z.ZodArray<z.ZodObject<{
11
+ marker_no: z.ZodString;
12
+ timeline: z.ZodString;
13
+ comment: z.ZodString;
23
14
  }, z.core.$strip>>;
24
15
  }, z.core.$strip>;
25
- export declare const RankingAnswerSchema: z.ZodObject<{
26
- type: z.ZodLiteral<"ranking">;
27
- ranks: z.ZodArray<z.ZodObject<{
28
- optionId: z.ZodString;
29
- rank: z.ZodNumber;
16
+ export declare const AnswerItemSchema: z.ZodObject<{
17
+ nps: z.ZodOptional<z.ZodNumber>;
18
+ nested_selection: z.ZodOptional<z.ZodArray<z.ZodString>>;
19
+ long_text: z.ZodOptional<z.ZodString>;
20
+ short_answer: z.ZodOptional<z.ZodString>;
21
+ single_choice: z.ZodOptional<z.ZodString>;
22
+ rating: z.ZodOptional<z.ZodNumber>;
23
+ multiple_choice_multiple: z.ZodOptional<z.ZodArray<z.ZodString>>;
24
+ annotation: z.ZodOptional<z.ZodObject<{
25
+ file_type: z.ZodString;
26
+ file_name: z.ZodString;
27
+ markers: z.ZodArray<z.ZodObject<{
28
+ marker_no: z.ZodString;
29
+ timeline: z.ZodString;
30
+ comment: z.ZodString;
31
+ }, z.core.$strip>>;
30
32
  }, z.core.$strip>>;
33
+ others: z.ZodOptional<z.ZodString>;
31
34
  }, z.core.$strip>;
32
- export declare const TextAnswerSchema: z.ZodObject<{
33
- type: z.ZodLiteral<"text">;
34
- values: z.ZodArray<z.ZodObject<{
35
- fieldId: z.ZodString;
36
- text: z.ZodString;
37
- }, z.core.$strip>>;
35
+ export declare const QuestionsResponseSchema: z.ZodObject<{
36
+ question_id: z.ZodString;
37
+ error: z.ZodOptional<z.ZodString>;
38
+ answer: z.ZodObject<{
39
+ nps: z.ZodOptional<z.ZodNumber>;
40
+ nested_selection: z.ZodOptional<z.ZodArray<z.ZodString>>;
41
+ long_text: z.ZodOptional<z.ZodString>;
42
+ short_answer: z.ZodOptional<z.ZodString>;
43
+ single_choice: z.ZodOptional<z.ZodString>;
44
+ rating: z.ZodOptional<z.ZodNumber>;
45
+ multiple_choice_multiple: z.ZodOptional<z.ZodArray<z.ZodString>>;
46
+ annotation: z.ZodOptional<z.ZodObject<{
47
+ file_type: z.ZodString;
48
+ file_name: z.ZodString;
49
+ markers: z.ZodArray<z.ZodObject<{
50
+ marker_no: z.ZodString;
51
+ timeline: z.ZodString;
52
+ comment: z.ZodString;
53
+ }, z.core.$strip>>;
54
+ }, z.core.$strip>>;
55
+ others: z.ZodOptional<z.ZodString>;
56
+ }, z.core.$strip>;
57
+ type: z.ZodString;
38
58
  }, z.core.$strip>;
39
- export declare const AnswerSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
40
- type: z.ZodLiteral<"simple">;
41
- value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
42
- }, z.core.$strip>, z.ZodObject<{
43
- type: z.ZodLiteral<"choice">;
44
- selectedOptionId: z.ZodString;
45
- }, z.core.$strip>, z.ZodObject<{
46
- type: z.ZodLiteral<"multiple_choice">;
47
- selectedOptionIds: z.ZodArray<z.ZodString>;
48
- }, z.core.$strip>, z.ZodObject<{
49
- type: z.ZodLiteral<"scale">;
50
- value: z.ZodNumber;
51
- }, z.core.$strip>, z.ZodObject<{
52
- type: z.ZodLiteral<"continuous_sum">;
53
- values: z.ZodArray<z.ZodObject<{
54
- optionId: z.ZodString;
55
- value: z.ZodNumber;
59
+ export declare const AnswerSchema: z.ZodObject<{
60
+ nps: z.ZodOptional<z.ZodNumber>;
61
+ nested_selection: z.ZodOptional<z.ZodArray<z.ZodString>>;
62
+ long_text: z.ZodOptional<z.ZodString>;
63
+ short_answer: z.ZodOptional<z.ZodString>;
64
+ single_choice: z.ZodOptional<z.ZodString>;
65
+ rating: z.ZodOptional<z.ZodNumber>;
66
+ multiple_choice_multiple: z.ZodOptional<z.ZodArray<z.ZodString>>;
67
+ annotation: z.ZodOptional<z.ZodObject<{
68
+ file_type: z.ZodString;
69
+ file_name: z.ZodString;
70
+ markers: z.ZodArray<z.ZodObject<{
71
+ marker_no: z.ZodString;
72
+ timeline: z.ZodString;
73
+ comment: z.ZodString;
74
+ }, z.core.$strip>>;
56
75
  }, z.core.$strip>>;
57
- }, z.core.$strip>, z.ZodObject<{
58
- type: z.ZodLiteral<"ranking">;
59
- ranks: z.ZodArray<z.ZodObject<{
60
- optionId: z.ZodString;
61
- rank: z.ZodNumber;
62
- }, z.core.$strip>>;
63
- }, z.core.$strip>, z.ZodObject<{
64
- type: z.ZodLiteral<"text">;
65
- values: z.ZodArray<z.ZodObject<{
66
- fieldId: z.ZodString;
67
- text: z.ZodString;
68
- }, z.core.$strip>>;
69
- }, z.core.$strip>], "type">;
70
- export type SimpleAnswer = z.infer<typeof SimpleAnswerSchema>;
71
- export type ChoiceAnswer = z.infer<typeof ChoiceAnswerSchema>;
72
- export type MultipleChoiceAnswer = z.infer<typeof MultipleChoiceAnswerSchema>;
73
- export type ScaleAnswer = z.infer<typeof ScaleAnswerSchema>;
74
- export type ContinuousSumAnswer = z.infer<typeof ContinuousSumAnswerSchema>;
75
- export type RankingAnswer = z.infer<typeof RankingAnswerSchema>;
76
- export type TextAnswer = z.infer<typeof TextAnswerSchema>;
77
- export type Answer = z.infer<typeof SimpleAnswerSchema> | z.infer<typeof ChoiceAnswerSchema> | z.infer<typeof MultipleChoiceAnswerSchema> | z.infer<typeof ScaleAnswerSchema> | z.infer<typeof ContinuousSumAnswerSchema> | z.infer<typeof RankingAnswerSchema> | z.infer<typeof TextAnswerSchema>;
76
+ others: z.ZodOptional<z.ZodString>;
77
+ }, z.core.$strip>;
78
+ export type AnnotationMarker = z.infer<typeof AnnotationMarkerSchema>;
79
+ export type Annotation = z.infer<typeof AnnotationSchema>;
80
+ export type AnswerItem = z.infer<typeof AnswerItemSchema>;
81
+ export type QuestionsResponse = z.infer<typeof QuestionsResponseSchema>;
82
+ export type Answer = z.infer<typeof AnswerSchema>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@encatch/schema",
3
- "version": "0.1.22",
3
+ "version": "0.1.24",
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",