@ericsanchezok/synergy-sdk 2.2.0 → 2.2.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/gen/types.gen.d.ts +48 -48
- package/package.json +1 -1
package/dist/gen/types.gen.d.ts
CHANGED
|
@@ -1939,9 +1939,9 @@ export type Config = {
|
|
|
1939
1939
|
layout?: LayoutConfig;
|
|
1940
1940
|
permission?: PermissionConfig;
|
|
1941
1941
|
/**
|
|
1942
|
-
*
|
|
1942
|
+
* Use the Smart allow internal agent to auto-allow safe asks and soft denies
|
|
1943
1943
|
*/
|
|
1944
|
-
|
|
1944
|
+
smartAllow?: boolean;
|
|
1945
1945
|
tools?: {
|
|
1946
1946
|
[key: string]: boolean;
|
|
1947
1947
|
};
|
|
@@ -4023,35 +4023,44 @@ export type EventVcsBranchUpdated = {
|
|
|
4023
4023
|
branch?: string;
|
|
4024
4024
|
};
|
|
4025
4025
|
};
|
|
4026
|
-
export type
|
|
4027
|
-
type: "
|
|
4028
|
-
properties:
|
|
4026
|
+
export type EventMessageUpdated = {
|
|
4027
|
+
type: "message.updated";
|
|
4028
|
+
properties: {
|
|
4029
|
+
info: Message;
|
|
4030
|
+
};
|
|
4029
4031
|
};
|
|
4030
|
-
export type
|
|
4031
|
-
type: "
|
|
4032
|
+
export type EventMessageRemoved = {
|
|
4033
|
+
type: "message.removed";
|
|
4032
4034
|
properties: {
|
|
4033
4035
|
sessionID: string;
|
|
4034
|
-
|
|
4035
|
-
reply: "once" | "session" | "always" | "reject";
|
|
4036
|
+
messageID: string;
|
|
4036
4037
|
};
|
|
4037
4038
|
};
|
|
4038
|
-
export type
|
|
4039
|
-
type: "
|
|
4039
|
+
export type EventMessagePartUpdated = {
|
|
4040
|
+
type: "message.part.updated";
|
|
4040
4041
|
properties: {
|
|
4041
|
-
|
|
4042
|
+
part: Part;
|
|
4043
|
+
delta?: string;
|
|
4042
4044
|
};
|
|
4043
4045
|
};
|
|
4044
|
-
export type
|
|
4045
|
-
type: "
|
|
4046
|
+
export type EventMessagePartRemoved = {
|
|
4047
|
+
type: "message.part.removed";
|
|
4046
4048
|
properties: {
|
|
4047
|
-
|
|
4049
|
+
sessionID: string;
|
|
4050
|
+
messageID: string;
|
|
4051
|
+
partID: string;
|
|
4048
4052
|
};
|
|
4049
4053
|
};
|
|
4050
|
-
export type
|
|
4051
|
-
type: "
|
|
4054
|
+
export type EventPermissionAsked = {
|
|
4055
|
+
type: "permission.asked";
|
|
4056
|
+
properties: PermissionRequest;
|
|
4057
|
+
};
|
|
4058
|
+
export type EventPermissionReplied = {
|
|
4059
|
+
type: "permission.replied";
|
|
4052
4060
|
properties: {
|
|
4053
|
-
|
|
4054
|
-
|
|
4061
|
+
sessionID: string;
|
|
4062
|
+
requestID: string;
|
|
4063
|
+
reply: "once" | "session" | "always" | "reject";
|
|
4055
4064
|
};
|
|
4056
4065
|
};
|
|
4057
4066
|
export type EventSessionUpdated = {
|
|
@@ -4093,6 +4102,25 @@ export type EventSessionIdle = {
|
|
|
4093
4102
|
sessionID: string;
|
|
4094
4103
|
};
|
|
4095
4104
|
};
|
|
4105
|
+
export type EventNoteCreated = {
|
|
4106
|
+
type: "note.created";
|
|
4107
|
+
properties: {
|
|
4108
|
+
note: NoteInfo;
|
|
4109
|
+
};
|
|
4110
|
+
};
|
|
4111
|
+
export type EventNoteUpdated = {
|
|
4112
|
+
type: "note.updated";
|
|
4113
|
+
properties: {
|
|
4114
|
+
note: NoteInfo;
|
|
4115
|
+
};
|
|
4116
|
+
};
|
|
4117
|
+
export type EventNoteDeleted = {
|
|
4118
|
+
type: "note.deleted";
|
|
4119
|
+
properties: {
|
|
4120
|
+
id: string;
|
|
4121
|
+
scopeID: string;
|
|
4122
|
+
};
|
|
4123
|
+
};
|
|
4096
4124
|
export type EventQuestionAsked = {
|
|
4097
4125
|
type: "question.asked";
|
|
4098
4126
|
properties: QuestionRequest;
|
|
@@ -4127,34 +4155,6 @@ export type EventRuntimeReloaded = {
|
|
|
4127
4155
|
changedFields: Array<string>;
|
|
4128
4156
|
};
|
|
4129
4157
|
};
|
|
4130
|
-
export type EventMessageUpdated = {
|
|
4131
|
-
type: "message.updated";
|
|
4132
|
-
properties: {
|
|
4133
|
-
info: Message;
|
|
4134
|
-
};
|
|
4135
|
-
};
|
|
4136
|
-
export type EventMessageRemoved = {
|
|
4137
|
-
type: "message.removed";
|
|
4138
|
-
properties: {
|
|
4139
|
-
sessionID: string;
|
|
4140
|
-
messageID: string;
|
|
4141
|
-
};
|
|
4142
|
-
};
|
|
4143
|
-
export type EventMessagePartUpdated = {
|
|
4144
|
-
type: "message.part.updated";
|
|
4145
|
-
properties: {
|
|
4146
|
-
part: Part;
|
|
4147
|
-
delta?: string;
|
|
4148
|
-
};
|
|
4149
|
-
};
|
|
4150
|
-
export type EventMessagePartRemoved = {
|
|
4151
|
-
type: "message.part.removed";
|
|
4152
|
-
properties: {
|
|
4153
|
-
sessionID: string;
|
|
4154
|
-
messageID: string;
|
|
4155
|
-
partID: string;
|
|
4156
|
-
};
|
|
4157
|
-
};
|
|
4158
4158
|
export type EventDagUpdated = {
|
|
4159
4159
|
type: "dag.updated";
|
|
4160
4160
|
properties: {
|
|
@@ -4366,7 +4366,7 @@ export type EventGlobalDisposed = {
|
|
|
4366
4366
|
[key: string]: unknown;
|
|
4367
4367
|
};
|
|
4368
4368
|
};
|
|
4369
|
-
export type Event = EventScopeUpdated | EventScopeRemoved | EventScopeRuntimeDisposed | EventInstallationUpdated | EventInstallationUpdateAvailable | EventConfigUpdated | EventMcpToolsChanged | EventMcpPromptsChanged | EventMcpResourcesChanged | EventMcpReady | EventMcpFailed | EventCommandExecuted | EventFileEdited | EventFileWatcherUpdated | EventLspClientDiagnostics | EventLspUpdated | EventVcsBranchUpdated |
|
|
4369
|
+
export type Event = EventScopeUpdated | EventScopeRemoved | EventScopeRuntimeDisposed | EventInstallationUpdated | EventInstallationUpdateAvailable | EventConfigUpdated | EventMcpToolsChanged | EventMcpPromptsChanged | EventMcpResourcesChanged | EventMcpReady | EventMcpFailed | EventCommandExecuted | EventFileEdited | EventFileWatcherUpdated | EventLspClientDiagnostics | EventLspUpdated | EventVcsBranchUpdated | EventMessageUpdated | EventMessageRemoved | EventMessagePartUpdated | EventMessagePartRemoved | EventPermissionAsked | EventPermissionReplied | EventSessionUpdated | EventSessionDeleted | EventSessionDiff | EventSessionError | EventSessionStatus | EventSessionIdle | EventNoteCreated | EventNoteUpdated | EventNoteDeleted | EventQuestionAsked | EventQuestionReplied | EventQuestionRejected | EventQuestionTimedOut | EventRuntimeReloaded | EventDagUpdated | EventTodoUpdated | EventBlueprintLoopCreated | EventBlueprintLoopUpdated | EventBlueprintLoopCompleted | EventBlueprintLoopFailed | EventBlueprintLoopCancelled | EventBlueprintLoopAuditing | EventBlueprintLoopRestarted | EventSessionCompacted | EventAgendaItemCreated | EventAgendaItemUpdated | EventAgendaItemDeleted | EventCortexTaskCreated | EventCortexTaskCompleted | EventCortexTasksUpdated | EventPtyCreated | EventPtyUpdated | EventPtyExited | EventPtyDeleted | EventChannelCommandExecuted | EventChannelConnected | EventChannelDisconnected | EventChannelMessageReceived | EventHolosContactAdded | EventHolosContactRemoved | EventHolosContactUpdated | EventHolosConnected | EventHolosConnectionStatusChanged | EventHolosPresence | EventServerConnected | EventGlobalDisposed;
|
|
4370
4370
|
export type GlobalHealthData = {
|
|
4371
4371
|
body?: never;
|
|
4372
4372
|
path?: never;
|