@nikcli-ai/sdk 1.138.0 → 1.139.0
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.
|
@@ -926,6 +926,13 @@ export type EventMonitorCompleted = {
|
|
|
926
926
|
wake: boolean;
|
|
927
927
|
};
|
|
928
928
|
};
|
|
929
|
+
export type EventWorkspaceStatus = {
|
|
930
|
+
type: "workspace.status";
|
|
931
|
+
properties: {
|
|
932
|
+
workspaceID: string;
|
|
933
|
+
status: "connecting" | "connected" | "disconnected" | "error";
|
|
934
|
+
};
|
|
935
|
+
};
|
|
929
936
|
export type EventSessionV2Updated = {
|
|
930
937
|
type: "session.v2.updated";
|
|
931
938
|
properties: {
|
|
@@ -984,13 +991,6 @@ export type EventWorkspaceFailed = {
|
|
|
984
991
|
message: string;
|
|
985
992
|
};
|
|
986
993
|
};
|
|
987
|
-
export type EventWorkspaceStatus = {
|
|
988
|
-
type: "workspace.status";
|
|
989
|
-
properties: {
|
|
990
|
-
workspaceID: string;
|
|
991
|
-
status: "connecting" | "connected" | "disconnected" | "error";
|
|
992
|
-
};
|
|
993
|
-
};
|
|
994
994
|
export type EventDelegationCompleted = {
|
|
995
995
|
type: "delegation.completed";
|
|
996
996
|
properties: {
|
|
@@ -1107,7 +1107,7 @@ export type EventMissionAborted = {
|
|
|
1107
1107
|
reason: string;
|
|
1108
1108
|
};
|
|
1109
1109
|
};
|
|
1110
|
-
export type Event = EventProjectUpdated | EventTelemetryRecord | EventServerInstanceDisposed | EventInstallationUpdated | EventInstallationUpdateAvailable | EventServerConnected | EventGlobalDisposed | EventLspClientDiagnostics | EventLspUpdated | EventMessageUpdated | EventMessageRemoved | EventMessagePartUpdated | EventMessagePartRemoved | EventPermissionAsked | EventPermissionReplied | EventSessionCreated | EventSessionUpdated | EventSessionDeleted | EventSessionDiff | EventSessionError | EventFileWatcherUpdated | EventTuiPromptAppend | EventTuiCommandExecute | EventTuiToastShow | EventTuiSessionSelect | EventMcpToolsChanged | EventMcpBrowserOpenFailed | EventCommandExecuted | EventInstanceReloadStarted | EventInstanceReloaded | EventVcsBranchUpdated | EventTodoUpdated | EventSessionStatus | EventSessionIdle | EventQuestionAsked | EventQuestionReplied | EventQuestionRejected | EventSessionCompacted | EventSessionGoal | EventMonitorCreated | EventMonitorUpdated | EventMonitorOutput | EventMonitorCompleted | EventSessionV2Updated | EventPtyCreated | EventPtyUpdated | EventPtyExited | EventPtyDeleted | EventFileEdited | EventWorkspaceReady | EventWorkspaceFailed |
|
|
1110
|
+
export type Event = EventProjectUpdated | EventTelemetryRecord | EventServerInstanceDisposed | EventInstallationUpdated | EventInstallationUpdateAvailable | EventServerConnected | EventGlobalDisposed | EventLspClientDiagnostics | EventLspUpdated | EventMessageUpdated | EventMessageRemoved | EventMessagePartUpdated | EventMessagePartRemoved | EventPermissionAsked | EventPermissionReplied | EventSessionCreated | EventSessionUpdated | EventSessionDeleted | EventSessionDiff | EventSessionError | EventFileWatcherUpdated | EventTuiPromptAppend | EventTuiCommandExecute | EventTuiToastShow | EventTuiSessionSelect | EventMcpToolsChanged | EventMcpBrowserOpenFailed | EventCommandExecuted | EventInstanceReloadStarted | EventInstanceReloaded | EventVcsBranchUpdated | EventTodoUpdated | EventSessionStatus | EventSessionIdle | EventQuestionAsked | EventQuestionReplied | EventQuestionRejected | EventSessionCompacted | EventSessionGoal | EventMonitorCreated | EventMonitorUpdated | EventMonitorOutput | EventMonitorCompleted | EventWorkspaceStatus | EventSessionV2Updated | EventPtyCreated | EventPtyUpdated | EventPtyExited | EventPtyDeleted | EventFileEdited | EventWorkspaceReady | EventWorkspaceFailed | EventDelegationCompleted | EventLoopUpserted | EventLoopRemoved | EventLoopRunStarted | EventLoopRunFinished | EventLoopRuntimeChanged | EventLoopAborted | EventMissionUpserted | EventMissionRemoved | EventMissionStarted | EventMissionFinished | EventMissionExecStarted | EventMissionExecFinished | EventMissionRuntimeChanged | EventMissionAborted;
|
|
1111
1111
|
export type GlobalEvent = {
|
|
1112
1112
|
directory: string;
|
|
1113
1113
|
payload: Event;
|