From a95bf9309e1f5e0a0c6ec54c5d704c6c52a27ee2 Mon Sep 17 00:00:00 2001 From: Vinh Khang Tieu Date: Mon, 8 Jun 2026 17:17:55 +0000 Subject: [PATCH] feat(sdk-api): add enterprise to AddAccessTokenOptions Allow callers of sdk.addAccessToken() to pass an enterprise ID. The value is forwarded to the server via the existing request.send(params) call in bitgoAPI.ts, which already spreads all params into the request body. Ticket: ANT-909 Session-Id: 9f5635b8-39d3-4249-a4c5-eb72a35f17ae Task-Id: f65c85d3-215f-4b00-906d-462c725ab8a1 --- modules/sdk-api/src/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/sdk-api/src/types.ts b/modules/sdk-api/src/types.ts index c7f2a32e09..21466db7ae 100644 --- a/modules/sdk-api/src/types.ts +++ b/modules/sdk-api/src/types.ts @@ -182,6 +182,7 @@ export interface AddAccessTokenOptions { txValueLimit?: number; scope: string[]; spendingLimits?: AccessTokenSpendingLimit[]; + enterprise?: string; } export interface AddAccessTokenResponse {