mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 05:02:07 +00:00
fix(ai,coding-agent): simplify oauth subpath exports closes #1856
This commit is contained in:
parent
a74b18ca5a
commit
0573612a89
5 changed files with 4 additions and 6 deletions
|
|
@ -10,6 +10,7 @@
|
|||
|
||||
- Preserved OpenAI Responses assistant `phase` metadata (`commentary`, `final_answer`) across turns by encoding `id` and `phase` in `textSignature` for session persistence and replay, with backward compatibility for legacy plain signatures ([#1819](https://github.com/badlogic/pi-mono/issues/1819)).
|
||||
- Fixed Antigravity endpoint fallback: 403/404 responses now cascade to the next endpoint instead of throwing immediately, added `autopush-cloudcode-pa.sandbox` endpoint to the fallback list, and removed extra fingerprint headers (`X-Goog-Api-Client`, `Client-Metadata`) from Antigravity requests ([#1830](https://github.com/badlogic/pi-mono/issues/1830)).
|
||||
- Fixed `@mariozechner/pi-ai/oauth` package exports to point directly at built `dist` files, avoiding broken TypeScript resolution through unpublished wrapper targets ([#1856](https://github.com/badlogic/pi-mono/issues/1856)).
|
||||
- Fixed Gemini 3 unsigned tool call replay: use `skip_thought_signature_validator` sentinel instead of converting function calls to text, preserving structured tool call context across multi-turn conversations ([#1829](https://github.com/badlogic/pi-mono/issues/1829)).
|
||||
|
||||
## [0.56.1] - 2026-03-05
|
||||
|
|
|
|||
1
packages/ai/oauth.d.ts
vendored
1
packages/ai/oauth.d.ts
vendored
|
|
@ -1 +0,0 @@
|
|||
export * from "./src/oauth.js";
|
||||
|
|
@ -1 +0,0 @@
|
|||
export * from "./dist/oauth.js";
|
||||
|
|
@ -11,8 +11,8 @@
|
|||
"import": "./dist/index.js"
|
||||
},
|
||||
"./oauth": {
|
||||
"types": "./oauth.d.ts",
|
||||
"import": "./oauth.js"
|
||||
"types": "./dist/oauth.d.ts",
|
||||
"import": "./dist/oauth.js"
|
||||
},
|
||||
"./bedrock-provider": {
|
||||
"types": "./bedrock-provider.d.ts",
|
||||
|
|
@ -24,8 +24,6 @@
|
|||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"oauth.js",
|
||||
"oauth.d.ts",
|
||||
"bedrock-provider.js",
|
||||
"bedrock-provider.d.ts",
|
||||
"README.md"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue