open-agents-ai 0.187.540 → 0.187.541
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 +4 -4
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -585913,17 +585913,17 @@ async function runGraphicalSudo(opts) {
|
|
|
585913
585913
|
}
|
|
585914
585914
|
}, 2e3);
|
|
585915
585915
|
}, timeoutMs);
|
|
585916
|
-
child.stdout
|
|
585916
|
+
child.stdout?.on("data", (d2) => {
|
|
585917
585917
|
stdout += d2.toString("utf-8");
|
|
585918
585918
|
});
|
|
585919
|
-
child.stderr
|
|
585919
|
+
child.stderr?.on("data", (d2) => {
|
|
585920
585920
|
stderr += d2.toString("utf-8");
|
|
585921
585921
|
});
|
|
585922
|
-
child.
|
|
585922
|
+
child.once("error", (e2) => {
|
|
585923
585923
|
clearTimeout(timer);
|
|
585924
585924
|
reject(e2);
|
|
585925
585925
|
});
|
|
585926
|
-
child.
|
|
585926
|
+
child.once("close", (code8) => {
|
|
585927
585927
|
clearTimeout(timer);
|
|
585928
585928
|
if (timedOut) return reject(new Error(`graphical sudo timed out after ${timeoutMs}ms`));
|
|
585929
585929
|
resolve43({ code: code8 ?? -1, stdout, stderr, helper });
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-agents-ai",
|
|
3
|
-
"version": "0.187.
|
|
3
|
+
"version": "0.187.541",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "open-agents-ai",
|
|
9
|
-
"version": "0.187.
|
|
9
|
+
"version": "0.187.541",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "CC-BY-NC-4.0",
|
|
12
12
|
"dependencies": {
|
package/package.json
CHANGED