convex-helpers 0.1.53 → 0.1.55

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/bin.cjs +3 -0
  2. package/package.json +2 -2
package/bin.cjs CHANGED
@@ -3700,6 +3700,9 @@ function generateApiSpec(functionSpec, includeInternal) {
3700
3700
  const publicFunctionTree = {};
3701
3701
  const internalFunctionTree = {};
3702
3702
  for (const fn of functionSpec.functions) {
3703
+ if (fn.functionType === "HttpAction") {
3704
+ continue;
3705
+ }
3703
3706
  const [modulePath, functionName] = fn.identifier.split(":");
3704
3707
  const withoutExtension = modulePath.slice(0, modulePath.length - 3);
3705
3708
  const pathParts = withoutExtension.split("/");
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "convex-helpers",
3
- "version": "0.1.53",
3
+ "version": "0.1.55",
4
4
  "description": "A collection of useful code to complement the official convex package.",
5
5
  "type": "module",
6
6
  "bin": {
7
- "convex-helpers": "./dist/bin.cjs"
7
+ "convex-helpers": "./bin.cjs"
8
8
  },
9
9
  "exports": {
10
10
  ".": {