@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.
@@ -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<{
@@ -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({