@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 +5 -4
- package/lib/app/app.js +5 -10
- package/package.json +1 -1
- package/src/app/app.ts +5 -10
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 = "
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
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"] = "
|
|
27
|
-
|
|
28
|
-
IntegrationVersion["
|
|
29
|
-
|
|
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
|
-
|
|
32
|
+
IntegrationVersion["BANNER"] = "BANNER";
|
|
38
33
|
IntegrationVersion["PWA"] = "PWA";
|
|
39
34
|
})(IntegrationVersion = exports.IntegrationVersion || (exports.IntegrationVersion = {}));
|
|
40
35
|
var PlugType;
|
package/package.json
CHANGED
package/src/app/app.ts
CHANGED
|
@@ -148,18 +148,13 @@ export interface IPrivacyPolicyParams {
|
|
|
148
148
|
}
|
|
149
149
|
|
|
150
150
|
export enum IntegrationVersion {
|
|
151
|
-
NONE = "
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
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
|
-
|
|
157
|
+
BANNER = "BANNER",
|
|
163
158
|
PWA = "PWA"
|
|
164
159
|
}
|
|
165
160
|
|