Skip to content

Commit

Permalink
Update api clients
Browse files Browse the repository at this point in the history
  • Loading branch information
alisman committed Feb 15, 2024
1 parent e0ea405 commit c9509aa
Show file tree
Hide file tree
Showing 4 changed files with 1,006 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5418,6 +5418,36 @@
],
"type": "object"
},
"MutationDataFilter": {
"properties": {
"categorization": {
"enum": [
"MUTATED",
"EVENT"
],
"type": "string"
},
"hugoGeneSymbol": {
"type": "string"
},
"profileType": {
"type": "string"
},
"values": {
"items": {
"items": {
"$ref": "#/definitions/DataFilterValue"
},
"type": "array"
},
"type": "array"
}
},
"required": [
"categorization"
],
"type": "object"
},
"MutationFilter": {
"description": "List of Sample IDs/Sample List ID and Entrez Gene IDs",
"properties": {
Expand Down Expand Up @@ -5926,6 +5956,12 @@
},
"type": "array"
},
"mutationDataFilters": {
"items": {
"$ref": "#/definitions/MutationDataFilter"
},
"type": "array"
},
"patientTreatmentFilters": {
"$ref": "#/definitions/AndedPatientTreatmentFilters"
},
Expand Down
13 changes: 13 additions & 0 deletions packages/cbioportal-ts-api-client/src/generated/CBioPortalAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,17 @@ export type Mutation = {

'variantType': string

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

'hugoGeneSymbol': string

'profileType': string

'values': Array < Array < DataFilterValue >
>

};
export type MutationFilter = {
'entrezGeneIds': Array < number >
Expand Down Expand Up @@ -757,6 +768,8 @@ export type StudyViewFilter = {
'genomicProfiles': Array < Array < string >
>

'mutationDataFilters': Array < MutationDataFilter >

'patientTreatmentFilters': AndedPatientTreatmentFilters

'patientTreatmentGroupFilters': AndedPatientTreatmentFilters
Expand Down
Loading

0 comments on commit c9509aa

Please sign in to comment.