@adhdev/daemon-core 0.9.46 → 0.9.47

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
@@ -19468,7 +19468,7 @@ var DaemonCommandRouter = class {
19468
19468
  const wantsAll = args?.all === true;
19469
19469
  const offset = wantsAll ? 0 : Math.max(0, Number(args?.offset) || 0);
19470
19470
  const limit = wantsAll ? Number.MAX_SAFE_INTEGER : Math.max(1, Math.min(100, Number(args?.limit) || 30));
19471
- const providerMeta = this.deps.providerLoader.getMeta(providerType);
19471
+ const providerMeta = this.deps.providerLoader.resolve?.(providerType) || this.deps.providerLoader.getMeta(providerType);
19472
19472
  const { sessions: historySessions, hasMore, source } = listProviderHistorySessions(providerType, {
19473
19473
  canonicalHistory: providerMeta?.canonicalHistory,
19474
19474
  offset,