@convex-dev/persistent-text-streaming 0.2.0 → 0.2.1

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.
@@ -8,7 +8,5 @@
8
8
  */
9
9
  export const api: import("convex/server").AnyApi;
10
10
  export const internal: import("convex/server").AnyApi;
11
- export const components: {
12
- [x: string]: import("../../../node_modules/convex/dist/esm-types/server/components").AnyComponentReference;
13
- };
11
+ export const components: import("convex/server").AnyChildComponents;
14
12
  //# sourceMappingURL=api.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../../src/component/_generated/api.js"],"names":[],"mappings":"AAYA;;;;;;;GAOG;AACH,iDAA0B;AAC1B,sDAA+B;AAC/B;;EAA8C"}
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../../src/component/_generated/api.js"],"names":[],"mappings":"AAYA;;;;;;;GAOG;AACH,iDAA0B;AAC1B,sDAA+B;AAC/B,oEAA8C"}
@@ -8,7 +8,5 @@
8
8
  */
9
9
  export const api: import("convex/server").AnyApi;
10
10
  export const internal: import("convex/server").AnyApi;
11
- export const components: {
12
- [x: string]: import("../../../node_modules/convex/dist/esm-types/server/components").AnyComponentReference;
13
- };
11
+ export const components: import("convex/server").AnyChildComponents;
14
12
  //# sourceMappingURL=api.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../../src/component/_generated/api.js"],"names":[],"mappings":"AAYA;;;;;;;GAOG;AACH,iDAA0B;AAC1B,sDAA+B;AAC/B;;EAA8C"}
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../../src/component/_generated/api.js"],"names":[],"mappings":"AAYA;;;;;;;GAOG;AACH,iDAA0B;AAC1B,sDAA+B;AAC/B,oEAA8C"}
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "email": "support@convex.dev",
8
8
  "url": "https://github.com/get-convex/persistent-text-streaming/issues"
9
9
  },
10
- "version": "0.2.0",
10
+ "version": "0.2.1",
11
11
  "license": "Apache-2.0",
12
12
  "keywords": [
13
13
  "convex",
@@ -23,6 +23,8 @@
23
23
  "prepare": "npm run build",
24
24
  "prepack": "node node10stubs.mjs",
25
25
  "postpack": "node node10stubs.mjs --cleanup",
26
+ "alpha": "rm -rf dist && npm run build && npm run test && npm version prerelease --preid alpha && npm publish --tag alpha && git push --tags",
27
+ "release": "rm -rf dist && npm run build && npm run test && npm version patch && npm publish && git push --tags",
26
28
  "test": "vitest run",
27
29
  "test:debug": "vitest --inspect-brk --no-file-parallelism",
28
30
  "test:coverage": "vitest run --coverage --coverage.reporter=text"
@@ -67,7 +69,7 @@
67
69
  }
68
70
  },
69
71
  "peerDependencies": {
70
- "convex": "~1.16.5 || ~1.17.0 || ~1.18.0 || ~1.19.0",
72
+ "convex": ">=1.23.0 <1.35.0",
71
73
  "react": "~18.3.1 || ~19.0.0",
72
74
  "react-dom": "~18.3.1 || ~19.0.0"
73
75
  },
@@ -16,6 +16,7 @@ import type {
16
16
  FilterApi,
17
17
  FunctionReference,
18
18
  } from "convex/server";
19
+
19
20
  /**
20
21
  * A utility for referencing Convex functions in your app's API.
21
22
  *