@zyacreatives/shared 2.2.3 → 2.2.4
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.
|
@@ -220,7 +220,7 @@ export declare const UpdateProjectInputSchema: z.ZodObject<{
|
|
|
220
220
|
GROWTH: string;
|
|
221
221
|
EXIT: string;
|
|
222
222
|
}>>;
|
|
223
|
-
capitalLookingToRaise: z.ZodString
|
|
223
|
+
capitalLookingToRaise: z.ZodOptional<z.ZodString>;
|
|
224
224
|
capitalLookingToRaiseCurrency: z.ZodOptional<z.ZodEnum<{
|
|
225
225
|
readonly USD: "USD (United States Dollar)";
|
|
226
226
|
readonly EUR: "EUR (Euro)";
|
package/dist/schemas/project.js
CHANGED
|
@@ -199,7 +199,7 @@ exports.UpdateProjectInputSchema = zod_openapi_1.z
|
|
|
199
199
|
problemBeingSolved: zod_openapi_1.z.string().max(600).optional(),
|
|
200
200
|
whoItsFor: zod_openapi_1.z.string().max(600).optional(),
|
|
201
201
|
ventureStage: zod_openapi_1.z.enum(constants_1.VENTURE_STAGES).optional(),
|
|
202
|
-
capitalLookingToRaise: zod_openapi_1.z.string(),
|
|
202
|
+
capitalLookingToRaise: zod_openapi_1.z.string().optional(),
|
|
203
203
|
capitalLookingToRaiseCurrency: zod_openapi_1.z.enum(constants_1.WAGES_CURRENCY).optional(),
|
|
204
204
|
currentTraction: zod_openapi_1.z.string().max(600),
|
|
205
205
|
startDate: zod_openapi_1.z.coerce.date().optional(),
|
package/package.json
CHANGED
package/src/schemas/project.ts
CHANGED
|
@@ -212,7 +212,7 @@ export const UpdateProjectInputSchema = z
|
|
|
212
212
|
problemBeingSolved: z.string().max(600).optional(),
|
|
213
213
|
whoItsFor: z.string().max(600).optional(),
|
|
214
214
|
ventureStage: z.enum(VENTURE_STAGES).optional(),
|
|
215
|
-
capitalLookingToRaise: z.string(),
|
|
215
|
+
capitalLookingToRaise: z.string().optional(),
|
|
216
216
|
capitalLookingToRaiseCurrency: z.enum(WAGES_CURRENCY).optional(),
|
|
217
217
|
currentTraction: z.string().max(600),
|
|
218
218
|
startDate: z.coerce.date().optional(),
|