@zyacreatives/shared 2.1.88 → 2.1.90
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 +2 -0
- package/dist/schemas/post.js +2 -0
- package/package.json +1 -1
- package/src/schemas/post.ts +2 -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;
|
|
@@ -675,6 +676,7 @@ export declare const PostAnalyticsOutputSchema: z.ZodObject<{
|
|
|
675
676
|
sentiment: z.ZodObject<{
|
|
676
677
|
positive: z.ZodNumber;
|
|
677
678
|
negative: z.ZodNumber;
|
|
679
|
+
score: z.ZodNumber;
|
|
678
680
|
reports: z.ZodNumber;
|
|
679
681
|
notInterested: z.ZodNumber;
|
|
680
682
|
status: z.ZodEnum<{
|
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),
|
|
@@ -243,6 +244,7 @@ exports.PostAnalyticsOutputSchema = zod_openapi_1.z.object({
|
|
|
243
244
|
sentiment: zod_openapi_1.z.object({
|
|
244
245
|
positive: zod_openapi_1.z.number(),
|
|
245
246
|
negative: zod_openapi_1.z.number(),
|
|
247
|
+
score: zod_openapi_1.z.number(),
|
|
246
248
|
reports: zod_openapi_1.z.number(),
|
|
247
249
|
notInterested: zod_openapi_1.z.number(),
|
|
248
250
|
status: zod_openapi_1.z.enum(["Healthy", "Polarizing"]),
|
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),
|
|
@@ -281,6 +282,7 @@ export const PostAnalyticsOutputSchema = z.object({
|
|
|
281
282
|
sentiment: z.object({
|
|
282
283
|
positive: z.number(),
|
|
283
284
|
negative: z.number(),
|
|
285
|
+
score: z.number(),
|
|
284
286
|
reports: z.number(),
|
|
285
287
|
notInterested: z.number(),
|
|
286
288
|
status: z.enum(["Healthy", "Polarizing"]),
|