@agentuity/pi 2.0.16 → 2.0.17

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/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { ExtensionAPI } from '@mariozechner/pi-coding-agent';
1
+ import type { ExtensionAPI } from '@earendil-works/pi-coding-agent';
2
2
  export type KnownApi = 'openai-completions' | 'mistral-conversations' | 'openai-responses' | 'azure-openai-responses' | 'openai-codex-responses' | 'anthropic-messages' | 'bedrock-converse-stream' | 'google-generative-ai' | 'google-gemini-cli' | 'google-vertex';
3
3
  export declare function setupAIGateway(pi: ExtensionAPI): Promise<void>;
4
4
  export default setupAIGateway;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAmBA,OAAO,KAAK,EACX,YAAY,EAGZ,MAAM,+BAA+B,CAAC;AAEvC,MAAM,MAAM,QAAQ,GACjB,oBAAoB,GACpB,uBAAuB,GACvB,kBAAkB,GAClB,wBAAwB,GACxB,wBAAwB,GACxB,oBAAoB,GACpB,yBAAyB,GACzB,sBAAsB,GACtB,mBAAmB,GACnB,eAAe,CAAC;AA4ZnB,wBAAsB,cAAc,CAAC,EAAE,EAAE,YAAY,iBAepD;AAED,eAAe,cAAc,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAmBA,OAAO,KAAK,EACX,YAAY,EAGZ,MAAM,iCAAiC,CAAC;AAEzC,MAAM,MAAM,QAAQ,GACjB,oBAAoB,GACpB,uBAAuB,GACvB,kBAAkB,GAClB,wBAAwB,GACxB,wBAAwB,GACxB,oBAAoB,GACpB,yBAAyB,GACzB,sBAAsB,GACtB,mBAAmB,GACnB,eAAe,CAAC;AA4ZnB,wBAAsB,cAAc,CAAC,EAAE,EAAE,YAAY,iBAepD;AAED,eAAe,cAAc,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentuity/pi",
3
- "version": "2.0.16",
3
+ "version": "2.0.17",
4
4
  "description": "Agentuity AI Gateway provider plugin for Pi coding agent",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Agentuity employees and contributors",
@@ -25,14 +25,14 @@
25
25
  "prepublishOnly": "bun run clean && bun run build"
26
26
  },
27
27
  "dependencies": {
28
- "@agentuity/core": "2.0.16",
29
- "@agentuity/server": "2.0.16"
28
+ "@agentuity/core": "2.0.17",
29
+ "@agentuity/server": "2.0.17"
30
30
  },
31
31
  "peerDependencies": {
32
- "@mariozechner/pi-coding-agent": "^0.72.1"
32
+ "@earendil-works/pi-coding-agent": "^0.74.0"
33
33
  },
34
34
  "devDependencies": {
35
- "@mariozechner/pi-coding-agent": "^0.72.1",
35
+ "@earendil-works/pi-coding-agent": "^0.74.0",
36
36
  "@types/bun": "^1.3.9",
37
37
  "bun-types": "^1.3.9",
38
38
  "typescript": "^5.9.0"
package/src/index.ts CHANGED
@@ -21,7 +21,7 @@ import type {
21
21
  ExtensionAPI,
22
22
  ExtensionCommandContext,
23
23
  ProviderModelConfig,
24
- } from '@mariozechner/pi-coding-agent';
24
+ } from '@earendil-works/pi-coding-agent';
25
25
 
26
26
  export type KnownApi =
27
27
  | 'openai-completions'