convex-helpers
Advanced tools
Comparing version 0.1.64-alpha.3 to 0.1.64-alpha.4
{ | ||
"name": "convex-helpers", | ||
"version": "0.1.64-alpha.3", | ||
"version": "0.1.64-alpha.4", | ||
"description": "A collection of useful code to complement the official convex package.", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -658,2 +658,7 @@ import { Value, convexToJson, jsonToConvex } from "convex/values"; | ||
} | ||
limit(_n: number): any { | ||
throw new Error( | ||
".limit() not supported for `paginator`. Use .paginate() instead.", | ||
); | ||
} | ||
[Symbol.asyncIterator](): any { | ||
@@ -660,0 +665,0 @@ throw new Error( |
655403
15131