@zyacreatives/shared 2.1.99 → 2.2.0

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.
@@ -2,3 +2,7 @@ import z from "zod";
2
2
  import { ProjectSocialGraphEntitySchema } from "../schemas";
3
3
  export type ProjectSocialGraphEntity = z.infer<typeof ProjectSocialGraphEntitySchema>;
4
4
  export type PostSocialGraphEntity = z.infer<typeof ProjectSocialGraphEntitySchema>;
5
+ export type Cursor = {
6
+ id: string;
7
+ createdAt: string;
8
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.1.99",
3
+ "version": "2.2.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -7,3 +7,8 @@ export type ProjectSocialGraphEntity = z.infer<
7
7
  export type PostSocialGraphEntity = z.infer<
8
8
  typeof ProjectSocialGraphEntitySchema
9
9
  >;
10
+
11
+ export type Cursor = {
12
+ id: string;
13
+ createdAt: string;
14
+ };