wip
This commit is contained in:
@@ -159,6 +159,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/drivers/{driverId}/liveries": {
|
||||
"get": {
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/drivers/{driverId}/profile": {
|
||||
"get": {
|
||||
"responses": {
|
||||
@@ -175,22 +184,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/drivers/{driverId}/liveries": {
|
||||
"get": {
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "List of driver liveries",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/GetDriverLiveriesOutputDTO"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/drivers/{driverId}/races/{raceId}/registration-status": {
|
||||
"get": {
|
||||
"responses": {
|
||||
@@ -245,6 +238,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/leagues/{leagueId}": {
|
||||
"get": {
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/leagues/{leagueId}/admin": {
|
||||
"get": {
|
||||
"responses": {
|
||||
@@ -540,6 +542,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/leagues/all": {
|
||||
"get": {
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/leagues/all-with-capacity": {
|
||||
"get": {
|
||||
"responses": {
|
||||
@@ -558,6 +569,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/leagues/available": {
|
||||
"get": {
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/leagues/scoring-presets": {
|
||||
"get": {
|
||||
"responses": {
|
||||
@@ -716,6 +736,33 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/notifications/all": {
|
||||
"get": {
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/notifications/read/{notificationId}": {
|
||||
"post": {
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/notifications/unread": {
|
||||
"get": {
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/payments": {
|
||||
"get": {
|
||||
"responses": {
|
||||
@@ -1161,6 +1208,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/teams/{teamId}/join": {
|
||||
"post": {
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/teams/{teamId}/join-requests": {
|
||||
"get": {
|
||||
"responses": {
|
||||
@@ -2842,6 +2898,20 @@
|
||||
"totalLeagues"
|
||||
]
|
||||
},
|
||||
"GetDriverLiveriesOutputDTO": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"liveries": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/LiveryDTO"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"liveries"
|
||||
]
|
||||
},
|
||||
"GetDriverOutputDTO": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -6024,6 +6094,9 @@
|
||||
"displayName": {
|
||||
"type": "string"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"iracingCustomerId": {
|
||||
"type": "string"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user