@zyacreatives/shared 2.2.24 → 2.2.25
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.
|
@@ -377,6 +377,8 @@ export declare const ProjectSearchDocumentSchema: z.ZodObject<{
|
|
|
377
377
|
}>>;
|
|
378
378
|
url: z.ZodOptional<z.ZodURL>;
|
|
379
379
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
380
|
+
creatorUsername: z.ZodString;
|
|
381
|
+
creatorImageUrl: z.ZodString;
|
|
380
382
|
clientId: z.ZodOptional<z.ZodString>;
|
|
381
383
|
clientType: z.ZodOptional<z.ZodEnum<{
|
|
382
384
|
readonly CREATIVE: "CREATIVE";
|
|
@@ -429,6 +431,8 @@ export declare const SearchProjectsOutputSchema: z.ZodObject<{
|
|
|
429
431
|
}>>;
|
|
430
432
|
url: z.ZodOptional<z.ZodURL>;
|
|
431
433
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
434
|
+
creatorUsername: z.ZodString;
|
|
435
|
+
creatorImageUrl: z.ZodString;
|
|
432
436
|
clientId: z.ZodOptional<z.ZodString>;
|
|
433
437
|
clientType: z.ZodOptional<z.ZodEnum<{
|
|
434
438
|
readonly CREATIVE: "CREATIVE";
|
package/dist/schemas/project.js
CHANGED
|
@@ -149,6 +149,8 @@ exports.ProjectSearchDocumentSchema = zod_openapi_1.z
|
|
|
149
149
|
ventureStage: zod_openapi_1.z.enum(constants_1.VENTURE_STAGES).optional(),
|
|
150
150
|
url: zod_openapi_1.z.url().optional(),
|
|
151
151
|
tags: zod_openapi_1.z.array(zod_openapi_1.z.string()).optional(),
|
|
152
|
+
creatorUsername: zod_openapi_1.z.string(),
|
|
153
|
+
creatorImageUrl: zod_openapi_1.z.string(),
|
|
152
154
|
clientId: zod_openapi_1.z.string().optional(),
|
|
153
155
|
clientType: zod_openapi_1.z.enum(constants_1.CLIENT_TYPES).optional(),
|
|
154
156
|
clientName: zod_openapi_1.z.string().optional(),
|
package/package.json
CHANGED
package/src/schemas/project.ts
CHANGED
|
@@ -165,6 +165,8 @@ export const ProjectSearchDocumentSchema = z
|
|
|
165
165
|
ventureStage: z.enum(VENTURE_STAGES).optional(),
|
|
166
166
|
url: z.url().optional(),
|
|
167
167
|
tags: z.array(z.string()).optional(),
|
|
168
|
+
creatorUsername: z.string(),
|
|
169
|
+
creatorImageUrl: z.string(),
|
|
168
170
|
clientId: z.string().optional(),
|
|
169
171
|
clientType: z.enum(CLIENT_TYPES).optional(),
|
|
170
172
|
clientName: z.string().optional(),
|