@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.
- package/dist/schemas/post.d.ts +1 -0
- package/dist/schemas/post.js +1 -0
- package/package.json +1 -1
- package/src/schemas/post.ts +1 -0
package/dist/schemas/post.d.ts
CHANGED
|
@@ -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;
|
package/dist/schemas/post.js
CHANGED
|
@@ -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
package/src/schemas/post.ts
CHANGED
|
@@ -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),
|