@bprotsyk/aso-core 2.1.102 → 2.1.104
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 +9 -1
- package/lib/app/app.js +1 -0
- package/package.json +1 -1
- package/src/app/app.ts +11 -1
package/lib/app/app.d.ts
CHANGED
|
@@ -46,7 +46,8 @@ export declare enum EPlatform {
|
|
|
46
46
|
XIAOMI = "xm",
|
|
47
47
|
APKPURE = "ap",
|
|
48
48
|
TELEGRAM = "tg",
|
|
49
|
-
AMAZON = "am"
|
|
49
|
+
AMAZON = "am",
|
|
50
|
+
TEST = "test"
|
|
50
51
|
}
|
|
51
52
|
export declare enum EDirectType {
|
|
52
53
|
KEITARO_OFFER = "keitaroOffer",
|
|
@@ -166,6 +167,12 @@ export declare enum IntegrationVersion {
|
|
|
166
167
|
BANNER = "BANNER",
|
|
167
168
|
PWA = "PWA"
|
|
168
169
|
}
|
|
170
|
+
export interface IKeitaroDirectTrackingParams {
|
|
171
|
+
naming: string;
|
|
172
|
+
bundle_id: string;
|
|
173
|
+
advertising_id: string;
|
|
174
|
+
appsflyer_device_id: string;
|
|
175
|
+
}
|
|
169
176
|
export interface IAppKeitaroData {
|
|
170
177
|
trackingCampaignId: number;
|
|
171
178
|
trackingCampaignName: string;
|
|
@@ -173,6 +180,7 @@ export interface IAppKeitaroData {
|
|
|
173
180
|
trackingDomainId: number;
|
|
174
181
|
trackingDomainName: string;
|
|
175
182
|
campingToken?: string;
|
|
183
|
+
trackingParams?: IKeitaroDirectTrackingParams;
|
|
176
184
|
}
|
|
177
185
|
export declare enum PlugType {
|
|
178
186
|
PASTEBIN = "PASTEBIN",
|
package/lib/app/app.js
CHANGED
package/package.json
CHANGED
package/src/app/app.ts
CHANGED
|
@@ -57,7 +57,8 @@ export enum EPlatform {
|
|
|
57
57
|
XIAOMI = 'xm',
|
|
58
58
|
APKPURE = 'ap',
|
|
59
59
|
TELEGRAM = 'tg',
|
|
60
|
-
AMAZON = 'am'
|
|
60
|
+
AMAZON = 'am',
|
|
61
|
+
TEST = 'test'
|
|
61
62
|
}
|
|
62
63
|
|
|
63
64
|
export enum EDirectType{
|
|
@@ -220,6 +221,14 @@ export enum IntegrationVersion {
|
|
|
220
221
|
PWA = "PWA"
|
|
221
222
|
}
|
|
222
223
|
|
|
224
|
+
export interface IKeitaroDirectTrackingParams {
|
|
225
|
+
naming: string,
|
|
226
|
+
bundle_id: string,
|
|
227
|
+
advertising_id: string,
|
|
228
|
+
appsflyer_device_id: string,
|
|
229
|
+
|
|
230
|
+
}
|
|
231
|
+
|
|
223
232
|
export interface IAppKeitaroData {
|
|
224
233
|
trackingCampaignId: number
|
|
225
234
|
trackingCampaignName: string
|
|
@@ -227,6 +236,7 @@ export interface IAppKeitaroData {
|
|
|
227
236
|
trackingDomainId: number
|
|
228
237
|
trackingDomainName: string
|
|
229
238
|
campingToken?: string
|
|
239
|
+
trackingParams?: IKeitaroDirectTrackingParams
|
|
230
240
|
}
|
|
231
241
|
|
|
232
242
|
export enum PlugType {
|