@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
|
-
|
|
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