@zyacreatives/shared 2.0.69 → 2.0.71

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>>>;
@@ -118,7 +117,6 @@ export declare const UpdateCreativeProfileInputSchema: z.ZodObject<{
118
117
  }, z.core.$strip>>>;
119
118
  achievements: z.ZodOptional<z.ZodArray<z.ZodObject<{
120
119
  title: z.ZodString;
121
- description: z.ZodString;
122
120
  link: z.ZodOptional<z.ZodString>;
123
121
  year: z.ZodOptional<z.ZodNumber>;
124
122
  }, z.core.$strip>>>;
@@ -172,7 +170,6 @@ export declare const CreateCreativeOutputSchema: z.ZodObject<{
172
170
  }, z.core.$strip>>>;
173
171
  achievements: z.ZodOptional<z.ZodArray<z.ZodObject<{
174
172
  title: z.ZodString;
175
- description: z.ZodString;
176
173
  link: z.ZodOptional<z.ZodString>;
177
174
  year: z.ZodOptional<z.ZodNumber>;
178
175
  }, z.core.$strip>>>;
@@ -215,7 +212,6 @@ export declare const GetCreativeOutputSchema: z.ZodObject<{
215
212
  }, z.core.$strip>>>;
216
213
  achievements: z.ZodOptional<z.ZodArray<z.ZodObject<{
217
214
  title: z.ZodString;
218
- description: z.ZodString;
219
215
  link: z.ZodOptional<z.ZodString>;
220
216
  year: z.ZodOptional<z.ZodNumber>;
221
217
  }, z.core.$strip>>>;
@@ -258,7 +254,6 @@ export declare const UpdateCreativeOutputSchema: z.ZodObject<{
258
254
  }, z.core.$strip>>>;
259
255
  achievements: z.ZodOptional<z.ZodArray<z.ZodObject<{
260
256
  title: z.ZodString;
261
- description: z.ZodString;
262
257
  link: z.ZodOptional<z.ZodString>;
263
258
  year: z.ZodOptional<z.ZodNumber>;
264
259
  }, 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
  })
@@ -201,7 +200,6 @@ exports.UpdateCreativeProfileInputSchema = zod_openapi_1.z
201
200
  achievements: zod_openapi_1.z
202
201
  .object({
203
202
  title: zod_openapi_1.z.string(),
204
- description: zod_openapi_1.z.string(),
205
203
  link: zod_openapi_1.z.string().optional(),
206
204
  year: zod_openapi_1.z.number().int().optional(),
207
205
  })
@@ -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.71",
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
  })
@@ -234,7 +233,6 @@ export const UpdateCreativeProfileInputSchema = z
234
233
  achievements: z
235
234
  .object({
236
235
  title: z.string(),
237
- description: z.string(),
238
236
  link: z.string().optional(),
239
237
  year: z.number().int().optional(),
240
238
  })