@bprotsyk/aso-core 2.1.5 → 2.1.6

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/lib/app/app.d.ts CHANGED
@@ -39,7 +39,8 @@ export declare enum EPlatform {
39
39
  ruSTORE = "rs",
40
40
  XIAOMI = "xm",
41
41
  APKPURE = "ap",
42
- TELEGRAM = "tg"
42
+ TELEGRAM = "tg",
43
+ AMAZON = "am"
43
44
  }
44
45
  export interface IPlatformParams {
45
46
  enabled: boolean;
package/lib/app/app.js CHANGED
@@ -13,6 +13,7 @@ var EPlatform;
13
13
  EPlatform["XIAOMI"] = "xm";
14
14
  EPlatform["APKPURE"] = "ap";
15
15
  EPlatform["TELEGRAM"] = "tg";
16
+ EPlatform["AMAZON"] = "am";
16
17
  })(EPlatform = exports.EPlatform || (exports.EPlatform = {}));
17
18
  var IntegrationVersion;
18
19
  (function (IntegrationVersion) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.1.5",
3
+ "version": "2.1.6",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
package/src/app/app.ts CHANGED
@@ -47,7 +47,8 @@ export enum EPlatform {
47
47
  ruSTORE = 'rs',
48
48
  XIAOMI = 'xm',
49
49
  APKPURE = 'ap',
50
- TELEGRAM = 'tg'
50
+ TELEGRAM = 'tg',
51
+ AMAZON = 'am'
51
52
  }
52
53
 
53
54
  export interface IPlatformParams {
@@ -68,7 +69,7 @@ export interface IAdjustEventIds {
68
69
  export interface IExternalParams {
69
70
  showButton: boolean,
70
71
  schema: string,
71
- autoRedirect: boolean,
72
+ autoRedirect: boolean
72
73
  }
73
74
 
74
75
  export interface IRemoteServerParams {