@bprotsyk/aso-core 2.1.66 → 2.1.67

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
@@ -68,6 +68,11 @@ export interface IPlatformParams {
68
68
  appId: number;
69
69
  postApiKey: string;
70
70
  };
71
+ appsflyerParams?: {
72
+ devKey: string;
73
+ appId?: string;
74
+ eventIds?: Record<string, string>;
75
+ };
71
76
  proxied?: boolean;
72
77
  keitaroData?: IAppKeitaroData | boolean;
73
78
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.1.66",
3
+ "version": "2.1.67",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
package/src/app/app.ts CHANGED
@@ -104,6 +104,11 @@ export interface IPlatformParams {
104
104
  appId: number,
105
105
  postApiKey: string,
106
106
  },
107
+ appsflyerParams? :{
108
+ devKey: string,
109
+ appId?: string,
110
+ eventIds?: Record<string, string>,
111
+ },
107
112
  proxied?: boolean,
108
113
  keitaroData?: IAppKeitaroData | boolean
109
114
  }