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/in.openapi.yaml
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -6854,10 +6854,11 @@ components:
6854
6854
- 'string'
6855
6855
- 'null'
6856
6856
has_more:
6857
-
description: 'True when another page can be fetched by passing `after=last_id`.'
6857
+
description: 'True when another page can be fetched by passing `after=last_id`; `last_id` is non-null whenever this is true.'
6858
6858
example: false
6859
6859
type: 'boolean'
6860
6860
last_id:
6861
+
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.'
6861
6862
example: 'cfile_b3V0L3JlcG9ydC5jc3Y'
6862
6863
type:
6863
6864
- 'string'
@@ -30879,7 +30880,7 @@ paths:
30879
30880
- 'Classifications'
30880
30881
/containers/{container_id}/files:
30881
30882
get:
30882
-
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.'
30883
+
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).'
30883
30884
operationId: 'listContainerFiles'
30884
30885
parameters:
30885
30886
- 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.'
@@ -30901,12 +30902,12 @@ paths:
30901
30902
maximum: 1000
30902
30903
minimum: 1
30903
30904
type: 'integer'
30904
-
- description: 'Forward cursor: a container file id from a previous page (typically `last_id`); listing resumes strictly after that file.'
30905
+
- description: 'Forward cursor: the previous page’s `last_id` (or any container file id); listing resumes strictly after that path.'
30905
30906
in: 'query'
30906
30907
name: 'after'
30907
30908
required: false
30908
30909
schema:
30909
-
description: 'Forward cursor: a container file id from a previous page (typically `last_id`); listing resumes strictly after that file.'
30910
+
description: 'Forward cursor: the previous page’s `last_id` (or any container file id); listing resumes strictly after that path.'
0 commit comments