@autohq/cli 0.1.256 → 0.1.258
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 +27 -1
- package/dist/index.js +28 -2
- package/package.json +1 -1
package/dist/agent-bridge.js
CHANGED
|
@@ -23340,7 +23340,7 @@ Object.assign(lookup, {
|
|
|
23340
23340
|
// package.json
|
|
23341
23341
|
var package_default = {
|
|
23342
23342
|
name: "@autohq/cli",
|
|
23343
|
-
version: "0.1.
|
|
23343
|
+
version: "0.1.258",
|
|
23344
23344
|
license: "SEE LICENSE IN README.md",
|
|
23345
23345
|
publishConfig: {
|
|
23346
23346
|
access: "public"
|
|
@@ -27163,6 +27163,32 @@ var SessionRecordSchema = external_exports.object({
|
|
|
27163
27163
|
archivedAt: external_exports.string().datetime().nullable(),
|
|
27164
27164
|
error: JsonValueSchema2.nullable()
|
|
27165
27165
|
});
|
|
27166
|
+
var SessionListItemAgentSchema = external_exports.object({
|
|
27167
|
+
name: external_exports.string(),
|
|
27168
|
+
displayName: external_exports.string().nullable(),
|
|
27169
|
+
username: external_exports.string().nullable(),
|
|
27170
|
+
avatarSha256: external_exports.string().nullable()
|
|
27171
|
+
});
|
|
27172
|
+
var SessionListItemSchema = external_exports.object({
|
|
27173
|
+
id: SessionIdSchema2,
|
|
27174
|
+
agentId: AgentIdSchema,
|
|
27175
|
+
status: SessionStatusSchema,
|
|
27176
|
+
displayTitle: RunDisplayTitleSchema,
|
|
27177
|
+
summary: external_exports.string(),
|
|
27178
|
+
agent: SessionListItemAgentSchema,
|
|
27179
|
+
archivedAt: external_exports.string().datetime().nullable(),
|
|
27180
|
+
lastActivityAt: external_exports.string().datetime()
|
|
27181
|
+
});
|
|
27182
|
+
var SessionListResponseSchema = external_exports.object({
|
|
27183
|
+
sessions: external_exports.array(SessionListItemSchema),
|
|
27184
|
+
/**
|
|
27185
|
+
* Opaque keyset cursor for the next page, or `null` when the list is
|
|
27186
|
+
* exhausted. Replay it on the next request to append the following page; it is
|
|
27187
|
+
* minted for a specific sort and rejected against a different one.
|
|
27188
|
+
*/
|
|
27189
|
+
nextCursor: external_exports.string().nullable(),
|
|
27190
|
+
hasMore: external_exports.boolean()
|
|
27191
|
+
});
|
|
27166
27192
|
var SessionsArchiveResponseSchema = external_exports.object({
|
|
27167
27193
|
archived: external_exports.boolean(),
|
|
27168
27194
|
sessions: external_exports.array(SessionRecordSchema)
|
package/dist/index.js
CHANGED
|
@@ -18865,7 +18865,7 @@ function isSessionTerminalStatus(status) {
|
|
|
18865
18865
|
(terminalStatus) => terminalStatus === status
|
|
18866
18866
|
);
|
|
18867
18867
|
}
|
|
18868
|
-
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, SessionsArchiveResponseSchema;
|
|
18868
|
+
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;
|
|
18869
18869
|
var init_sessions = __esm({
|
|
18870
18870
|
"../../packages/schemas/src/sessions.ts"() {
|
|
18871
18871
|
"use strict";
|
|
@@ -18943,6 +18943,32 @@ var init_sessions = __esm({
|
|
|
18943
18943
|
archivedAt: external_exports.string().datetime().nullable(),
|
|
18944
18944
|
error: JsonValueSchema.nullable()
|
|
18945
18945
|
});
|
|
18946
|
+
SessionListItemAgentSchema = external_exports.object({
|
|
18947
|
+
name: external_exports.string(),
|
|
18948
|
+
displayName: external_exports.string().nullable(),
|
|
18949
|
+
username: external_exports.string().nullable(),
|
|
18950
|
+
avatarSha256: external_exports.string().nullable()
|
|
18951
|
+
});
|
|
18952
|
+
SessionListItemSchema = external_exports.object({
|
|
18953
|
+
id: SessionIdSchema,
|
|
18954
|
+
agentId: AgentIdSchema,
|
|
18955
|
+
status: SessionStatusSchema,
|
|
18956
|
+
displayTitle: RunDisplayTitleSchema,
|
|
18957
|
+
summary: external_exports.string(),
|
|
18958
|
+
agent: SessionListItemAgentSchema,
|
|
18959
|
+
archivedAt: external_exports.string().datetime().nullable(),
|
|
18960
|
+
lastActivityAt: external_exports.string().datetime()
|
|
18961
|
+
});
|
|
18962
|
+
SessionListResponseSchema = external_exports.object({
|
|
18963
|
+
sessions: external_exports.array(SessionListItemSchema),
|
|
18964
|
+
/**
|
|
18965
|
+
* Opaque keyset cursor for the next page, or `null` when the list is
|
|
18966
|
+
* exhausted. Replay it on the next request to append the following page; it is
|
|
18967
|
+
* minted for a specific sort and rejected against a different one.
|
|
18968
|
+
*/
|
|
18969
|
+
nextCursor: external_exports.string().nullable(),
|
|
18970
|
+
hasMore: external_exports.boolean()
|
|
18971
|
+
});
|
|
18946
18972
|
SessionsArchiveResponseSchema = external_exports.object({
|
|
18947
18973
|
archived: external_exports.boolean(),
|
|
18948
18974
|
sessions: external_exports.array(SessionRecordSchema)
|
|
@@ -22754,7 +22780,7 @@ var init_package = __esm({
|
|
|
22754
22780
|
"package.json"() {
|
|
22755
22781
|
package_default = {
|
|
22756
22782
|
name: "@autohq/cli",
|
|
22757
|
-
version: "0.1.
|
|
22783
|
+
version: "0.1.258",
|
|
22758
22784
|
license: "SEE LICENSE IN README.md",
|
|
22759
22785
|
publishConfig: {
|
|
22760
22786
|
access: "public"
|