chore: pass the internal room id and the room id

This commit is contained in:
metamethods 2024-12-31 21:35:58 -08:00
parent b8f271fdb2
commit 26d216d4cb

View File

@ -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;