@block52/poker-vm-sdk 1.2.5 → 1.2.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 +2 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/game.d.ts +2 -0
- package/dist/types/game.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -45316,6 +45316,7 @@ type GameOptions = {
|
|
|
45316
45316
|
startingStack?: bigint;
|
|
45317
45317
|
blindLevelDuration?: number;
|
|
45318
45318
|
blindLevel?: number;
|
|
45319
|
+
sngStartTime?: number;
|
|
45319
45320
|
levelStartTime?: number;
|
|
45320
45321
|
otherOptions?: Record<string, any>;
|
|
45321
45322
|
};
|
|
@@ -45346,6 +45347,7 @@ type GameOptionsDTO = {
|
|
|
45346
45347
|
blindLevel?: number;
|
|
45347
45348
|
nextSmallBlind?: string;
|
|
45348
45349
|
nextBigBlind?: string;
|
|
45350
|
+
sngStartTime?: number;
|
|
45349
45351
|
levelStartTime?: number;
|
|
45350
45352
|
otherOptions?: Record<string, any>;
|
|
45351
45353
|
};
|