@instantdb/core 0.22.90 → 0.22.91-experimental.btnfix.20319025226.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.map +1 -1
- package/dist/commonjs/index.js +2 -2
- package/dist/commonjs/index.js.map +1 -1
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/standalone/index.js +3 -1
- package/dist/standalone/index.umd.cjs +3 -3
- package/package.json +2 -2
- package/src/index.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instantdb/core",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.91-experimental.btnfix.20319025226.1",
|
|
4
4
|
"description": "Instant's core local abstraction",
|
|
5
5
|
"homepage": "https://github.com/instantdb/instant/tree/main/client/packages/core",
|
|
6
6
|
"repository": {
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"mutative": "^1.0.10",
|
|
55
55
|
"uuid": "^11.1.0",
|
|
56
|
-
"@instantdb/version": "0.22.
|
|
56
|
+
"@instantdb/version": "0.22.91-experimental.btnfix.20319025226.1"
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|
|
59
59
|
"test": "vitest",
|
package/src/index.ts
CHANGED
|
@@ -813,6 +813,7 @@ function init<
|
|
|
813
813
|
): InstantCoreDatabase<Schema, UseDates> {
|
|
814
814
|
const configStrict = {
|
|
815
815
|
...config,
|
|
816
|
+
appId: config.appId?.trim(),
|
|
816
817
|
useDateObjects: (config.useDateObjects ?? false) as UseDates,
|
|
817
818
|
};
|
|
818
819
|
const existingClient = globalInstantCoreStore[
|