@zyacreatives/shared 2.2.3 → 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.
|
@@ -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)";
|
|
@@ -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
|
@@ -199,9 +199,9 @@ 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
|
-
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
|
@@ -212,9 +212,9 @@ 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
|
-
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(),
|