@zyacreatives/shared 2.1.47 → 2.1.48
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/brand.d.ts
CHANGED
|
@@ -15,7 +15,6 @@ export declare const BrandEntitySchema: z.ZodObject<{
|
|
|
15
15
|
bio: z.ZodOptional<z.ZodString>;
|
|
16
16
|
disciplines: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
17
17
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
18
|
-
name: z.ZodString;
|
|
19
18
|
url: z.ZodURL;
|
|
20
19
|
type: z.ZodDefault<z.ZodEnum<{
|
|
21
20
|
readonly INSTAGRAM: "Instagram";
|
|
@@ -92,7 +91,6 @@ export declare const CreateBrandOutputSchema: z.ZodObject<{
|
|
|
92
91
|
bio: z.ZodOptional<z.ZodString>;
|
|
93
92
|
disciplines: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
94
93
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
95
|
-
name: z.ZodString;
|
|
96
94
|
url: z.ZodURL;
|
|
97
95
|
type: z.ZodDefault<z.ZodEnum<{
|
|
98
96
|
readonly INSTAGRAM: "Instagram";
|
|
@@ -118,7 +116,6 @@ export declare const GetBrandOutputSchema: z.ZodObject<{
|
|
|
118
116
|
bio: z.ZodOptional<z.ZodString>;
|
|
119
117
|
disciplines: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
120
118
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
121
|
-
name: z.ZodString;
|
|
122
119
|
url: z.ZodURL;
|
|
123
120
|
type: z.ZodDefault<z.ZodEnum<{
|
|
124
121
|
readonly INSTAGRAM: "Instagram";
|
|
@@ -144,7 +141,6 @@ export declare const UpdateBrandOutputSchema: z.ZodObject<{
|
|
|
144
141
|
bio: z.ZodOptional<z.ZodString>;
|
|
145
142
|
disciplines: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
146
143
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
147
|
-
name: z.ZodString;
|
|
148
144
|
url: z.ZodURL;
|
|
149
145
|
type: z.ZodDefault<z.ZodEnum<{
|
|
150
146
|
readonly INSTAGRAM: "Instagram";
|
package/dist/schemas/brand.js
CHANGED
|
@@ -36,7 +36,6 @@ exports.BrandEntitySchema = zod_openapi_1.z
|
|
|
36
36
|
.openapi({ example: ["Marketing", "Product Development"] }),
|
|
37
37
|
links: zod_openapi_1.z
|
|
38
38
|
.object({
|
|
39
|
-
name: zod_openapi_1.z.string(),
|
|
40
39
|
url: zod_openapi_1.z.url(),
|
|
41
40
|
type: zod_openapi_1.z.enum(constants_1.LINK_TYPES).default(constants_1.LINK_TYPES.GENERIC_WEBSITE),
|
|
42
41
|
})
|
package/dist/schemas/user.d.ts
CHANGED
|
@@ -94,7 +94,6 @@ export declare const UserProfileEntitySchema: z.ZodObject<{
|
|
|
94
94
|
bio: z.ZodOptional<z.ZodString>;
|
|
95
95
|
disciplines: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
96
96
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
97
|
-
name: z.ZodString;
|
|
98
97
|
url: z.ZodURL;
|
|
99
98
|
type: z.ZodDefault<z.ZodEnum<{
|
|
100
99
|
readonly INSTAGRAM: "Instagram";
|
|
@@ -535,7 +534,6 @@ export declare const GetAuthenticatedUserProfileOutputSchema: z.ZodObject<{
|
|
|
535
534
|
bio: z.ZodOptional<z.ZodString>;
|
|
536
535
|
disciplines: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
537
536
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
538
|
-
name: z.ZodString;
|
|
539
537
|
url: z.ZodURL;
|
|
540
538
|
type: z.ZodDefault<z.ZodEnum<{
|
|
541
539
|
readonly INSTAGRAM: "Instagram";
|
package/package.json
CHANGED