diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-05 02:27:53 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-05 03:02:18 +0900 |
| commit | 5988360d8cf0fc0028c6db1c82afc1e313ba0513 (patch) | |
| tree | 08b9e5126ff2256c64e097c5bfb1024278e33981 /frontend | |
| parent | 2705f09f5c52b25af07a1d7ccec546de68ff32e9 (diff) | |
| download | iosdc-japan-2024-albatross-5988360d8cf0fc0028c6db1c82afc1e313ba0513.tar.gz iosdc-japan-2024-albatross-5988360d8cf0fc0028c6db1c82afc1e313ba0513.tar.zst iosdc-japan-2024-albatross-5988360d8cf0fc0028c6db1c82afc1e313ba0513.zip | |
feat(backend): return `game_type` in API response
Diffstat (limited to 'frontend')
| -rw-r--r-- | frontend/app/.server/api/schema.d.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/app/.server/api/schema.d.ts b/frontend/app/.server/api/schema.d.ts index 88067a8..62badcf 100644 --- a/frontend/app/.server/api/schema.d.ts +++ b/frontend/app/.server/api/schema.d.ts @@ -96,6 +96,11 @@ export interface components { /** @example 1 */ game_id: number; /** + * @example 1v1 + * @enum {string} + */ + game_type: "1v1" | "multiplayer"; + /** * @example closed * @enum {string} */ |
