@zyacreatives/shared 2.1.60 → 2.1.63
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
|
@@ -51,6 +51,7 @@ export declare const CreateBrandProfileInputSchema: z.ZodObject<{
|
|
|
51
51
|
disciplineSlugs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
52
52
|
}, z.core.$strip>;
|
|
53
53
|
export declare const UpdateBrandProfileInputSchema: z.ZodObject<{
|
|
54
|
+
expectedUpdateAt: z.ZodISODateTime;
|
|
54
55
|
brandName: z.ZodOptional<z.ZodString>;
|
|
55
56
|
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
56
57
|
url: z.ZodUnion<readonly [z.ZodURL, z.ZodLiteral<"">]>;
|
package/dist/schemas/brand.js
CHANGED
|
@@ -99,6 +99,7 @@ exports.CreateBrandProfileInputSchema = zod_openapi_1.z
|
|
|
99
99
|
});
|
|
100
100
|
exports.UpdateBrandProfileInputSchema = zod_openapi_1.z
|
|
101
101
|
.object({
|
|
102
|
+
expectedUpdateAt: zod_openapi_1.z.iso.datetime(),
|
|
102
103
|
brandName: zod_openapi_1.z.string().min(1).optional().openapi({ example: "Acme Studio" }),
|
|
103
104
|
links: zod_openapi_1.z
|
|
104
105
|
.object({
|
|
@@ -80,6 +80,7 @@ export declare const CreateCreativeProfileInputSchema: z.ZodObject<{
|
|
|
80
80
|
disciplineSlugs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
81
81
|
}, z.core.$strip>;
|
|
82
82
|
export declare const UpdateCreativeProfileInputSchema: z.ZodObject<{
|
|
83
|
+
expectedUpdateAt: z.ZodISODateTime;
|
|
83
84
|
experienceLevel: z.ZodOptional<z.ZodEnum<{
|
|
84
85
|
readonly YEAR_0_1: "0-1 year";
|
|
85
86
|
readonly YEAR_1_3: "1-3 years";
|
package/dist/schemas/creative.js
CHANGED
|
@@ -144,6 +144,7 @@ exports.CreateCreativeProfileInputSchema = zod_openapi_1.z
|
|
|
144
144
|
});
|
|
145
145
|
exports.UpdateCreativeProfileInputSchema = zod_openapi_1.z
|
|
146
146
|
.object({
|
|
147
|
+
expectedUpdateAt: zod_openapi_1.z.iso.datetime(),
|
|
147
148
|
experienceLevel: zod_openapi_1.z
|
|
148
149
|
.enum(constants_1.EXPERIENCE_LEVELS)
|
|
149
150
|
.optional()
|
package/package.json
CHANGED
package/src/schemas/brand.ts
CHANGED
|
@@ -111,6 +111,7 @@ export const CreateBrandProfileInputSchema = z
|
|
|
111
111
|
|
|
112
112
|
export const UpdateBrandProfileInputSchema = z
|
|
113
113
|
.object({
|
|
114
|
+
expectedUpdateAt: z.iso.datetime(),
|
|
114
115
|
brandName: z.string().min(1).optional().openapi({ example: "Acme Studio" }),
|
|
115
116
|
links: z
|
|
116
117
|
.object({
|
package/src/schemas/creative.ts
CHANGED
|
@@ -88,7 +88,6 @@ export const CreativeEntitySchema = z
|
|
|
88
88
|
.date()
|
|
89
89
|
.optional()
|
|
90
90
|
.openapi({ example: "2025-10-13T09:00:00.000Z" }),
|
|
91
|
-
|
|
92
91
|
updatedAt: z.coerce.date().openapi({ example: "2025-10-13T09:00:00.000Z" }),
|
|
93
92
|
})
|
|
94
93
|
.openapi({
|
|
@@ -175,6 +174,7 @@ export const CreateCreativeProfileInputSchema = z
|
|
|
175
174
|
|
|
176
175
|
export const UpdateCreativeProfileInputSchema = z
|
|
177
176
|
.object({
|
|
177
|
+
expectedUpdateAt: z.iso.datetime(),
|
|
178
178
|
experienceLevel: z
|
|
179
179
|
.enum(EXPERIENCE_LEVELS)
|
|
180
180
|
.optional()
|