@bprotsyk/aso-core 2.1.102 → 2.1.103

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
@@ -166,6 +166,12 @@ export declare enum IntegrationVersion {
166
166
  BANNER = "BANNER",
167
167
  PWA = "PWA"
168
168
  }
169
+ export interface IKeitaroDirectTrackingParams {
170
+ naming: string;
171
+ bundle_id: string;
172
+ advertising_id: string;
173
+ appsflyer_device_id: string;
174
+ }
169
175
  export interface IAppKeitaroData {
170
176
  trackingCampaignId: number;
171
177
  trackingCampaignName: string;
@@ -173,6 +179,7 @@ export interface IAppKeitaroData {
173
179
  trackingDomainId: number;
174
180
  trackingDomainName: string;
175
181
  campingToken?: string;
182
+ trackingParams?: IKeitaroDirectTrackingParams;
176
183
  }
177
184
  export declare enum PlugType {
178
185
  PASTEBIN = "PASTEBIN",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.1.102",
3
+ "version": "2.1.103",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
package/src/app/app.ts CHANGED
@@ -220,6 +220,14 @@ export enum IntegrationVersion {
220
220
  PWA = "PWA"
221
221
  }
222
222
 
223
+ export interface IKeitaroDirectTrackingParams {
224
+ naming: string,
225
+ bundle_id: string,
226
+ advertising_id: string,
227
+ appsflyer_device_id: string,
228
+
229
+ }
230
+
223
231
  export interface IAppKeitaroData {
224
232
  trackingCampaignId: number
225
233
  trackingCampaignName: string
@@ -227,6 +235,7 @@ export interface IAppKeitaroData {
227
235
  trackingDomainId: number
228
236
  trackingDomainName: string
229
237
  campingToken?: string
238
+ trackingParams?: IKeitaroDirectTrackingParams
230
239
  }
231
240
 
232
241
  export enum PlugType {