From 26d216d4cbcf0e307b2aa6266ed6372ceb837556 Mon Sep 17 00:00:00 2001 From: metamethods Date: Tue, 31 Dec 2024 21:35:58 -0800 Subject: [PATCH] chore: pass the internal room id and the room id --- src/lib/types.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/types.ts b/src/lib/types.ts index f30c67a..094e614 100644 --- a/src/lib/types.ts +++ b/src/lib/types.ts @@ -56,7 +56,8 @@ export interface APIPlayer { } export interface Room { - id: number; + id: string; + roomId: number; createdAt: Date; gameVersion: string; roomBattleRank: number; @@ -66,6 +67,7 @@ export interface Room { } export interface APIRoom { + id: string; userId: string; roomId: number; dataVersion: string;