@bprotsyk/aso-core 2.1.75 → 2.1.77
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 +4 -0
- package/lib/app/app.js +4 -0
- package/package.json +1 -1
- package/src/app/app.ts +6 -0
package/lib/app/app.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ export interface IApp extends Document {
|
|
|
28
28
|
offersListId: number;
|
|
29
29
|
externalParams?: IExternalParams;
|
|
30
30
|
proxied: boolean;
|
|
31
|
+
ech?: boolean;
|
|
31
32
|
imageFormat: EImageFormat;
|
|
32
33
|
}
|
|
33
34
|
export declare enum EImageFormat {
|
|
@@ -162,6 +163,7 @@ export declare const AppSchema: mongoose.Schema<any, mongoose.Model<any, any, an
|
|
|
162
163
|
geo: string[];
|
|
163
164
|
enabled: boolean;
|
|
164
165
|
proxied: boolean;
|
|
166
|
+
ech: boolean;
|
|
165
167
|
imageFormat: string;
|
|
166
168
|
bundle: string;
|
|
167
169
|
trackingUrl: string;
|
|
@@ -200,6 +202,7 @@ export declare const AppSchema: mongoose.Schema<any, mongoose.Model<any, any, an
|
|
|
200
202
|
geo: string[];
|
|
201
203
|
enabled: boolean;
|
|
202
204
|
proxied: boolean;
|
|
205
|
+
ech: boolean;
|
|
203
206
|
imageFormat: string;
|
|
204
207
|
bundle: string;
|
|
205
208
|
trackingUrl: string;
|
|
@@ -238,6 +241,7 @@ export declare const AppSchema: mongoose.Schema<any, mongoose.Model<any, any, an
|
|
|
238
241
|
geo: string[];
|
|
239
242
|
enabled: boolean;
|
|
240
243
|
proxied: boolean;
|
|
244
|
+
ech: boolean;
|
|
241
245
|
imageFormat: string;
|
|
242
246
|
bundle: string;
|
|
243
247
|
trackingUrl: string;
|
package/lib/app/app.js
CHANGED
package/package.json
CHANGED
package/src/app/app.ts
CHANGED
|
@@ -37,6 +37,7 @@ export interface IApp extends Document {
|
|
|
37
37
|
offersListId: number,
|
|
38
38
|
externalParams?: IExternalParams,
|
|
39
39
|
proxied: boolean,
|
|
40
|
+
ech?: boolean,
|
|
40
41
|
imageFormat: EImageFormat
|
|
41
42
|
}
|
|
42
43
|
|
|
@@ -111,6 +112,7 @@ export interface IPlatformParams {
|
|
|
111
112
|
eventIds?: Record<string, string>,
|
|
112
113
|
},
|
|
113
114
|
proxied?: boolean,
|
|
115
|
+
|
|
114
116
|
keitaroData?: IAppKeitaroData | boolean
|
|
115
117
|
}
|
|
116
118
|
|
|
@@ -227,6 +229,10 @@ export const AppSchema = new Schema({
|
|
|
227
229
|
require: true,
|
|
228
230
|
default: true
|
|
229
231
|
},
|
|
232
|
+
ech: {
|
|
233
|
+
type: Boolean,
|
|
234
|
+
default: false
|
|
235
|
+
},
|
|
230
236
|
imageFormat: {
|
|
231
237
|
type: String,
|
|
232
238
|
enum: EImageFormat,
|