@arkadiuminc/sdk 2.33.1 → 2.34.1

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.
@@ -10,8 +10,10 @@ export declare enum LifecycleEvent {
10
10
  GAME_PAUSE = 7,
11
11
  GAME_RESUME = 8,
12
12
  GEMS_UPDATE = 9,
13
- AD_INTERSTITIAL_SHOWN = 10,
14
- AD_REWARDED_SHOWN = 11
13
+ AD_INTERSTITIAL_REQUESTED = 10,
14
+ AD_INTERSTITIAL_SHOWN = 11,
15
+ AD_REWARDED_REQUESTED = 12,
16
+ AD_REWARDED_SHOWN = 13
15
17
  }
16
18
  declare type LifecycleFn = (event: LifecycleEvent, payload?: any) => void;
17
19
  /** @hidden */
@@ -0,0 +1 @@
1
+ export declare function callPromiseWithTimeoutAndRetry(promiseFn: any, timeout?: number, retries?: number, delay?: number): Promise<unknown>;
@@ -54,7 +54,6 @@ export declare class GameApi {
54
54
  static version: string;
55
55
  private static sdk;
56
56
  private static envDiscoverer;
57
- static onGameSDKLoaded(): Promise<void>;
58
57
  static getInstance(): Promise<ArkadiumGameSdk>;
59
58
  static setEnvDiscoverer(d: EnvDiscoverer): void;
60
59
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arkadiuminc/sdk",
3
- "version": "2.33.1",
3
+ "version": "2.34.1",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "main": "dist/pkg/arkadium-sdk.umd.js",