@bprotsyk/aso-core 2.1.86 → 2.1.87

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
  appsflyerParams?: {
74
74
  apiToken: string;
75
75
  eventIds?: Record<string, string>;
76
+ appId?: string;
76
77
  };
77
78
  proxied?: boolean;
78
79
  keitaroData?: IAppKeitaroData | boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.1.86",
3
+ "version": "2.1.87",
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
  appsflyerParams? :{
112
112
  apiToken: string,
113
113
  eventIds?: Record<string, string>,
114
+ appId?: string
114
115
  },
115
116
  proxied?: boolean,
116
117