@block52/poker-vm-sdk 1.1.5 → 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
@@ -45209,6 +45209,7 @@ declare enum PlayerActionType {
45209
45209
  SHOW = "show"
45210
45210
  }
45211
45211
  declare enum NonPlayerActionType {
45212
+ DEAD_SMALL_BLIND = "dead-small-blind",
45212
45213
  DEAL = "deal",
45213
45214
  JOIN = "join",
45214
45215
  LEAVE = "leave",
@@ -45218,6 +45219,7 @@ declare enum NonPlayerActionType {
45218
45219
  TOP_UP = "top-up"
45219
45220
  }
45220
45221
  declare const AllPlayerActions: {
45222
+ DEAD_SMALL_BLIND: NonPlayerActionType.DEAD_SMALL_BLIND;
45221
45223
  DEAL: NonPlayerActionType.DEAL;
45222
45224
  JOIN: NonPlayerActionType.JOIN;
45223
45225
  LEAVE: NonPlayerActionType.LEAVE;
@@ -45469,10 +45471,11 @@ type GameOptionsResponse = {
45469
45471
  */
45470
45472
  type GameListItem = {
45471
45473
  gameId: string;
45472
- creator?: string;
45474
+ creator: string;
45473
45475
  format: GameFormat;
45474
45476
  variant: GameVariant;
45475
45477
  gameOptions: GameOptionsDTO;
45478
+ currentPlayers: number;
45476
45479
  createdAt?: string;
45477
45480
  updatedAt?: string;
45478
45481
  };