@opencode-ai/plugin 1.1.11 → 1.1.13
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 +5 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -83,6 +83,7 @@ export type AuthOuathResult = {
|
|
|
83
83
|
refresh: string;
|
|
84
84
|
access: string;
|
|
85
85
|
expires: number;
|
|
86
|
+
accountId?: string;
|
|
86
87
|
} | {
|
|
87
88
|
key: string;
|
|
88
89
|
})) | {
|
|
@@ -97,6 +98,7 @@ export type AuthOuathResult = {
|
|
|
97
98
|
refresh: string;
|
|
98
99
|
access: string;
|
|
99
100
|
expires: number;
|
|
101
|
+
accountId?: string;
|
|
100
102
|
} | {
|
|
101
103
|
key: string;
|
|
102
104
|
})) | {
|
|
@@ -168,7 +170,9 @@ export interface Hooks {
|
|
|
168
170
|
parts: Part[];
|
|
169
171
|
}[];
|
|
170
172
|
}) => Promise<void>;
|
|
171
|
-
"experimental.chat.system.transform"?: (input: {
|
|
173
|
+
"experimental.chat.system.transform"?: (input: {
|
|
174
|
+
sessionID: string;
|
|
175
|
+
}, output: {
|
|
172
176
|
system: string[];
|
|
173
177
|
}) => Promise<void>;
|
|
174
178
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@opencode-ai/plugin",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.13",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dist"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@opencode-ai/sdk": "1.1.
|
|
25
|
+
"@opencode-ai/sdk": "1.1.13",
|
|
26
26
|
"zod": "4.1.8"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|