Skip to content

Commit 73c6cad

Browse files
committed
Merge remote-tracking branch 'origin/staging' into codex/resolve-pr-7477-staging
2 parents 653f23e + ebf85f3 commit 73c6cad

33 files changed

Lines changed: 518 additions & 191 deletions

apps/docs/content/docs/cli/audit-logs.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ List Audit Logs (OAuth login or personal API key required)
5959
| `--include-departed` | No | Include actions by users who have left the organization. |
6060
| `--no-include-departed` | No | Send --include-departed as false. |
6161
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `100`. |
62+
| `--cursor <value>` | No | Continue from nextCursor returned by a previous result. |
6263
| `--organization <value>` | No | Organization ID; defaults to your only organization, and is required when your account belongs to more than one (OAuth login or personal API key required). |
6364
| `--actor-email <value>` | No | Filter by actor email address. |
6465
| `--all-workspaces` | No | Do not filter to the configured workspace (OAuth login or personal API key required for account-wide access). |

apps/docs/content/docs/cli/billing.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ List credit usage events (an OAuth login or personal API key reports only your e
4444
| `--start-date <value>` | No | Custom period start (ISO 8601). |
4545
| `--end-date <value>` | No | Custom period end (ISO 8601). |
4646
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `100`. |
47+
| `--cursor <value>` | No | Continue from nextCursor returned by a previous result. |
4748
| `--all-workspaces` | No | Do not filter to the configured workspace (OAuth login or personal API key required for account-wide access). |
4849

4950
</CommandTable>

apps/docs/content/docs/cli/blocks.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ sim blocks list [options]
4141
| `--source <value>` | No | Restrict to built-in blocks or this workspace's deployed custom blocks. Accepted values: `builtin`, `custom`. |
4242
| `--sort-by <value>` | No | Field used to sort the result. Sorting by `name` is case-sensitive and follows the storage collation, so do not rely on a case-insensitive order. Accepted values: `id`, `name`, `category`. |
4343
| `--sort-order <value>` | No | Sort direction. Accepted values: `asc`, `desc`. |
44-
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `100`. |
44+
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `0`. |
4545

4646
</CommandTable>

apps/docs/content/docs/cli/chat-deployments.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ sim chat-deployments list [options]
2424
| `--no-is-active` | No | Send --is-active as false. |
2525
| `--sort-by <value>` | No | Field used to sort the result. Accepted values: `identifier`, `createdAt`, `updatedAt`. |
2626
| `--sort-order <value>` | No | Sort direction. Accepted values: `asc`, `desc`. |
27-
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `100`. |
27+
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `0`. |
2828

2929
</CommandTable>

apps/docs/content/docs/cli/credentials.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ sim credentials list [options]
7070
| `--search <value>` | No | Case-insensitive substring match against the credential display name. |
7171
| `--sort-by <value>` | No | Field used to sort the result. Accepted values: `displayName`, `createdAt`, `updatedAt`. |
7272
| `--sort-order <value>` | No | Sort direction. Accepted values: `asc`, `desc`. |
73-
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `100`. |
73+
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `0`. |
7474

7575
</CommandTable>
7676

apps/docs/content/docs/cli/custom-tools.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ sim custom-tools list [options]
8484
| `--search <value>` | No | Case-insensitive substring match against the tool title. |
8585
| `--sort-by <value>` | No | Field used to sort the result. Accepted values: `title`, `createdAt`, `updatedAt`. |
8686
| `--sort-order <value>` | No | Sort direction. Accepted values: `asc`, `desc`. |
87-
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `100`. |
87+
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `0`. |
8888

8989
</CommandTable>
9090

apps/docs/content/docs/cli/files.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ sim files list [options]
292292
| `--search <value>` | No | Case-insensitive substring match against the file name. |
293293
| `--sort-by <value>` | No | Field used to sort the result. Sorting by `name` is case-sensitive and follows the storage collation, so do not rely on a case-insensitive order. Accepted values: `name`, `size`, `uploadedAt`, `updatedAt`. |
294294
| `--sort-order <value>` | No | Sort direction. Accepted values: `asc`, `desc`. |
295-
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `100`. |
295+
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `0`. |
296296

297297
</CommandTable>
298298

@@ -536,7 +536,7 @@ sim files ls [path] [options]
536536
| Option | Required | Description |
537537
| --- | --- | --- |
538538
| `--search <text>` | No | Filter folders and resources by name. |
539-
| `--limit <n>` | No | Maximum combined items to return (0 for everything). Defaults to `100`. |
539+
| `--limit <n>` | No | Maximum combined items to return (0 for everything). Defaults to `0`. |
540540

541541
</CommandTable>
542542

apps/docs/content/docs/cli/knowledge.mdx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,7 @@ List Chunks (OAuth login or personal API key required)
388388
| `--sort-by <value>` | No | Field used to sort the result. Accepted values: `chunkIndex`, `tokenCount`, `enabled`. |
389389
| `--sort-order <value>` | No | Sort direction. Accepted values: `asc`, `desc`. |
390390
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `100`. |
391+
| `--cursor <value>` | No | Continue from nextCursor returned by a previous result. |
391392

392393
</CommandTable>
393394

@@ -525,6 +526,7 @@ sim knowledge documents list <knowledgeBaseId> [options]
525526
| `--enabled-filter <value>` | No | Filter by whether documents are enabled for search. Accepted values: `all`, `enabled`, `disabled`. |
526527
| `--sort-by <value>` | No | Field used to sort the result. Sorting by `filename` is case-sensitive and follows the storage collation, so do not rely on a case-insensitive order. Accepted values: `filename`, `fileSize`, `tokenCount`, `chunkCount`, `uploadedAt`, `processingStatus`, `enabled`. |
527528
| `--sort-order <value>` | No | Sort direction. Accepted values: `asc`, `desc`. |
529+
| `--cursor <value>` | No | Continue from nextCursor returned by a previous result. |
528530
| `--tag-filters <value>` | No | A JSON-encoded array of at most 10 tag filters, using the same display-name shape as knowledge search: `[&#123;"tagName":"category","operator":"eq","value":"billing"&#125;]`. Every filter must hold, including two that name the same tag. A name that is not defined in this knowledge base is rejected, never ignored. |
529531

530532
</CommandTable>
@@ -740,6 +742,7 @@ List Knowledge Connector Documents (OAuth login or personal API key required)
740742
| `--include-excluded` | No | Include documents explicitly excluded by a user. |
741743
| `--no-include-excluded` | No | Send --include-excluded as false. |
742744
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `100`. |
745+
| `--cursor <value>` | No | Continue from nextCursor returned by a previous result. |
743746

744747
</CommandTable>
745748

@@ -799,7 +802,7 @@ List Knowledge Connectors (OAuth login or personal API key required)
799802
| --- | --- | --- |
800803
| `--sort-by <value>` | No | Field used to sort the result. Accepted values: `connectorType`, `createdAt`, `updatedAt`. |
801804
| `--sort-order <value>` | No | Sort direction. Accepted values: `asc`, `desc`. |
802-
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `100`. |
805+
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `0`. |
803806

804807
</CommandTable>
805808

@@ -1006,7 +1009,7 @@ sim knowledge list [options]
10061009
| `--search <value>` | No | Case-insensitive substring match against the resource name. |
10071010
| `--sort-by <value>` | No | Field used to sort the result. Sorting by `name` is case-sensitive and follows the storage collation, so do not rely on a case-insensitive order. Accepted values: `name`, `createdAt`, `updatedAt`. |
10081011
| `--sort-order <value>` | No | Sort direction. Accepted values: `asc`, `desc`. |
1009-
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `100`. |
1012+
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `0`. |
10101013

10111014
</CommandTable>
10121015

@@ -1119,7 +1122,7 @@ sim knowledge ls [path] [options]
11191122
| Option | Required | Description |
11201123
| --- | --- | --- |
11211124
| `--search <text>` | No | Filter folders and resources by name. |
1122-
| `--limit <n>` | No | Maximum combined items to return (0 for everything). Defaults to `100`. |
1125+
| `--limit <n>` | No | Maximum combined items to return (0 for everything). Defaults to `0`. |
11231126

11241127
</CommandTable>
11251128

apps/docs/content/docs/cli/logs.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ sim logs list [options]
8383
| `--include-trace-spans` | No | Include trace spans in JSON or YAML output (implies full detail). |
8484
| `--include-final-output` | No | Include final output in JSON or YAML output (implies full detail). |
8585
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `100`. |
86+
| `--cursor <value>` | No | Continue from nextCursor returned by a previous result. |
8687
| `--status <value>` | No | Comma-separated execution statuses to include, from `pending` \| `running` \| `paused` \| `redacting` \| `completed` \| `failed` \| `cancelled`. An empty entry is rejected. ANDed with `level`, which reports severity rather than lifecycle. |
8788
| `--workflow-name <value>` | No | Case-insensitive substring match against the run's workflow name. Runs whose workflow has been deleted match nothing, because the name is no longer joinable. |
8889
| `--include-job-runs` | No | Include Chat and Sim-agent jobs alongside workflow runs. Jobs use `kind: "job"` and have no workflow or cost ledger. Workflow, folder, model, or status filters exclude jobs. This option is valid only when sorting by `startedAt`. |

apps/docs/content/docs/cli/mcp-servers.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ sim mcp-servers list [options]
9393
| `--search <value>` | No | Case-insensitive substring match against the server name. |
9494
| `--sort-by <value>` | No | Field used to sort the result. Sorting by `name` is case-sensitive and follows the storage collation, so do not rely on a case-insensitive order. Accepted values: `name`, `createdAt`, `updatedAt`. |
9595
| `--sort-order <value>` | No | Sort direction. Accepted values: `asc`, `desc`. |
96-
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `100`. |
96+
| `--limit <n>` | No | Maximum items to return (0 for everything). Defaults to `0`. |
9797

9898
</CommandTable>
9999

0 commit comments

Comments
 (0)