@notix.games/react-bridge 4.4.0 → 4.4.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@notix.games/react-bridge",
3
- "version": "4.4.0",
3
+ "version": "4.4.2",
4
4
  "description": "Notix Games Bridge Module React Library",
5
5
  "main": "./index.js",
6
6
  "types": "./types/index.d.ts",
@@ -1,8 +1,10 @@
1
1
  import { V1GameItemResponse, V1GameListResponse } from './contracts';
2
2
  export * from './contracts';
3
3
  export type GameId = number;
4
+ export type PartnerId = string;
4
5
  export type PlayerId = string;
5
6
  export type NodeId = number;
7
+ export type RequestId = string;
6
8
  export type PlayerCountry = string;
7
9
  export type Language = string;
8
10
  export type ViewType = 'desktop' | 'mobile';