@memrosetta/sync-client 0.1.1 → 0.1.2

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/index.d.ts CHANGED
@@ -42,6 +42,7 @@ interface SyncStatusTimestamps {
42
42
  interface SyncClientStatus {
43
43
  readonly enabled: true;
44
44
  readonly serverUrl: string;
45
+ readonly userId: string;
45
46
  readonly deviceId: string;
46
47
  readonly pendingOps: number;
47
48
  readonly lastPush: SyncStatusTimestamps;
package/dist/index.js CHANGED
@@ -137,6 +137,7 @@ var SyncClient = class {
137
137
  return {
138
138
  enabled: true,
139
139
  serverUrl: this.config.serverUrl,
140
+ userId: this.config.userId,
140
141
  deviceId: this.config.deviceId,
141
142
  pendingOps: this.outbox.countPending(),
142
143
  lastPush: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memrosetta/sync-client",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Local-first sync client for MemRosetta (outbox/inbox, push/pull)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",