@livestore/adapter-node 0.4.0-dev.13 → 0.4.0-dev.14

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.
@@ -231,19 +231,19 @@ declare const LeaderWorkerInnerExtraDevtoolsMessage_base: Schema.TaggedRequestCl
231
231
  data: Schema.Schema<Uint8Array<ArrayBuffer>>;
232
232
  } & {
233
233
  readonly requestId: typeof Schema.String;
234
- readonly liveStoreVersion: Schema.Literal<["0.4.0-dev.12"]>;
234
+ readonly liveStoreVersion: Schema.Literal<["0.4.0-dev.13"]>;
235
235
  readonly clientId: typeof Schema.String;
236
236
  }>, typeof Devtools.Leader.EventlogReq, Schema.TaggedStruct<"LSD.Leader.ResetAllData.Request", {
237
237
  mode: Schema.Literal<["all-data", "only-app-db"]>;
238
238
  } & {
239
239
  readonly requestId: typeof Schema.String;
240
- readonly liveStoreVersion: Schema.Literal<["0.4.0-dev.12"]>;
240
+ readonly liveStoreVersion: Schema.Literal<["0.4.0-dev.13"]>;
241
241
  readonly clientId: typeof Schema.String;
242
242
  }>, typeof Devtools.Leader.NetworkStatusSubscribe, typeof Devtools.Leader.NetworkStatusUnsubscribe, typeof Devtools.Leader.Disconnect, typeof Devtools.Leader.CommitEventReq, typeof Devtools.Leader.Ping, typeof Devtools.Leader.DatabaseFileInfoReq, typeof Devtools.Leader.SyncHistorySubscribe, typeof Devtools.Leader.SyncHistoryUnsubscribe, typeof Devtools.Leader.SyncingInfoReq, typeof Devtools.Leader.SyncHeadSubscribe, typeof Devtools.Leader.SyncHeadUnsubscribe, Schema.TaggedStruct<"LSD.Leader.SetSyncLatch.Request", {
243
243
  closeLatch: typeof Schema.Boolean;
244
244
  } & {
245
245
  readonly requestId: typeof Schema.String;
246
- readonly liveStoreVersion: Schema.Literal<["0.4.0-dev.12"]>;
246
+ readonly liveStoreVersion: Schema.Literal<["0.4.0-dev.13"]>;
247
247
  readonly clientId: typeof Schema.String;
248
248
  }>]>;
249
249
  }, typeof Schema.Void, typeof UnexpectedError>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@livestore/adapter-node",
3
- "version": "0.4.0-dev.13",
3
+ "version": "0.4.0-dev.14",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "exports": {
@@ -9,13 +9,13 @@
9
9
  "./worker": "./dist/make-leader-worker.js"
10
10
  },
11
11
  "dependencies": {
12
- "@livestore/devtools-vite": "0.4.0-dev.13",
12
+ "@livestore/devtools-vite": "0.4.0-dev.14",
13
13
  "@opentelemetry/api": "1.9.0",
14
14
  "vite": "7.1.7",
15
- "@livestore/common": "0.4.0-dev.13",
16
- "@livestore/utils": "0.4.0-dev.13",
17
- "@livestore/webmesh": "0.4.0-dev.13",
18
- "@livestore/sqlite-wasm": "0.4.0-dev.13"
15
+ "@livestore/common": "0.4.0-dev.14",
16
+ "@livestore/utils": "0.4.0-dev.14",
17
+ "@livestore/sqlite-wasm": "0.4.0-dev.14",
18
+ "@livestore/webmesh": "0.4.0-dev.14"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@rollup/plugin-commonjs": "^28.0.6",
@@ -245,6 +245,7 @@ const makeAdapterImpl = ({
245
245
  isLeader: true,
246
246
  // Not really applicable for node as there is no "reload the app" concept
247
247
  registerBeforeUnload: (_onBeforeUnload) => () => {},
248
+ origin: undefined,
248
249
  })
249
250
 
250
251
  return clientSession
@@ -161,6 +161,7 @@ const makeDevtoolsOptions = ({
161
161
  sessionId: 'static', // TODO make this dynamic
162
162
  schemaAlias: devtools.schemaAlias,
163
163
  isLeader: true,
164
+ origin: undefined,
164
165
  }),
165
166
  port: devtools.port,
166
167
  host: devtools.host,