lua-cli 3.20.0 → 3.21.0
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/api-exports.d.ts +3 -0
- package/dist/api-exports.js +7 -2
- package/dist/api-exports.js.map +1 -1
- package/dist/index.js +1169 -294
- package/dist/index.js.map +1 -1
- package/docs/CLI_REFERENCE.md +21 -18
- package/docs/README.md +2 -2
- package/package.json +2 -2
- package/template/package.json +1 -1
package/dist/api-exports.d.ts
CHANGED
|
@@ -59,6 +59,9 @@ declare interface AgentInvocationInput {
|
|
|
59
59
|
* the original BAC-107 spec; wired through as part of PRO-186.
|
|
60
60
|
*/
|
|
61
61
|
webhookPayload?: unknown;
|
|
62
|
+
/** Per-call timeout in ms. Absent ⇒ the client default (120s). Set by scheduled agent jobs
|
|
63
|
+
* to 180s so the cloud tier cuts off at the same point the desktop's local runner does. */
|
|
64
|
+
timeoutMs?: number;
|
|
62
65
|
}
|
|
63
66
|
|
|
64
67
|
/**
|
package/dist/api-exports.js
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
var __defProp = Object.defineProperty;
|
|
2
2
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
3
3
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
4
|
-
var __esm = (fn, res) => function __init() {
|
|
5
|
-
|
|
4
|
+
var __esm = (fn, res, err) => function __init() {
|
|
5
|
+
if (err) throw err[0];
|
|
6
|
+
try {
|
|
7
|
+
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
8
|
+
} catch (e) {
|
|
9
|
+
throw err = [e], e;
|
|
10
|
+
}
|
|
6
11
|
};
|
|
7
12
|
var __export = (target, all) => {
|
|
8
13
|
for (var name in all)
|