@block52/poker-vm-sdk 1.1.6 → 1.1.8

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
@@ -45424,6 +45424,8 @@ type TexasHoldemStateDTO = {
45424
45424
  round: TexasHoldemRound;
45425
45425
  winners: WinnerDTO[];
45426
45426
  results: ResultDTO[];
45427
+ legalActions: LegalActionDTO[];
45428
+ availableSeats: number[];
45427
45429
  signature: string;
45428
45430
  };
45429
45431
  /**
@@ -45471,10 +45473,11 @@ type GameOptionsResponse = {
45471
45473
  */
45472
45474
  type GameListItem = {
45473
45475
  gameId: string;
45474
- creator?: string;
45476
+ creator: string;
45475
45477
  format: GameFormat;
45476
45478
  variant: GameVariant;
45477
45479
  gameOptions: GameOptionsDTO;
45480
+ currentPlayers: number;
45478
45481
  createdAt?: string;
45479
45482
  updatedAt?: string;
45480
45483
  };