@block52/poker-vm-sdk 1.1.6 → 1.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -45471,10 +45471,11 @@ type GameOptionsResponse = {
45471
45471
  */
45472
45472
  type GameListItem = {
45473
45473
  gameId: string;
45474
- creator?: string;
45474
+ creator: string;
45475
45475
  format: GameFormat;
45476
45476
  variant: GameVariant;
45477
45477
  gameOptions: GameOptionsDTO;
45478
+ currentPlayers: number;
45478
45479
  createdAt?: string;
45479
45480
  updatedAt?: string;
45480
45481
  };