Remove remittanceInformation from the Quote response schema - #758
Conversation
remittanceInformation is an input on QuoteRequest only; the Quote response no longer echoes it back.
✱ Stainless preview builds for gridThis PR will update the cli go kotlin openapi php python ruby typescript ✅ grid-ruby studio · code
|
Greptile SummaryAligns the OpenAPI contract with actual API behavior.
Confidence Score: 5/5The PR appears safe to merge with no actionable defects identified. The source schema and both generated bundles consistently remove a field the API does not return, while repository consumers and examples continue to use remittance information only as request data.
|
| Filename | Overview |
|---|---|
| openapi/components/schemas/quotes/Quote.yaml | Removes the incorrectly documented response property without altering request-side remittance information. |
| openapi.yaml | Correctly reflects the source-schema removal in the generated root bundle. |
| mintlify/openapi.yaml | Remains synchronized with the generated root OpenAPI bundle. |
Reviews (1): Last reviewed commit: "Remove remittanceInformation from the Qu..." | Re-trigger Greptile

Summary
remittanceInformationis an input field only — callers set it onPOST /quotesand it travels with the payment on the rail. TheQuoteresponse schema was also echoing it back, which documented a field the API does not return.This removes it from
Quote(the response) and leaves it in place onQuoteRequest.Changes: 3 files
openapi/components/schemas/quotes/Quote.yaml— drop theremittanceInformationpropertyopenapi.yaml,mintlify/openapi.yaml— regenerated bundles (make build)No version bump: the field was never a documented, relied-upon part of the response, and no
servers.urlpath change is involved.Test plan
make build— bundles regenerate cleanlymake lint— 0 errors (630 pre-existing warnings/infos, unchanged by this diff)cli/src/commands/quotes.ts,cli/src/commands/transfers.ts), the visualizer code generator, the docs snippets,TransferOutRequest, andRealtimeFundingTransactionSourceare all untouchedRequested by @shreyav
Original PR: #757