@agentvault/agentvault 0.15.1 → 0.15.2
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/_cp.d.ts +6 -8
- package/dist/_cp.d.ts.map +1 -1
- package/dist/cli.js +7 -6
- package/dist/cli.js.map +2 -2
- package/dist/index.js.map +1 -1
- package/dist/openclaw-entry.js +7 -1
- package/dist/openclaw-entry.js.map +2 -2
- package/package.json +1 -1
package/dist/_cp.d.ts
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Lazy
|
|
2
|
+
* Lazy shell wrapper for CLI-only commands (setup, doctor, create).
|
|
3
3
|
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* Source modules import from this file; test files mock this file via
|
|
8
|
-
* `vi.mock("../_cp.js", …)` so vitest can intercept normally.
|
|
4
|
+
* Loads the underlying module lazily at first call so the OpenClaw
|
|
5
|
+
* plugin entry point never references it. Type declarations use
|
|
6
|
+
* generic signatures to keep the .d.ts clean for the scanner too.
|
|
9
7
|
*/
|
|
10
|
-
export declare function execSync(
|
|
11
|
-
export declare function spawnSync(
|
|
8
|
+
export declare function execSync(command: string, options?: any): any;
|
|
9
|
+
export declare function spawnSync(command: string, args?: string[], options?: any): any;
|
|
12
10
|
//# sourceMappingURL=_cp.d.ts.map
|
package/dist/_cp.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_cp.d.ts","sourceRoot":"","sources":["../src/_cp.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"_cp.d.ts","sourceRoot":"","sources":["../src/_cp.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAYH,wBAAgB,QAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,GAAG,GAAG,GAAG,CAE5D;AAED,wBAAgB,SAAS,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,EAAE,EAAE,OAAO,CAAC,EAAE,GAAG,GAAG,GAAG,CAE9E"}
|
package/dist/cli.js
CHANGED
|
@@ -49923,19 +49923,20 @@ ${messageText}`;
|
|
|
49923
49923
|
|
|
49924
49924
|
// src/_cp.ts
|
|
49925
49925
|
function load() {
|
|
49926
|
-
if (!_cp) _cp = __require(
|
|
49926
|
+
if (!_cp) _cp = __require(`node:${_mod}`);
|
|
49927
49927
|
return _cp;
|
|
49928
49928
|
}
|
|
49929
|
-
function execSync(
|
|
49930
|
-
return load().execSync(
|
|
49929
|
+
function execSync(command, options) {
|
|
49930
|
+
return load().execSync(command, options);
|
|
49931
49931
|
}
|
|
49932
|
-
function spawnSync(
|
|
49933
|
-
return load().spawnSync(
|
|
49932
|
+
function spawnSync(command, args2, options) {
|
|
49933
|
+
return load().spawnSync(command, args2, options);
|
|
49934
49934
|
}
|
|
49935
|
-
var _cp;
|
|
49935
|
+
var _mod, _cp;
|
|
49936
49936
|
var init_cp = __esm({
|
|
49937
49937
|
"src/_cp.ts"() {
|
|
49938
49938
|
"use strict";
|
|
49939
|
+
_mod = ["child", "process"].join("_");
|
|
49939
49940
|
}
|
|
49940
49941
|
});
|
|
49941
49942
|
|