@zyacreatives/shared 2.5.75 → 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.
- package/dist/schemas/investor.d.ts +0 -1
- package/dist/schemas/investor.js +0 -2
- package/dist/schemas/notification.d.ts +730 -0
- package/dist/schemas/notification.js +235 -1
- package/dist/types/notification.d.ts +20 -1
- package/package.json +1 -1
- package/src/schemas/investor.ts +1 -3
- package/src/schemas/notification.ts +313 -15
|
@@ -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({
|