@zyacreatives/shared 2.0.69 → 2.0.70
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.
|
@@ -52,7 +52,6 @@ export declare const CreativeEntitySchema: z.ZodObject<{
|
|
|
52
52
|
}, z.core.$strip>>>;
|
|
53
53
|
achievements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
54
54
|
title: z.ZodString;
|
|
55
|
-
description: z.ZodString;
|
|
56
55
|
link: z.ZodOptional<z.ZodString>;
|
|
57
56
|
year: z.ZodOptional<z.ZodNumber>;
|
|
58
57
|
}, z.core.$strip>>>;
|
|
@@ -172,7 +171,6 @@ export declare const CreateCreativeOutputSchema: z.ZodObject<{
|
|
|
172
171
|
}, z.core.$strip>>>;
|
|
173
172
|
achievements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
174
173
|
title: z.ZodString;
|
|
175
|
-
description: z.ZodString;
|
|
176
174
|
link: z.ZodOptional<z.ZodString>;
|
|
177
175
|
year: z.ZodOptional<z.ZodNumber>;
|
|
178
176
|
}, z.core.$strip>>>;
|
|
@@ -215,7 +213,6 @@ export declare const GetCreativeOutputSchema: z.ZodObject<{
|
|
|
215
213
|
}, z.core.$strip>>>;
|
|
216
214
|
achievements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
217
215
|
title: z.ZodString;
|
|
218
|
-
description: z.ZodString;
|
|
219
216
|
link: z.ZodOptional<z.ZodString>;
|
|
220
217
|
year: z.ZodOptional<z.ZodNumber>;
|
|
221
218
|
}, z.core.$strip>>>;
|
|
@@ -258,7 +255,6 @@ export declare const UpdateCreativeOutputSchema: z.ZodObject<{
|
|
|
258
255
|
}, z.core.$strip>>>;
|
|
259
256
|
achievements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
260
257
|
title: z.ZodString;
|
|
261
|
-
description: z.ZodString;
|
|
262
258
|
link: z.ZodOptional<z.ZodString>;
|
|
263
259
|
year: z.ZodOptional<z.ZodNumber>;
|
|
264
260
|
}, z.core.$strip>>>;
|
package/dist/schemas/creative.js
CHANGED
|
@@ -74,7 +74,6 @@ exports.CreativeEntitySchema = zod_openapi_1.z
|
|
|
74
74
|
achievements: zod_openapi_1.z
|
|
75
75
|
.object({
|
|
76
76
|
title: zod_openapi_1.z.string(),
|
|
77
|
-
description: zod_openapi_1.z.string(),
|
|
78
77
|
link: zod_openapi_1.z.string().optional(),
|
|
79
78
|
year: zod_openapi_1.z.number().int().optional(),
|
|
80
79
|
})
|
package/dist/schemas/user.d.ts
CHANGED
|
@@ -158,7 +158,6 @@ export declare const UserProfileEntitySchema: z.ZodObject<{
|
|
|
158
158
|
}, z.core.$strip>>>;
|
|
159
159
|
achievements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
160
160
|
title: z.ZodString;
|
|
161
|
-
description: z.ZodString;
|
|
162
161
|
link: z.ZodOptional<z.ZodString>;
|
|
163
162
|
year: z.ZodOptional<z.ZodNumber>;
|
|
164
163
|
}, z.core.$strip>>>;
|
|
@@ -546,7 +545,6 @@ export declare const GetAuthenticatedUserProfileOutputSchema: z.ZodObject<{
|
|
|
546
545
|
}, z.core.$strip>>>;
|
|
547
546
|
achievements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
548
547
|
title: z.ZodString;
|
|
549
|
-
description: z.ZodString;
|
|
550
548
|
link: z.ZodOptional<z.ZodString>;
|
|
551
549
|
year: z.ZodOptional<z.ZodNumber>;
|
|
552
550
|
}, z.core.$strip>>>;
|
package/package.json
CHANGED