Generated SDK #2710 (minor)#140
Merged
Merged
Conversation
|
Your request is important to us. We will look into it shortly. (Note that this SDK code is auto generated) |
reutz19
approved these changes
May 27, 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.
Changelog
2026-05-27
Added
Add
colorfield toUpdateTagRequestProducts: Tags
Scope: API + SDKs
What's new
UpdateTagRequestnow exposes the optionalcolorfield (hex string, e.g.#FF5733), matching what the upstream tagging-service already accepts. Previously the field was missing from the OpenAPI spec.Impact
Clients can update a tag's color via
PATCH /v1/tags/{tagId}. No change to server behavior — the field was already honored upstream.Affected endpoints:
Expose
typefield on tags and add type filter to list tagsProducts: Tags
Scope: API + SDKs
What's new
The
Tagresponse now includes an optionaltypefield (currentlyWALLET_POOL) indicating the domain that owns the tag.CreateTagRequestaccepts an optionaltypeto create typed tags, andGET /v1/tagsaccepts an optionaltypequery parameter (array ofTagType, multi-select) to filter the paged list by one or more tag types. Thetypefield is intentionally omitted fromUpdateTagRequestbecause tag type is immutable after creation.Impact
Clients can read the new
typefield on tag responses (includingTagembedded in vault-account responses), create typed tags viaPOST /v1/tags, and filter the list endpoint by tag type. Existing tags with no type continue to return without the field.Affected endpoints: