@deboxsoft/module-core
Advanced tools
Comparing version 2.5.19 to 2.5.20
@@ -204,2 +204,10 @@ import { z, ZodType } from 'zod'; | ||
declare const RangeDateSchema: ZodType<RangeDate>; | ||
declare const BooleanResponse: z.ZodObject<{ | ||
data: z.ZodBoolean; | ||
}, "strip", z.ZodTypeAny, { | ||
data: boolean; | ||
}, { | ||
data: boolean; | ||
}>; | ||
declare type BooleanResponse = z.TypeOf<typeof BooleanResponse>; | ||
declare const StringResponse: z.ZodObject<{ | ||
@@ -212,2 +220,3 @@ data: z.ZodString; | ||
}>; | ||
declare type StringResponse = z.TypeOf<typeof StringResponse>; | ||
declare const NumberResponse: z.ZodObject<{ | ||
@@ -220,2 +229,3 @@ data: z.ZodNumber; | ||
}>; | ||
declare type NumberResponse = z.TypeOf<typeof NumberResponse>; | ||
declare const CreateResponse: z.ZodObject<{ | ||
@@ -228,2 +238,3 @@ data: z.ZodString; | ||
}>; | ||
declare type CreateResponse = z.TypeOf<typeof CreateResponse>; | ||
declare const ImportResponse: z.ZodObject<{ | ||
@@ -236,2 +247,3 @@ data: z.ZodArray<z.ZodString, "many">; | ||
}>; | ||
declare type ImportResponse = z.TypeOf<typeof ImportResponse>; | ||
declare const UpdateResponse: z.ZodObject<{ | ||
@@ -244,2 +256,3 @@ data: z.ZodBoolean; | ||
}>; | ||
declare type UpdateResponse = z.TypeOf<typeof UpdateResponse>; | ||
declare const RemoveResponse: z.ZodObject<{ | ||
@@ -252,10 +265,3 @@ data: z.ZodBoolean; | ||
}>; | ||
declare const BooleanResponse: z.ZodObject<{ | ||
data: z.ZodBoolean; | ||
}, "strip", z.ZodTypeAny, { | ||
data: boolean; | ||
}, { | ||
data: boolean; | ||
}>; | ||
declare type BooleanResponse = z.TypeOf<typeof BooleanResponse>; | ||
declare type RemoveResponse = z.TypeOf<typeof RemoveResponse>; | ||
@@ -262,0 +268,0 @@ declare const PaginationOptions: z.ZodObject<{ |
{ | ||
"name": "@deboxsoft/module-core", | ||
"version": "2.5.19", | ||
"version": "2.5.20", | ||
"license": "SEE LICENSE IN LICENSE", | ||
@@ -5,0 +5,0 @@ "maintainers": [ |
@@ -43,1 +43,7 @@ import { z, ZodType } from "zod"; | ||
export type BooleanResponse = z.TypeOf<typeof BooleanResponse>; | ||
export type StringResponse = z.TypeOf<typeof StringResponse>; | ||
export type NumberResponse = z.TypeOf<typeof NumberResponse>; | ||
export type CreateResponse = z.TypeOf<typeof CreateResponse>; | ||
export type ImportResponse = z.TypeOf<typeof ImportResponse>; | ||
export type UpdateResponse = z.TypeOf<typeof UpdateResponse>; | ||
export type RemoveResponse = z.TypeOf<typeof RemoveResponse>; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
179221
2969