Skip to content

Commit

Permalink
update api clients after change for mutation data filter (#4875)
Browse files Browse the repository at this point in the history
  • Loading branch information
alisman authored Mar 21, 2024
1 parent 92cda0f commit f1f9be7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5423,7 +5423,7 @@
"categorization": {
"enum": [
"MUTATED",
"EVENT"
"MUTATION_TYPE"
],
"type": "string"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ export type Mutation = {

};
export type MutationDataFilter = {
'categorization': "MUTATED" | "EVENT"
'categorization': "MUTATED" | "MUTATION_TYPE"

'hugoGeneSymbol': string

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5233,7 +5233,7 @@
"categorization": {
"enum": [
"MUTATED",
"EVENT"
"MUTATION_TYPE"
],
"type": "string"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ export type MutationCountByPosition = {

};
export type MutationDataFilter = {
'categorization': "MUTATED" | "EVENT"
'categorization': "MUTATED" | "MUTATION_TYPE"

'hugoGeneSymbol': string

Expand Down

0 comments on commit f1f9be7

Please sign in to comment.