@dmptool/types 1.0.7 → 1.0.8

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.
@@ -210,6 +210,7 @@ export type BooleanAnswerType = z.infer<typeof BooleanAnswerSchema>;
210
210
  export type CurrencyAnswerType = z.infer<typeof CurrencyAnswerSchema>;
211
211
  export type EmailAnswerType = z.infer<typeof EmailAnswerSchema>;
212
212
  export type NumberAnswerType = z.infer<typeof NumberAnswerSchema>;
213
+ export type NumberRangeAnswerType = z.infer<typeof NumberRangeAnswerSchema>;
213
214
  export type TextAnswerType = z.infer<typeof TextAnswerSchema>;
214
215
  export type TextAreaAnswerType = z.infer<typeof TextAreaAnswerSchema>;
215
216
  export type URLAnswerType = z.infer<typeof URLAnswerSchema>;
@@ -549,6 +549,7 @@ export type BooleanQuestionType = z.infer<typeof BooleanQuestionSchema>;
549
549
  export type CurrencyQuestionType = z.infer<typeof CurrencyQuestionSchema>;
550
550
  export type EmailQuestionType = z.infer<typeof EmailQuestionSchema>;
551
551
  export type NumberQuestionType = z.infer<typeof NumberQuestionSchema>;
552
+ export type NumberRangeQuestionType = z.infer<typeof NumberRangeQuestionSchema>;
552
553
  export type TextAreaQuestionType = z.infer<typeof TextAreaQuestionSchema>;
553
554
  export type TextQuestionType = z.infer<typeof TextQuestionSchema>;
554
555
  export type URLQuestionType = z.infer<typeof URLQuestionSchema>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dmptool/types",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "TypeScript types for DMPTool",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",