@block52/poker-vm-sdk 1.1.16 → 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 +7 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/game.d.ts +6 -0
- package/dist/types/game.d.ts.map +1 -1
- package/dist/types/rpc.d.ts +1 -1
- package/dist/types/rpc.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
|
/**
|
|
@@ -45339,6 +45341,10 @@ type GameOptionsDTO = {
|
|
|
45339
45341
|
rake?: RakeConfigDTO;
|
|
45340
45342
|
startingStack?: string;
|
|
45341
45343
|
blindLevelDuration?: number;
|
|
45344
|
+
blindLevel?: number;
|
|
45345
|
+
nextSmallBlind?: string;
|
|
45346
|
+
nextBigBlind?: string;
|
|
45347
|
+
levelStartTime?: number;
|
|
45342
45348
|
otherOptions?: Record<string, any>;
|
|
45343
45349
|
};
|
|
45344
45350
|
type ActionDTO = {
|
|
@@ -45659,7 +45665,7 @@ type RPCRequestParams = {
|
|
|
45659
45665
|
[RPCMethods.MINT]: [string];
|
|
45660
45666
|
[RPCMethods.NEW_HAND]: [string, string, number, string];
|
|
45661
45667
|
[RPCMethods.NEW_TABLE]: [string, string, number];
|
|
45662
|
-
[RPCMethods.PERFORM_ACTION]: [string, string, string, string | null, number, string, string, string];
|
|
45668
|
+
[RPCMethods.PERFORM_ACTION]: [string, string, string, string | null, number, string, string, string, number?, string?];
|
|
45663
45669
|
[RPCMethods.PURGE]: [string, string];
|
|
45664
45670
|
[RPCMethods.RESET_BLOCKCHAIN]: [string, string];
|
|
45665
45671
|
[RPCMethods.SHUTDOWN]: [string, string];
|