@bprotsyk/aso-core 2.1.75 → 2.1.76

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
@@ -73,6 +73,7 @@ export interface IPlatformParams {
73
73
  eventIds?: Record<string, string>;
74
74
  };
75
75
  proxied?: boolean;
76
+ ech?: boolean;
76
77
  keitaroData?: IAppKeitaroData | boolean;
77
78
  }
78
79
  export interface IAdjustEventIds {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.1.75",
3
+ "version": "2.1.76",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
package/src/app/app.ts CHANGED
@@ -111,6 +111,7 @@ export interface IPlatformParams {
111
111
  eventIds?: Record<string, string>,
112
112
  },
113
113
  proxied?: boolean,
114
+ ech?: boolean,
114
115
  keitaroData?: IAppKeitaroData | boolean
115
116
  }
116
117