Skip to content
This repository was archived by the owner on Aug 1, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,8 @@ interface CodyAgentServer {
fun graphql_getRepoIds(params: Graphql_GetRepoIdsParams): CompletableFuture<Graphql_GetRepoIdsResult>
@JsonRequest("graphql/currentUserId")
fun graphql_currentUserId(params: Null?): CompletableFuture<String>
@JsonRequest("graphql/currentUserIsPro")
fun graphql_currentUserIsPro(params: Null?): CompletableFuture<Boolean>
@JsonRequest("featureFlags/getFeatureFlag")
fun featureFlags_getFeatureFlag(params: FeatureFlags_GetFeatureFlagParams): CompletableFuture<Boolean?>
@JsonRequest("graphql/getCurrentUserCodySubscription")
fun graphql_getCurrentUserCodySubscription(params: Null?): CompletableFuture<CurrentUserCodySubscription?>
@JsonRequest("telemetry/recordEvent")
fun telemetry_recordEvent(params: TelemetryEvent): CompletableFuture<Null?>
@JsonRequest("graphql/getRepoIdIfEmbeddingExists")
Expand Down

This file was deleted.

13 changes: 0 additions & 13 deletions agent/protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,28 +149,15 @@ shutdown: [null, null]

```ts
'graphql/currentUserId': [null, string]
```
<h2 id="graphql_currentUserIsPro"><a href="#graphql_currentUserIsPro" name="graphql_currentUserIsPro"><code>graphql/currentUserIsPro</code> (<img class="emoji" title=":arrow_right:" alt=":arrow_right:" src="https://github.githubassets.com/images/icons/emoji/unicode/27a1.png" height="20" width="20">)</a></h2>
<p>Request sent from the client to client server.</p>


```ts
'graphql/currentUserIsPro': [null, boolean]
```
<h2 id="featureFlags_getFeatureFlag"><a href="#featureFlags_getFeatureFlag" name="featureFlags_getFeatureFlag"><code>featureFlags/getFeatureFlag</code> (<img class="emoji" title=":arrow_right:" alt=":arrow_right:" src="https://github.githubassets.com/images/icons/emoji/unicode/27a1.png" height="20" width="20">)</a></h2>
<p>Request sent from the client to client server.</p>


```ts
'featureFlags/getFeatureFlag': [{ flagName: string; }, boolean | null]
```
<h2 id="graphql_getCurrentUserCodySubscription"><a href="#graphql_getCurrentUserCodySubscription" name="graphql_getCurrentUserCodySubscription"><code>graphql/getCurrentUserCodySubscription</code> (<img class="emoji" title=":arrow_right:" alt=":arrow_right:" src="https://github.githubassets.com/images/icons/emoji/unicode/27a1.png" height="20" width="20">)</a></h2>
<p>Request sent from the client to client server.</p>


```ts
'graphql/getCurrentUserCodySubscription': [null, CurrentUserCodySubscription | null]
```
<h2 id="telemetry_recordEvent"><a href="#telemetry_recordEvent" name="telemetry_recordEvent"><code>telemetry/recordEvent</code> (<img class="emoji" title=":arrow_right:" alt=":arrow_right:" src="https://github.githubassets.com/images/icons/emoji/unicode/27a1.png" height="20" width="20">)</a></h2>
<p>Request sent from the client to client server.</p>
<p>Description: Record telemetry events.</p>
Expand Down
Loading
Loading