You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .speakeasy/out.openapi.yaml
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -6924,10 +6924,11 @@ components:
6924
6924
- 'string'
6925
6925
- 'null'
6926
6926
has_more:
6927
-
description: 'True when another page can be fetched by passing `after=last_id`.'
6927
+
description: 'True when another page can be fetched by passing `after=last_id`; `last_id` is non-null whenever this is true.'
6928
6928
example: false
6929
6929
type: 'boolean'
6930
6930
last_id:
6931
+
description: 'Cursor for the next page (pass as `after`). The last entry’s id, except when the page stopped at the per-request scan bound on hidden bookkeeping objects: then it names the scan position and may not appear in `data`. Null only when `has_more` is false and `data` is empty.'
6931
6932
example: 'cfile_b3V0L3JlcG9ydC5jc3Y'
6932
6933
type:
6933
6934
- 'string'
@@ -31151,7 +31152,7 @@ paths:
31151
31152
- $ref: "#/components/parameters/AppCategories"
31152
31153
/containers/{container_id}/files:
31153
31154
get:
31154
-
description: 'Lists the files in a container, in lexicographic path order. The container id is the canonical id returned in bash/shell tool results; a restarted session is a separate container with its own id. Paginate with `limit` and `after` (pass the previous page’s `last_id`); `has_more: true` always means the next page is fetchable that way.'
31155
+
description: 'Lists the files in a container, in lexicographic path order. The container id is the canonical id returned in bash/shell tool results; a restarted session is a separate container with its own id. Paginate with `limit` and `after` (pass the previous page’s `last_id`); `has_more: true` always means the next page is fetchable that way. `last_id` is the resume cursor: it is the last listed file’s id, except when a page ends at the per-request scan bound on hidden bookkeeping objects, where it names the scan position instead and may not appear in `data` (which can then be empty).'
31155
31156
operationId: 'listContainerFiles'
31156
31157
parameters:
31157
31158
- description: 'The canonical container id, exactly as returned in a bash/shell tool result — a restarted session has its own `-r<nonce>`-suffixed id. A session-derived id is always `sess_` + the sanitized session key, which is not necessarily the raw session id that was sent.'
@@ -31173,12 +31174,12 @@ paths:
31173
31174
maximum: 1000
31174
31175
minimum: 1
31175
31176
type: 'integer'
31176
-
- description: 'Forward cursor: a container file id from a previous page (typically `last_id`); listing resumes strictly after that file.'
31177
+
- description: 'Forward cursor: the previous page’s `last_id` (or any container file id); listing resumes strictly after that path.'
31177
31178
in: 'query'
31178
31179
name: 'after'
31179
31180
required: false
31180
31181
schema:
31181
-
description: 'Forward cursor: a container file id from a previous page (typically `last_id`); listing resumes strictly after that file.'
31182
+
description: 'Forward cursor: the previous page’s `last_id` (or any container file id); listing resumes strictly after that path.'
0 commit comments