@framebreak/types 0.1.13 → 0.1.14

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +14 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -2949,12 +2949,26 @@ declare const v1Router: {
2949
2949
  };
2950
2950
  }>, zod.ZodObject<{
2951
2951
  communityPostId: zod.ZodString;
2952
+ cursor: zod.ZodOptional<zod.ZodString>;
2953
+ limit: zod.ZodDefault<zod.ZodNumber>;
2954
+ sort: zod.ZodDefault<zod.ZodEnum<{
2955
+ newest: "newest";
2956
+ oldest: "oldest";
2957
+ }>>;
2952
2958
  }, better_auth.$strip>, _orpc_contract.Schema<{
2953
2959
  data: CommunityComment[];
2954
2960
  count: number;
2961
+ pagination: {
2962
+ hasMore: boolean;
2963
+ nextCursor: string | undefined;
2964
+ };
2955
2965
  }, {
2956
2966
  data: CommunityComment[];
2957
2967
  count: number;
2968
+ pagination: {
2969
+ hasMore: boolean;
2970
+ nextCursor: string | undefined;
2971
+ };
2958
2972
  }>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2959
2973
  readonly UNAUTHORIZED: {
2960
2974
  readonly message: "You must be logged in to access this resource";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@framebreak/types",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "Type definitions for the Framebreak API",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",