@bprotsyk/aso-core 2.1.195 → 2.1.196
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 +188 -181
- package/lib/app/app.js +60 -114
- package/lib/general/domain.d.ts +3 -3
- package/lib/index.d.ts +1 -7
- package/lib/index.js +6 -44
- package/lib/keitaro/keitaro-campaign.d.ts +1 -0
- package/lib/network/keitaro/http.js +1 -1
- package/lib/network/keitaro/keitaro-service.d.ts +25 -38
- package/lib/network/keitaro/keitaro-service.js +105 -450
- package/package.json +1 -1
- package/src/app/app.ts +96 -234
- package/src/index.ts +16 -10
- package/src/keitaro/keitaro-campaign.ts +1 -0
- package/src/network/keitaro/http.ts +1 -1
- package/src/network/keitaro/keitaro-service.ts +131 -545
- package/src/keitaro/keitaro-clo-geos.ts +0 -389
- package/src/network/keitaro/traffle/traffle-keitaro-service.ts +0 -1576
- package/src/panel/app/upsert-flash-app-request.ts +0 -36
- package/src/utils/keitaro-utils.ts +0 -853
- package/src/utils/traffle-keitaro-utils.ts +0 -45
package/lib/app/app.d.ts
CHANGED
|
@@ -1,4 +1,29 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="mongoose/types/aggregate" />
|
|
2
|
+
/// <reference types="mongoose/types/callback" />
|
|
3
|
+
/// <reference types="mongoose/types/collection" />
|
|
4
|
+
/// <reference types="mongoose/types/connection" />
|
|
5
|
+
/// <reference types="mongoose/types/cursor" />
|
|
6
|
+
/// <reference types="mongoose/types/document" />
|
|
7
|
+
/// <reference types="mongoose/types/error" />
|
|
8
|
+
/// <reference types="mongoose/types/expressions" />
|
|
9
|
+
/// <reference types="mongoose/types/helpers" />
|
|
10
|
+
/// <reference types="mongoose/types/middlewares" />
|
|
11
|
+
/// <reference types="mongoose/types/indexes" />
|
|
12
|
+
/// <reference types="mongoose/types/models" />
|
|
13
|
+
/// <reference types="mongoose/types/mongooseoptions" />
|
|
14
|
+
/// <reference types="mongoose/types/pipelinestage" />
|
|
15
|
+
/// <reference types="mongoose/types/populate" />
|
|
16
|
+
/// <reference types="mongoose/types/query" />
|
|
17
|
+
/// <reference types="mongoose/types/schemaoptions" />
|
|
18
|
+
/// <reference types="mongoose/types/session" />
|
|
19
|
+
/// <reference types="mongoose/types/types" />
|
|
20
|
+
/// <reference types="mongoose/types/utility" />
|
|
21
|
+
/// <reference types="mongoose/types/validation" />
|
|
22
|
+
/// <reference types="mongoose/types/virtuals" />
|
|
23
|
+
/// <reference types="mongoose/types/schematypes" />
|
|
24
|
+
/// <reference types="mongoose/types/inferschematype" />
|
|
25
|
+
/// <reference types="mongoose/types/inferrawdoctype" />
|
|
26
|
+
import { Document, Schema } from "mongoose";
|
|
2
27
|
export interface IAppsflyerPostback {
|
|
3
28
|
campaign_id: number;
|
|
4
29
|
id: number;
|
|
@@ -7,140 +32,46 @@ export interface IAppsflyerPostback {
|
|
|
7
32
|
url: string;
|
|
8
33
|
notes?: string;
|
|
9
34
|
}
|
|
35
|
+
export declare enum IntegrationType {
|
|
36
|
+
OFFERWALL = "offerwall",
|
|
37
|
+
DIRECT = "direct"
|
|
38
|
+
}
|
|
39
|
+
export declare const OFFERWALL_TEMPLATE_CAMPAIGN_ID = 3497;
|
|
40
|
+
export declare const DIRECT_TEMPLATE_CAMPAIGN_ID = 3499;
|
|
41
|
+
export declare const DEFENCE_CAMPAIGN_ID = 3498;
|
|
42
|
+
export declare const DEFENCE_CAMPAIGN_TOKEN = "hnwtbnwvq5lrvmztxnc78gxgxtk24jq8";
|
|
10
43
|
export interface IApp extends Document {
|
|
11
44
|
id: number;
|
|
12
45
|
enabled: boolean;
|
|
13
46
|
name: string;
|
|
14
47
|
bundle: string;
|
|
15
48
|
status: AppStatus;
|
|
16
|
-
|
|
49
|
+
integrationType: IntegrationType;
|
|
50
|
+
offerwallCampaign: IAppKeitaroData | null;
|
|
51
|
+
directCampaign: IAppKeitaroData | null;
|
|
17
52
|
onesignalAppId: string;
|
|
18
53
|
onesignalRestApiKey: string;
|
|
19
|
-
|
|
20
|
-
appmetricaAppId?: number;
|
|
21
|
-
keitaroData: IAppKeitaroData | null;
|
|
22
|
-
bannerParams?: IBannerParams;
|
|
23
|
-
offersStubParams?: IOffersStubParams;
|
|
24
|
-
offerwallParams?: IOfferwallParams;
|
|
25
|
-
integrationVersion?: IntegrationVersion;
|
|
54
|
+
appsflyerParams?: IAppsflyerParams;
|
|
26
55
|
domainParams: IDomainParams;
|
|
27
|
-
platforms: {
|
|
28
|
-
[key: string]: IPlatformParams;
|
|
29
|
-
};
|
|
30
|
-
ech?: boolean;
|
|
31
56
|
policyPath: string;
|
|
32
57
|
postbacks?: IAppsflyerPostback[];
|
|
33
58
|
}
|
|
34
|
-
export
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
XIAOMI = "xm",
|
|
40
|
-
APKPURE = "ap",
|
|
41
|
-
TELEGRAM = "tg",
|
|
42
|
-
AMAZON = "am",
|
|
43
|
-
TEST = "test"
|
|
44
|
-
}
|
|
45
|
-
export declare enum EDirectType {
|
|
46
|
-
KEITARO_OFFER = "keitaroOffer",
|
|
47
|
-
OFFER_DIRECT = "offerDirect"
|
|
48
|
-
}
|
|
49
|
-
export declare const getPlatformName: (platform: EPlatform | undefined) => string | false;
|
|
50
|
-
export interface IPlatformParams {
|
|
51
|
-
enabled: boolean;
|
|
52
|
-
adjustParams?: {
|
|
53
|
-
appId: string;
|
|
54
|
-
eventIds: IAdjustEventIds;
|
|
55
|
-
};
|
|
56
|
-
direct?: {
|
|
57
|
-
enabled: boolean;
|
|
58
|
-
keitaroData: IAppKeitaroData | boolean;
|
|
59
|
-
directType?: EDirectType;
|
|
60
|
-
addDefaultStreams?: boolean;
|
|
61
|
-
};
|
|
62
|
-
metricaParams?: {
|
|
63
|
-
appId: number;
|
|
64
|
-
postApiKey: string;
|
|
65
|
-
};
|
|
66
|
-
appsflyerParams?: {
|
|
67
|
-
apiToken: string;
|
|
68
|
-
eventIds?: Record<string, string>;
|
|
69
|
-
appId?: string;
|
|
70
|
-
devKey: string;
|
|
71
|
-
};
|
|
72
|
-
proxied?: boolean;
|
|
73
|
-
}
|
|
74
|
-
export interface IAdjustEventIds {
|
|
75
|
-
lead: string;
|
|
76
|
-
hold: string;
|
|
77
|
-
sale: string;
|
|
78
|
-
rejected: string;
|
|
59
|
+
export interface IAppsflyerParams {
|
|
60
|
+
apiToken: string;
|
|
61
|
+
eventIds?: Record<string, string>;
|
|
62
|
+
appId?: string;
|
|
63
|
+
devKey: string;
|
|
79
64
|
}
|
|
80
65
|
export interface IDomainParams {
|
|
81
66
|
name: string;
|
|
82
67
|
clouflareZone: string;
|
|
83
68
|
ready: boolean;
|
|
84
69
|
}
|
|
85
|
-
export interface IBannerParams {
|
|
86
|
-
dataPath: string;
|
|
87
|
-
imagePath: string;
|
|
88
|
-
imageParam: string;
|
|
89
|
-
linkParam: string;
|
|
90
|
-
showStubOnError?: boolean;
|
|
91
|
-
}
|
|
92
|
-
export interface IOffersStubParams {
|
|
93
|
-
offersPath: string;
|
|
94
|
-
imagesPath: string;
|
|
95
|
-
}
|
|
96
|
-
export interface IOfferwallParams {
|
|
97
|
-
path: string;
|
|
98
|
-
version?: number;
|
|
99
|
-
}
|
|
100
70
|
export declare enum AppStatus {
|
|
101
71
|
ARCHIVED = "ARCHIVED",
|
|
102
72
|
IN_DEVELOPMENT = "IN_DEVELOPMENT",
|
|
103
73
|
READY = "READY"
|
|
104
74
|
}
|
|
105
|
-
export interface IRemoveDataParams {
|
|
106
|
-
buttonText: string;
|
|
107
|
-
resultText: string;
|
|
108
|
-
errorText: string;
|
|
109
|
-
inputHint: string;
|
|
110
|
-
dark: boolean;
|
|
111
|
-
path: string;
|
|
112
|
-
callbackFunctionName: string;
|
|
113
|
-
toSplashAfterSuccess: boolean;
|
|
114
|
-
}
|
|
115
|
-
export interface IRemovalInfo {
|
|
116
|
-
reason: string;
|
|
117
|
-
date: number;
|
|
118
|
-
status: string;
|
|
119
|
-
images: string[];
|
|
120
|
-
}
|
|
121
|
-
export interface IPrivacyPolicyParams {
|
|
122
|
-
showButtonQuery: string;
|
|
123
|
-
button?: {
|
|
124
|
-
text: string;
|
|
125
|
-
};
|
|
126
|
-
mustRead: boolean;
|
|
127
|
-
dark: boolean;
|
|
128
|
-
path: string;
|
|
129
|
-
advertisingIdQuery: string;
|
|
130
|
-
confirmFunctionName: string;
|
|
131
|
-
redirectFunctionName: string;
|
|
132
|
-
redirect: boolean;
|
|
133
|
-
}
|
|
134
|
-
export declare enum IntegrationVersion {
|
|
135
|
-
NONE = "MVVM",
|
|
136
|
-
POLICY = "POLICY",
|
|
137
|
-
OFFER_STUB = "OFFER_STUB",
|
|
138
|
-
WEB = "WEB",
|
|
139
|
-
WEB_DIRECT = "WEB_DIRECT",
|
|
140
|
-
BANNER = "BANNER",
|
|
141
|
-
PWA = "PWA",
|
|
142
|
-
OFFERWALL = "OFFERWALL"
|
|
143
|
-
}
|
|
144
75
|
export interface IKeitaroDirectTrackingParams {
|
|
145
76
|
naming: string;
|
|
146
77
|
firebase_app_instance_id: string;
|
|
@@ -161,28 +92,21 @@ export interface IAppKeitaroData {
|
|
|
161
92
|
campingToken?: string;
|
|
162
93
|
trackingParams?: IKeitaroDirectTrackingParams;
|
|
163
94
|
}
|
|
164
|
-
export declare
|
|
165
|
-
PASTEBIN = "PASTEBIN",
|
|
166
|
-
GIST = "GIST",
|
|
167
|
-
OTHER = "OTHER"
|
|
168
|
-
}
|
|
169
|
-
export declare const AppSchema: mongoose.Schema<any, mongoose.Model<any, any, any, any, any, any>, {}, {}, {}, {}, mongoose.DefaultSchemaOptions, {
|
|
95
|
+
export declare const AppSchema: Schema<any, import("mongoose").Model<any, any, any, any, any, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, {
|
|
170
96
|
id: number;
|
|
171
97
|
enabled: boolean;
|
|
172
|
-
ech: boolean;
|
|
173
98
|
status: AppStatus;
|
|
99
|
+
integrationType: IntegrationType;
|
|
174
100
|
bundle: string;
|
|
175
|
-
geos: string[];
|
|
176
|
-
removeInfo: any;
|
|
177
101
|
policyPath: string;
|
|
178
|
-
postbacks: mongoose.Types.DocumentArray<{
|
|
102
|
+
postbacks: import("mongoose").Types.DocumentArray<{
|
|
179
103
|
id: number;
|
|
180
104
|
campaign_id: number;
|
|
181
105
|
method: "GET" | "POST";
|
|
182
106
|
statuses: string[];
|
|
183
107
|
url: string;
|
|
184
108
|
notes?: string | null | undefined;
|
|
185
|
-
}, mongoose.Types.Subdocument<
|
|
109
|
+
}, import("mongoose").Types.Subdocument<import("bson").ObjectId, any, {
|
|
186
110
|
id: number;
|
|
187
111
|
campaign_id: number;
|
|
188
112
|
method: "GET" | "POST";
|
|
@@ -198,45 +122,72 @@ export declare const AppSchema: mongoose.Schema<any, mongoose.Model<any, any, an
|
|
|
198
122
|
notes?: string | null | undefined;
|
|
199
123
|
}>;
|
|
200
124
|
name?: string | null | undefined;
|
|
201
|
-
removeDataParams?: any;
|
|
202
|
-
privacyPolicyParams?: any;
|
|
203
|
-
bannerParams?: any;
|
|
204
|
-
offersStubParams?: any;
|
|
205
|
-
offerwallParams?: any;
|
|
206
|
-
integrationVersion?: string | null | undefined;
|
|
207
|
-
platforms?: any;
|
|
208
125
|
onesignalAppId?: string | null | undefined;
|
|
209
126
|
onesignalRestApiKey?: string | null | undefined;
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
127
|
+
offerwallCampaign?: {
|
|
128
|
+
trackingCampaignId?: number | null | undefined;
|
|
129
|
+
trackingCampaignName?: string | null | undefined;
|
|
130
|
+
trackingCampaignAlias?: string | null | undefined;
|
|
131
|
+
trackingDomainId?: number | null | undefined;
|
|
132
|
+
trackingDomainName?: string | null | undefined;
|
|
133
|
+
campingToken?: string | null | undefined;
|
|
134
|
+
trackingParams?: {
|
|
135
|
+
naming?: string | null | undefined;
|
|
136
|
+
firebase_app_instance_id?: string | null | undefined;
|
|
137
|
+
firebase_user_id?: string | null | undefined;
|
|
138
|
+
firebase_device_language_code?: string | null | undefined;
|
|
139
|
+
firebase_push_token?: string | null | undefined;
|
|
140
|
+
bundle_id?: string | null | undefined;
|
|
141
|
+
advertising_id?: string | null | undefined;
|
|
142
|
+
appsflyer_device_id?: string | null | undefined;
|
|
143
|
+
campaign?: string | null | undefined;
|
|
144
|
+
} | null | undefined;
|
|
145
|
+
} | null | undefined;
|
|
146
|
+
directCampaign?: {
|
|
147
|
+
trackingCampaignId?: number | null | undefined;
|
|
148
|
+
trackingCampaignName?: string | null | undefined;
|
|
149
|
+
trackingCampaignAlias?: string | null | undefined;
|
|
150
|
+
trackingDomainId?: number | null | undefined;
|
|
151
|
+
trackingDomainName?: string | null | undefined;
|
|
152
|
+
campingToken?: string | null | undefined;
|
|
153
|
+
trackingParams?: {
|
|
154
|
+
naming?: string | null | undefined;
|
|
155
|
+
firebase_app_instance_id?: string | null | undefined;
|
|
156
|
+
firebase_user_id?: string | null | undefined;
|
|
157
|
+
firebase_device_language_code?: string | null | undefined;
|
|
158
|
+
firebase_push_token?: string | null | undefined;
|
|
159
|
+
bundle_id?: string | null | undefined;
|
|
160
|
+
advertising_id?: string | null | undefined;
|
|
161
|
+
appsflyer_device_id?: string | null | undefined;
|
|
162
|
+
campaign?: string | null | undefined;
|
|
163
|
+
} | null | undefined;
|
|
164
|
+
} | null | undefined;
|
|
165
|
+
appsflyerParams?: {
|
|
166
|
+
apiToken?: string | null | undefined;
|
|
167
|
+
eventIds?: any;
|
|
168
|
+
appId?: string | null | undefined;
|
|
169
|
+
devKey?: string | null | undefined;
|
|
218
170
|
} | null | undefined;
|
|
219
171
|
domainParams?: {
|
|
220
172
|
name?: string | null | undefined;
|
|
221
173
|
clouflareZone?: string | null | undefined;
|
|
174
|
+
ready?: boolean | null | undefined;
|
|
222
175
|
} | null | undefined;
|
|
223
|
-
},
|
|
176
|
+
}, Document<unknown, {}, import("mongoose").FlatRecord<{
|
|
224
177
|
id: number;
|
|
225
178
|
enabled: boolean;
|
|
226
|
-
ech: boolean;
|
|
227
179
|
status: AppStatus;
|
|
180
|
+
integrationType: IntegrationType;
|
|
228
181
|
bundle: string;
|
|
229
|
-
geos: string[];
|
|
230
|
-
removeInfo: any;
|
|
231
182
|
policyPath: string;
|
|
232
|
-
postbacks: mongoose.Types.DocumentArray<{
|
|
183
|
+
postbacks: import("mongoose").Types.DocumentArray<{
|
|
233
184
|
id: number;
|
|
234
185
|
campaign_id: number;
|
|
235
186
|
method: "GET" | "POST";
|
|
236
187
|
statuses: string[];
|
|
237
188
|
url: string;
|
|
238
189
|
notes?: string | null | undefined;
|
|
239
|
-
}, mongoose.Types.Subdocument<
|
|
190
|
+
}, import("mongoose").Types.Subdocument<import("bson").ObjectId, any, {
|
|
240
191
|
id: number;
|
|
241
192
|
campaign_id: number;
|
|
242
193
|
method: "GET" | "POST";
|
|
@@ -252,45 +203,72 @@ export declare const AppSchema: mongoose.Schema<any, mongoose.Model<any, any, an
|
|
|
252
203
|
notes?: string | null | undefined;
|
|
253
204
|
}>;
|
|
254
205
|
name?: string | null | undefined;
|
|
255
|
-
removeDataParams?: any;
|
|
256
|
-
privacyPolicyParams?: any;
|
|
257
|
-
bannerParams?: any;
|
|
258
|
-
offersStubParams?: any;
|
|
259
|
-
offerwallParams?: any;
|
|
260
|
-
integrationVersion?: string | null | undefined;
|
|
261
|
-
platforms?: any;
|
|
262
206
|
onesignalAppId?: string | null | undefined;
|
|
263
207
|
onesignalRestApiKey?: string | null | undefined;
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
208
|
+
offerwallCampaign?: {
|
|
209
|
+
trackingCampaignId?: number | null | undefined;
|
|
210
|
+
trackingCampaignName?: string | null | undefined;
|
|
211
|
+
trackingCampaignAlias?: string | null | undefined;
|
|
212
|
+
trackingDomainId?: number | null | undefined;
|
|
213
|
+
trackingDomainName?: string | null | undefined;
|
|
214
|
+
campingToken?: string | null | undefined;
|
|
215
|
+
trackingParams?: {
|
|
216
|
+
naming?: string | null | undefined;
|
|
217
|
+
firebase_app_instance_id?: string | null | undefined;
|
|
218
|
+
firebase_user_id?: string | null | undefined;
|
|
219
|
+
firebase_device_language_code?: string | null | undefined;
|
|
220
|
+
firebase_push_token?: string | null | undefined;
|
|
221
|
+
bundle_id?: string | null | undefined;
|
|
222
|
+
advertising_id?: string | null | undefined;
|
|
223
|
+
appsflyer_device_id?: string | null | undefined;
|
|
224
|
+
campaign?: string | null | undefined;
|
|
225
|
+
} | null | undefined;
|
|
226
|
+
} | null | undefined;
|
|
227
|
+
directCampaign?: {
|
|
228
|
+
trackingCampaignId?: number | null | undefined;
|
|
229
|
+
trackingCampaignName?: string | null | undefined;
|
|
230
|
+
trackingCampaignAlias?: string | null | undefined;
|
|
231
|
+
trackingDomainId?: number | null | undefined;
|
|
232
|
+
trackingDomainName?: string | null | undefined;
|
|
233
|
+
campingToken?: string | null | undefined;
|
|
234
|
+
trackingParams?: {
|
|
235
|
+
naming?: string | null | undefined;
|
|
236
|
+
firebase_app_instance_id?: string | null | undefined;
|
|
237
|
+
firebase_user_id?: string | null | undefined;
|
|
238
|
+
firebase_device_language_code?: string | null | undefined;
|
|
239
|
+
firebase_push_token?: string | null | undefined;
|
|
240
|
+
bundle_id?: string | null | undefined;
|
|
241
|
+
advertising_id?: string | null | undefined;
|
|
242
|
+
appsflyer_device_id?: string | null | undefined;
|
|
243
|
+
campaign?: string | null | undefined;
|
|
244
|
+
} | null | undefined;
|
|
245
|
+
} | null | undefined;
|
|
246
|
+
appsflyerParams?: {
|
|
247
|
+
apiToken?: string | null | undefined;
|
|
248
|
+
eventIds?: any;
|
|
249
|
+
appId?: string | null | undefined;
|
|
250
|
+
devKey?: string | null | undefined;
|
|
272
251
|
} | null | undefined;
|
|
273
252
|
domainParams?: {
|
|
274
253
|
name?: string | null | undefined;
|
|
275
254
|
clouflareZone?: string | null | undefined;
|
|
255
|
+
ready?: boolean | null | undefined;
|
|
276
256
|
} | null | undefined;
|
|
277
|
-
}>, {}, mongoose.ResolveSchemaOptions<mongoose.DefaultSchemaOptions>> & mongoose.FlatRecord<{
|
|
257
|
+
}>, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").FlatRecord<{
|
|
278
258
|
id: number;
|
|
279
259
|
enabled: boolean;
|
|
280
|
-
ech: boolean;
|
|
281
260
|
status: AppStatus;
|
|
261
|
+
integrationType: IntegrationType;
|
|
282
262
|
bundle: string;
|
|
283
|
-
geos: string[];
|
|
284
|
-
removeInfo: any;
|
|
285
263
|
policyPath: string;
|
|
286
|
-
postbacks: mongoose.Types.DocumentArray<{
|
|
264
|
+
postbacks: import("mongoose").Types.DocumentArray<{
|
|
287
265
|
id: number;
|
|
288
266
|
campaign_id: number;
|
|
289
267
|
method: "GET" | "POST";
|
|
290
268
|
statuses: string[];
|
|
291
269
|
url: string;
|
|
292
270
|
notes?: string | null | undefined;
|
|
293
|
-
}, mongoose.Types.Subdocument<
|
|
271
|
+
}, import("mongoose").Types.Subdocument<import("bson").ObjectId, any, {
|
|
294
272
|
id: number;
|
|
295
273
|
campaign_id: number;
|
|
296
274
|
method: "GET" | "POST";
|
|
@@ -306,30 +284,59 @@ export declare const AppSchema: mongoose.Schema<any, mongoose.Model<any, any, an
|
|
|
306
284
|
notes?: string | null | undefined;
|
|
307
285
|
}>;
|
|
308
286
|
name?: string | null | undefined;
|
|
309
|
-
removeDataParams?: any;
|
|
310
|
-
privacyPolicyParams?: any;
|
|
311
|
-
bannerParams?: any;
|
|
312
|
-
offersStubParams?: any;
|
|
313
|
-
offerwallParams?: any;
|
|
314
|
-
integrationVersion?: string | null | undefined;
|
|
315
|
-
platforms?: any;
|
|
316
287
|
onesignalAppId?: string | null | undefined;
|
|
317
288
|
onesignalRestApiKey?: string | null | undefined;
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
289
|
+
offerwallCampaign?: {
|
|
290
|
+
trackingCampaignId?: number | null | undefined;
|
|
291
|
+
trackingCampaignName?: string | null | undefined;
|
|
292
|
+
trackingCampaignAlias?: string | null | undefined;
|
|
293
|
+
trackingDomainId?: number | null | undefined;
|
|
294
|
+
trackingDomainName?: string | null | undefined;
|
|
295
|
+
campingToken?: string | null | undefined;
|
|
296
|
+
trackingParams?: {
|
|
297
|
+
naming?: string | null | undefined;
|
|
298
|
+
firebase_app_instance_id?: string | null | undefined;
|
|
299
|
+
firebase_user_id?: string | null | undefined;
|
|
300
|
+
firebase_device_language_code?: string | null | undefined;
|
|
301
|
+
firebase_push_token?: string | null | undefined;
|
|
302
|
+
bundle_id?: string | null | undefined;
|
|
303
|
+
advertising_id?: string | null | undefined;
|
|
304
|
+
appsflyer_device_id?: string | null | undefined;
|
|
305
|
+
campaign?: string | null | undefined;
|
|
306
|
+
} | null | undefined;
|
|
307
|
+
} | null | undefined;
|
|
308
|
+
directCampaign?: {
|
|
309
|
+
trackingCampaignId?: number | null | undefined;
|
|
310
|
+
trackingCampaignName?: string | null | undefined;
|
|
311
|
+
trackingCampaignAlias?: string | null | undefined;
|
|
312
|
+
trackingDomainId?: number | null | undefined;
|
|
313
|
+
trackingDomainName?: string | null | undefined;
|
|
314
|
+
campingToken?: string | null | undefined;
|
|
315
|
+
trackingParams?: {
|
|
316
|
+
naming?: string | null | undefined;
|
|
317
|
+
firebase_app_instance_id?: string | null | undefined;
|
|
318
|
+
firebase_user_id?: string | null | undefined;
|
|
319
|
+
firebase_device_language_code?: string | null | undefined;
|
|
320
|
+
firebase_push_token?: string | null | undefined;
|
|
321
|
+
bundle_id?: string | null | undefined;
|
|
322
|
+
advertising_id?: string | null | undefined;
|
|
323
|
+
appsflyer_device_id?: string | null | undefined;
|
|
324
|
+
campaign?: string | null | undefined;
|
|
325
|
+
} | null | undefined;
|
|
326
|
+
} | null | undefined;
|
|
327
|
+
appsflyerParams?: {
|
|
328
|
+
apiToken?: string | null | undefined;
|
|
329
|
+
eventIds?: any;
|
|
330
|
+
appId?: string | null | undefined;
|
|
331
|
+
devKey?: string | null | undefined;
|
|
326
332
|
} | null | undefined;
|
|
327
333
|
domainParams?: {
|
|
328
334
|
name?: string | null | undefined;
|
|
329
335
|
clouflareZone?: string | null | undefined;
|
|
336
|
+
ready?: boolean | null | undefined;
|
|
330
337
|
} | null | undefined;
|
|
331
338
|
}> & {
|
|
332
|
-
_id: mongoose.Types.ObjectId;
|
|
339
|
+
_id: import("mongoose").Types.ObjectId;
|
|
333
340
|
} & {
|
|
334
341
|
__v: number;
|
|
335
342
|
}>;
|