@bprotsyk/aso-core 1.2.172 → 1.2.173

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.
@@ -67,7 +67,8 @@ export declare enum IntegrationVersion {
67
67
  POLICY = "POLICY",
68
68
  OFFER_STUB = "OFFER_STUB",
69
69
  DIRECT = "DIRECT",
70
- WEB = "WEB"
70
+ WEB = "WEB",
71
+ BANNER = "BANNER"
71
72
  }
72
73
  export interface IntegrationAlterations {
73
74
  networkTool: AlternativeNetworkTool;
@@ -11,6 +11,7 @@ var IntegrationVersion;
11
11
  IntegrationVersion["OFFER_STUB"] = "OFFER_STUB";
12
12
  IntegrationVersion["DIRECT"] = "DIRECT";
13
13
  IntegrationVersion["WEB"] = "WEB";
14
+ IntegrationVersion["BANNER"] = "BANNER";
14
15
  })(IntegrationVersion = exports.IntegrationVersion || (exports.IntegrationVersion = {}));
15
16
  var PlugType;
16
17
  (function (PlugType) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.172",
3
+ "version": "1.2.173",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
@@ -84,7 +84,8 @@ export enum IntegrationVersion {
84
84
  POLICY = "POLICY",
85
85
  OFFER_STUB = "OFFER_STUB",
86
86
  DIRECT = "DIRECT",
87
- WEB = "WEB"
87
+ WEB = "WEB",
88
+ BANNER = "BANNER"
88
89
  }
89
90
 
90
91
  export interface IntegrationAlterations {
@@ -514,7 +514,6 @@ let replaceDomainInOffers = async (oldDomain: string, newDomain: string, offerNa
514
514
  let findBrokenOfferStreams = async () => {
515
515
  let allCampaigns = await KeitaroService.getAllCampaigns()
516
516
 
517
-
518
517
  let regexp = new RegExp(`^FA #`)
519
518
  const matchingCampaigns = allCampaigns.filter(campaign => regexp.exec(campaign.name));
520
519
  for (let campaign of matchingCampaigns) {