@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/plugins.d.ts CHANGED
@@ -104,10 +104,9 @@ declare type ContractPlayPayload = {
104
104
  };
105
105
 
106
106
  export declare class DebuggingPlugin extends CasinoPlugin {
107
+ #private;
107
108
  constructor(...args: ConstructorParameters<typeof CasinoPlugin>);
108
- registerDebugToSdkEvents(): void;
109
109
  registerSdkToDebugEvents(): void;
110
- _send(...args: Parameters<typeof DebuggingPlugin.prototype.send>): ReturnType<typeof DebuggingPlugin.prototype.send>;
111
110
  }
112
111
 
113
112
  declare type Decoder = (data: any) => unknown;
@@ -890,7 +889,6 @@ declare type SdkOnlyMessagePayloadMap = {
890
889
 
891
890
  declare type Settings = {
892
891
  fastPlay?: boolean;
893
- fastPlaySpeed?: number;
894
892
  sounds?: boolean;
895
893
  music?: boolean;
896
894
  };
@@ -915,7 +913,7 @@ export declare abstract class TelemetryPlugin {
915
913
  }
916
914
 
917
915
  declare type ToCasinoPluginsForwardedMessageMap = {
918
- sdk: Pick<SdkOnlyMessagePayloadMap, 'autoplay' | 'balance' | 'bet' | 'cashier' | 'choice' | 'close' | 'error' | 'history' | 'loadEnd' | 'loadProgress' | 'loadStart' | 'openGame' | 'play' | 'playCycleEnd' | 'playCycleStart' | 'playEnd' | 'playReady' | 'playStart' | 'settings'>;
916
+ sdk: Pick<SdkOnlyMessagePayloadMap, 'autoplay' | 'balance' | 'bet' | 'cashier' | 'choice' | 'close' | 'configure' | 'error' | 'history' | 'loadEnd' | 'loadProgress' | 'loadStart' | 'openGame' | 'play' | 'playCycleEnd' | 'playCycleStart' | 'playEnd' | 'playReady' | 'playStart' | 'settings' | 'fullscreen'>;
919
917
  casino: undefined;
920
918
  rgs: Pick<RgsOnlyMessagePayloadMap, 'playResponse' | 'playError' | 'openGameResponse'>;
921
919
  telemetry: undefined;