@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,36 +1,36 @@
|
|
|
1
|
-
export interface IKeitaroCampaign {
|
|
2
|
-
id: number
|
|
3
|
-
alias: string,
|
|
4
|
-
name: string
|
|
5
|
-
type: string
|
|
6
|
-
uniqueness_method: string
|
|
7
|
-
cookies_ttl: number
|
|
8
|
-
is_paused: boolean
|
|
9
|
-
state: string
|
|
10
|
-
cost_type: string // CPC
|
|
11
|
-
cost_value: number
|
|
12
|
-
cost_currency: string
|
|
13
|
-
group_id: number
|
|
14
|
-
traffic_source_id: number
|
|
15
|
-
cost_auto: boolean
|
|
16
|
-
domain_id: number
|
|
17
|
-
domain: string // https://generous-slide.com/,
|
|
18
|
-
uniqueness_use_cookies: boolean
|
|
19
|
-
traffic_loss: number
|
|
20
|
-
parameters: IKeitaroCampaignParameters
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
export interface IKeitaroCampaignParameters {
|
|
24
|
-
[key: string]: IKeitaroCampaignParameter
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
export interface IKeitaroCampaignParameter {
|
|
29
|
-
name: string,
|
|
30
|
-
placeholder: string,
|
|
31
|
-
alias: string
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export const AI_CAMPAIGN_GROUP_FLASH_REDIRECT = 82
|
|
35
|
-
|
|
1
|
+
export interface IKeitaroCampaign {
|
|
2
|
+
id: number
|
|
3
|
+
alias: string,
|
|
4
|
+
name: string
|
|
5
|
+
type: string
|
|
6
|
+
uniqueness_method: string
|
|
7
|
+
cookies_ttl: number
|
|
8
|
+
is_paused: boolean
|
|
9
|
+
state: string
|
|
10
|
+
cost_type: string // CPC
|
|
11
|
+
cost_value: number
|
|
12
|
+
cost_currency: string
|
|
13
|
+
group_id: number
|
|
14
|
+
traffic_source_id: number
|
|
15
|
+
cost_auto: boolean
|
|
16
|
+
domain_id: number
|
|
17
|
+
domain: string // https://generous-slide.com/,
|
|
18
|
+
uniqueness_use_cookies: boolean
|
|
19
|
+
traffic_loss: number
|
|
20
|
+
parameters: IKeitaroCampaignParameters
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface IKeitaroCampaignParameters {
|
|
24
|
+
[key: string]: IKeitaroCampaignParameter
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
export interface IKeitaroCampaignParameter {
|
|
29
|
+
name: string,
|
|
30
|
+
placeholder: string,
|
|
31
|
+
alias: string
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export const AI_CAMPAIGN_GROUP_FLASH_REDIRECT = 82
|
|
35
|
+
|
|
36
36
|
export const AI_CAMPAIGN_TRAFFIC_SOURCE_FLASH = 22
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export interface IKeitaroDomain {
|
|
2
|
-
id: number,
|
|
3
|
-
name: "string",
|
|
4
|
-
state: "active",
|
|
5
|
-
network_status: "active"
|
|
1
|
+
export interface IKeitaroDomain {
|
|
2
|
+
id: number,
|
|
3
|
+
name: "string",
|
|
4
|
+
state: "active",
|
|
5
|
+
network_status: "active"
|
|
6
6
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export interface IKeitaroOffer {
|
|
2
|
-
id: number;
|
|
3
|
-
campaign_id: number;
|
|
4
|
-
name: string;
|
|
5
|
-
url: string;
|
|
6
|
-
country: string
|
|
1
|
+
export interface IKeitaroOffer {
|
|
2
|
+
id: number;
|
|
3
|
+
campaign_id: number;
|
|
4
|
+
name: string;
|
|
5
|
+
url: string;
|
|
6
|
+
country: string
|
|
7
7
|
}
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
export interface IKeitaroStream {
|
|
2
|
-
id: number;
|
|
3
|
-
name: string;
|
|
4
|
-
campaign_id: number;
|
|
5
|
-
offer_id: number;
|
|
6
|
-
url: string;
|
|
7
|
-
redirect_url: string;
|
|
8
|
-
traffic_type: string;
|
|
9
|
-
state: string;
|
|
10
|
-
action_payload: string,
|
|
11
|
-
filters: any[]
|
|
12
|
-
filter_or: boolean,
|
|
13
|
-
collect_clicks: boolean,
|
|
14
|
-
weight: number,
|
|
15
|
-
position: number;
|
|
16
|
-
offers: any[],
|
|
17
|
-
schema: string,
|
|
18
|
-
type: string,
|
|
19
|
-
action_type: string
|
|
1
|
+
export interface IKeitaroStream {
|
|
2
|
+
id: number;
|
|
3
|
+
name: string;
|
|
4
|
+
campaign_id: number;
|
|
5
|
+
offer_id: number;
|
|
6
|
+
url: string;
|
|
7
|
+
redirect_url: string;
|
|
8
|
+
traffic_type: string;
|
|
9
|
+
state: string;
|
|
10
|
+
action_payload: string,
|
|
11
|
+
filters: any[]
|
|
12
|
+
filter_or: boolean,
|
|
13
|
+
collect_clicks: boolean,
|
|
14
|
+
weight: number,
|
|
15
|
+
position: number;
|
|
16
|
+
offers: any[],
|
|
17
|
+
schema: string,
|
|
18
|
+
type: string,
|
|
19
|
+
action_type: string
|
|
20
20
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import axios from "axios";
|
|
2
|
-
|
|
3
|
-
export default axios.create({
|
|
4
|
-
baseURL: 'https://aibprtsk.com/admin_api/v1/',
|
|
5
|
-
headers: {
|
|
6
|
-
"Api-Key": `a5369b1016aa6bd6453751a393b157b4`,
|
|
7
|
-
},
|
|
8
|
-
});
|
|
1
|
+
import axios from "axios";
|
|
2
|
+
|
|
3
|
+
export default axios.create({
|
|
4
|
+
baseURL: 'https://aibprtsk.com/admin_api/v1/',
|
|
5
|
+
headers: {
|
|
6
|
+
"Api-Key": `a5369b1016aa6bd6453751a393b157b4`,
|
|
7
|
+
},
|
|
8
|
+
});
|