@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.
- package/dist/schemas/post.d.ts +1 -1
- package/dist/schemas/post.js +1 -1
- package/package.json +1 -1
- package/src/schemas/post.ts +1 -1
package/dist/schemas/post.d.ts
CHANGED
|
@@ -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
|
-
|
|
328
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
329
329
|
}, z.core.$strip>;
|
package/dist/schemas/post.js
CHANGED
|
@@ -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
|
-
|
|
160
|
+
cursor: zod_openapi_1.z.string().optional()
|
|
161
161
|
});
|
package/package.json
CHANGED
package/src/schemas/post.ts
CHANGED