@zyacreatives/shared 2.1.55 → 2.1.56

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.
@@ -296,7 +296,6 @@ export declare const GetPostWithLikesOutputSchema: z.ZodObject<{
296
296
  actorUsername: z.ZodString;
297
297
  actorImageUrl: z.ZodOptional<z.ZodURL>;
298
298
  }, z.core.$strip>>;
299
- totalFetched: z.ZodNumber;
300
299
  totalNo: z.ZodNumber;
301
300
  }, z.core.$strip>;
302
301
  export declare const PostWithCommentsEntitySchema: z.ZodObject<{
@@ -361,7 +360,6 @@ export declare const GetPostWithBookmarksOutputSchema: z.ZodObject<{
361
360
  actorUsername: z.ZodString;
362
361
  actorImageUrl: z.ZodOptional<z.ZodURL>;
363
362
  }, z.core.$strip>>;
364
- totalFetched: z.ZodNumber;
365
363
  totalNo: z.ZodNumber;
366
364
  }, z.core.$strip>;
367
365
  export declare const LinkPreviewInputSchema: z.ZodObject<{
@@ -155,7 +155,6 @@ exports.PostWithLikesEntitySchema = exports.MinimalPostSchema.extend({
155
155
  title: "PostWithPostLikesEntity",
156
156
  });
157
157
  exports.GetPostWithLikesOutputSchema = exports.PostWithLikesEntitySchema.extend({
158
- totalFetched: zod_openapi_1.z.number().int(),
159
158
  totalNo: zod_openapi_1.z.number().int(),
160
159
  });
161
160
  exports.PostWithCommentsEntitySchema = exports.MinimalPostSchema.extend({
@@ -169,7 +168,6 @@ exports.PostWithBookmarksEntitySchema = exports.MinimalPostSchema.extend({
169
168
  title: "PostWithPostBookmarksEntity",
170
169
  });
171
170
  exports.GetPostWithBookmarksOutputSchema = exports.PostWithBookmarksEntitySchema.extend({
172
- totalFetched: zod_openapi_1.z.number().int(),
173
171
  totalNo: zod_openapi_1.z.number().int(),
174
172
  });
175
173
  exports.LinkPreviewInputSchema = zod_openapi_1.z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.1.55",
3
+ "version": "2.1.56",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -177,7 +177,6 @@ export const PostWithLikesEntitySchema = MinimalPostSchema.extend({
177
177
  });
178
178
 
179
179
  export const GetPostWithLikesOutputSchema = PostWithLikesEntitySchema.extend({
180
- totalFetched: z.number().int(),
181
180
  totalNo: z.number().int(),
182
181
  });
183
182
 
@@ -195,7 +194,6 @@ export const PostWithBookmarksEntitySchema = MinimalPostSchema.extend({
195
194
 
196
195
  export const GetPostWithBookmarksOutputSchema =
197
196
  PostWithBookmarksEntitySchema.extend({
198
- totalFetched: z.number().int(),
199
197
  totalNo: z.number().int(),
200
198
  });
201
199