Skip to content

Commit

Permalink
Update protocol files
Browse files Browse the repository at this point in the history
  • Loading branch information
pkukielka committed Aug 6, 2024
1 parent ebe8ac7 commit 71f48f4
Show file tree
Hide file tree
Showing 36 changed files with 84 additions and 1,276 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ interface CodyAgentClient {
// ========
@JsonRequest("window/showMessage")
fun window_showMessage(params: ShowWindowMessageParams): CompletableFuture<String?>
@JsonRequest("window/showSaveDialog")
fun window_showSaveDialog(params: SaveDialogOptionsParams): CompletableFuture<String?>
@JsonRequest("textDocument/edit")
fun textDocument_edit(params: TextDocumentEditParams): CompletableFuture<Boolean>
@JsonRequest("textDocument/openUntitledDocument")
Expand All @@ -41,8 +43,6 @@ interface CodyAgentClient {
fun codeLenses_display(params: DisplayCodeLensParams)
@JsonNotification("ignore/didChange")
fun ignore_didChange(params: Null?)
@JsonNotification("webview/postMessage")
fun webview_postMessage(params: WebviewPostMessageParams)
@JsonNotification("webview/postMessageStringEncoded")
fun webview_postMessageStringEncoded(params: Webview_PostMessageStringEncodedParams)
@JsonNotification("progress/start")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@ interface CodyAgentServer {
fun chat_export(params: Chat_ExportParams?): CompletableFuture<List<ChatExportResult>>
@JsonRequest("chat/remoteRepos")
fun chat_remoteRepos(params: Chat_RemoteReposParams): CompletableFuture<Chat_RemoteReposResult>
@JsonRequest("chat/submitMessage")
fun chat_submitMessage(params: Chat_SubmitMessageParams): CompletableFuture<ExtensionMessage>
@JsonRequest("chat/editMessage")
fun chat_editMessage(params: Chat_EditMessageParams): CompletableFuture<ExtensionMessage>
@JsonRequest("commands/explain")
fun commands_explain(params: Null?): CompletableFuture<String>
@JsonRequest("commands/test")
Expand Down Expand Up @@ -95,8 +91,6 @@ interface CodyAgentServer {
fun git_codebaseName(params: Git_CodebaseNameParams): CompletableFuture<String?>
@JsonRequest("webview/didDispose")
fun webview_didDispose(params: Webview_DidDisposeParams): CompletableFuture<Null?>
@JsonRequest("webview/receiveMessage")
fun webview_receiveMessage(params: Webview_ReceiveMessageParams): CompletableFuture<Null?>
@JsonRequest("webview/receiveMessageStringEncoded")
fun webview_receiveMessageStringEncoded(params: Webview_ReceiveMessageStringEncodedParams): CompletableFuture<Null?>
@JsonRequest("diagnostics/publish")
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 71f48f4

Please sign in to comment.