@adhdev/daemon-standalone 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
|
@@ -47348,7 +47348,7 @@ Run 'adhdev doctor' for detailed diagnostics.`
|
|
|
47348
47348
|
const wantsAll = args?.all === true;
|
|
47349
47349
|
const offset = wantsAll ? 0 : Math.max(0, Number(args?.offset) || 0);
|
|
47350
47350
|
const limit = wantsAll ? Number.MAX_SAFE_INTEGER : Math.max(1, Math.min(100, Number(args?.limit) || 30));
|
|
47351
|
-
const providerMeta = this.deps.providerLoader.getMeta(providerType);
|
|
47351
|
+
const providerMeta = this.deps.providerLoader.resolve?.(providerType) || this.deps.providerLoader.getMeta(providerType);
|
|
47352
47352
|
const { sessions: historySessions, hasMore, source } = listProviderHistorySessions(providerType, {
|
|
47353
47353
|
canonicalHistory: providerMeta?.canonicalHistory,
|
|
47354
47354
|
offset,
|