@zyacreatives/shared 2.5.17 → 2.5.18
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/user.d.ts +0 -1
- package/dist/schemas/user.js +0 -1
- package/package.json +1 -1
- package/src/schemas/user.ts +0 -1
package/dist/schemas/user.d.ts
CHANGED
|
@@ -1745,7 +1745,6 @@ export declare const UserSearchDocumentSchema: z.ZodObject<{
|
|
|
1745
1745
|
ADMIN: "ADMIN";
|
|
1746
1746
|
}>;
|
|
1747
1747
|
bio: z.ZodNullable<z.ZodString>;
|
|
1748
|
-
location: z.ZodNullable<z.ZodString>;
|
|
1749
1748
|
disciplines: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1750
1749
|
updatedAt: z.ZodNullable<z.ZodString>;
|
|
1751
1750
|
createdAt: z.ZodNullable<z.ZodString>;
|
package/dist/schemas/user.js
CHANGED
|
@@ -317,7 +317,6 @@ exports.UserSearchDocumentSchema = zod_openapi_1.z
|
|
|
317
317
|
bio: zod_openapi_1.z.string().nullable().openapi({
|
|
318
318
|
example: "Passionate designer and developer based in Lagos.",
|
|
319
319
|
}),
|
|
320
|
-
location: zod_openapi_1.z.string().nullable().openapi({ example: "Lagos, Nigeria" }),
|
|
321
320
|
disciplines: zod_openapi_1.z
|
|
322
321
|
.array(zod_openapi_1.z.string())
|
|
323
322
|
.nullable()
|
package/package.json
CHANGED
package/src/schemas/user.ts
CHANGED
|
@@ -422,7 +422,6 @@ export const UserSearchDocumentSchema = z
|
|
|
422
422
|
bio: z.string().nullable().openapi({
|
|
423
423
|
example: "Passionate designer and developer based in Lagos.",
|
|
424
424
|
}),
|
|
425
|
-
location: z.string().nullable().openapi({ example: "Lagos, Nigeria" }),
|
|
426
425
|
disciplines: z
|
|
427
426
|
.array(z.string())
|
|
428
427
|
.nullable()
|