@zyacreatives/shared 2.5.17 → 2.5.19

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.
@@ -1744,7 +1744,6 @@ export declare const UserSearchDocumentSchema: z.ZodObject<{
1744
1744
  INVESTOR: "INVESTOR";
1745
1745
  ADMIN: "ADMIN";
1746
1746
  }>;
1747
- bio: z.ZodNullable<z.ZodString>;
1748
1747
  location: z.ZodNullable<z.ZodString>;
1749
1748
  disciplines: z.ZodNullable<z.ZodArray<z.ZodString>>;
1750
1749
  updatedAt: z.ZodNullable<z.ZodString>;
@@ -314,9 +314,6 @@ exports.UserSearchDocumentSchema = zod_openapi_1.z
314
314
  role: zod_openapi_1.z
315
315
  .enum(Object.values(constants_1.ROLES))
316
316
  .openapi({ example: "CREATIVE" }),
317
- bio: zod_openapi_1.z.string().nullable().openapi({
318
- example: "Passionate designer and developer based in Lagos.",
319
- }),
320
317
  location: zod_openapi_1.z.string().nullable().openapi({ example: "Lagos, Nigeria" }),
321
318
  disciplines: zod_openapi_1.z
322
319
  .array(zod_openapi_1.z.string())
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.5.17",
3
+ "version": "2.5.19",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -419,9 +419,6 @@ export const UserSearchDocumentSchema = z
419
419
  role: z
420
420
  .enum(Object.values(ROLES) as [Role, ...Role[]])
421
421
  .openapi({ example: "CREATIVE" }),
422
- bio: z.string().nullable().openapi({
423
- example: "Passionate designer and developer based in Lagos.",
424
- }),
425
422
  location: z.string().nullable().openapi({ example: "Lagos, Nigeria" }),
426
423
  disciplines: z
427
424
  .array(z.string())