@instantdb/core 0.22.90-experimental.trim-env-vars.20311878601.1 → 0.22.90-experimental.uuidfix.20282837670.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 +1 -1
- package/dist/commonjs/index.js.map +1 -1
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/standalone/index.js +1 -2
- package/dist/standalone/index.umd.cjs +3 -3
- package/package.json +2 -2
- package/src/index.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instantdb/core",
|
|
3
|
-
"version": "0.22.90-experimental.
|
|
3
|
+
"version": "0.22.90-experimental.uuidfix.20282837670.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.90-experimental.
|
|
56
|
+
"@instantdb/version": "0.22.90-experimental.uuidfix.20282837670.1"
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|
|
59
59
|
"test": "vitest",
|
package/src/index.ts
CHANGED
|
@@ -813,7 +813,6 @@ function init<
|
|
|
813
813
|
): InstantCoreDatabase<Schema, UseDates> {
|
|
814
814
|
const configStrict = {
|
|
815
815
|
...config,
|
|
816
|
-
appId: config.appId.trim(),
|
|
817
816
|
useDateObjects: (config.useDateObjects ?? false) as UseDates,
|
|
818
817
|
};
|
|
819
818
|
const existingClient = globalInstantCoreStore[
|