@zyacreatives/shared 2.2.21 → 2.2.22
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.
|
@@ -146,6 +146,7 @@ export declare const UpdateProjectInputSchema: z.ZodObject<{
|
|
|
146
146
|
readonly ZAR: "ZAR (South African Rand)";
|
|
147
147
|
}>>;
|
|
148
148
|
currentTraction: z.ZodOptional<z.ZodString>;
|
|
149
|
+
isOpenToInvestment: z.ZodDefault<z.ZodBoolean>;
|
|
149
150
|
startDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
150
151
|
endDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
151
152
|
version: z.ZodNumber;
|
package/dist/schemas/project.js
CHANGED
|
@@ -90,6 +90,7 @@ exports.UpdateProjectInputSchema = zod_openapi_1.z
|
|
|
90
90
|
capitalLookingToRaise: zod_openapi_1.z.string().optional(),
|
|
91
91
|
capitalLookingToRaiseCurrency: zod_openapi_1.z.enum(constants_1.WAGES_CURRENCY).optional(),
|
|
92
92
|
currentTraction: zod_openapi_1.z.string().max(600).optional(),
|
|
93
|
+
isOpenToInvestment: zod_openapi_1.z.boolean().default(false),
|
|
93
94
|
startDate: zod_openapi_1.z.coerce.date().optional(),
|
|
94
95
|
endDate: zod_openapi_1.z.coerce.date().optional(),
|
|
95
96
|
version: zod_openapi_1.z.number().int(),
|
package/package.json
CHANGED
package/src/schemas/project.ts
CHANGED
|
@@ -100,6 +100,7 @@ export const UpdateProjectInputSchema = z
|
|
|
100
100
|
capitalLookingToRaise: z.string().optional(),
|
|
101
101
|
capitalLookingToRaiseCurrency: z.enum(WAGES_CURRENCY).optional(),
|
|
102
102
|
currentTraction: z.string().max(600).optional(),
|
|
103
|
+
isOpenToInvestment: z.boolean().default(false),
|
|
103
104
|
startDate: z.coerce.date().optional(),
|
|
104
105
|
endDate: z.coerce.date().optional(),
|
|
105
106
|
version: z.number().int(),
|