Skip to content

Commit 232a76d

Browse files
author
OpenRouter SDK Bot
committed
chore: update OpenAPI spec [sdk-bot]
1 parent 47e5b29 commit 232a76d

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

‎.speakeasy/in.openapi.yaml‎

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6854,10 +6854,11 @@ components:
68546854
- 'string'
68556855
- 'null'
68566856
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.'
68586858
example: false
68596859
type: 'boolean'
68606860
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.'
68616862
example: 'cfile_b3V0L3JlcG9ydC5jc3Y'
68626863
type:
68636864
- 'string'
@@ -30879,7 +30880,7 @@ paths:
3087930880
- 'Classifications'
3088030881
/containers/{container_id}/files:
3088130882
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).'
3088330884
operationId: 'listContainerFiles'
3088430885
parameters:
3088530886
- 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:
3090130902
maximum: 1000
3090230903
minimum: 1
3090330904
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.'
3090530906
in: 'query'
3090630907
name: 'after'
3090730908
required: false
3090830909
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.'
3091030911
example: 'cfile_b3V0L3JlcG9ydC5jc3Y'
3091130912
type: 'string'
3091230913
responses:

0 commit comments

Comments
 (0)