@bprotsyk/aso-core 2.1.37 → 2.1.39
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 +208 -290
- package/lib/app/app.js +156 -156
- package/lib/general/cloudflare-domain.d.ts +42 -42
- package/lib/general/cloudflare-domain.js +12 -12
- package/lib/general/domain.d.ts +110 -169
- package/lib/general/domain.js +62 -62
- package/lib/general/namecheap-domain.d.ts +85 -132
- 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 +50 -48
- package/lib/network/keitaro/keitaro-service.js +283 -293
- package/lib/offers/list.d.ts +42 -435
- package/lib/offers/list.js +12 -12
- package/lib/offers/offer.d.ts +91 -152
- 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 -60
- package/lib/offers/section.js +20 -20
- package/lib/panel/app/upsert-flash-app-request.d.ts +31 -31
- package/lib/panel/app/upsert-flash-app-request.js +2 -2
- 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 -59
- 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 -13
- package/lib/utils/keitaro-utils.js +614 -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 +317 -317
- package/src/general/cloudflare-domain.ts +44 -44
- package/src/general/domain.ts +106 -106
- 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 +348 -364
- package/src/offers/list.ts +22 -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/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 +717 -664
- 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
|
@@ -1,53 +1,53 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.mofidyGradleBuildFile = exports.modifyAppBuildGragleFile = void 0;
|
|
4
|
-
let modifyAppBuildGragleFile = async (file, alias, password, keyName) => {
|
|
5
|
-
const newSigningConfig = `
|
|
6
|
-
signingConfigs {
|
|
7
|
-
release {
|
|
8
|
-
keyAlias "${alias}"
|
|
9
|
-
keyPassword "${password}"
|
|
10
|
-
storePassword "${password}"
|
|
11
|
-
storeFile file('./${keyName}.jks')
|
|
12
|
-
v1SigningEnabled true
|
|
13
|
-
v2SigningEnabled true
|
|
14
|
-
}
|
|
15
|
-
`;
|
|
16
|
-
const huaweiBlock = `
|
|
17
|
-
huawei {
|
|
18
|
-
minifyEnabled true
|
|
19
|
-
shrinkResources true
|
|
20
|
-
signingConfig signingConfigs.release
|
|
21
|
-
proguardFiles(
|
|
22
|
-
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
23
|
-
"proguard-rules.pro"
|
|
24
|
-
)
|
|
25
|
-
}
|
|
26
|
-
`;
|
|
27
|
-
let updatedConfigString = file.replace(/(signingConfigs\s*{[^}]+})/, newSigningConfig.trim());
|
|
28
|
-
if (!file.includes("signingConfigs")) {
|
|
29
|
-
// If the signingConfigs block doesn't exist, insert it after buildTypes
|
|
30
|
-
updatedConfigString = file.replace("buildTypes {", `signingConfigs ${newSigningConfig.trim()}\n\nbuildTypes {`);
|
|
31
|
-
}
|
|
32
|
-
file = updatedConfigString
|
|
33
|
-
.replace("buildTypes {", `buildTypes {\n${huaweiBlock.trim()}\n`)
|
|
34
|
-
.replace("plugins {", "plugins {\n id 'com.huawei.agconnect'")
|
|
35
|
-
.replace("apply plugin: 'com.android.application'", "apply plugin: 'com.huawei.agconnect'\napply plugin: 'com.android.application'")
|
|
36
|
-
.replace(/(implementation 'com\.onesignal.*')/g, `debugImplementation 'com.onesignal:OneSignal:4.7.2'
|
|
37
|
-
releaseImplementation 'com.onesignal:OneSignal:4.7.2'
|
|
38
|
-
|
|
39
|
-
huaweiImplementation 'com.huawei.hms:push:6.3.0.304'
|
|
40
|
-
|
|
41
|
-
huaweiImplementation('com.onesignal:OneSignal:4.7.2') {
|
|
42
|
-
exclude group: 'com.google.android.gms'
|
|
43
|
-
exclude group: 'com.google.firebase'
|
|
44
|
-
}`);
|
|
45
|
-
return file;
|
|
46
|
-
};
|
|
47
|
-
exports.modifyAppBuildGragleFile = modifyAppBuildGragleFile;
|
|
48
|
-
let mofidyGradleBuildFile = async (file) => {
|
|
49
|
-
return file
|
|
50
|
-
.replace(/repositories {/g, "repositories {\nmaven {url 'https://developer.huawei.com/repo/'")
|
|
51
|
-
.replace(/dependencies {/g, "dependencies {\nclasspath 'com.huawei.agconnect:agcp:1.9.0.300'");
|
|
52
|
-
};
|
|
53
|
-
exports.mofidyGradleBuildFile = mofidyGradleBuildFile;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.mofidyGradleBuildFile = exports.modifyAppBuildGragleFile = void 0;
|
|
4
|
+
let modifyAppBuildGragleFile = async (file, alias, password, keyName) => {
|
|
5
|
+
const newSigningConfig = `
|
|
6
|
+
signingConfigs {
|
|
7
|
+
release {
|
|
8
|
+
keyAlias "${alias}"
|
|
9
|
+
keyPassword "${password}"
|
|
10
|
+
storePassword "${password}"
|
|
11
|
+
storeFile file('./${keyName}.jks')
|
|
12
|
+
v1SigningEnabled true
|
|
13
|
+
v2SigningEnabled true
|
|
14
|
+
}
|
|
15
|
+
`;
|
|
16
|
+
const huaweiBlock = `
|
|
17
|
+
huawei {
|
|
18
|
+
minifyEnabled true
|
|
19
|
+
shrinkResources true
|
|
20
|
+
signingConfig signingConfigs.release
|
|
21
|
+
proguardFiles(
|
|
22
|
+
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
23
|
+
"proguard-rules.pro"
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
`;
|
|
27
|
+
let updatedConfigString = file.replace(/(signingConfigs\s*{[^}]+})/, newSigningConfig.trim());
|
|
28
|
+
if (!file.includes("signingConfigs")) {
|
|
29
|
+
// If the signingConfigs block doesn't exist, insert it after buildTypes
|
|
30
|
+
updatedConfigString = file.replace("buildTypes {", `signingConfigs ${newSigningConfig.trim()}\n\nbuildTypes {`);
|
|
31
|
+
}
|
|
32
|
+
file = updatedConfigString
|
|
33
|
+
.replace("buildTypes {", `buildTypes {\n${huaweiBlock.trim()}\n`)
|
|
34
|
+
.replace("plugins {", "plugins {\n id 'com.huawei.agconnect'")
|
|
35
|
+
.replace("apply plugin: 'com.android.application'", "apply plugin: 'com.huawei.agconnect'\napply plugin: 'com.android.application'")
|
|
36
|
+
.replace(/(implementation 'com\.onesignal.*')/g, `debugImplementation 'com.onesignal:OneSignal:4.7.2'
|
|
37
|
+
releaseImplementation 'com.onesignal:OneSignal:4.7.2'
|
|
38
|
+
|
|
39
|
+
huaweiImplementation 'com.huawei.hms:push:6.3.0.304'
|
|
40
|
+
|
|
41
|
+
huaweiImplementation('com.onesignal:OneSignal:4.7.2') {
|
|
42
|
+
exclude group: 'com.google.android.gms'
|
|
43
|
+
exclude group: 'com.google.firebase'
|
|
44
|
+
}`);
|
|
45
|
+
return file;
|
|
46
|
+
};
|
|
47
|
+
exports.modifyAppBuildGragleFile = modifyAppBuildGragleFile;
|
|
48
|
+
let mofidyGradleBuildFile = async (file) => {
|
|
49
|
+
return file
|
|
50
|
+
.replace(/repositories {/g, "repositories {\nmaven {url 'https://developer.huawei.com/repo/'")
|
|
51
|
+
.replace(/dependencies {/g, "dependencies {\nclasspath 'com.huawei.agconnect:agcp:1.9.0.300'");
|
|
52
|
+
};
|
|
53
|
+
exports.mofidyGradleBuildFile = mofidyGradleBuildFile;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { IKeitaroStream } from "../keitaro/keitaro-stream";
|
|
2
|
-
import { IApp } from "../app/app";
|
|
3
|
-
import { IKeitaroCampaign, IKeitaroCampaignParameters } from "../keitaro/keitaro-campaign";
|
|
4
|
-
export declare const TRAFFIC_SOURCE_ID_FLASH_AI = 22;
|
|
5
|
-
export declare let addGeosToAllRedirectCampaigns: (geosToAdd: string) => Promise<void>;
|
|
6
|
-
export declare let removeGeosFromAllRedirectCampaigns: (geoToRemove: string) => Promise<void>;
|
|
7
|
-
export declare let prepareOWCampaignParameters: (app: IApp) => IKeitaroCampaignParameters;
|
|
8
|
-
export declare function createOWStreamPartialPayload(app: IApp): Partial<IKeitaroStream>;
|
|
9
|
-
export declare function createFlashCampaigns(app: IApp): Promise<{
|
|
10
|
-
tracking: IKeitaroCampaign;
|
|
11
|
-
}>;
|
|
12
|
-
export declare function createDirectCampaign(app: IApp): Promise<IKeitaroCampaign>;
|
|
13
|
-
export declare function createOWCampaign(app: IApp): Promise<IKeitaroCampaign>;
|
|
1
|
+
import { IKeitaroStream } from "../keitaro/keitaro-stream";
|
|
2
|
+
import { IApp } from "../app/app";
|
|
3
|
+
import { IKeitaroCampaign, IKeitaroCampaignParameters } from "../keitaro/keitaro-campaign";
|
|
4
|
+
export declare const TRAFFIC_SOURCE_ID_FLASH_AI = 22;
|
|
5
|
+
export declare let addGeosToAllRedirectCampaigns: (geosToAdd: string) => Promise<void>;
|
|
6
|
+
export declare let removeGeosFromAllRedirectCampaigns: (geoToRemove: string) => Promise<void>;
|
|
7
|
+
export declare let prepareOWCampaignParameters: (app: IApp) => IKeitaroCampaignParameters;
|
|
8
|
+
export declare function createOWStreamPartialPayload(app: IApp): Partial<IKeitaroStream>;
|
|
9
|
+
export declare function createFlashCampaigns(app: IApp): Promise<{
|
|
10
|
+
tracking: IKeitaroCampaign;
|
|
11
|
+
}>;
|
|
12
|
+
export declare function createDirectCampaign(app: IApp): Promise<IKeitaroCampaign>;
|
|
13
|
+
export declare function createOWCampaign(app: IApp): Promise<IKeitaroCampaign>;
|