@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.js
CHANGED
|
@@ -19616,7 +19616,7 @@ var DaemonCommandRouter = class {
|
|
|
19616
19616
|
const wantsAll = args?.all === true;
|
|
19617
19617
|
const offset = wantsAll ? 0 : Math.max(0, Number(args?.offset) || 0);
|
|
19618
19618
|
const limit = wantsAll ? Number.MAX_SAFE_INTEGER : Math.max(1, Math.min(100, Number(args?.limit) || 30));
|
|
19619
|
-
const providerMeta = this.deps.providerLoader.getMeta(providerType);
|
|
19619
|
+
const providerMeta = this.deps.providerLoader.resolve?.(providerType) || this.deps.providerLoader.getMeta(providerType);
|
|
19620
19620
|
const { sessions: historySessions, hasMore, source } = listProviderHistorySessions(providerType, {
|
|
19621
19621
|
canonicalHistory: providerMeta?.canonicalHistory,
|
|
19622
19622
|
offset,
|