@kervnet/opencode-kiro-auth 1.6.4 → 1.6.5

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.
@@ -25,7 +25,8 @@ export async function syncFromKiroCli() {
25
25
  continue;
26
26
  const isIdc = row.key.includes('odic');
27
27
  const authMethod = isIdc ? 'idc' : 'desktop';
28
- const region = data.region || 'us-east-1';
28
+ // Force us-east-1 for Kiro - ca-central-1 not supported
29
+ const region = 'us-east-1';
29
30
  const profileArn = data.profile_arn || data.profileArn;
30
31
  const accessToken = data.access_token || data.accessToken || '';
31
32
  const refreshToken = data.refresh_token || data.refreshToken;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kervnet/opencode-kiro-auth",
3
- "version": "1.6.4",
3
+ "version": "1.6.5",
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",