@zyacreatives/shared 2.0.64 → 2.0.65
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.
|
@@ -24,7 +24,6 @@ export declare const ProjectEntitySchema: z.ZodObject<{
|
|
|
24
24
|
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
25
25
|
startDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
26
26
|
endDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
27
|
-
searchVector: z.ZodString;
|
|
28
27
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
29
28
|
updatedAt: z.ZodCoercedDate<unknown>;
|
|
30
29
|
}, z.core.$strip>;
|
|
@@ -66,7 +65,6 @@ export declare const ProjectWithFilesEntitySchema: z.ZodObject<{
|
|
|
66
65
|
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
67
66
|
startDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
68
67
|
endDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
69
|
-
searchVector: z.ZodString;
|
|
70
68
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
71
69
|
updatedAt: z.ZodCoercedDate<unknown>;
|
|
72
70
|
projectFiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -180,7 +178,6 @@ export declare const CreateProjectOutputSchema: z.ZodObject<{
|
|
|
180
178
|
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
181
179
|
startDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
182
180
|
endDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
183
|
-
searchVector: z.ZodString;
|
|
184
181
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
185
182
|
updatedAt: z.ZodCoercedDate<unknown>;
|
|
186
183
|
}, z.core.$strip>;
|
|
@@ -209,7 +206,6 @@ export declare const UpdateProjectOutputSchema: z.ZodObject<{
|
|
|
209
206
|
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
210
207
|
startDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
211
208
|
endDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
212
|
-
searchVector: z.ZodString;
|
|
213
209
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
214
210
|
updatedAt: z.ZodCoercedDate<unknown>;
|
|
215
211
|
}, z.core.$strip>;
|
|
@@ -238,7 +234,6 @@ export declare const DeleteProjectOutputSchema: z.ZodObject<{
|
|
|
238
234
|
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
239
235
|
startDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
240
236
|
endDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
241
|
-
searchVector: z.ZodString;
|
|
242
237
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
243
238
|
updatedAt: z.ZodCoercedDate<unknown>;
|
|
244
239
|
}, z.core.$strip>;
|
|
@@ -267,7 +262,6 @@ export declare const GetProjectOutputSchema: z.ZodObject<{
|
|
|
267
262
|
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
268
263
|
startDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
269
264
|
endDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
270
|
-
searchVector: z.ZodString;
|
|
271
265
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
272
266
|
updatedAt: z.ZodCoercedDate<unknown>;
|
|
273
267
|
projectFiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
package/dist/schemas/project.js
CHANGED
|
@@ -80,10 +80,6 @@ exports.ProjectEntitySchema = zod_openapi_1.z
|
|
|
80
80
|
description: "End date of the project.",
|
|
81
81
|
example: new Date("2024-06-30"),
|
|
82
82
|
}),
|
|
83
|
-
searchVector: zod_openapi_1.z.string().openapi({
|
|
84
|
-
description: "Search vector for full-text search indexing.",
|
|
85
|
-
example: "ecommerce mobile app react native",
|
|
86
|
-
}),
|
|
87
83
|
createdAt: zod_openapi_1.z.coerce.date().openapi({
|
|
88
84
|
description: "Timestamp when the project was created.",
|
|
89
85
|
example: new Date("2024-01-01T00:00:00.000Z"),
|
package/dist/schemas/user.d.ts
CHANGED
|
@@ -244,7 +244,6 @@ export declare const UserWithProjectsEntitySchema: z.ZodObject<{
|
|
|
244
244
|
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
245
245
|
startDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
246
246
|
endDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
247
|
-
searchVector: z.ZodString;
|
|
248
247
|
}, z.core.$strip>>;
|
|
249
248
|
}, z.core.$strip>;
|
|
250
249
|
export declare const UserWithProjectLikesEntitySchema: z.ZodObject<{
|
|
@@ -634,7 +633,6 @@ export declare const GetAuthenticatedUserWithProjectsOutputSchema: z.ZodObject<{
|
|
|
634
633
|
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
635
634
|
startDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
636
635
|
endDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
637
|
-
searchVector: z.ZodString;
|
|
638
636
|
}, z.core.$strip>>;
|
|
639
637
|
}, z.core.$strip>;
|
|
640
638
|
export declare const GetAuthenticatedUserWithProjectBookmarksOutputSchema: z.ZodObject<{
|
package/package.json
CHANGED
package/src/schemas/project.ts
CHANGED
|
@@ -79,10 +79,6 @@ export const ProjectEntitySchema = z
|
|
|
79
79
|
description: "End date of the project.",
|
|
80
80
|
example: new Date("2024-06-30"),
|
|
81
81
|
}),
|
|
82
|
-
searchVector: z.string().openapi({
|
|
83
|
-
description: "Search vector for full-text search indexing.",
|
|
84
|
-
example: "ecommerce mobile app react native",
|
|
85
|
-
}),
|
|
86
82
|
createdAt: z.coerce.date().openapi({
|
|
87
83
|
description: "Timestamp when the project was created.",
|
|
88
84
|
example: new Date("2024-01-01T00:00:00.000Z"),
|