@hippox/codegenie-darwin-x64 3.34.2026 → 3.36.2026
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/bin/codegenie +0 -0
- package/kernel-deps/node_modules/.package-lock.json +9 -9
- package/kernel-deps/node_modules/@opencode-ai/plugin/package.json +6 -6
- package/kernel-deps/node_modules/@opencode-ai/sdk/dist/v2/gen/types.gen.d.ts +13 -13
- package/kernel-deps/node_modules/@opencode-ai/sdk/package.json +1 -1
- package/package.json +1 -1
package/bin/codegenie
CHANGED
|
Binary file
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
]
|
|
37
37
|
},
|
|
38
38
|
"node_modules/@opencode-ai/plugin": {
|
|
39
|
-
"version": "1.3.
|
|
40
|
-
"resolved": "https://registry.npmjs.org/@opencode-ai/plugin/-/plugin-1.3.
|
|
41
|
-
"integrity": "sha512-
|
|
39
|
+
"version": "1.3.13",
|
|
40
|
+
"resolved": "https://registry.npmjs.org/@opencode-ai/plugin/-/plugin-1.3.13.tgz",
|
|
41
|
+
"integrity": "sha512-zHgtWfdDz8Wu8srE8f8HUtPT9i6c3jTmgQKoFZUZ+RR5CMQF1kAlb1cxeEe9Xm2DRNFVJog9Cv/G1iUHYgXSUQ==",
|
|
42
42
|
"license": "MIT",
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@opencode-ai/sdk": "1.3.
|
|
44
|
+
"@opencode-ai/sdk": "1.3.13",
|
|
45
45
|
"zod": "4.1.8"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
|
-
"@opentui/core": ">=0.1.
|
|
49
|
-
"@opentui/solid": ">=0.1.
|
|
48
|
+
"@opentui/core": ">=0.1.95",
|
|
49
|
+
"@opentui/solid": ">=0.1.95"
|
|
50
50
|
},
|
|
51
51
|
"peerDependenciesMeta": {
|
|
52
52
|
"@opentui/core": {
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"node_modules/@opencode-ai/sdk": {
|
|
61
|
-
"version": "1.3.
|
|
62
|
-
"resolved": "https://registry.npmjs.org/@opencode-ai/sdk/-/sdk-1.3.
|
|
63
|
-
"integrity": "sha512
|
|
61
|
+
"version": "1.3.13",
|
|
62
|
+
"resolved": "https://registry.npmjs.org/@opencode-ai/sdk/-/sdk-1.3.13.tgz",
|
|
63
|
+
"integrity": "sha512-/M6HlNnba+xf1EId6qFb2tG0cvq0db3PCQDug1glrf8wYOU57LYNF8WvHX9zoDKPTMv0F+O4pcP/8J+WvDaxHA==",
|
|
64
64
|
"license": "MIT"
|
|
65
65
|
},
|
|
66
66
|
"node_modules/@types/node": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@opencode-ai/plugin",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.13",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"dist"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@opencode-ai/sdk": "1.3.
|
|
29
|
+
"@opencode-ai/sdk": "1.3.13",
|
|
30
30
|
"zod": "4.1.8"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@opentui/core": ">=0.1.
|
|
34
|
-
"@opentui/solid": ">=0.1.
|
|
33
|
+
"@opentui/core": ">=0.1.95",
|
|
34
|
+
"@opentui/solid": ">=0.1.95"
|
|
35
35
|
},
|
|
36
36
|
"peerDependenciesMeta": {
|
|
37
37
|
"@opentui/core": {
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@opentui/core": "0.1.
|
|
46
|
-
"@opentui/solid": "0.1.
|
|
45
|
+
"@opentui/core": "0.1.95",
|
|
46
|
+
"@opentui/solid": "0.1.95",
|
|
47
47
|
"@tsconfig/node22": "22.0.2",
|
|
48
48
|
"@types/node": "22.13.9",
|
|
49
49
|
"typescript": "5.8.2",
|
|
@@ -1,18 +1,6 @@
|
|
|
1
1
|
export type ClientOptions = {
|
|
2
2
|
baseUrl: `${string}://${string}` | (string & {});
|
|
3
3
|
};
|
|
4
|
-
export type EventInstallationUpdated = {
|
|
5
|
-
type: "installation.updated";
|
|
6
|
-
properties: {
|
|
7
|
-
version: string;
|
|
8
|
-
};
|
|
9
|
-
};
|
|
10
|
-
export type EventInstallationUpdateAvailable = {
|
|
11
|
-
type: "installation.update-available";
|
|
12
|
-
properties: {
|
|
13
|
-
version: string;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
16
4
|
export type Project = {
|
|
17
5
|
id: string;
|
|
18
6
|
worktree: string;
|
|
@@ -40,6 +28,18 @@ export type EventProjectUpdated = {
|
|
|
40
28
|
type: "project.updated";
|
|
41
29
|
properties: Project;
|
|
42
30
|
};
|
|
31
|
+
export type EventInstallationUpdated = {
|
|
32
|
+
type: "installation.updated";
|
|
33
|
+
properties: {
|
|
34
|
+
version: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
export type EventInstallationUpdateAvailable = {
|
|
38
|
+
type: "installation.update-available";
|
|
39
|
+
properties: {
|
|
40
|
+
version: string;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
43
|
export type EventServerInstanceDisposed = {
|
|
44
44
|
type: "server.instance.disposed";
|
|
45
45
|
properties: {
|
|
@@ -817,7 +817,7 @@ export type EventSessionDeleted = {
|
|
|
817
817
|
info: Session;
|
|
818
818
|
};
|
|
819
819
|
};
|
|
820
|
-
export type Event =
|
|
820
|
+
export type Event = EventProjectUpdated | EventInstallationUpdated | EventInstallationUpdateAvailable | EventServerInstanceDisposed | EventServerConnected | EventGlobalDisposed | EventLspClientDiagnostics | EventLspUpdated | EventMessagePartDelta | EventPermissionAsked | EventPermissionReplied | EventSessionStatus | EventSessionIdle | EventQuestionAsked | EventQuestionReplied | EventQuestionRejected | EventSessionCompacted | EventFileEdited | EventFileWatcherUpdated | EventTodoUpdated | EventTuiPromptAppend | EventTuiCommandExecute | EventTuiToastShow | EventTuiSessionSelect | EventMcpToolsChanged | EventMcpBrowserOpenFailed | EventCommandExecuted | EventSessionDiff | EventSessionError | EventVcsBranchUpdated | EventWorkspaceReady | EventWorkspaceFailed | EventPtyCreated | EventPtyUpdated | EventPtyExited | EventPtyDeleted | EventWorktreeReady | EventWorktreeFailed | EventMessageUpdated | EventMessageRemoved | EventMessagePartUpdated | EventMessagePartRemoved | EventSessionCreated | EventSessionUpdated | EventSessionDeleted;
|
|
821
821
|
export type GlobalEvent = {
|
|
822
822
|
directory: string;
|
|
823
823
|
payload: Event;
|