Anchorage EA: Replace clientReferenceId with packageId as primary identifier#4680
Merged
mohamed-mehany merged 3 commits intomainfrom Feb 27, 2026
Merged
Anchorage EA: Replace clientReferenceId with packageId as primary identifier#4680mohamed-mehany merged 3 commits intomainfrom
mohamed-mehany merged 3 commits intomainfrom
Conversation
…chorage packages endpoint
🦋 Changeset detectedLatest commit: 3a69b15 The changes in this PR will be included in the next version bump. This PR includes changesets to release 2 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
dskloetc
approved these changes
Feb 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.
Closes OPDATA-6182
Description
Replace
clientReferenceIdwithpackageIdas the required identifier for the Anchorage collateral management packages endpoint.packageIdis the immutable primary key for packages, whereasclientReferenceIdcan change and break feeds. This change is required for the Kamino Lend / Pantera SOL POR deployment (OPDATA-6038).This is a breaking change for the packages endpoint input parameters. All existing feeds using this endpoint are dead or not yet released, so there is no production impact.
Background
Driven by OPDATA-6038 (Kamino Lend / Pantera SOL POR deployment) and OPDATA-6182 (EA config update). The Anchorage API returns packageId on each package object, but the EA was only using clientReferenceId for filtering. Per product team guidance, clientReferenceId is unreliable as it can change, so packageId is now the sole required identifier.
Changes
clientReferenceIdinput parameter withpackageId(required) in the packages endpointpackageIdfield to thePackageResponseinterface in the transport layerpackageIdinstead ofclientReferenceIdpackageIdfield and test requests to usepackageIdSteps to Test
{ "endpoint": "packages", "packageId": "1c1dd6b2899660900088", "assetType": "SOL" }Quality Assurance