@block52/poker-vm-sdk 1.1.5 → 1.1.6

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;
package/dist/index.esm.js CHANGED
@@ -55728,6 +55728,7 @@ var PlayerActionType;
55728
55728
  })(PlayerActionType || (PlayerActionType = {}));
55729
55729
  var NonPlayerActionType;
55730
55730
  (function (NonPlayerActionType) {
55731
+ NonPlayerActionType["DEAD_SMALL_BLIND"] = "dead-small-blind";
55731
55732
  NonPlayerActionType["DEAL"] = "deal";
55732
55733
  NonPlayerActionType["JOIN"] = "join";
55733
55734
  NonPlayerActionType["LEAVE"] = "leave";