@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>>>;
@@ -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
  })
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.0.69",
3
+ "version": "2.0.70",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -86,7 +86,6 @@ export const CreativeEntitySchema = z
86
86
  achievements: z
87
87
  .object({
88
88
  title: z.string(),
89
- description: z.string(),
90
89
  link: z.string().optional(),
91
90
  year: z.number().int().optional(),
92
91
  })