@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.js CHANGED
@@ -4003,7 +4003,6 @@ var createEmptyStore = (driver) => vanilla.createStore((set, get) => ({
4003
4003
  const updates = typeof value === "function" ? value(state.clientIds) : value;
4004
4004
  const normalized = updates.map((entry) => ({
4005
4005
  ...entry,
4006
- baseUrl: normalizeBaseUrl(entry.baseUrl),
4007
4006
  createdAt: entry.createdAt ?? Date.now(),
4008
4007
  lastUsed: entry.lastUsed ?? null
4009
4008
  }));
@@ -4122,7 +4121,6 @@ var hydrateStoreFromDriver = async (store, driver) => {
4122
4121
  const usageTracking = rawUsageTracking;
4123
4122
  const clientIds = rawClientIds.map((entry) => ({
4124
4123
  ...entry,
4125
- baseUrl: normalizeBaseUrl(entry.baseUrl),
4126
4124
  createdAt: entry.createdAt ?? Date.now(),
4127
4125
  lastUsed: entry.lastUsed ?? null
4128
4126
  }));