@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.
package/dist/types/index.d.ts
CHANGED
|
@@ -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 {
|
|
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.
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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
|
-
|
|
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.
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
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
|
-
|
|
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.
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
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
|
-
|
|
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.
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
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
|
-
|
|
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
|
|
3
|
-
|
|
4
|
-
|
|
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
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
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
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
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
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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.
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
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
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
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