@zyacreatives/shared 2.1.88 → 2.1.89

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.
@@ -658,6 +658,7 @@ export declare const PostAnalyticsOutputSchema: z.ZodObject<{
658
658
  rate: z.ZodNumber;
659
659
  likes: z.ZodNumber;
660
660
  comments: z.ZodNumber;
661
+ linkCopied: z.ZodNumber;
661
662
  bookmarks: z.ZodNumber;
662
663
  tagsClicked: z.ZodArray<z.ZodObject<{
663
664
  x: z.ZodString;
@@ -232,6 +232,7 @@ exports.PostAnalyticsOutputSchema = zod_openapi_1.z.object({
232
232
  rate: zod_openapi_1.z.number(),
233
233
  likes: zod_openapi_1.z.number(),
234
234
  comments: zod_openapi_1.z.number(),
235
+ linkCopied: zod_openapi_1.z.number(),
235
236
  bookmarks: zod_openapi_1.z.number(),
236
237
  tagsClicked: zod_openapi_1.z.array(AnalyticsChartItemSchema),
237
238
  platformShares: zod_openapi_1.z.array(AnalyticsChartItemSchema),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.1.88",
3
+ "version": "2.1.89",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -270,6 +270,7 @@ export const PostAnalyticsOutputSchema = z.object({
270
270
  rate: z.number(),
271
271
  likes: z.number(),
272
272
  comments: z.number(),
273
+ linkCopied: z.number(),
273
274
  bookmarks: z.number(),
274
275
  tagsClicked: z.array(AnalyticsChartItemSchema),
275
276
  platformShares: z.array(AnalyticsChartItemSchema),