Fix: Document searchField enum and companion query parameters in List Orders#1728
Open
guitavano wants to merge 1 commit into
Open
Fix: Document searchField enum and companion query parameters in List Orders#1728guitavano wants to merge 1 commit into
guitavano wants to merge 1 commit into
Conversation
… Orders The searchField parameter was documented as a free-form string, but it actually accepts a fixed set of values (sku_Ids, listId, tid, pci_tid, paymentId, nsu). Additionally, each searchField value requires a companion query parameter (e.g. searchField=sku_Ids&sku_Ids=11223) that was not listed in the schema, making it invisible to code generation tools and SDK clients. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3 tasks
guitavano
added a commit
to decocms/mcps
that referenced
this pull request
Jun 18, 2026
Use schema override from fork while waiting for upstream PR vtex/openapi-schemas#1728 to be merged. Adds the 6 companion query parameters (sku_Ids, listId, tid, pci_tid, paymentId, nsu) that are required alongside searchField for order filtering. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
vibe-dex
approved these changes
Jun 18, 2026
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
searchFieldfrom a free-formstringto anenumwith the 6 valid values:sku_Ids,listId,tid,pci_tid,paymentId,nsu.sku_Ids,listId,tid,pci_tid,paymentId,nsu) that were missing from the schema.Why
The
searchFieldparameter requires a companion query parameter to provide the actual search value. For example:Previously, only
searchFieldwas documented (as a free string), so code generation tools and SDK clients had no way to know about the companion parameters likesku_Ids. This made it impossible to use this feature correctly via generated clients.Test plan
🤖 Generated with Claude Code