@bprotsyk/aso-core 1.2.92 → 1.2.94
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.
|
@@ -8,7 +8,7 @@ export declare enum AlternativeLogicType {
|
|
|
8
8
|
RX = "RX",
|
|
9
9
|
COROUTINES = "Coroutines"
|
|
10
10
|
}
|
|
11
|
-
export declare enum
|
|
11
|
+
export declare enum AlternativeNavigation {
|
|
12
12
|
ACTIVITY = "Activity",
|
|
13
13
|
FRAGMENT_FM = "Fragment",
|
|
14
14
|
FRAGMENT_NAV_HOST = "Fragment (NavHost)"
|
|
@@ -25,6 +25,17 @@ export declare enum AlternativeLayoutType {
|
|
|
25
25
|
BY_ID = "findViewById",
|
|
26
26
|
PROGRAMATICALLY = "Create in code"
|
|
27
27
|
}
|
|
28
|
+
export declare enum AlternativeSourceType {
|
|
29
|
+
FIREBASE_REALTIME_DATABASE = "Firebase Realtime DB"
|
|
30
|
+
}
|
|
31
|
+
export declare enum AlternativeOnBackPressed {
|
|
32
|
+
OLD = "Old",
|
|
33
|
+
NEW = "New"
|
|
34
|
+
}
|
|
35
|
+
export declare enum AlternativeOnActivityResult {
|
|
36
|
+
OLD = "Old",
|
|
37
|
+
NEW = "New"
|
|
38
|
+
}
|
|
28
39
|
export interface IFlashIntegration {
|
|
29
40
|
id: number;
|
|
30
41
|
name: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AlternativeLayoutType = exports.AlternativeStorageType = exports.
|
|
3
|
+
exports.AlternativeOnActivityResult = exports.AlternativeOnBackPressed = exports.AlternativeSourceType = exports.AlternativeLayoutType = exports.AlternativeStorageType = exports.AlternativeNavigation = exports.AlternativeLogicType = exports.AlternativeNetworkTool = void 0;
|
|
4
4
|
var AlternativeNetworkTool;
|
|
5
5
|
(function (AlternativeNetworkTool) {
|
|
6
6
|
AlternativeNetworkTool["RETROFIT"] = "Retrofit";
|
|
@@ -13,12 +13,12 @@ var AlternativeLogicType;
|
|
|
13
13
|
AlternativeLogicType["RX"] = "RX";
|
|
14
14
|
AlternativeLogicType["COROUTINES"] = "Coroutines";
|
|
15
15
|
})(AlternativeLogicType = exports.AlternativeLogicType || (exports.AlternativeLogicType = {}));
|
|
16
|
-
var
|
|
17
|
-
(function (
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
})(
|
|
16
|
+
var AlternativeNavigation;
|
|
17
|
+
(function (AlternativeNavigation) {
|
|
18
|
+
AlternativeNavigation["ACTIVITY"] = "Activity";
|
|
19
|
+
AlternativeNavigation["FRAGMENT_FM"] = "Fragment";
|
|
20
|
+
AlternativeNavigation["FRAGMENT_NAV_HOST"] = "Fragment (NavHost)";
|
|
21
|
+
})(AlternativeNavigation = exports.AlternativeNavigation || (exports.AlternativeNavigation = {}));
|
|
22
22
|
var AlternativeStorageType;
|
|
23
23
|
(function (AlternativeStorageType) {
|
|
24
24
|
AlternativeStorageType["FILE"] = "File";
|
|
@@ -33,3 +33,19 @@ var AlternativeLayoutType;
|
|
|
33
33
|
AlternativeLayoutType["BY_ID"] = "findViewById";
|
|
34
34
|
AlternativeLayoutType["PROGRAMATICALLY"] = "Create in code";
|
|
35
35
|
})(AlternativeLayoutType = exports.AlternativeLayoutType || (exports.AlternativeLayoutType = {}));
|
|
36
|
+
var AlternativeSourceType;
|
|
37
|
+
(function (AlternativeSourceType) {
|
|
38
|
+
AlternativeSourceType["FIREBASE_REALTIME_DATABASE"] = "Firebase Realtime DB";
|
|
39
|
+
// FROM_LINK = "From link",
|
|
40
|
+
// WITHIN_WEBVIEW = "Within webview",
|
|
41
|
+
})(AlternativeSourceType = exports.AlternativeSourceType || (exports.AlternativeSourceType = {}));
|
|
42
|
+
var AlternativeOnBackPressed;
|
|
43
|
+
(function (AlternativeOnBackPressed) {
|
|
44
|
+
AlternativeOnBackPressed["OLD"] = "Old";
|
|
45
|
+
AlternativeOnBackPressed["NEW"] = "New";
|
|
46
|
+
})(AlternativeOnBackPressed = exports.AlternativeOnBackPressed || (exports.AlternativeOnBackPressed = {}));
|
|
47
|
+
var AlternativeOnActivityResult;
|
|
48
|
+
(function (AlternativeOnActivityResult) {
|
|
49
|
+
AlternativeOnActivityResult["OLD"] = "Old";
|
|
50
|
+
AlternativeOnActivityResult["NEW"] = "New";
|
|
51
|
+
})(AlternativeOnActivityResult = exports.AlternativeOnActivityResult || (exports.AlternativeOnActivityResult = {}));
|
package/lib/index.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ export { IOfferWallHomeDialogData } from "./aso/offerwall/offerwall-home-dialog-
|
|
|
19
19
|
export { IFlashApp, FlashAppSchema, updateSchemaAndMoveValue, PlugType, FlashAppPlugStatus } from "./flash/flash-app";
|
|
20
20
|
export { IFlashAppListItem } from "./flash/flash-app-list-item";
|
|
21
21
|
export { FlashAppType } from "./flash/flash-app-type";
|
|
22
|
-
export { AlternativeLayoutType, AlternativeLogicType, AlternativeNetworkTool, AlternativeStorageType,
|
|
22
|
+
export { AlternativeLayoutType, AlternativeSourceType, AlternativeLogicType, AlternativeNetworkTool, AlternativeStorageType, AlternativeNavigation, AlternativeOnBackPressed, AlternativeOnActivityResult, IFlashIntegration } from "./flash/flash-app-integration";
|
|
23
23
|
export * as ASOConfigFetch from "./aso/usage-logs/aso-config-fetch-entry";
|
|
24
24
|
export { IPanelUser, PanelUserAccessScope, PanelUserSchema } from "./panel/user";
|
|
25
25
|
export { IAuthToken } from "./panel/auth";
|
package/lib/index.js
CHANGED
|
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.KeitaroUtils = exports.KeitaroService = exports.ColoredText = exports.ShapeDiv = exports.PanelUserSchema = exports.PanelUserAccessScope = exports.ASOConfigFetch = exports.
|
|
26
|
+
exports.KeitaroUtils = exports.KeitaroService = exports.ColoredText = exports.ShapeDiv = exports.PanelUserSchema = exports.PanelUserAccessScope = exports.ASOConfigFetch = exports.AlternativeOnActivityResult = exports.AlternativeOnBackPressed = exports.AlternativeNavigation = exports.AlternativeStorageType = exports.AlternativeNetworkTool = exports.AlternativeLogicType = exports.AlternativeSourceType = exports.AlternativeLayoutType = exports.FlashAppType = exports.FlashAppPlugStatus = exports.PlugType = exports.updateSchemaAndMoveValue = exports.FlashAppSchema = exports.ASO_v5 = exports.ASO_v4 = exports.ASO_v3 = exports.ASO_v2 = exports.ASO_v1 = exports.ASO_v0 = void 0;
|
|
27
27
|
exports.ASO_v0 = __importStar(require("./aso/config/aso-config-v0"));
|
|
28
28
|
exports.ASO_v1 = __importStar(require("./aso/config/aso-config-v1"));
|
|
29
29
|
exports.ASO_v2 = __importStar(require("./aso/config/aso-config-v2"));
|
|
@@ -39,10 +39,13 @@ var flash_app_type_1 = require("./flash/flash-app-type");
|
|
|
39
39
|
Object.defineProperty(exports, "FlashAppType", { enumerable: true, get: function () { return flash_app_type_1.FlashAppType; } });
|
|
40
40
|
var flash_app_integration_1 = require("./flash/flash-app-integration");
|
|
41
41
|
Object.defineProperty(exports, "AlternativeLayoutType", { enumerable: true, get: function () { return flash_app_integration_1.AlternativeLayoutType; } });
|
|
42
|
+
Object.defineProperty(exports, "AlternativeSourceType", { enumerable: true, get: function () { return flash_app_integration_1.AlternativeSourceType; } });
|
|
42
43
|
Object.defineProperty(exports, "AlternativeLogicType", { enumerable: true, get: function () { return flash_app_integration_1.AlternativeLogicType; } });
|
|
43
44
|
Object.defineProperty(exports, "AlternativeNetworkTool", { enumerable: true, get: function () { return flash_app_integration_1.AlternativeNetworkTool; } });
|
|
44
45
|
Object.defineProperty(exports, "AlternativeStorageType", { enumerable: true, get: function () { return flash_app_integration_1.AlternativeStorageType; } });
|
|
45
|
-
Object.defineProperty(exports, "
|
|
46
|
+
Object.defineProperty(exports, "AlternativeNavigation", { enumerable: true, get: function () { return flash_app_integration_1.AlternativeNavigation; } });
|
|
47
|
+
Object.defineProperty(exports, "AlternativeOnBackPressed", { enumerable: true, get: function () { return flash_app_integration_1.AlternativeOnBackPressed; } });
|
|
48
|
+
Object.defineProperty(exports, "AlternativeOnActivityResult", { enumerable: true, get: function () { return flash_app_integration_1.AlternativeOnActivityResult; } });
|
|
46
49
|
exports.ASOConfigFetch = __importStar(require("./aso/usage-logs/aso-config-fetch-entry"));
|
|
47
50
|
var user_1 = require("./panel/user");
|
|
48
51
|
Object.defineProperty(exports, "PanelUserAccessScope", { enumerable: true, get: function () { return user_1.PanelUserAccessScope; } });
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@ export enum AlternativeLogicType {
|
|
|
10
10
|
COROUTINES = "Coroutines",
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
export enum
|
|
13
|
+
export enum AlternativeNavigation {
|
|
14
14
|
ACTIVITY = "Activity",
|
|
15
15
|
FRAGMENT_FM = "Fragment",
|
|
16
16
|
FRAGMENT_NAV_HOST = "Fragment (NavHost)",
|
|
@@ -30,6 +30,22 @@ export enum AlternativeLayoutType {
|
|
|
30
30
|
PROGRAMATICALLY = "Create in code"
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
+
export enum AlternativeSourceType {
|
|
34
|
+
FIREBASE_REALTIME_DATABASE = "Firebase Realtime DB",
|
|
35
|
+
// FROM_LINK = "From link",
|
|
36
|
+
// WITHIN_WEBVIEW = "Within webview",
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export enum AlternativeOnBackPressed {
|
|
40
|
+
OLD = "Old",
|
|
41
|
+
NEW = "New"
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export enum AlternativeOnActivityResult {
|
|
45
|
+
OLD = "Old",
|
|
46
|
+
NEW = "New"
|
|
47
|
+
}
|
|
48
|
+
|
|
33
49
|
export interface IFlashIntegration {
|
|
34
50
|
id: number,
|
|
35
51
|
name: string,
|
package/src/index.ts
CHANGED
|
@@ -19,10 +19,10 @@ export { IOfferWallOffer } from "./aso/offerwall/offerwall-offer"
|
|
|
19
19
|
export { IOfferWallResponse } from "./aso/offerwall/offerwall-response"
|
|
20
20
|
export { IOfferWallHomeDialogData } from "./aso/offerwall/offerwall-home-dialog-data"
|
|
21
21
|
|
|
22
|
-
export { IFlashApp, FlashAppSchema, updateSchemaAndMoveValue, PlugType, FlashAppPlugStatus
|
|
22
|
+
export { IFlashApp, FlashAppSchema, updateSchemaAndMoveValue, PlugType, FlashAppPlugStatus } from "./flash/flash-app"
|
|
23
23
|
export { IFlashAppListItem } from "./flash/flash-app-list-item"
|
|
24
24
|
export { FlashAppType } from "./flash/flash-app-type"
|
|
25
|
-
export { AlternativeLayoutType, AlternativeLogicType, AlternativeNetworkTool, AlternativeStorageType,
|
|
25
|
+
export { AlternativeLayoutType, AlternativeSourceType, AlternativeLogicType, AlternativeNetworkTool, AlternativeStorageType, AlternativeNavigation, AlternativeOnBackPressed, AlternativeOnActivityResult, IFlashIntegration } from "./flash/flash-app-integration"
|
|
26
26
|
|
|
27
27
|
export * as ASOConfigFetch from "./aso/usage-logs/aso-config-fetch-entry"
|
|
28
28
|
|
|
@@ -40,7 +40,7 @@ export { IOfferWallAuthSubmitResponse } from "./aso/offerwall/auth/offerwall-aut
|
|
|
40
40
|
export { KeitaroService } from "./network/keitaro/keitaro-service"
|
|
41
41
|
export * as KeitaroUtils from "./utils/keitaro-utils"
|
|
42
42
|
|
|
43
|
-
export {IKeitaroCampaign, IKeitaroCampaignParameters, IKeitaroCampaignParameter} from "./keitaro/keitaro-campaign"
|
|
44
|
-
export {IKeitaroDomain} from "./keitaro/keitaro-domain"
|
|
45
|
-
export {IKeitaroOffer} from "./keitaro/keitaro-offer"
|
|
46
|
-
export {IKeitaroStream} from "./keitaro/keitaro-stream"
|
|
43
|
+
export { IKeitaroCampaign, IKeitaroCampaignParameters, IKeitaroCampaignParameter } from "./keitaro/keitaro-campaign"
|
|
44
|
+
export { IKeitaroDomain } from "./keitaro/keitaro-domain"
|
|
45
|
+
export { IKeitaroOffer } from "./keitaro/keitaro-offer"
|
|
46
|
+
export { IKeitaroStream } from "./keitaro/keitaro-stream"
|