@zyacreatives/shared 2.1.42 → 2.1.43

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.
@@ -93,8 +93,8 @@ export declare const UpdateCreativeProfileInputSchema: z.ZodObject<{
93
93
  workExperience: z.ZodOptional<z.ZodArray<z.ZodObject<{
94
94
  companyName: z.ZodString;
95
95
  position: z.ZodString;
96
- startDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
97
- endDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
96
+ startDate: z.ZodOptional<z.ZodString>;
97
+ endDate: z.ZodOptional<z.ZodString>;
98
98
  currentlyWorking: z.ZodOptional<z.ZodBoolean>;
99
99
  description: z.ZodOptional<z.ZodString>;
100
100
  }, z.core.$strip>>>;
@@ -181,8 +181,8 @@ exports.UpdateCreativeProfileInputSchema = zod_openapi_1.z
181
181
  .object({
182
182
  companyName: zod_openapi_1.z.string(),
183
183
  position: zod_openapi_1.z.string(),
184
- startDate: zod_openapi_1.z.coerce.date().optional(),
185
- endDate: zod_openapi_1.z.coerce.date().optional(),
184
+ startDate: zod_openapi_1.z.string().optional(),
185
+ endDate: zod_openapi_1.z.string().optional(),
186
186
  currentlyWorking: zod_openapi_1.z.boolean().optional(),
187
187
  description: zod_openapi_1.z.string().optional(),
188
188
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.1.42",
3
+ "version": "2.1.43",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -216,8 +216,8 @@ export const UpdateCreativeProfileInputSchema = z
216
216
  .object({
217
217
  companyName: z.string(),
218
218
  position: z.string(),
219
- startDate: z.coerce.date().optional(),
220
- endDate: z.coerce.date().optional(),
219
+ startDate: z.string().optional(),
220
+ endDate: z.string().optional(),
221
221
  currentlyWorking: z.boolean().optional(),
222
222
  description: z.string().optional(),
223
223
  })