@ex-machina/opencode-sdk 1.1.25-exmachina.8 → 1.1.28-exmachina.1
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/v2/gen/sdk.gen.d.ts +1 -0
- package/dist/v2/gen/types.gen.d.ts +15 -13
- package/package.json +1 -1
package/dist/v2/gen/sdk.gen.d.ts
CHANGED
|
@@ -73,6 +73,7 @@ export declare class Project extends HeyApiClient {
|
|
|
73
73
|
name?: string;
|
|
74
74
|
icon?: {
|
|
75
75
|
url?: string;
|
|
76
|
+
override?: string;
|
|
76
77
|
color?: string;
|
|
77
78
|
};
|
|
78
79
|
}, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<ProjectUpdateResponses, ProjectUpdateErrors, ThrowOnError, "fields">;
|
|
@@ -20,6 +20,7 @@ export type Project = {
|
|
|
20
20
|
name?: string;
|
|
21
21
|
icon?: {
|
|
22
22
|
url?: string;
|
|
23
|
+
override?: string;
|
|
23
24
|
color?: string;
|
|
24
25
|
};
|
|
25
26
|
time: {
|
|
@@ -39,6 +40,18 @@ export type EventServerInstanceDisposed = {
|
|
|
39
40
|
directory: string;
|
|
40
41
|
};
|
|
41
42
|
};
|
|
43
|
+
export type EventServerConnected = {
|
|
44
|
+
type: "server.connected";
|
|
45
|
+
properties: {
|
|
46
|
+
[key: string]: unknown;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
export type EventGlobalDisposed = {
|
|
50
|
+
type: "global.disposed";
|
|
51
|
+
properties: {
|
|
52
|
+
[key: string]: unknown;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
42
55
|
export type EventLspClientDiagnostics = {
|
|
43
56
|
type: "lsp.client.diagnostics";
|
|
44
57
|
properties: {
|
|
@@ -727,19 +740,7 @@ export type EventPtyDeleted = {
|
|
|
727
740
|
id: string;
|
|
728
741
|
};
|
|
729
742
|
};
|
|
730
|
-
export type
|
|
731
|
-
type: "global.disposed";
|
|
732
|
-
properties: {
|
|
733
|
-
[key: string]: unknown;
|
|
734
|
-
};
|
|
735
|
-
};
|
|
736
|
-
export type EventServerConnected = {
|
|
737
|
-
type: "server.connected";
|
|
738
|
-
properties: {
|
|
739
|
-
[key: string]: unknown;
|
|
740
|
-
};
|
|
741
|
-
};
|
|
742
|
-
export type Event = EventInstallationUpdated | EventInstallationUpdateAvailable | EventProjectUpdated | EventServerInstanceDisposed | EventLspClientDiagnostics | EventLspUpdated | EventFileEdited | EventMessageUpdated | EventMessageRemoved | EventMessagePartUpdated | EventMessagePartRemoved | EventPermissionAsked | EventPermissionReplied | EventSessionStatus | EventSessionIdle | EventQuestionAsked | EventQuestionReplied | EventQuestionRejected | EventSessionCompacted | EventTodoUpdated | EventFileWatcherUpdated | EventTuiPromptAppend | EventTuiCommandExecute | EventTuiToastShow | EventTuiSessionSelect | EventMcpToolsChanged | EventMcpBrowserOpenFailed | EventCommandExecuted | EventSessionCreated | EventSessionUpdated | EventSessionDeleted | EventSessionDiff | EventSessionError | EventVcsBranchUpdated | EventPtyCreated | EventPtyUpdated | EventPtyExited | EventPtyDeleted | EventGlobalDisposed | EventServerConnected;
|
|
743
|
+
export type Event = EventInstallationUpdated | EventInstallationUpdateAvailable | EventProjectUpdated | EventServerInstanceDisposed | EventServerConnected | EventGlobalDisposed | EventLspClientDiagnostics | EventLspUpdated | EventFileEdited | EventMessageUpdated | EventMessageRemoved | EventMessagePartUpdated | EventMessagePartRemoved | EventPermissionAsked | EventPermissionReplied | EventSessionStatus | EventSessionIdle | EventQuestionAsked | EventQuestionReplied | EventQuestionRejected | EventSessionCompacted | EventTodoUpdated | EventFileWatcherUpdated | EventTuiPromptAppend | EventTuiCommandExecute | EventTuiToastShow | EventTuiSessionSelect | EventMcpToolsChanged | EventMcpBrowserOpenFailed | EventCommandExecuted | EventSessionCreated | EventSessionUpdated | EventSessionDeleted | EventSessionDiff | EventSessionError | EventVcsBranchUpdated | EventPtyCreated | EventPtyUpdated | EventPtyExited | EventPtyDeleted;
|
|
743
744
|
export type GlobalEvent = {
|
|
744
745
|
directory: string;
|
|
745
746
|
payload: Event;
|
|
@@ -1978,6 +1979,7 @@ export type ProjectUpdateData = {
|
|
|
1978
1979
|
name?: string;
|
|
1979
1980
|
icon?: {
|
|
1980
1981
|
url?: string;
|
|
1982
|
+
override?: string;
|
|
1981
1983
|
color?: string;
|
|
1982
1984
|
};
|
|
1983
1985
|
};
|