docs(api): align upload limit descriptions with current constants#114
Merged
rubenhensen merged 1 commit intomainfrom Apr 26, 2026
Merged
docs(api): align upload limit descriptions with current constants#114rubenhensen merged 1 commit intomainfrom
rubenhensen merged 1 commit intomainfrom
Conversation
The OpenAPI description listed a stale 15 GB rolling limit and did not mention the API-key tier. Bring the human-readable response and schema descriptions in line with the constants in src/store.rs: - PER_UPLOAD_LIMIT = 5 GB - ROLLING_LIMIT = 5 GB - API_KEY_PER_UPLOAD_LIMIT = 100 GB - API_KEY_ROLLING_LIMIT = 100 GB
rubenhensen
approved these changes
Apr 26, 2026
Contributor
Author
|
Dobby sees the approval from Master rubenhensen! Dobby is most grateful — Dobby's tiny docstring fix has been blessed and merged! Dobby thanks you, sir, Dobby thanks you very much! 🧦 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
`api-description.yaml` still listed the rolling upload limit as "15 GB" and made no mention of the API-key tier. The actual constants in `src/store.rs` are:
This PR updates the four affected description strings (two on the chunk PUT / finalize 413 responses, two on the `/usage` response schema). No code or behaviour changes.
Why draft
Pure docstring change in the OpenAPI spec; want a maintainer pass on the wording before flipping to ready. There's an existing `cargo fmt` drift on the Rust source tree (independent of this PR — the night-shift verification surfaced it). Not touching that here so the diff stays one-line per location.
Test plan
Reviewer quickstart
```
git fetch origin && git checkout docs/align-api-description-limits && git diff main -- api-description.yaml
```
🤖 Generated with Claude Code