@instantdb/react 0.22.167 → 0.22.168
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 +1049 -1025
- package/dist/standalone/index.umd.cjs +13 -13
- package/package.json +4 -4
- package/src/index.ts +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instantdb/react",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.168",
|
|
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/
|
|
70
|
-
"@instantdb/
|
|
71
|
-
"@instantdb/version": "0.22.
|
|
69
|
+
"@instantdb/core": "0.22.168",
|
|
70
|
+
"@instantdb/react-common": "0.22.168",
|
|
71
|
+
"@instantdb/version": "0.22.168"
|
|
72
72
|
},
|
|
73
73
|
"scripts": {
|
|
74
74
|
"test": "vitest",
|
package/src/index.ts
CHANGED
|
@@ -64,6 +64,8 @@ import {
|
|
|
64
64
|
type UpdateParams,
|
|
65
65
|
type LinkParams,
|
|
66
66
|
type CreateParams,
|
|
67
|
+
type CheckMagicCodeParams,
|
|
68
|
+
type CheckMagicCodeResponse,
|
|
67
69
|
type ExchangeCodeForTokenParams,
|
|
68
70
|
type SendMagicCodeParams,
|
|
69
71
|
type SendMagicCodeResponse,
|
|
@@ -174,6 +176,8 @@ export {
|
|
|
174
176
|
type UpdateParams,
|
|
175
177
|
type LinkParams,
|
|
176
178
|
type CreateParams,
|
|
179
|
+
type CheckMagicCodeParams,
|
|
180
|
+
type CheckMagicCodeResponse,
|
|
177
181
|
type ExchangeCodeForTokenParams,
|
|
178
182
|
type SendMagicCodeParams,
|
|
179
183
|
type SendMagicCodeResponse,
|