Skip to content

Commit

Permalink
Update bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
umpox committed Jan 27, 2025
1 parent 6301491 commit d7ffc42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
@file:Suppress("FunctionName", "ClassName", "unused", "EnumEntryName", "UnusedImport")
package com.sourcegraph.cody.agent.protocol_generated;

import com.google.gson.annotations.SerializedName;

data class CodyContextFilterItem(
val repoNamePattern: RepoNamePatternEnum, // Oneof: .*
val repoNamePattern: String,
val filePathPatterns: List<String>? = null,
) {

enum class RepoNamePatternEnum {
@SerializedName(".*") Wildcard,
}
}
)

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
package com.sourcegraph.cody.agent.protocol_generated;

object Constants {
const val Wildcard = ".*"
const val Applied = "Applied"
const val Applying = "Applying"
const val Automatic = "Automatic"
Expand Down

0 comments on commit d7ffc42

Please sign in to comment.