@zyacreatives/shared 2.0.26 → 2.0.27

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.
@@ -321,4 +321,5 @@ export declare const FeedPostEntitySchema: z.ZodObject<{
321
321
  viewsCount: z.ZodNumber;
322
322
  commentsCount: z.ZodNumber;
323
323
  };
324
+ score: z.ZodNumber;
324
325
  }, z.core.$strip>;
@@ -153,4 +153,5 @@ exports.LinkPreviewOutputSchema = zod_openapi_1.z.object({
153
153
  });
154
154
  exports.FeedPostEntitySchema = exports.PostWithFilesEntitySchema.extend({
155
155
  stats: entity_stats_1.EntityStatsSchema.shape,
156
+ score: zod_openapi_1.z.number(),
156
157
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.0.26",
3
+ "version": "2.0.27",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -168,4 +168,5 @@ export const LinkPreviewOutputSchema = z.object({
168
168
 
169
169
  export const FeedPostEntitySchema = PostWithFilesEntitySchema.extend({
170
170
  stats: EntityStatsSchema.shape,
171
+ score: z.number(),
171
172
  });