@zyacreatives/shared 2.5.76 → 2.5.77
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.
|
@@ -205,7 +205,6 @@ export declare const CreateInvestorProfileInputSchema: z.ZodObject<{
|
|
|
205
205
|
"5+ years": "5+ years";
|
|
206
206
|
}>;
|
|
207
207
|
websiteURL: z.ZodDefault<z.ZodURL>;
|
|
208
|
-
disciplineSlugs: z.ZodArray<z.ZodString>;
|
|
209
208
|
}, z.core.$strip>;
|
|
210
209
|
export type CreateInvestorInput = z.infer<typeof CreateInvestorProfileInputSchema>;
|
|
211
210
|
export declare const UpdateInvestorProfileInputSchema: z.ZodObject<{
|
package/dist/schemas/investor.js
CHANGED
|
@@ -74,8 +74,6 @@ exports.CreateInvestorProfileInputSchema = InvestorShape.pick({
|
|
|
74
74
|
experienceLevel: true,
|
|
75
75
|
location: true,
|
|
76
76
|
websiteURL: true,
|
|
77
|
-
}).extend({
|
|
78
|
-
disciplineSlugs: zod_openapi_1.z.array(zod_openapi_1.z.string()).min(1),
|
|
79
77
|
});
|
|
80
78
|
exports.UpdateInvestorProfileInputSchema = InvestorShape.partial()
|
|
81
79
|
.extend({
|
package/package.json
CHANGED
package/src/schemas/investor.ts
CHANGED
|
@@ -116,9 +116,7 @@ export const CreateInvestorProfileInputSchema = InvestorShape.pick({
|
|
|
116
116
|
experienceLevel: true,
|
|
117
117
|
location: true,
|
|
118
118
|
websiteURL: true,
|
|
119
|
-
})
|
|
120
|
-
disciplineSlugs: z.array(z.string()).min(1),
|
|
121
|
-
});
|
|
119
|
+
})
|
|
122
120
|
|
|
123
121
|
export type CreateInvestorInput = z.infer<
|
|
124
122
|
typeof CreateInvestorProfileInputSchema
|