@instantdb/solidjs 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/.turbo/turbo-build.log +8 -8
- 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 +1101 -1077
- package/dist/standalone/index.umd.cjs +3 -3
- package/package.json +3 -3
- package/src/index.ts +4 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instantdb/solidjs",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.22.
|
|
4
|
+
"version": "0.22.168",
|
|
5
5
|
"description": "SolidJS client for InstantDB",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"solid-js": ">=1.0.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@instantdb/core": "0.22.
|
|
49
|
-
"@instantdb/version": "0.22.
|
|
48
|
+
"@instantdb/core": "0.22.168",
|
|
49
|
+
"@instantdb/version": "0.22.168"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"test": "echo \"Error: no test specified\" && exit 1",
|
package/src/index.ts
CHANGED
|
@@ -63,6 +63,8 @@ import {
|
|
|
63
63
|
type UpdateParams,
|
|
64
64
|
type LinkParams,
|
|
65
65
|
type CreateParams,
|
|
66
|
+
type CheckMagicCodeParams,
|
|
67
|
+
type CheckMagicCodeResponse,
|
|
66
68
|
type ExchangeCodeForTokenParams,
|
|
67
69
|
type SendMagicCodeParams,
|
|
68
70
|
type SendMagicCodeResponse,
|
|
@@ -160,6 +162,8 @@ export {
|
|
|
160
162
|
type UpdateParams,
|
|
161
163
|
type LinkParams,
|
|
162
164
|
type CreateParams,
|
|
165
|
+
type CheckMagicCodeParams,
|
|
166
|
+
type CheckMagicCodeResponse,
|
|
163
167
|
type ExchangeCodeForTokenParams,
|
|
164
168
|
type SendMagicCodeParams,
|
|
165
169
|
type SendMagicCodeResponse,
|