@instantdb/react 1.0.50 → 1.0.51-branch-optional-async-storage.29876965683.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.
- 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 +1214 -1136
- package/dist/standalone/index.umd.cjs +15 -15
- 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
|
+
"version": "1.0.51-branch-optional-async-storage.29876965683.1",
|
|
4
4
|
"description": "Instant DB for React",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/instantdb/instant/tree/main/client/packages/react",
|
|
@@ -67,9 +67,9 @@
|
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"eventsource": "^4.0.0",
|
|
70
|
-
"@instantdb/core": "1.0.
|
|
71
|
-
"@instantdb/react-common": "1.0.
|
|
72
|
-
"@instantdb/version": "1.0.
|
|
70
|
+
"@instantdb/core": "1.0.51-branch-optional-async-storage.29876965683.1",
|
|
71
|
+
"@instantdb/react-common": "1.0.51-branch-optional-async-storage.29876965683.1",
|
|
72
|
+
"@instantdb/version": "1.0.51-branch-optional-async-storage.29876965683.1"
|
|
73
73
|
},
|
|
74
74
|
"scripts": {
|
|
75
75
|
"test": "vitest",
|
package/src/index.ts
CHANGED
|
@@ -27,6 +27,7 @@ import {
|
|
|
27
27
|
type Config,
|
|
28
28
|
type InstaQLParams,
|
|
29
29
|
type ConnectionStatus,
|
|
30
|
+
type AppStatusState,
|
|
30
31
|
type ValidQuery,
|
|
31
32
|
|
|
32
33
|
// presence types
|
|
@@ -138,6 +139,7 @@ export {
|
|
|
138
139
|
type User,
|
|
139
140
|
type AuthState,
|
|
140
141
|
type ConnectionStatus,
|
|
142
|
+
type AppStatusState,
|
|
141
143
|
type InstantQuery,
|
|
142
144
|
type InstantQueryResult,
|
|
143
145
|
type InstantSchema,
|