@bprotsyk/aso-core 2.1.24 → 2.1.32
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/README.md +1 -1
- package/lib/app/app-integration.d.ts +53 -53
- package/lib/app/app-integration.js +63 -63
- package/lib/app/app-list-item.d.ts +5 -5
- package/lib/app/app-list-item.js +2 -2
- package/lib/app/app-type.d.ts +4 -4
- package/lib/app/app-type.js +8 -8
- package/lib/app/app.d.ts +207 -213
- package/lib/app/app.js +161 -184
- package/lib/general/cloudflare-domain.d.ts +42 -42
- package/lib/general/cloudflare-domain.js +12 -12
- package/lib/general/domain.d.ts +108 -108
- package/lib/general/domain.js +61 -61
- package/lib/general/namecheap-domain.d.ts +85 -85
- package/lib/general/namecheap-domain.js +14 -14
- package/lib/general/push.d.ts +6 -6
- package/lib/general/push.js +2 -2
- package/lib/general/queue.d.ts +2 -2
- package/lib/general/queue.js +1 -1
- package/lib/general/shape.d.ts +18 -18
- package/lib/general/shape.js +36 -36
- package/lib/index.d.ts +26 -26
- package/lib/index.js +69 -69
- package/lib/keitaro/keitaro-campaign.d.ts +31 -31
- package/lib/keitaro/keitaro-campaign.js +5 -5
- package/lib/keitaro/keitaro-domain.d.ts +6 -6
- package/lib/keitaro/keitaro-domain.js +2 -2
- package/lib/keitaro/keitaro-offer.d.ts +7 -7
- package/lib/keitaro/keitaro-offer.js +2 -2
- package/lib/keitaro/keitaro-stream.d.ts +20 -20
- package/lib/keitaro/keitaro-stream.js +2 -2
- package/lib/network/keitaro/http.d.ts +2 -2
- package/lib/network/keitaro/http.js +12 -12
- package/lib/network/keitaro/keitaro-service.d.ts +48 -50
- package/lib/network/keitaro/keitaro-service.js +263 -261
- package/lib/offers/list.d.ts +37 -37
- package/lib/offers/list.js +12 -12
- package/lib/offers/offer.d.ts +91 -91
- package/lib/offers/offer.js +42 -42
- package/lib/offers/offerwall/offerwall-home-dialog-data.d.ts +6 -6
- package/lib/offers/offerwall/offerwall-home-dialog-data.js +2 -2
- package/lib/offers/offerwall/offerwall-offer.d.ts +12 -12
- package/lib/offers/offerwall/offerwall-offer.js +2 -2
- package/lib/offers/offerwall/offerwall-response.d.ts +6 -6
- package/lib/offers/offerwall/offerwall-response.js +2 -2
- package/lib/offers/offerwall/offerwall-section.d.ts +6 -6
- package/lib/offers/offerwall/offerwall-section.js +2 -2
- package/lib/offers/section.d.ts +47 -47
- package/lib/offers/section.js +20 -20
- package/lib/panel/app/upsert-flash-app-request.d.ts +31 -0
- package/lib/panel/app/upsert-flash-app-request.js +2 -0
- package/lib/panel/auth.d.ts +9 -9
- package/lib/panel/auth.js +2 -2
- package/lib/panel/flash/upsert-flash-app-request.d.ts +31 -31
- package/lib/panel/flash/upsert-flash-app-request.js +2 -2
- package/lib/panel/user.d.ts +46 -46
- package/lib/panel/user.js +28 -28
- package/lib/templates/nginx-template.conf +35 -35
- package/lib/templates/nginx-template.d.ts +1 -1
- package/lib/templates/nginx-template.js +39 -39
- package/lib/templates/nginx-template.ts +35 -35
- package/lib/utils/general.d.ts +11 -11
- package/lib/utils/general.js +40 -40
- package/lib/utils/huawei/converter.d.ts +2 -2
- package/lib/utils/huawei/converter.js +53 -53
- package/lib/utils/keitaro-utils.d.ts +13 -15
- package/lib/utils/keitaro-utils.js +569 -569
- package/lib/utils/server-util.js +303 -303
- package/package.json +51 -51
- package/src/app/app-integration.ts +66 -66
- package/src/app/app-list-item.ts +4 -4
- package/src/app/app-type.ts +3 -3
- package/src/app/app.ts +322 -346
- package/src/general/cloudflare-domain.ts +44 -44
- package/src/general/domain.ts +105 -105
- package/src/general/namecheap-domain.ts +63 -63
- package/src/general/push.ts +5 -5
- package/src/general/queue.ts +4 -4
- package/src/general/shape.tsx +55 -55
- package/src/index.ts +32 -32
- package/src/keitaro/keitaro-campaign.ts +35 -35
- package/src/keitaro/keitaro-domain.ts +5 -5
- package/src/keitaro/keitaro-offer.ts +6 -6
- package/src/keitaro/keitaro-stream.ts +19 -19
- package/src/network/keitaro/http.ts +8 -8
- package/src/network/keitaro/keitaro-service.ts +325 -323
- package/src/offers/list.ts +19 -19
- package/src/offers/offer.ts +80 -80
- package/src/offers/offerwall/offerwall-home-dialog-data.ts +6 -6
- package/src/offers/offerwall/offerwall-offer.ts +12 -12
- package/src/offers/offerwall/offerwall-response.ts +7 -7
- package/src/offers/offerwall/offerwall-section.ts +7 -7
- package/src/offers/section.ts +29 -29
- package/src/panel/{flash → app}/upsert-flash-app-request.ts +39 -39
- package/src/panel/auth.ts +9 -9
- package/src/panel/user.ts +38 -38
- package/src/templates/nginx-template.ts +35 -35
- package/src/utils/data.csv +65 -65
- package/src/utils/general.ts +36 -36
- package/src/utils/huawei/converter.ts +55 -55
- package/src/utils/keitaro-utils.ts +664 -662
- package/src/utils/map-apps.json +4747 -4747
- package/src/utils/server-util.ts +368 -368
- package/src/utils/update-postbacks.js +27 -27
- package/tsconfig.json +20 -20
- package/docs/.nojekyll +0 -1
- package/docs/DOCS.zip +0 -0
- package/docs/assets/highlight.css +0 -22
- package/docs/assets/main.js +0 -58
- package/docs/assets/search.js +0 -1
- package/docs/assets/style.css +0 -1279
- package/docs/enums/PanelUserAccessScope.html +0 -127
- package/docs/functions/ASO_v0.toDefault.html +0 -81
- package/docs/functions/ASO_v1.toDefault.html +0 -81
- package/docs/functions/ASO_v2.toDefault.html +0 -79
- package/docs/functions/ASO_v3.toDefault.html +0 -78
- package/docs/functions/ASO_v4.toDefault.html +0 -76
- package/docs/functions/ASO_v5.toDefault.html +0 -77
- package/docs/functions/ColoredText.html +0 -93
- package/docs/functions/ShapeDiv.html +0 -110
- package/docs/index.html +0 -83
- package/docs/interfaces/ASOConfigFetch.IUsageLogEntry.html +0 -1414
- package/docs/interfaces/ASOConfigFetch.IUsageLogRequest.html +0 -104
- package/docs/interfaces/ASOConfigFetch.IUsageLogResponse.html +0 -109
- package/docs/interfaces/ASO_v0.IAuthorizationActionMapping.html +0 -146
- package/docs/interfaces/ASO_v0.IColoredSpan.html +0 -90
- package/docs/interfaces/ASO_v0.IColoredSpanMapping.html +0 -90
- package/docs/interfaces/ASO_v0.IColoredString.html +0 -90
- package/docs/interfaces/ASO_v0.IColoredStringMapping.html +0 -90
- package/docs/interfaces/ASO_v0.IConfig.html +0 -557
- package/docs/interfaces/ASO_v0.IConfigMapping.html +0 -230
- package/docs/interfaces/ASO_v0.ILocalization.html +0 -517
- package/docs/interfaces/ASO_v0.ILocalizationMap.html +0 -78
- package/docs/interfaces/ASO_v0.ILocalizationMapping.html +0 -503
- package/docs/interfaces/ASO_v0.IOfferResult.html +0 -104
- package/docs/interfaces/ASO_v0.IOfferResultEmoji.html +0 -83
- package/docs/interfaces/ASO_v0.IOfferResultMapping.html +0 -118
- package/docs/interfaces/ASO_v0.IOfferSectionMapping.html +0 -109
- package/docs/interfaces/ASO_v0.IOffersSection.html +0 -97
- package/docs/interfaces/ASO_v0.ISectionPalette.html +0 -153
- package/docs/interfaces/ASO_v0.ISectionPaletteMapping.html +0 -153
- package/docs/interfaces/ASO_v1.IAuthorizationActionMapping.html +0 -146
- package/docs/interfaces/ASO_v1.IColoredSpan.html +0 -90
- package/docs/interfaces/ASO_v1.IColoredSpanMapping.html +0 -90
- package/docs/interfaces/ASO_v1.IColoredString.html +0 -90
- package/docs/interfaces/ASO_v1.IColoredStringMapping.html +0 -90
- package/docs/interfaces/ASO_v1.IConfig.html +0 -550
- package/docs/interfaces/ASO_v1.IConfigMapping.html +0 -230
- package/docs/interfaces/ASO_v1.ILocalization.html +0 -482
- package/docs/interfaces/ASO_v1.ILocalizationMap.html +0 -78
- package/docs/interfaces/ASO_v1.ILocalizationMapping.html +0 -482
- package/docs/interfaces/ASO_v1.IOfferResult.html +0 -104
- package/docs/interfaces/ASO_v1.IOfferResultEmoji.html +0 -83
- package/docs/interfaces/ASO_v1.IOfferResultMapping.html +0 -118
- package/docs/interfaces/ASO_v1.IOfferSectionMapping.html +0 -109
- package/docs/interfaces/ASO_v1.IOffersSection.html +0 -102
- package/docs/interfaces/ASO_v1.ISectionPalette.html +0 -153
- package/docs/interfaces/ASO_v1.ISectionPaletteMapping.html +0 -153
- package/docs/interfaces/ASO_v2.IAuthorizationActionMapping.html +0 -139
- package/docs/interfaces/ASO_v2.IColoredSpanMapping.html +0 -90
- package/docs/interfaces/ASO_v2.IColoredString.html +0 -90
- package/docs/interfaces/ASO_v2.IColoredStringMapping.html +0 -90
- package/docs/interfaces/ASO_v2.IConfig.html +0 -494
- package/docs/interfaces/ASO_v2.IConfigMapping.html +0 -202
- package/docs/interfaces/ASO_v2.ILocalization.html +0 -475
- package/docs/interfaces/ASO_v2.ILocalizationMap.html +0 -76
- package/docs/interfaces/ASO_v2.ILocalizationMapping.html +0 -363
- package/docs/interfaces/ASO_v2.IOfferResult.html +0 -111
- package/docs/interfaces/ASO_v2.IOfferResultMapping.html +0 -118
- package/docs/interfaces/ASO_v2.IOfferSectionMapping.html +0 -109
- package/docs/interfaces/ASO_v2.IOffersSection.html +0 -102
- package/docs/interfaces/ASO_v2.ISectionPalette.html +0 -153
- package/docs/interfaces/ASO_v2.ISectionPaletteMapping.html +0 -153
- package/docs/interfaces/ASO_v3.IAuthorizationActionMapping.html +0 -139
- package/docs/interfaces/ASO_v3.IColoredSpanMapping.html +0 -90
- package/docs/interfaces/ASO_v3.IColoredString.html +0 -90
- package/docs/interfaces/ASO_v3.IColoredStringMapping.html +0 -90
- package/docs/interfaces/ASO_v3.IConfig.html +0 -515
- package/docs/interfaces/ASO_v3.IConfigMapping.html +0 -209
- package/docs/interfaces/ASO_v3.ILocalization.html +0 -447
- package/docs/interfaces/ASO_v3.ILocalizationMap.html +0 -75
- package/docs/interfaces/ASO_v3.ILocalizationMapping.html +0 -342
- package/docs/interfaces/ASO_v3.IOfferResultMapping.html +0 -118
- package/docs/interfaces/ASO_v3.IOfferSectionMapping.html +0 -109
- package/docs/interfaces/ASO_v3.IOffersSection.html +0 -102
- package/docs/interfaces/ASO_v3.ISectionPalette.html +0 -153
- package/docs/interfaces/ASO_v3.ISectionPaletteMapping.html +0 -153
- package/docs/interfaces/ASO_v4.IAuthorizationActionMapping.html +0 -139
- package/docs/interfaces/ASO_v4.IColoredSpanMapping.html +0 -90
- package/docs/interfaces/ASO_v4.IColoredString.html +0 -90
- package/docs/interfaces/ASO_v4.IColoredStringMapping.html +0 -90
- package/docs/interfaces/ASO_v4.IConfig.html +0 -515
- package/docs/interfaces/ASO_v4.IConfigMapping.html +0 -132
- package/docs/interfaces/ASO_v4.ILocalization.html +0 -370
- package/docs/interfaces/ASO_v4.ILocalizationMap.html +0 -73
- package/docs/interfaces/ASO_v4.ILocalizationMapping.html +0 -258
- package/docs/interfaces/ASO_v4.IOfferResultMapping.html +0 -118
- package/docs/interfaces/ASO_v4.IOfferSectionMapping.html +0 -90
- package/docs/interfaces/ASO_v4.LocalizedString.html +0 -83
- package/docs/interfaces/ASO_v5.IAuthorizationActionMapping.html +0 -139
- package/docs/interfaces/ASO_v5.IColoredSpan.html +0 -90
- package/docs/interfaces/ASO_v5.IColoredSpanMapping.html +0 -90
- package/docs/interfaces/ASO_v5.IColoredString.html +0 -90
- package/docs/interfaces/ASO_v5.IColoredStringMapping.html +0 -90
- package/docs/interfaces/ASO_v5.IConfig.html +0 -543
- package/docs/interfaces/ASO_v5.IConfigMapping.html +0 -160
- package/docs/interfaces/ASO_v5.ILocalization.html +0 -412
- package/docs/interfaces/ASO_v5.ILocalizationMap.html +0 -74
- package/docs/interfaces/ASO_v5.ILocalizationMapping.html +0 -300
- package/docs/interfaces/ASO_v5.IOfferResultMapping.html +0 -118
- package/docs/interfaces/ASO_v5.IOfferSectionMapping.html +0 -90
- package/docs/interfaces/ASO_v5.LocalizedString.html +0 -83
- package/docs/interfaces/IAsoConfigResponse.html +0 -82
- package/docs/interfaces/IAsoCustomizedOffer.html +0 -117
- package/docs/interfaces/IAsoDefaultConfig.html +0 -444
- package/docs/interfaces/IAsoOfferResponse.html +0 -82
- package/docs/interfaces/IAsoSection.html +0 -89
- package/docs/interfaces/IAsoSingleOffer.html +0 -89
- package/docs/interfaces/IAuthToken.html +0 -103
- package/docs/interfaces/IColoredTextProps.html +0 -75
- package/docs/interfaces/IFlashApp.html +0 -145
- package/docs/interfaces/IFlashAppListItem.html +0 -89
- package/docs/interfaces/IGradient.html +0 -96
- package/docs/interfaces/IOffer.html +0 -138
- package/docs/interfaces/IOfferWallAuthConfig.html +0 -131
- package/docs/interfaces/IOfferWallAuthLocalization.html +0 -103
- package/docs/interfaces/IOfferWallAuthSubmitRequest.html +0 -75
- package/docs/interfaces/IOfferWallAuthSubmitResponse.html +0 -75
- package/docs/interfaces/IOfferWallHomeDialogData.html +0 -96
- package/docs/interfaces/IOfferWallOffer.html +0 -110
- package/docs/interfaces/IOfferWallResponse.html +0 -82
- package/docs/interfaces/IOfferWallSection.html +0 -89
- package/docs/interfaces/IPanelUser.html +0 -1406
- package/docs/interfaces/IPush.html +0 -96
- package/docs/interfaces/IShape.html +0 -103
- package/docs/interfaces/IStroke.html +0 -82
- package/docs/interfaces/IUpsertFlashAppRequest.html +0 -215
- package/docs/interfaces/IUpsertFlashAppResponse.html +0 -82
- package/docs/modules/ASOConfigFetch.html +0 -64
- package/docs/modules/ASO_v0.html +0 -97
- package/docs/modules/ASO_v1.html +0 -97
- package/docs/modules/ASO_v2.html +0 -93
- package/docs/modules/ASO_v3.html +0 -91
- package/docs/modules/ASO_v4.html +0 -87
- package/docs/modules/ASO_v5.html +0 -89
- package/docs/modules.html +0 -134
- package/docs/variables/FlashAppSchema.html +0 -84
- package/docs/variables/PanelUserSchema.html +0 -84
package/README.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
# ASO Core
|
|
1
|
+
# ASO Core
|
|
@@ -1,53 +1,53 @@
|
|
|
1
|
-
export declare enum AlternativeNetworkTool {
|
|
2
|
-
RETROFIT = "Retrofit",
|
|
3
|
-
VOLLEY = "Volley",
|
|
4
|
-
HTTP_URL = "HTTPUrlConnection"
|
|
5
|
-
}
|
|
6
|
-
export declare enum AlternativeLogicType {
|
|
7
|
-
CALLBACKS = "Callback",
|
|
8
|
-
RX = "RX",
|
|
9
|
-
COROUTINES = "Coroutines"
|
|
10
|
-
}
|
|
11
|
-
export declare enum AlternativeNavigation {
|
|
12
|
-
ACTIVITY = "Activity",
|
|
13
|
-
FRAGMENT_FM = "Fragment",
|
|
14
|
-
FRAGMENT_NAV_HOST = "Fragment (NavHost)"
|
|
15
|
-
}
|
|
16
|
-
export declare enum AlternativeStorageType {
|
|
17
|
-
FILE = "File",
|
|
18
|
-
ROOM = "Room",
|
|
19
|
-
ENCRYPTED_PREFS = "Encrypted Preferences",
|
|
20
|
-
SHARED_PREFERENCES = "Shared Preferences",
|
|
21
|
-
CONTENT_PROVIDER = "Content Provider"
|
|
22
|
-
}
|
|
23
|
-
export declare enum AlternativeLayoutType {
|
|
24
|
-
DATA_BINDING = "DataBinding",
|
|
25
|
-
BY_ID = "findViewById",
|
|
26
|
-
PROGRAMATICALLY = "Create in code"
|
|
27
|
-
}
|
|
28
|
-
export declare enum AlternativeFullscreen {
|
|
29
|
-
INSETS = "Insets",
|
|
30
|
-
FLAGS = "Flags",
|
|
31
|
-
IMMERSIVE = "Immersive"
|
|
32
|
-
}
|
|
33
|
-
export declare enum AlternativeSourceType {
|
|
34
|
-
FIREBASE_REALTIME_DATABASE = "Firebase Realtime DB",
|
|
35
|
-
GET_RETROFIT = "From link via Retrofit",
|
|
36
|
-
GET_VOLLEY = "From link via Volley",
|
|
37
|
-
GET_HTTP_URL = "From link via HTTPUrlConnection",
|
|
38
|
-
DIRECT = "Directly from link"
|
|
39
|
-
}
|
|
40
|
-
export declare enum AlternativeOnBackPressed {
|
|
41
|
-
OLD = "Old",
|
|
42
|
-
NEW = "New"
|
|
43
|
-
}
|
|
44
|
-
export declare enum AlternativeOnActivityResult {
|
|
45
|
-
OVERRIDE = "Override",
|
|
46
|
-
CALLBACK = "Callback"
|
|
47
|
-
}
|
|
48
|
-
export interface IAppIntegration {
|
|
49
|
-
id: number;
|
|
50
|
-
name: string;
|
|
51
|
-
description: string;
|
|
52
|
-
alterations: [any[]];
|
|
53
|
-
}
|
|
1
|
+
export declare enum AlternativeNetworkTool {
|
|
2
|
+
RETROFIT = "Retrofit",
|
|
3
|
+
VOLLEY = "Volley",
|
|
4
|
+
HTTP_URL = "HTTPUrlConnection"
|
|
5
|
+
}
|
|
6
|
+
export declare enum AlternativeLogicType {
|
|
7
|
+
CALLBACKS = "Callback",
|
|
8
|
+
RX = "RX",
|
|
9
|
+
COROUTINES = "Coroutines"
|
|
10
|
+
}
|
|
11
|
+
export declare enum AlternativeNavigation {
|
|
12
|
+
ACTIVITY = "Activity",
|
|
13
|
+
FRAGMENT_FM = "Fragment",
|
|
14
|
+
FRAGMENT_NAV_HOST = "Fragment (NavHost)"
|
|
15
|
+
}
|
|
16
|
+
export declare enum AlternativeStorageType {
|
|
17
|
+
FILE = "File",
|
|
18
|
+
ROOM = "Room",
|
|
19
|
+
ENCRYPTED_PREFS = "Encrypted Preferences",
|
|
20
|
+
SHARED_PREFERENCES = "Shared Preferences",
|
|
21
|
+
CONTENT_PROVIDER = "Content Provider"
|
|
22
|
+
}
|
|
23
|
+
export declare enum AlternativeLayoutType {
|
|
24
|
+
DATA_BINDING = "DataBinding",
|
|
25
|
+
BY_ID = "findViewById",
|
|
26
|
+
PROGRAMATICALLY = "Create in code"
|
|
27
|
+
}
|
|
28
|
+
export declare enum AlternativeFullscreen {
|
|
29
|
+
INSETS = "Insets",
|
|
30
|
+
FLAGS = "Flags",
|
|
31
|
+
IMMERSIVE = "Immersive"
|
|
32
|
+
}
|
|
33
|
+
export declare enum AlternativeSourceType {
|
|
34
|
+
FIREBASE_REALTIME_DATABASE = "Firebase Realtime DB",
|
|
35
|
+
GET_RETROFIT = "From link via Retrofit",
|
|
36
|
+
GET_VOLLEY = "From link via Volley",
|
|
37
|
+
GET_HTTP_URL = "From link via HTTPUrlConnection",
|
|
38
|
+
DIRECT = "Directly from link"
|
|
39
|
+
}
|
|
40
|
+
export declare enum AlternativeOnBackPressed {
|
|
41
|
+
OLD = "Old",
|
|
42
|
+
NEW = "New"
|
|
43
|
+
}
|
|
44
|
+
export declare enum AlternativeOnActivityResult {
|
|
45
|
+
OVERRIDE = "Override",
|
|
46
|
+
CALLBACK = "Callback"
|
|
47
|
+
}
|
|
48
|
+
export interface IAppIntegration {
|
|
49
|
+
id: number;
|
|
50
|
+
name: string;
|
|
51
|
+
description: string;
|
|
52
|
+
alterations: [any[]];
|
|
53
|
+
}
|
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AlternativeOnActivityResult = exports.AlternativeOnBackPressed = exports.AlternativeSourceType = exports.AlternativeFullscreen = exports.AlternativeLayoutType = exports.AlternativeStorageType = exports.AlternativeNavigation = exports.AlternativeLogicType = exports.AlternativeNetworkTool = void 0;
|
|
4
|
-
var AlternativeNetworkTool;
|
|
5
|
-
(function (AlternativeNetworkTool) {
|
|
6
|
-
AlternativeNetworkTool["RETROFIT"] = "Retrofit";
|
|
7
|
-
AlternativeNetworkTool["VOLLEY"] = "Volley";
|
|
8
|
-
AlternativeNetworkTool["HTTP_URL"] = "HTTPUrlConnection";
|
|
9
|
-
})(AlternativeNetworkTool = exports.AlternativeNetworkTool || (exports.AlternativeNetworkTool = {}));
|
|
10
|
-
var AlternativeLogicType;
|
|
11
|
-
(function (AlternativeLogicType) {
|
|
12
|
-
AlternativeLogicType["CALLBACKS"] = "Callback";
|
|
13
|
-
AlternativeLogicType["RX"] = "RX";
|
|
14
|
-
AlternativeLogicType["COROUTINES"] = "Coroutines";
|
|
15
|
-
})(AlternativeLogicType = exports.AlternativeLogicType || (exports.AlternativeLogicType = {}));
|
|
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
|
-
var AlternativeStorageType;
|
|
23
|
-
(function (AlternativeStorageType) {
|
|
24
|
-
AlternativeStorageType["FILE"] = "File";
|
|
25
|
-
AlternativeStorageType["ROOM"] = "Room";
|
|
26
|
-
AlternativeStorageType["ENCRYPTED_PREFS"] = "Encrypted Preferences";
|
|
27
|
-
AlternativeStorageType["SHARED_PREFERENCES"] = "Shared Preferences";
|
|
28
|
-
AlternativeStorageType["CONTENT_PROVIDER"] = "Content Provider";
|
|
29
|
-
})(AlternativeStorageType = exports.AlternativeStorageType || (exports.AlternativeStorageType = {}));
|
|
30
|
-
var AlternativeLayoutType;
|
|
31
|
-
(function (AlternativeLayoutType) {
|
|
32
|
-
AlternativeLayoutType["DATA_BINDING"] = "DataBinding";
|
|
33
|
-
AlternativeLayoutType["BY_ID"] = "findViewById";
|
|
34
|
-
AlternativeLayoutType["PROGRAMATICALLY"] = "Create in code";
|
|
35
|
-
})(AlternativeLayoutType = exports.AlternativeLayoutType || (exports.AlternativeLayoutType = {}));
|
|
36
|
-
var AlternativeFullscreen;
|
|
37
|
-
(function (AlternativeFullscreen) {
|
|
38
|
-
AlternativeFullscreen["INSETS"] = "Insets";
|
|
39
|
-
AlternativeFullscreen["FLAGS"] = "Flags";
|
|
40
|
-
AlternativeFullscreen["IMMERSIVE"] = "Immersive";
|
|
41
|
-
})(AlternativeFullscreen = exports.AlternativeFullscreen || (exports.AlternativeFullscreen = {}));
|
|
42
|
-
var AlternativeSourceType;
|
|
43
|
-
(function (AlternativeSourceType) {
|
|
44
|
-
AlternativeSourceType["FIREBASE_REALTIME_DATABASE"] = "Firebase Realtime DB";
|
|
45
|
-
AlternativeSourceType["GET_RETROFIT"] = "From link via Retrofit";
|
|
46
|
-
AlternativeSourceType["GET_VOLLEY"] = "From link via Volley";
|
|
47
|
-
AlternativeSourceType["GET_HTTP_URL"] = "From link via HTTPUrlConnection";
|
|
48
|
-
AlternativeSourceType["DIRECT"] = "Directly from link";
|
|
49
|
-
// WITHIN_WEBVIEW = "Within webview",
|
|
50
|
-
})(AlternativeSourceType = exports.AlternativeSourceType || (exports.AlternativeSourceType = {}));
|
|
51
|
-
// backpress
|
|
52
|
-
// activity result
|
|
53
|
-
// fulscreen
|
|
54
|
-
var AlternativeOnBackPressed;
|
|
55
|
-
(function (AlternativeOnBackPressed) {
|
|
56
|
-
AlternativeOnBackPressed["OLD"] = "Old";
|
|
57
|
-
AlternativeOnBackPressed["NEW"] = "New";
|
|
58
|
-
})(AlternativeOnBackPressed = exports.AlternativeOnBackPressed || (exports.AlternativeOnBackPressed = {}));
|
|
59
|
-
var AlternativeOnActivityResult;
|
|
60
|
-
(function (AlternativeOnActivityResult) {
|
|
61
|
-
AlternativeOnActivityResult["OVERRIDE"] = "Override";
|
|
62
|
-
AlternativeOnActivityResult["CALLBACK"] = "Callback";
|
|
63
|
-
})(AlternativeOnActivityResult = exports.AlternativeOnActivityResult || (exports.AlternativeOnActivityResult = {}));
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AlternativeOnActivityResult = exports.AlternativeOnBackPressed = exports.AlternativeSourceType = exports.AlternativeFullscreen = exports.AlternativeLayoutType = exports.AlternativeStorageType = exports.AlternativeNavigation = exports.AlternativeLogicType = exports.AlternativeNetworkTool = void 0;
|
|
4
|
+
var AlternativeNetworkTool;
|
|
5
|
+
(function (AlternativeNetworkTool) {
|
|
6
|
+
AlternativeNetworkTool["RETROFIT"] = "Retrofit";
|
|
7
|
+
AlternativeNetworkTool["VOLLEY"] = "Volley";
|
|
8
|
+
AlternativeNetworkTool["HTTP_URL"] = "HTTPUrlConnection";
|
|
9
|
+
})(AlternativeNetworkTool = exports.AlternativeNetworkTool || (exports.AlternativeNetworkTool = {}));
|
|
10
|
+
var AlternativeLogicType;
|
|
11
|
+
(function (AlternativeLogicType) {
|
|
12
|
+
AlternativeLogicType["CALLBACKS"] = "Callback";
|
|
13
|
+
AlternativeLogicType["RX"] = "RX";
|
|
14
|
+
AlternativeLogicType["COROUTINES"] = "Coroutines";
|
|
15
|
+
})(AlternativeLogicType = exports.AlternativeLogicType || (exports.AlternativeLogicType = {}));
|
|
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
|
+
var AlternativeStorageType;
|
|
23
|
+
(function (AlternativeStorageType) {
|
|
24
|
+
AlternativeStorageType["FILE"] = "File";
|
|
25
|
+
AlternativeStorageType["ROOM"] = "Room";
|
|
26
|
+
AlternativeStorageType["ENCRYPTED_PREFS"] = "Encrypted Preferences";
|
|
27
|
+
AlternativeStorageType["SHARED_PREFERENCES"] = "Shared Preferences";
|
|
28
|
+
AlternativeStorageType["CONTENT_PROVIDER"] = "Content Provider";
|
|
29
|
+
})(AlternativeStorageType = exports.AlternativeStorageType || (exports.AlternativeStorageType = {}));
|
|
30
|
+
var AlternativeLayoutType;
|
|
31
|
+
(function (AlternativeLayoutType) {
|
|
32
|
+
AlternativeLayoutType["DATA_BINDING"] = "DataBinding";
|
|
33
|
+
AlternativeLayoutType["BY_ID"] = "findViewById";
|
|
34
|
+
AlternativeLayoutType["PROGRAMATICALLY"] = "Create in code";
|
|
35
|
+
})(AlternativeLayoutType = exports.AlternativeLayoutType || (exports.AlternativeLayoutType = {}));
|
|
36
|
+
var AlternativeFullscreen;
|
|
37
|
+
(function (AlternativeFullscreen) {
|
|
38
|
+
AlternativeFullscreen["INSETS"] = "Insets";
|
|
39
|
+
AlternativeFullscreen["FLAGS"] = "Flags";
|
|
40
|
+
AlternativeFullscreen["IMMERSIVE"] = "Immersive";
|
|
41
|
+
})(AlternativeFullscreen = exports.AlternativeFullscreen || (exports.AlternativeFullscreen = {}));
|
|
42
|
+
var AlternativeSourceType;
|
|
43
|
+
(function (AlternativeSourceType) {
|
|
44
|
+
AlternativeSourceType["FIREBASE_REALTIME_DATABASE"] = "Firebase Realtime DB";
|
|
45
|
+
AlternativeSourceType["GET_RETROFIT"] = "From link via Retrofit";
|
|
46
|
+
AlternativeSourceType["GET_VOLLEY"] = "From link via Volley";
|
|
47
|
+
AlternativeSourceType["GET_HTTP_URL"] = "From link via HTTPUrlConnection";
|
|
48
|
+
AlternativeSourceType["DIRECT"] = "Directly from link";
|
|
49
|
+
// WITHIN_WEBVIEW = "Within webview",
|
|
50
|
+
})(AlternativeSourceType = exports.AlternativeSourceType || (exports.AlternativeSourceType = {}));
|
|
51
|
+
// backpress
|
|
52
|
+
// activity result
|
|
53
|
+
// fulscreen
|
|
54
|
+
var AlternativeOnBackPressed;
|
|
55
|
+
(function (AlternativeOnBackPressed) {
|
|
56
|
+
AlternativeOnBackPressed["OLD"] = "Old";
|
|
57
|
+
AlternativeOnBackPressed["NEW"] = "New";
|
|
58
|
+
})(AlternativeOnBackPressed = exports.AlternativeOnBackPressed || (exports.AlternativeOnBackPressed = {}));
|
|
59
|
+
var AlternativeOnActivityResult;
|
|
60
|
+
(function (AlternativeOnActivityResult) {
|
|
61
|
+
AlternativeOnActivityResult["OVERRIDE"] = "Override";
|
|
62
|
+
AlternativeOnActivityResult["CALLBACK"] = "Callback";
|
|
63
|
+
})(AlternativeOnActivityResult = exports.AlternativeOnActivityResult || (exports.AlternativeOnActivityResult = {}));
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export interface IAppListItem {
|
|
2
|
-
id: number;
|
|
3
|
-
bundle: string;
|
|
4
|
-
name: string;
|
|
5
|
-
}
|
|
1
|
+
export interface IAppListItem {
|
|
2
|
+
id: number;
|
|
3
|
+
bundle: string;
|
|
4
|
+
name: string;
|
|
5
|
+
}
|
package/lib/app/app-list-item.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/lib/app/app-type.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare enum AppType {
|
|
2
|
-
GAMBLING = "gambling",
|
|
3
|
-
FINANCES = "finances"
|
|
4
|
-
}
|
|
1
|
+
export declare enum AppType {
|
|
2
|
+
GAMBLING = "gambling",
|
|
3
|
+
FINANCES = "finances"
|
|
4
|
+
}
|
package/lib/app/app-type.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AppType = void 0;
|
|
4
|
-
var AppType;
|
|
5
|
-
(function (AppType) {
|
|
6
|
-
AppType["GAMBLING"] = "gambling";
|
|
7
|
-
AppType["FINANCES"] = "finances"; // do not change the order!
|
|
8
|
-
})(AppType = exports.AppType || (exports.AppType = {}));
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AppType = void 0;
|
|
4
|
+
var AppType;
|
|
5
|
+
(function (AppType) {
|
|
6
|
+
AppType["GAMBLING"] = "gambling";
|
|
7
|
+
AppType["FINANCES"] = "finances"; // do not change the order!
|
|
8
|
+
})(AppType = exports.AppType || (exports.AppType = {}));
|