@javargasm/pi-kiro 0.4.7 → 0.4.8
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.
- package/CHANGELOG.md +6 -0
- package/dist/extension.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.4.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3981af9: Fix provider name mismatch that hid all models from pi's model selector. The registered provider name ("kiro AWS") did not match the auth.json key ("kiro"), causing pi's AuthStorage to fail credential lookup.
|
|
8
|
+
|
|
3
9
|
## 0.4.7
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/extension.js
CHANGED
|
@@ -3567,7 +3567,7 @@ async function extension_default(pi) {
|
|
|
3567
3567
|
} else {
|
|
3568
3568
|
log.warn("Run 'kiro login' to authenticate and fetch models dynamically. Note: This extension does not have the same authentication mechanism as other Kiro tools.");
|
|
3569
3569
|
}
|
|
3570
|
-
pi.registerProvider("kiro
|
|
3570
|
+
pi.registerProvider("kiro", {
|
|
3571
3571
|
baseUrl: "https://runtime.us-east-1.kiro.dev",
|
|
3572
3572
|
api: "kiro-api",
|
|
3573
3573
|
authHeader: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@javargasm/pi-kiro",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.8",
|
|
4
4
|
"description": "Kiro provider for the pi coding agent: AWS Builder ID / IAM Identity Center login and the CodeWhisperer streaming API, exposing the Kiro Claude model family.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|