@@ -52,6 +52,31 @@ export declare const entrySchema: z.ZodObject<{
5252 isPrivate ?: number ;
5353 isFavorite ?: number ;
5454} > ;
55+ export declare const entryListItemSchema : z . ZodIntersection < z . ZodObject < Pick < {
56+ id : z . ZodNumber ;
57+ userId : z . ZodNumber ;
58+ title : z . ZodString ;
59+ content : z . ZodString ;
60+ mood : z . ZodNullable < z . ZodString > ;
61+ location : z . ZodNullable < z . ZodString > ;
62+ weather : z . ZodNullable < z . ZodString > ;
63+ isPrivate : z . ZodNumber ;
64+ isFavorite : z . ZodNumber ;
65+ createdAt : z . ZodEffects < z . ZodNumber , number , unknown > ;
66+ updatedAt : z . ZodEffects < z . ZodNumber , number , unknown > ;
67+ } , "id" | "title" > , "strip" , z . ZodTypeAny , {
68+ id ?: number ;
69+ title ?: string ;
70+ } , {
71+ id ?: number ;
72+ title ?: string ;
73+ } > , z . ZodObject < {
74+ tagCount : z . ZodNumber ;
75+ } , "strip" , z . ZodTypeAny , {
76+ tagCount ?: number ;
77+ } , {
78+ tagCount ?: number ;
79+ } > > ;
5580export declare const entryWithTagsSchema : z . ZodObject < {
5681 id : z . ZodNumber ;
5782 userId : z . ZodNumber ;
@@ -155,6 +180,20 @@ export declare const tagSchema: z.ZodObject<{
155180 name ?: string ;
156181 description ?: string ;
157182} > ;
183+ export declare const tagListItemSchema : z . ZodObject < Pick < {
184+ id : z . ZodNumber ;
185+ userId : z . ZodNumber ;
186+ name : z . ZodString ;
187+ description : z . ZodNullable < z . ZodString > ;
188+ createdAt : z . ZodEffects < z . ZodNumber , number , unknown > ;
189+ updatedAt : z . ZodEffects < z . ZodNumber , number , unknown > ;
190+ } , "id" | "name" > , "strip" , z . ZodTypeAny , {
191+ id ?: number ;
192+ name ?: string ;
193+ } , {
194+ id ?: number ;
195+ name ?: string ;
196+ } > ;
158197export declare const newTagSchema : z . ZodObject < {
159198 name : z . ZodString ;
160199 description : z . ZodEffects < z . ZodOptional < z . ZodNullable < z . ZodString > > , string , string > ;
0 commit comments