@routstr/sdk 0.2.0 → 0.2.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/index.mjs CHANGED
@@ -4001,7 +4001,6 @@ var createEmptyStore = (driver) => createStore((set, get) => ({
4001
4001
  const updates = typeof value === "function" ? value(state.clientIds) : value;
4002
4002
  const normalized = updates.map((entry) => ({
4003
4003
  ...entry,
4004
- baseUrl: normalizeBaseUrl(entry.baseUrl),
4005
4004
  createdAt: entry.createdAt ?? Date.now(),
4006
4005
  lastUsed: entry.lastUsed ?? null
4007
4006
  }));
@@ -4120,7 +4119,6 @@ var hydrateStoreFromDriver = async (store, driver) => {
4120
4119
  const usageTracking = rawUsageTracking;
4121
4120
  const clientIds = rawClientIds.map((entry) => ({
4122
4121
  ...entry,
4123
- baseUrl: normalizeBaseUrl(entry.baseUrl),
4124
4122
  createdAt: entry.createdAt ?? Date.now(),
4125
4123
  lastUsed: entry.lastUsed ?? null
4126
4124
  }));