@autohq/cli 0.1.210 → 0.1.211
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/agent-bridge.js +14 -1
- package/dist/index.js +23 -2
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -23071,6 +23071,14 @@ var SetupOnboardingPullRequestStatusResponseSchema = external_exports.object({
|
|
|
23071
23071
|
ready: external_exports.boolean()
|
|
23072
23072
|
});
|
|
23073
23073
|
|
|
23074
|
+
// ../../packages/schemas/src/e2b-webhook.ts
|
|
23075
|
+
var E2bLifecycleWebhookEventSchema = external_exports.object({
|
|
23076
|
+
type: external_exports.string().min(1),
|
|
23077
|
+
sandbox_id: external_exports.string().min(1),
|
|
23078
|
+
sandbox_execution_id: external_exports.string().optional(),
|
|
23079
|
+
timestamp: external_exports.string().optional()
|
|
23080
|
+
}).passthrough();
|
|
23081
|
+
|
|
23074
23082
|
// ../../packages/schemas/src/runtime-log.ts
|
|
23075
23083
|
var RUNTIME_LOG_LEVELS = ["debug", "info", "warn", "error"];
|
|
23076
23084
|
var RuntimeLogLevelSchema = external_exports.enum(RUNTIME_LOG_LEVELS);
|
|
@@ -23102,6 +23110,11 @@ var RUNTIME_TAIL_SANDBOX_STATES = [
|
|
|
23102
23110
|
var RuntimeTailSandboxStateSchema = external_exports.enum(
|
|
23103
23111
|
RUNTIME_TAIL_SANDBOX_STATES
|
|
23104
23112
|
);
|
|
23113
|
+
var TAIL_LIFECYCLE_ACTIONS = ["pause", "resume", "stop"];
|
|
23114
|
+
var TailLifecycleActionSchema = external_exports.enum(TAIL_LIFECYCLE_ACTIONS);
|
|
23115
|
+
var TailLifecycleSignalPayloadSchema = external_exports.object({
|
|
23116
|
+
action: TailLifecycleActionSchema
|
|
23117
|
+
}).strict();
|
|
23105
23118
|
var TailRuntimeLogResultSchema = external_exports.object({
|
|
23106
23119
|
state: RuntimeTailSandboxStateSchema,
|
|
23107
23120
|
forwardedLineCount: external_exports.number().int().nonnegative(),
|
|
@@ -26772,7 +26785,7 @@ Object.assign(lookup, {
|
|
|
26772
26785
|
// package.json
|
|
26773
26786
|
var package_default = {
|
|
26774
26787
|
name: "@autohq/cli",
|
|
26775
|
-
version: "0.1.
|
|
26788
|
+
version: "0.1.211",
|
|
26776
26789
|
license: "SEE LICENSE IN README.md",
|
|
26777
26790
|
publishConfig: {
|
|
26778
26791
|
access: "public"
|
package/dist/index.js
CHANGED
|
@@ -18975,6 +18975,21 @@ var init_setup = __esm({
|
|
|
18975
18975
|
}
|
|
18976
18976
|
});
|
|
18977
18977
|
|
|
18978
|
+
// ../../packages/schemas/src/e2b-webhook.ts
|
|
18979
|
+
var E2bLifecycleWebhookEventSchema;
|
|
18980
|
+
var init_e2b_webhook = __esm({
|
|
18981
|
+
"../../packages/schemas/src/e2b-webhook.ts"() {
|
|
18982
|
+
"use strict";
|
|
18983
|
+
init_zod();
|
|
18984
|
+
E2bLifecycleWebhookEventSchema = external_exports.object({
|
|
18985
|
+
type: external_exports.string().min(1),
|
|
18986
|
+
sandbox_id: external_exports.string().min(1),
|
|
18987
|
+
sandbox_execution_id: external_exports.string().optional(),
|
|
18988
|
+
timestamp: external_exports.string().optional()
|
|
18989
|
+
}).passthrough();
|
|
18990
|
+
}
|
|
18991
|
+
});
|
|
18992
|
+
|
|
18978
18993
|
// ../../packages/schemas/src/runtime-log.ts
|
|
18979
18994
|
function parseRuntimeLogLevel(value) {
|
|
18980
18995
|
const parsed = RuntimeLogLevelSchema.safeParse(value?.trim());
|
|
@@ -19001,7 +19016,7 @@ var init_runtime_log = __esm({
|
|
|
19001
19016
|
});
|
|
19002
19017
|
|
|
19003
19018
|
// ../../packages/schemas/src/runtime-log-tailer.ts
|
|
19004
|
-
var RuntimeLogTailerWorkflowInputSchema, RUNTIME_TAIL_SANDBOX_STATES, RuntimeTailSandboxStateSchema, TailRuntimeLogResultSchema;
|
|
19019
|
+
var RuntimeLogTailerWorkflowInputSchema, RUNTIME_TAIL_SANDBOX_STATES, RuntimeTailSandboxStateSchema, TAIL_LIFECYCLE_ACTIONS, TailLifecycleActionSchema, TailLifecycleSignalPayloadSchema, TailRuntimeLogResultSchema;
|
|
19005
19020
|
var init_runtime_log_tailer = __esm({
|
|
19006
19021
|
"../../packages/schemas/src/runtime-log-tailer.ts"() {
|
|
19007
19022
|
"use strict";
|
|
@@ -19019,6 +19034,11 @@ var init_runtime_log_tailer = __esm({
|
|
|
19019
19034
|
RuntimeTailSandboxStateSchema = external_exports.enum(
|
|
19020
19035
|
RUNTIME_TAIL_SANDBOX_STATES
|
|
19021
19036
|
);
|
|
19037
|
+
TAIL_LIFECYCLE_ACTIONS = ["pause", "resume", "stop"];
|
|
19038
|
+
TailLifecycleActionSchema = external_exports.enum(TAIL_LIFECYCLE_ACTIONS);
|
|
19039
|
+
TailLifecycleSignalPayloadSchema = external_exports.object({
|
|
19040
|
+
action: TailLifecycleActionSchema
|
|
19041
|
+
}).strict();
|
|
19022
19042
|
TailRuntimeLogResultSchema = external_exports.object({
|
|
19023
19043
|
state: RuntimeTailSandboxStateSchema,
|
|
19024
19044
|
forwardedLineCount: external_exports.number().int().nonnegative(),
|
|
@@ -19099,6 +19119,7 @@ var init_src = __esm({
|
|
|
19099
19119
|
init_secrets();
|
|
19100
19120
|
init_session_commands();
|
|
19101
19121
|
init_setup();
|
|
19122
|
+
init_e2b_webhook();
|
|
19102
19123
|
init_runtime_log();
|
|
19103
19124
|
init_runtime_log_tailer();
|
|
19104
19125
|
init_runtimes();
|
|
@@ -21791,7 +21812,7 @@ var init_package = __esm({
|
|
|
21791
21812
|
"package.json"() {
|
|
21792
21813
|
package_default = {
|
|
21793
21814
|
name: "@autohq/cli",
|
|
21794
|
-
version: "0.1.
|
|
21815
|
+
version: "0.1.211",
|
|
21795
21816
|
license: "SEE LICENSE IN README.md",
|
|
21796
21817
|
publishConfig: {
|
|
21797
21818
|
access: "public"
|