@zyacreatives/shared 2.0.28 → 2.0.29

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.
@@ -325,5 +325,5 @@ export declare const FeedPostEntitySchema: z.ZodObject<{
325
325
  }, z.core.$strip>;
326
326
  export declare const GetFeedInputSchema: z.ZodObject<{
327
327
  limit: z.ZodOptional<z.ZodNumber>;
328
- query: z.ZodOptional<z.ZodString>;
328
+ cursor: z.ZodOptional<z.ZodString>;
329
329
  }, z.core.$strip>;
@@ -157,5 +157,5 @@ exports.FeedPostEntitySchema = exports.PostWithFilesEntitySchema.extend({
157
157
  });
158
158
  exports.GetFeedInputSchema = zod_openapi_1.z.object({
159
159
  limit: zod_openapi_1.z.number().optional(),
160
- query: zod_openapi_1.z.string().optional()
160
+ cursor: zod_openapi_1.z.string().optional()
161
161
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.0.28",
3
+ "version": "2.0.29",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -173,5 +173,5 @@ export const FeedPostEntitySchema = PostWithFilesEntitySchema.extend({
173
173
 
174
174
  export const GetFeedInputSchema = z.object({
175
175
  limit: z.number().optional(),
176
- query: z.string().optional()
176
+ cursor: z.string().optional()
177
177
  })