@kervnet/opencode-kiro-auth 1.6.1 → 1.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -128,6 +128,9 @@ export function transformToCodeWhisperer(url, body, model, auth, think = false,
128
128
  }
129
129
  }
130
130
  };
131
+ if (auth.profileArn) {
132
+ request.profileArn = auth.profileArn;
133
+ }
131
134
  const toolUsesInHistory = history.flatMap((h) => h.assistantResponseMessage?.toolUses || []);
132
135
  const allToolUseIdsInHistory = new Set(toolUsesInHistory.map((tu) => tu.toolUseId));
133
136
  const finalCurTrs = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kervnet/opencode-kiro-auth",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "OpenCode plugin for AWS Kiro (CodeWhisperer) providing access to Claude models with IAM auth support",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",