@zyacreatives/shared 2.3.5 → 2.3.7
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
CHANGED
|
@@ -857,6 +857,7 @@ export declare const GetUserWithProductsOutputSchema: z.ZodObject<{
|
|
|
857
857
|
deletedAt: z.ZodNullable<z.ZodOptional<z.ZodCoercedDate<unknown>>>;
|
|
858
858
|
}, z.core.$strip>>;
|
|
859
859
|
}, z.core.$strip>;
|
|
860
|
+
noOfProducts: z.ZodNullable<z.ZodInt>;
|
|
860
861
|
nextCursor: z.ZodNullable<z.ZodString>;
|
|
861
862
|
}, z.core.$strip>;
|
|
862
863
|
export type UserWithProductsOutput = z.infer<typeof GetUserWithProductsOutputSchema>;
|
package/dist/schemas/user.js
CHANGED
|
@@ -170,6 +170,7 @@ exports.GetUserWithProjectBookmarksOutputSchema = zod_openapi_1.z.object({
|
|
|
170
170
|
});
|
|
171
171
|
exports.GetUserWithProductsOutputSchema = zod_openapi_1.z.object({
|
|
172
172
|
products: exports.UserWithProductsEntitySchema,
|
|
173
|
+
noOfProducts: zod_openapi_1.z.int().nullable(),
|
|
173
174
|
nextCursor: zod_openapi_1.z.string().nullable(),
|
|
174
175
|
});
|
|
175
176
|
exports.GetUserWithPostBookmarksOutputSchema = zod_openapi_1.z.object({
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const generateFileUrl: (key: string, isProd?: boolean) => string;
|
package/package.json
CHANGED
package/src/schemas/user.ts
CHANGED
|
@@ -227,6 +227,7 @@ export const GetUserWithProjectBookmarksOutputSchema = z.object({
|
|
|
227
227
|
|
|
228
228
|
export const GetUserWithProductsOutputSchema = z.object({
|
|
229
229
|
products: UserWithProductsEntitySchema,
|
|
230
|
+
noOfProducts: z.int().nullable(),
|
|
230
231
|
nextCursor: z.string().nullable(),
|
|
231
232
|
});
|
|
232
233
|
|