@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.
|
|
97
|
-
endDate: z.ZodOptional<z.
|
|
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>>>;
|
package/dist/schemas/creative.js
CHANGED
|
@@ -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.
|
|
185
|
-
endDate: zod_openapi_1.z.
|
|
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
package/src/schemas/creative.ts
CHANGED
|
@@ -216,8 +216,8 @@ export const UpdateCreativeProfileInputSchema = z
|
|
|
216
216
|
.object({
|
|
217
217
|
companyName: z.string(),
|
|
218
218
|
position: z.string(),
|
|
219
|
-
startDate: z.
|
|
220
|
-
endDate: z.
|
|
219
|
+
startDate: z.string().optional(),
|
|
220
|
+
endDate: z.string().optional(),
|
|
221
221
|
currentlyWorking: z.boolean().optional(),
|
|
222
222
|
description: z.string().optional(),
|
|
223
223
|
})
|