@bprotsyk/aso-core 2.1.10 → 2.1.11

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
@@ -165,6 +165,7 @@ export declare const AppSchema: mongoose.Schema<any, mongoose.Model<any, any, an
165
165
  type: string;
166
166
  geo: string[];
167
167
  enabled: boolean;
168
+ proxy: boolean;
168
169
  bundle: string;
169
170
  trackingUrl: string;
170
171
  integrationVersion: string;
package/lib/app/app.js CHANGED
@@ -43,6 +43,11 @@ exports.AppSchema = new mongoose_1.Schema({
43
43
  required: true,
44
44
  default: false
45
45
  },
46
+ proxy: {
47
+ type: Boolean,
48
+ require: true,
49
+ default: true
50
+ },
46
51
  bundle: {
47
52
  type: String,
48
53
  unique: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.1.10",
3
+ "version": "2.1.11",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
package/src/app/app.ts CHANGED
@@ -38,7 +38,7 @@ export interface IApp extends Document {
38
38
 
39
39
  offersListId: number,
40
40
  externalParams?: IExternalParams,
41
- proxy:boolean
41
+ proxy: boolean
42
42
  }
43
43
 
44
44
  export enum EPlatform {
@@ -58,7 +58,7 @@ export interface IPlatformParams {
58
58
  customCampaignData?: IAppKeitaroData,
59
59
  adjustAppId: string,
60
60
  adjustEventIds: IAdjustEventIds,
61
- proxy:boolean
61
+ proxy: boolean
62
62
  }
63
63
 
64
64
  export interface IAdjustEventIds {
@@ -201,6 +201,11 @@ export const AppSchema = new Schema({
201
201
  required: true,
202
202
  default: false
203
203
  },
204
+ proxy: {
205
+ type: Boolean,
206
+ require: true,
207
+ default: true
208
+ },
204
209
  bundle: {
205
210
  type: String,
206
211
  unique: true,