@autohq/cli 0.1.257 → 0.1.259
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 +9 -1
- package/dist/index.js +9 -1
- 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.259",
|
|
23344
23344
|
license: "SEE LICENSE IN README.md",
|
|
23345
23345
|
publishConfig: {
|
|
23346
23346
|
access: "public"
|
|
@@ -27176,11 +27176,19 @@ var SessionListItemSchema = external_exports.object({
|
|
|
27176
27176
|
displayTitle: RunDisplayTitleSchema,
|
|
27177
27177
|
summary: external_exports.string(),
|
|
27178
27178
|
agent: SessionListItemAgentSchema,
|
|
27179
|
+
createdAt: external_exports.string().datetime(),
|
|
27180
|
+
updatedAt: external_exports.string().datetime(),
|
|
27179
27181
|
archivedAt: external_exports.string().datetime().nullable(),
|
|
27180
27182
|
lastActivityAt: external_exports.string().datetime()
|
|
27181
27183
|
});
|
|
27182
27184
|
var SessionListResponseSchema = external_exports.object({
|
|
27183
27185
|
sessions: external_exports.array(SessionListItemSchema),
|
|
27186
|
+
/**
|
|
27187
|
+
* Opaque keyset cursor for the next page, or `null` when the list is
|
|
27188
|
+
* exhausted. Replay it on the next request to append the following page; it is
|
|
27189
|
+
* minted for a specific sort and rejected against a different one.
|
|
27190
|
+
*/
|
|
27191
|
+
nextCursor: external_exports.string().nullable(),
|
|
27184
27192
|
hasMore: external_exports.boolean()
|
|
27185
27193
|
});
|
|
27186
27194
|
var SessionsArchiveResponseSchema = external_exports.object({
|
package/dist/index.js
CHANGED
|
@@ -18956,11 +18956,19 @@ var init_sessions = __esm({
|
|
|
18956
18956
|
displayTitle: RunDisplayTitleSchema,
|
|
18957
18957
|
summary: external_exports.string(),
|
|
18958
18958
|
agent: SessionListItemAgentSchema,
|
|
18959
|
+
createdAt: external_exports.string().datetime(),
|
|
18960
|
+
updatedAt: external_exports.string().datetime(),
|
|
18959
18961
|
archivedAt: external_exports.string().datetime().nullable(),
|
|
18960
18962
|
lastActivityAt: external_exports.string().datetime()
|
|
18961
18963
|
});
|
|
18962
18964
|
SessionListResponseSchema = external_exports.object({
|
|
18963
18965
|
sessions: external_exports.array(SessionListItemSchema),
|
|
18966
|
+
/**
|
|
18967
|
+
* Opaque keyset cursor for the next page, or `null` when the list is
|
|
18968
|
+
* exhausted. Replay it on the next request to append the following page; it is
|
|
18969
|
+
* minted for a specific sort and rejected against a different one.
|
|
18970
|
+
*/
|
|
18971
|
+
nextCursor: external_exports.string().nullable(),
|
|
18964
18972
|
hasMore: external_exports.boolean()
|
|
18965
18973
|
});
|
|
18966
18974
|
SessionsArchiveResponseSchema = external_exports.object({
|
|
@@ -22774,7 +22782,7 @@ var init_package = __esm({
|
|
|
22774
22782
|
"package.json"() {
|
|
22775
22783
|
package_default = {
|
|
22776
22784
|
name: "@autohq/cli",
|
|
22777
|
-
version: "0.1.
|
|
22785
|
+
version: "0.1.259",
|
|
22778
22786
|
license: "SEE LICENSE IN README.md",
|
|
22779
22787
|
publishConfig: {
|
|
22780
22788
|
access: "public"
|