@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/dist/commonjs/index.d.ts +2 -2
- package/dist/commonjs/index.d.ts.map +1 -1
- package/dist/commonjs/index.js.map +1 -1
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/standalone/index.js +926 -894
- package/dist/standalone/index.umd.cjs +12 -12
- package/package.json +4 -4
- package/src/index.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instantdb/react",
|
|
3
|
-
"version": "1.0.3
|
|
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
|
|
70
|
-
"@instantdb/
|
|
71
|
-
"@instantdb/
|
|
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,
|