@kalamba/sdk 0.27.0 → 0.30.0
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 +1 -2
- package/dist/plugins.cjs +243 -1
- package/dist/plugins.d.ts +2 -4
- package/dist/plugins.js +4337 -1257
- package/dist/wrapper.cjs +1 -1
- package/dist/wrapper.d.ts +1 -2
- package/dist/wrapper.js +6 -2
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -532,7 +532,6 @@ export declare type SdkOnlyMessagePayloadMap = {
|
|
|
532
532
|
|
|
533
533
|
export declare type Settings = {
|
|
534
534
|
fastPlay?: boolean;
|
|
535
|
-
fastPlaySpeed?: number;
|
|
536
535
|
sounds?: boolean;
|
|
537
536
|
music?: boolean;
|
|
538
537
|
};
|
|
@@ -546,7 +545,7 @@ export declare class TimeoutError extends Error {
|
|
|
546
545
|
}
|
|
547
546
|
|
|
548
547
|
export declare type ToCasinoPluginsForwardedMessageMap = {
|
|
549
|
-
sdk: Pick<SdkOnlyMessagePayloadMap, 'autoplay' | 'balance' | 'bet' | 'cashier' | 'choice' | 'close' | 'error' | 'history' | 'loadEnd' | 'loadProgress' | 'loadStart' | 'openGame' | 'play' | 'playCycleEnd' | 'playCycleStart' | 'playEnd' | 'playReady' | 'playStart' | 'settings'>;
|
|
548
|
+
sdk: Pick<SdkOnlyMessagePayloadMap, 'autoplay' | 'balance' | 'bet' | 'cashier' | 'choice' | 'close' | 'configure' | 'error' | 'history' | 'loadEnd' | 'loadProgress' | 'loadStart' | 'openGame' | 'play' | 'playCycleEnd' | 'playCycleStart' | 'playEnd' | 'playReady' | 'playStart' | 'settings' | 'fullscreen'>;
|
|
550
549
|
casino: undefined;
|
|
551
550
|
rgs: Pick<RgsOnlyMessagePayloadMap, 'playResponse' | 'playError' | 'openGameResponse'>;
|
|
552
551
|
telemetry: undefined;
|