Fix spec issues and add endpoint documentation#1
Merged
svperfecta merged 3 commits intomainfrom Feb 8, 2026
Merged
Conversation
- Fix 249 empty response descriptions (required by OpenAPI 3.0) - Add 5 missing global tag definitions (Bank Reconciliation, Company Objects, etc.) - Remove 518 exclusiveMin/Max boolean noise (draft-4 artifacts) - Replace 32 oneOf-with-BlankEnum/NullEnum patterns with allOf+nullable - Remove orphaned BlankEnum/NullEnum schemas - Add summaries and descriptions to 31 undocumented operations Speakeasy lint: 0 errors, 0 warnings. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
These are valid OAS 3.0.3 boolean-style bounds paired with real minimum/maximum values (e.g. Django decimal field constraints like -1e18 to 1e18). Removing them discarded meaningful schema information. Speakeasy warns about them (prefers OAS 3.1 number style) but they are spec-compliant and useful for LLMs reading the schema. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- README/CLAUDE.md: Replace DefaultApi references with actual generated classes (CashManagementApi, AccountsPayableApi, etc.) - README: Add API classes table with descriptions - CLAUDE.md: Add full list of 12 API classes, key conventions (soft-delete, bulk search, double-entry, multi-currency, void/reopen, closed books) - .openapi-generator-ignore: Protect campfire.json from being overwritten - Repo: Add topics (typescript, sdk, campfire, openapi) and homepage URL Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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
exclusiveMin/Maxboolean noise (JSON Schema draft-4 artifacts)oneOfwithBlankEnum/NullEnumpatterns withallOf+nullable(fixes duplicate enum TS compilation errors)BlankEnum/NullEnumschemasTest plan
just buildcompiles without errorsspeakeasy lint openapi -s campfire.jsonreturns 0 errors, 0 warnings🤖 Generated with Claude Code