@notix.games/react-bridge 4.0.0 → 4.0.1

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@notix.games/react-bridge",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "Notix Games Bridge Module React Library",
5
5
  "main": "./index.js",
6
6
  "types": "./types/index.d.ts",
@@ -71,7 +71,7 @@ export interface NotixBridgeInstance<FW extends Framework> {
71
71
  createIFrame: (props: FrameworkIFrameParams<FW>) => Promise<Partial<getIframeResult<FW> & BridgeMethodError>>;
72
72
  configure: (params: InitNotixBridgeParams) => void;
73
73
  configureAsync: (params: InitNotixBridgeParams) => Promise<void>;
74
- getGames: (params: GetGamesParams) => Promise<Partial<GamesResponse & BridgeMethodError>>;
74
+ getGames: (params?: GetGamesParams) => Promise<Partial<GamesResponse & BridgeMethodError>>;
75
75
  getIFrameURI: (props: Omit<BaseIFrameParams, 'style'>) => Promise<string>;
76
76
  configured: boolean;
77
77
  }