@instantdb/react 1.0.3-branch-idb-fix.24363677444.1 → 1.0.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instantdb/react",
3
- "version": "1.0.3-branch-idb-fix.24363677444.1",
3
+ "version": "1.0.3",
4
4
  "description": "Instant DB for React",
5
5
  "homepage": "https://github.com/instantdb/instant/tree/main/client/packages/react",
6
6
  "repository": {
@@ -66,9 +66,9 @@
66
66
  },
67
67
  "dependencies": {
68
68
  "eventsource": "^4.0.0",
69
- "@instantdb/core": "1.0.3-branch-idb-fix.24363677444.1",
70
- "@instantdb/react-common": "1.0.3-branch-idb-fix.24363677444.1",
71
- "@instantdb/version": "1.0.3-branch-idb-fix.24363677444.1"
69
+ "@instantdb/core": "1.0.3",
70
+ "@instantdb/version": "1.0.3",
71
+ "@instantdb/react-common": "1.0.3"
72
72
  },
73
73
  "scripts": {
74
74
  "test": "vitest",
package/src/index.ts CHANGED
@@ -94,6 +94,7 @@ import {
94
94
  createInstantRouteHandler,
95
95
  type StoreInterfaceStoreName,
96
96
  InstantWritableStream,
97
+ InstantReadableStream,
97
98
  } from '@instantdb/core';
98
99
 
99
100
  import { InstantReactAbstractDatabase } from '@instantdb/react-common';
@@ -194,6 +195,7 @@ export {
194
195
  type CreateReadStreamOpts,
195
196
  type CreateWriteStreamOpts,
196
197
  type InstantWritableStream,
198
+ type InstantReadableStream,
197
199
 
198
200
  // custom store
199
201
  StoreInterface,