@zyacreatives/shared 2.3.5 → 2.3.6

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.
@@ -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>;
@@ -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({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.3.5",
3
+ "version": "2.3.6",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -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