qlogicagent 2.14.8 → 2.14.9

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.
@@ -18,16 +18,10 @@ export declare function getNpmInstallPackageName(command: string | undefined): s
18
18
  export declare function compareSemverVersions(a: string, b: string): number;
19
19
  export declare function isVersionNewer(latest: string | null | undefined, current: string | null | undefined): boolean;
20
20
  export declare function readGlobalNpmPackageVersion(packageName: string | null | undefined): string | null;
21
- export declare function fetchNpmLatestPackageVersion(packageName: string | null | undefined): string | null;
22
21
  export declare function resolveInstalledNpmPackageVersionFromInstall(install: AcpBackendConfig["install"] | undefined): string | null;
23
- export declare function getCatalogPackageVersionInfo(entry: AcpBackendConfig, detectedVersion?: string): {
24
- packageName?: string;
25
- installedVersion?: string;
26
- latestVersion?: string;
27
- updateAvailable: boolean;
28
- };
29
- /** Async, parallel-safe variant of fetchNpmLatestPackageVersion — used by the background update check
30
- * so N agents resolve concurrently (one `npm view` each) instead of blocking sequentially. */
22
+ export declare function getCatalogInstalledVersion(entry: AcpBackendConfig, detectedVersion?: string): string | undefined;
23
+ /** Resolve a package's latest published version via `npm view` (async + cached). Used by the background
24
+ * update check so N agents resolve concurrently (one `npm view` each) instead of blocking sequentially. */
31
25
  export declare function fetchNpmLatestPackageVersionAsync(packageName: string | null | undefined): Promise<string | null>;
32
26
  export interface CatalogUpdateInfo {
33
27
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qlogicagent",
3
- "version": "2.14.8",
3
+ "version": "2.14.9",
4
4
  "description": "XiaozhiClaw Agent CLI — subprocess architecture (JSON-RPC over stdio)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -90,7 +90,7 @@
90
90
  "@agentclientprotocol/sdk": "^0.25.0",
91
91
  "@napi-rs/canvas": "0.1.100",
92
92
  "@xiaozhiclaw/pet-core": "0.1.2",
93
- "@xiaozhiclaw/provider-core": "^0.1.17",
93
+ "@xiaozhiclaw/provider-core": "^0.1.18",
94
94
  "better-sqlite3": "^12.10.0",
95
95
  "dotenv": "^17.3.1",
96
96
  "ioredis": "^5.11.1",