@autohq/cli 0.1.273 → 0.1.275
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 +11 -1
- package/dist/index.js +12 -2
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -23353,7 +23353,7 @@ Object.assign(lookup, {
|
|
|
23353
23353
|
// package.json
|
|
23354
23354
|
var package_default = {
|
|
23355
23355
|
name: "@autohq/cli",
|
|
23356
|
-
version: "0.1.
|
|
23356
|
+
version: "0.1.275",
|
|
23357
23357
|
license: "SEE LICENSE IN README.md",
|
|
23358
23358
|
publishConfig: {
|
|
23359
23359
|
access: "public"
|
|
@@ -27223,8 +27223,16 @@ var SESSION_STATUSES = [
|
|
|
27223
27223
|
"failed",
|
|
27224
27224
|
"stopped"
|
|
27225
27225
|
];
|
|
27226
|
+
var SESSION_RUNTIME_PHASES = [
|
|
27227
|
+
"building_image",
|
|
27228
|
+
"booting_container",
|
|
27229
|
+
"preparing_environment",
|
|
27230
|
+
"starting_runtime",
|
|
27231
|
+
"running"
|
|
27232
|
+
];
|
|
27226
27233
|
var SESSION_DISPLAY_TITLE_MAX_LENGTH = 64;
|
|
27227
27234
|
var SessionStatusSchema = external_exports.enum(SESSION_STATUSES);
|
|
27235
|
+
var SessionRuntimePhaseSchema = external_exports.enum(SESSION_RUNTIME_PHASES);
|
|
27228
27236
|
var RunDisplayTitleSchema = external_exports.string().trim().max(SESSION_DISPLAY_TITLE_MAX_LENGTH);
|
|
27229
27237
|
var AmbientStatusSchema = external_exports.string().trim().min(1);
|
|
27230
27238
|
var SESSION_CHECK_STATUSES = [
|
|
@@ -27257,6 +27265,7 @@ var SessionRecordSchema = external_exports.object({
|
|
|
27257
27265
|
agentId: AgentIdSchema,
|
|
27258
27266
|
runtimeId: RuntimeIdSchema2.nullable(),
|
|
27259
27267
|
status: SessionStatusSchema,
|
|
27268
|
+
runtimePhase: SessionRuntimePhaseSchema.nullable(),
|
|
27260
27269
|
idempotencyKey: external_exports.string().min(1).nullable(),
|
|
27261
27270
|
correlationKey: external_exports.string().nullable(),
|
|
27262
27271
|
workflowId: external_exports.string().min(1),
|
|
@@ -27292,6 +27301,7 @@ var SessionListItemSchema = external_exports.object({
|
|
|
27292
27301
|
id: SessionIdSchema2,
|
|
27293
27302
|
agentId: AgentIdSchema,
|
|
27294
27303
|
status: SessionStatusSchema,
|
|
27304
|
+
runtimePhase: SessionRuntimePhaseSchema.nullable(),
|
|
27295
27305
|
displayTitle: RunDisplayTitleSchema,
|
|
27296
27306
|
summary: external_exports.string(),
|
|
27297
27307
|
agent: SessionListItemAgentSchema,
|
package/dist/index.js
CHANGED
|
@@ -18987,7 +18987,7 @@ function isSessionTerminalStatus(status) {
|
|
|
18987
18987
|
(terminalStatus) => terminalStatus === status
|
|
18988
18988
|
);
|
|
18989
18989
|
}
|
|
18990
|
-
var SESSION_STATUSES, SESSION_TERMINAL_STATUSES, SESSION_DISPLAY_TITLE_MAX_LENGTH, SessionStatusSchema, RunDisplayTitleSchema, AmbientStatusSchema, SESSION_CHECK_STATUSES, SESSION_CHECK_CONCLUSIONS, SESSION_CHECK_TIMEOUT_PHASES, SessionCheckStatusSchema, SessionCheckConclusionSchema, SessionCheckTimeoutPhaseSchema, ManualSessionRequestSchema, SessionArchiveRequestSchema, SessionsArchiveRequestSchema, SessionRecordSchema, SessionListItemAgentSchema, SessionListItemSchema, SessionListResponseSchema, SessionsArchiveResponseSchema;
|
|
18990
|
+
var SESSION_STATUSES, SESSION_RUNTIME_PHASES, SESSION_TERMINAL_STATUSES, SESSION_DISPLAY_TITLE_MAX_LENGTH, SessionStatusSchema, SessionRuntimePhaseSchema, RunDisplayTitleSchema, AmbientStatusSchema, SESSION_CHECK_STATUSES, SESSION_CHECK_CONCLUSIONS, SESSION_CHECK_TIMEOUT_PHASES, SessionCheckStatusSchema, SessionCheckConclusionSchema, SessionCheckTimeoutPhaseSchema, ManualSessionRequestSchema, SessionArchiveRequestSchema, SessionsArchiveRequestSchema, SessionRecordSchema, SessionListItemAgentSchema, SessionListItemSchema, SessionListResponseSchema, SessionsArchiveResponseSchema;
|
|
18991
18991
|
var init_sessions = __esm({
|
|
18992
18992
|
"../../packages/schemas/src/sessions.ts"() {
|
|
18993
18993
|
"use strict";
|
|
@@ -19005,9 +19005,17 @@ var init_sessions = __esm({
|
|
|
19005
19005
|
"failed",
|
|
19006
19006
|
"stopped"
|
|
19007
19007
|
];
|
|
19008
|
+
SESSION_RUNTIME_PHASES = [
|
|
19009
|
+
"building_image",
|
|
19010
|
+
"booting_container",
|
|
19011
|
+
"preparing_environment",
|
|
19012
|
+
"starting_runtime",
|
|
19013
|
+
"running"
|
|
19014
|
+
];
|
|
19008
19015
|
SESSION_TERMINAL_STATUSES = ["failed", "stopped"];
|
|
19009
19016
|
SESSION_DISPLAY_TITLE_MAX_LENGTH = 64;
|
|
19010
19017
|
SessionStatusSchema = external_exports.enum(SESSION_STATUSES);
|
|
19018
|
+
SessionRuntimePhaseSchema = external_exports.enum(SESSION_RUNTIME_PHASES);
|
|
19011
19019
|
RunDisplayTitleSchema = external_exports.string().trim().max(SESSION_DISPLAY_TITLE_MAX_LENGTH);
|
|
19012
19020
|
AmbientStatusSchema = external_exports.string().trim().min(1);
|
|
19013
19021
|
SESSION_CHECK_STATUSES = [
|
|
@@ -19040,6 +19048,7 @@ var init_sessions = __esm({
|
|
|
19040
19048
|
agentId: AgentIdSchema,
|
|
19041
19049
|
runtimeId: RuntimeIdSchema.nullable(),
|
|
19042
19050
|
status: SessionStatusSchema,
|
|
19051
|
+
runtimePhase: SessionRuntimePhaseSchema.nullable(),
|
|
19043
19052
|
idempotencyKey: external_exports.string().min(1).nullable(),
|
|
19044
19053
|
correlationKey: external_exports.string().nullable(),
|
|
19045
19054
|
workflowId: external_exports.string().min(1),
|
|
@@ -19075,6 +19084,7 @@ var init_sessions = __esm({
|
|
|
19075
19084
|
id: SessionIdSchema,
|
|
19076
19085
|
agentId: AgentIdSchema,
|
|
19077
19086
|
status: SessionStatusSchema,
|
|
19087
|
+
runtimePhase: SessionRuntimePhaseSchema.nullable(),
|
|
19078
19088
|
displayTitle: RunDisplayTitleSchema,
|
|
19079
19089
|
summary: external_exports.string(),
|
|
19080
19090
|
agent: SessionListItemAgentSchema,
|
|
@@ -22968,7 +22978,7 @@ var init_package = __esm({
|
|
|
22968
22978
|
"package.json"() {
|
|
22969
22979
|
package_default = {
|
|
22970
22980
|
name: "@autohq/cli",
|
|
22971
|
-
version: "0.1.
|
|
22981
|
+
version: "0.1.275",
|
|
22972
22982
|
license: "SEE LICENSE IN README.md",
|
|
22973
22983
|
publishConfig: {
|
|
22974
22984
|
access: "public"
|