@zyacreatives/shared 2.2.4 → 2.2.5
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.
|
@@ -233,7 +233,7 @@ export declare const UpdateProjectInputSchema: z.ZodObject<{
|
|
|
233
233
|
readonly INR: "INR (Indian Rupee)";
|
|
234
234
|
readonly ZAR: "ZAR (South African Rand)";
|
|
235
235
|
}>>;
|
|
236
|
-
currentTraction: z.ZodString
|
|
236
|
+
currentTraction: z.ZodOptional<z.ZodString>;
|
|
237
237
|
startDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
238
238
|
endDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
239
239
|
createdAt: z.ZodOptional<z.ZodDate>;
|
package/dist/schemas/project.js
CHANGED
|
@@ -201,7 +201,7 @@ exports.UpdateProjectInputSchema = zod_openapi_1.z
|
|
|
201
201
|
ventureStage: zod_openapi_1.z.enum(constants_1.VENTURE_STAGES).optional(),
|
|
202
202
|
capitalLookingToRaise: zod_openapi_1.z.string().optional(),
|
|
203
203
|
capitalLookingToRaiseCurrency: zod_openapi_1.z.enum(constants_1.WAGES_CURRENCY).optional(),
|
|
204
|
-
currentTraction: zod_openapi_1.z.string().max(600),
|
|
204
|
+
currentTraction: zod_openapi_1.z.string().max(600).optional(),
|
|
205
205
|
startDate: zod_openapi_1.z.coerce.date().optional(),
|
|
206
206
|
endDate: zod_openapi_1.z.coerce.date().optional(),
|
|
207
207
|
createdAt: zod_openapi_1.z.date().optional(),
|
package/package.json
CHANGED
package/src/schemas/project.ts
CHANGED
|
@@ -214,7 +214,7 @@ export const UpdateProjectInputSchema = z
|
|
|
214
214
|
ventureStage: z.enum(VENTURE_STAGES).optional(),
|
|
215
215
|
capitalLookingToRaise: z.string().optional(),
|
|
216
216
|
capitalLookingToRaiseCurrency: z.enum(WAGES_CURRENCY).optional(),
|
|
217
|
-
currentTraction: z.string().max(600),
|
|
217
|
+
currentTraction: z.string().max(600).optional(),
|
|
218
218
|
startDate: z.coerce.date().optional(),
|
|
219
219
|
endDate: z.coerce.date().optional(),
|
|
220
220
|
createdAt: z.date().optional(),
|