@zyacreatives/shared 2.2.45 → 2.2.46

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.
@@ -185,7 +185,6 @@ export declare const CreateInvestorProfileInputSchema: z.ZodObject<{
185
185
  "5+ years": "5+ years";
186
186
  }>>;
187
187
  location: z.ZodString;
188
- disciplineSlugs: z.ZodDefault<z.ZodArray<z.ZodString>>;
189
188
  }, z.core.$strip>;
190
189
  export declare const UpdateInvestorProfileInputSchema: z.ZodObject<{
191
190
  bio: z.ZodOptional<z.ZodString>;
@@ -138,14 +138,6 @@ exports.CreateInvestorProfileInputSchema = zod_openapi_1.z
138
138
  location: zod_openapi_1.z.string().openapi({
139
139
  example: "UK",
140
140
  }),
141
- disciplineSlugs: zod_openapi_1.z
142
- .array(zod_openapi_1.z.string())
143
- .min(1, "At least one discipline is required")
144
- .default([])
145
- .describe("List of discipline slugs.")
146
- .openapi({
147
- example: ["fintech", "edtech"],
148
- }),
149
141
  })
150
142
  .openapi({
151
143
  title: "Create Investor Profile",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.2.45",
3
+ "version": "2.2.46",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -180,14 +180,6 @@ export const CreateInvestorProfileInputSchema = z
180
180
  location: z.string().openapi({
181
181
  example: "UK",
182
182
  }),
183
- disciplineSlugs: z
184
- .array(z.string())
185
- .min(1, "At least one discipline is required")
186
- .default([])
187
- .describe("List of discipline slugs.")
188
- .openapi({
189
- example: ["fintech", "edtech"],
190
- }),
191
183
  })
192
184
  .openapi({
193
185
  title: "Create Investor Profile",