@block52/poker-vm-sdk 1.1.17 → 1.1.18
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 +3 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/game.d.ts +3 -0
- package/dist/types/game.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -45313,6 +45313,8 @@ type GameOptions = {
|
|
|
45313
45313
|
rake?: RakeConfig$1;
|
|
45314
45314
|
startingStack?: bigint;
|
|
45315
45315
|
blindLevelDuration?: number;
|
|
45316
|
+
blindLevel?: number;
|
|
45317
|
+
levelStartTime?: number;
|
|
45316
45318
|
otherOptions?: Record<string, any>;
|
|
45317
45319
|
};
|
|
45318
45320
|
/**
|
|
@@ -45342,6 +45344,7 @@ type GameOptionsDTO = {
|
|
|
45342
45344
|
blindLevel?: number;
|
|
45343
45345
|
nextSmallBlind?: string;
|
|
45344
45346
|
nextBigBlind?: string;
|
|
45347
|
+
levelStartTime?: number;
|
|
45345
45348
|
otherOptions?: Record<string, any>;
|
|
45346
45349
|
};
|
|
45347
45350
|
type ActionDTO = {
|