@bprotsyk/aso-core 2.1.32 → 2.1.33

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
@@ -124,12 +124,13 @@ export interface IPrivacyPolicyParams {
124
124
  redirect: boolean;
125
125
  }
126
126
  export declare enum IntegrationVersion {
127
- NONE = "NONE",
128
- TELEGRAM = "TELEGRAM",
129
- BANNER = "BANNER",
130
- NATIVE_OFFERWALLET = "NATIVE_OFFERWALLET",
127
+ NONE = "MVVM",
128
+ POLICY = "POLICY",
129
+ NATIVE_OFFERWALL = "NATIVE_OFFERWALL",
130
+ DIRECT = "DIRECT",
131
131
  WEB = "WEB",
132
132
  WEB_DIRECT = "WEB_DIRECT",
133
+ BANNER = "BANNER",
133
134
  PWA = "PWA"
134
135
  }
135
136
  export interface IntegrationAlterations {
package/lib/app/app.js CHANGED
@@ -23,18 +23,13 @@ var EPlatform;
23
23
  })(EPlatform = exports.EPlatform || (exports.EPlatform = {}));
24
24
  var IntegrationVersion;
25
25
  (function (IntegrationVersion) {
26
- IntegrationVersion["NONE"] = "NONE";
27
- // Telegram
28
- IntegrationVersion["TELEGRAM"] = "TELEGRAM";
29
- // Banner
30
- IntegrationVersion["BANNER"] = "BANNER";
31
- // Native OfferWall
32
- IntegrationVersion["NATIVE_OFFERWALLET"] = "NATIVE_OFFERWALLET";
33
- // Web
26
+ IntegrationVersion["NONE"] = "MVVM";
27
+ IntegrationVersion["POLICY"] = "POLICY";
28
+ IntegrationVersion["NATIVE_OFFERWALL"] = "NATIVE_OFFERWALL";
29
+ IntegrationVersion["DIRECT"] = "DIRECT";
34
30
  IntegrationVersion["WEB"] = "WEB";
35
- // Web Direct
36
31
  IntegrationVersion["WEB_DIRECT"] = "WEB_DIRECT";
37
- // PWA
32
+ IntegrationVersion["BANNER"] = "BANNER";
38
33
  IntegrationVersion["PWA"] = "PWA";
39
34
  })(IntegrationVersion = exports.IntegrationVersion || (exports.IntegrationVersion = {}));
40
35
  var PlugType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.1.32",
3
+ "version": "2.1.33",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
package/src/app/app.ts CHANGED
@@ -148,18 +148,13 @@ export interface IPrivacyPolicyParams {
148
148
  }
149
149
 
150
150
  export enum IntegrationVersion {
151
- NONE = "NONE",
152
- // Telegram
153
- TELEGRAM = "TELEGRAM",
154
- // Banner
155
- BANNER = "BANNER",
156
- // Native OfferWall
157
- NATIVE_OFFERWALLET = "NATIVE_OFFERWALLET",
158
- // Web
151
+ NONE = "MVVM",
152
+ POLICY = "POLICY",
153
+ NATIVE_OFFERWALL = "NATIVE_OFFERWALL",
154
+ DIRECT = "DIRECT",
159
155
  WEB = "WEB",
160
- // Web Direct
161
156
  WEB_DIRECT = "WEB_DIRECT",
162
- // PWA
157
+ BANNER = "BANNER",
163
158
  PWA = "PWA"
164
159
  }
165
160