@opencode-ai/plugin 1.14.31 → 1.14.33
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 +2 -2
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ export type WorkspaceTarget = {
|
|
|
25
25
|
url: string | URL;
|
|
26
26
|
headers?: HeadersInit;
|
|
27
27
|
};
|
|
28
|
-
export type
|
|
28
|
+
export type WorkspaceAdapter = {
|
|
29
29
|
name: string;
|
|
30
30
|
description: string;
|
|
31
31
|
configure(config: WorkspaceInfo): WorkspaceInfo | Promise<WorkspaceInfo>;
|
|
@@ -39,7 +39,7 @@ export type PluginInput = {
|
|
|
39
39
|
directory: string;
|
|
40
40
|
worktree: string;
|
|
41
41
|
experimental_workspace: {
|
|
42
|
-
register(type: string,
|
|
42
|
+
register(type: string, adapter: WorkspaceAdapter): void;
|
|
43
43
|
};
|
|
44
44
|
serverUrl: URL;
|
|
45
45
|
$: BunShell;
|
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.14.
|
|
4
|
+
"version": "1.14.33",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
"dist"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@opencode-ai/sdk": "1.14.
|
|
29
|
+
"@opencode-ai/sdk": "1.14.33",
|
|
30
30
|
"effect": "4.0.0-beta.57",
|
|
31
31
|
"zod": "4.1.8"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@opentui/core": ">=0.2.
|
|
35
|
-
"@opentui/solid": ">=0.2.
|
|
34
|
+
"@opentui/core": ">=0.2.2",
|
|
35
|
+
"@opentui/solid": ">=0.2.2"
|
|
36
36
|
},
|
|
37
37
|
"peerDependenciesMeta": {
|
|
38
38
|
"@opentui/core": {
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@opentui/core": "0.2.
|
|
47
|
-
"@opentui/solid": "0.2.
|
|
46
|
+
"@opentui/core": "0.2.2",
|
|
47
|
+
"@opentui/solid": "0.2.2",
|
|
48
48
|
"@tsconfig/node22": "22.0.2",
|
|
49
49
|
"@types/node": "22.13.9",
|
|
50
50
|
"typescript": "5.8.2",
|