Skip to content

Commit

Permalink
Regenerate api clients (#4944)
Browse files Browse the repository at this point in the history
  • Loading branch information
alisman authored Jul 10, 2024
1 parent 301625e commit 34295cc
Show file tree
Hide file tree
Showing 2 changed files with 352 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,41 @@
"operationId": "getClinicalEventTypeCountsUsingPOST"
}
},
"/api/clinical-events-meta/fetch": {
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "clinicalEventAttributeRequest",
"schema": {
"$ref": "#/definitions/ClinicalEventAttributeRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"items": {
"$ref": "#/definitions/ClinicalEvent"
},
"type": "array"
}
}
},
"tags": [
"Clinical Events"
],
"description": "Fetch clinical events meta",
"operationId": "fetchClinicalEventsMetaUsingPOST"
}
},
"/api/cna-genes/fetch": {
"post": {
"consumes": [
Expand Down Expand Up @@ -3219,6 +3254,41 @@
"operationId": "getSignificantlyMutatedGenesUsingGET"
}
},
"/api/survival-data/fetch": {
"post": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"in": "body",
"name": "survivalRequest",
"schema": {
"$ref": "#/definitions/SurvivalRequest"
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"items": {
"$ref": "#/definitions/ClinicalData"
},
"type": "array"
}
}
},
"tags": [
"Survival"
],
"description": "Fetch survival data",
"operationId": "fetchSurvivalDataUsingPOST"
}
},
"/api/timestamps": {
"get": {
"produces": [
Expand Down Expand Up @@ -3958,6 +4028,27 @@
],
"type": "object"
},
"ClinicalEventAttributeRequest": {
"description": "clinical events Request",
"properties": {
"clinicalEventRequests": {
"items": {
"$ref": "#/definitions/ClinicalEventRequest"
},
"type": "array",
"uniqueItems": true
},
"patientIdentifiers": {
"items": {
"$ref": "#/definitions/PatientIdentifier"
},
"maxItems": 10000000,
"minItems": 1,
"type": "array"
}
},
"type": "object"
},
"ClinicalEventData": {
"properties": {
"key": {
Expand All @@ -3973,6 +4064,47 @@
],
"type": "object"
},
"ClinicalEventRequest": {
"properties": {
"attributes": {
"items": {
"$ref": "#/definitions/ClinicalEventData"
},
"type": "array"
},
"eventType": {
"type": "string"
}
},
"required": [
"eventType"
],
"type": "object"
},
"ClinicalEventRequestIdentifier": {
"properties": {
"clinicalEventRequests": {
"items": {
"$ref": "#/definitions/ClinicalEventRequest"
},
"maxItems": 10000000,
"minItems": 0,
"type": "array",
"uniqueItems": true
},
"position": {
"enum": [
"FIRST",
"LAST"
],
"type": "string"
}
},
"required": [
"position"
],
"type": "object"
},
"ClinicalEventSample": {
"properties": {
"patientId": {
Expand Down Expand Up @@ -5464,6 +5596,17 @@
},
"type": "object"
},
"PatientIdentifier": {
"properties": {
"patientId": {
"type": "string"
},
"studyId": {
"type": "string"
}
},
"type": "object"
},
"PatientTreatmentFilter": {
"properties": {
"treatment": {
Expand Down Expand Up @@ -6126,6 +6269,35 @@
},
"type": "object"
},
"SurvivalRequest": {
"description": "Survival Data Request",
"properties": {
"attributeIdPrefix": {
"type": "string"
},
"censoredEventRequestIdentifier": {
"$ref": "#/definitions/ClinicalEventRequestIdentifier"
},
"endEventRequestIdentifier": {
"$ref": "#/definitions/ClinicalEventRequestIdentifier"
},
"patientIdentifiers": {
"items": {
"$ref": "#/definitions/PatientIdentifier"
},
"maxItems": 10000000,
"minItems": 1,
"type": "array"
},
"startEventRequestIdentifier": {
"$ref": "#/definitions/ClinicalEventRequestIdentifier"
}
},
"required": [
"attributeIdPrefix"
],
"type": "object"
},
"VariantCount": {
"properties": {
"entrezGeneId": {
Expand Down
Loading

0 comments on commit 34295cc

Please sign in to comment.