Uh oh!
There was an error while loading. Please reload this page.
docs(specs): document for_organization from PR #510 - #552
Conversation
bdeda7c to
49612caCompareThere was a problem hiding this comment.
Pull request overview
This PR updates the SDK specification markdown files to reflect the previously-added for_organization support for listing runs (Platform Runs.list() / Runs.list_data() and Application Service.application_runs()), documents the --for-organization CLI flag, and adds ForbiddenException to the documented error categories.
Changes:
- Document
for_organization: str | None = Nonefor run-listing APIs in Platform and Application specs. - Update CLI documentation to include
run list --for-organization. - Add
ForbiddenExceptionto error-category tables in both specs.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 8 comments.
| File | Description |
|---|---|
| specifications/SPEC_PLATFORM_SERVICE.md | Documents for_organization on Runs.list() / Runs.list_data() and adds ForbiddenException to error categories. |
| specifications/SPEC-APPLICATION-SERVICE.md | Adds an application_runs() spec section, updates run list CLI docs, and adds ForbiddenException to error categories. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Update SPEC_PLATFORM_SERVICE.md and SPEC-APPLICATION-SERVICE.md to document the for_organization parameter added to Runs.list() / Runs.list_data() and Service.application_runs(), the --for-organization CLI flag on run list, and ForbiddenException in both error tables. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
49612ca to
39f90f6CompareComprehensive Review of PR #552: Document |
Codecov Report✅ All modified and coverable lines are covered by tests. |
Uh oh!
There was an error while loading. Please reload this page.



Why?
PR #510 added
for_organizationsupport toRuns.list()/Runs.list_data()andService.application_runs(), a--for-organizationCLI flag onrun list, andForbiddenExceptionas a public export, but none of these were reflected in the specification files.How?
Updated
SPEC_PLATFORM_SERVICE.mdandSPEC-APPLICATION-SERVICE.mdto addfor_organization: str | None = Noneto the relevant method signatures, document the--for-organizationCLI flag and its error/empty-result behaviour, and addForbiddenExceptionrows to both error-category tables.