diff options
Diffstat (limited to 'docs/docs.go')
| -rw-r--r-- | docs/docs.go | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/docs/docs.go b/docs/docs.go index 6357150..72a1434 100644 --- a/docs/docs.go +++ b/docs/docs.go | |||
| @@ -1186,29 +1186,21 @@ const docTemplate = `{ | |||
| 1186 | "handlers.ProfileRecords": { | 1186 | "handlers.ProfileRecords": { |
| 1187 | "type": "object", | 1187 | "type": "object", |
| 1188 | "properties": { | 1188 | "properties": { |
| 1189 | "portal2_cooperative": { | 1189 | "category_id": { |
| 1190 | "type": "array", | 1190 | "type": "integer" |
| 1191 | "items": { | 1191 | }, |
| 1192 | "$ref": "#/definitions/handlers.ProfileRecordsDetails" | 1192 | "game_id": { |
| 1193 | } | 1193 | "type": "integer" |
| 1194 | }, | 1194 | }, |
| 1195 | "portal2_singleplayer": { | ||
| 1196 | "type": "array", | ||
| 1197 | "items": { | ||
| 1198 | "$ref": "#/definitions/handlers.ProfileRecordsDetails" | ||
| 1199 | } | ||
| 1200 | } | ||
| 1201 | } | ||
| 1202 | }, | ||
| 1203 | "handlers.ProfileRecordsDetails": { | ||
| 1204 | "type": "object", | ||
| 1205 | "properties": { | ||
| 1206 | "map_id": { | 1195 | "map_id": { |
| 1207 | "type": "integer" | 1196 | "type": "integer" |
| 1208 | }, | 1197 | }, |
| 1209 | "map_name": { | 1198 | "map_name": { |
| 1210 | "type": "string" | 1199 | "type": "string" |
| 1211 | }, | 1200 | }, |
| 1201 | "map_wr_count": { | ||
| 1202 | "type": "integer" | ||
| 1203 | }, | ||
| 1212 | "scores": { | 1204 | "scores": { |
| 1213 | "type": "array", | 1205 | "type": "array", |
| 1214 | "items": { | 1206 | "items": { |
| @@ -1236,7 +1228,10 @@ const docTemplate = `{ | |||
| 1236 | "$ref": "#/definitions/handlers.ProfileRankings" | 1228 | "$ref": "#/definitions/handlers.ProfileRankings" |
| 1237 | }, | 1229 | }, |
| 1238 | "records": { | 1230 | "records": { |
| 1239 | "$ref": "#/definitions/handlers.ProfileRecords" | 1231 | "type": "array", |
| 1232 | "items": { | ||
| 1233 | "$ref": "#/definitions/handlers.ProfileRecords" | ||
| 1234 | } | ||
| 1240 | }, | 1235 | }, |
| 1241 | "steam_id": { | 1236 | "steam_id": { |
| 1242 | "type": "string" | 1237 | "type": "string" |