@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,45 +1,45 @@
|
|
|
1
|
-
export interface ICloudflareDomain {
|
|
2
|
-
id: string;
|
|
3
|
-
name: string;
|
|
4
|
-
status: string;
|
|
5
|
-
paused: boolean;
|
|
6
|
-
type: string;
|
|
7
|
-
development_mode: number;
|
|
8
|
-
name_servers: string[];
|
|
9
|
-
original_name_servers: string[];
|
|
10
|
-
original_registrar: string | null;
|
|
11
|
-
original_dnshost: string | null;
|
|
12
|
-
modified_on: Date;
|
|
13
|
-
created_on: Date;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
export interface ICloudflareDomainRecord {
|
|
17
|
-
id: string;
|
|
18
|
-
zone_id: string;
|
|
19
|
-
zone_name: string;
|
|
20
|
-
name: string;
|
|
21
|
-
type: string; // A, TXT, MX
|
|
22
|
-
content: string;
|
|
23
|
-
proxiable: boolean;
|
|
24
|
-
proxied: boolean;
|
|
25
|
-
ttl: number;
|
|
26
|
-
locked: boolean;
|
|
27
|
-
meta: {
|
|
28
|
-
auto_added: boolean;
|
|
29
|
-
managed_by_apps: boolean;
|
|
30
|
-
managed_by_argo_tunnel: boolean;
|
|
31
|
-
};
|
|
32
|
-
comment: string;
|
|
33
|
-
tags: string[];
|
|
34
|
-
created_on: string;
|
|
35
|
-
modified_on: string;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
export enum ICloudflareDomainStatus {
|
|
39
|
-
PENDING = "pending"
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
export enum ICloudflareDomainType {
|
|
43
|
-
FULL = "full",
|
|
44
|
-
FLEXIBLE = "flexible"
|
|
1
|
+
export interface ICloudflareDomain {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
status: string;
|
|
5
|
+
paused: boolean;
|
|
6
|
+
type: string;
|
|
7
|
+
development_mode: number;
|
|
8
|
+
name_servers: string[];
|
|
9
|
+
original_name_servers: string[];
|
|
10
|
+
original_registrar: string | null;
|
|
11
|
+
original_dnshost: string | null;
|
|
12
|
+
modified_on: Date;
|
|
13
|
+
created_on: Date;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export interface ICloudflareDomainRecord {
|
|
17
|
+
id: string;
|
|
18
|
+
zone_id: string;
|
|
19
|
+
zone_name: string;
|
|
20
|
+
name: string;
|
|
21
|
+
type: string; // A, TXT, MX
|
|
22
|
+
content: string;
|
|
23
|
+
proxiable: boolean;
|
|
24
|
+
proxied: boolean;
|
|
25
|
+
ttl: number;
|
|
26
|
+
locked: boolean;
|
|
27
|
+
meta: {
|
|
28
|
+
auto_added: boolean;
|
|
29
|
+
managed_by_apps: boolean;
|
|
30
|
+
managed_by_argo_tunnel: boolean;
|
|
31
|
+
};
|
|
32
|
+
comment: string;
|
|
33
|
+
tags: string[];
|
|
34
|
+
created_on: string;
|
|
35
|
+
modified_on: string;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export enum ICloudflareDomainStatus {
|
|
39
|
+
PENDING = "pending"
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export enum ICloudflareDomainType {
|
|
43
|
+
FULL = "full",
|
|
44
|
+
FLEXIBLE = "flexible"
|
|
45
45
|
}
|
package/src/general/domain.ts
CHANGED
|
@@ -1,107 +1,107 @@
|
|
|
1
|
-
import { ICloudflareDomainType } from "general/cloudflare-domain"
|
|
2
|
-
import { Document, Model, Schema, model } from "mongoose"
|
|
3
|
-
|
|
4
|
-
export interface IDomain extends Document {
|
|
5
|
-
id: string
|
|
6
|
-
namecheapId: string
|
|
7
|
-
isUpdating: boolean
|
|
8
|
-
name: string
|
|
9
|
-
caption: string,
|
|
10
|
-
status: DomainStatus
|
|
11
|
-
cloudflareStatus: string
|
|
12
|
-
paused: boolean
|
|
13
|
-
type: ICloudflareDomainType
|
|
14
|
-
autorenew: boolean,
|
|
15
|
-
nameServers: string[]
|
|
16
|
-
originalNameServers: string[]
|
|
17
|
-
originalRegistrar: string | null
|
|
18
|
-
originalDNSHost: string | null
|
|
19
|
-
createdAt: number
|
|
20
|
-
expiresAt: number
|
|
21
|
-
ip: string
|
|
22
|
-
subdomain: string | null
|
|
23
|
-
txtRecords: string[]
|
|
24
|
-
mxRecord: string
|
|
25
|
-
target: DomainTarget,
|
|
26
|
-
assignedTo: number[]
|
|
27
|
-
archived: boolean,
|
|
28
|
-
title: string | String,
|
|
29
|
-
note: string,
|
|
30
|
-
proxied: boolean
|
|
31
|
-
appid
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export interface IDomainsBuyRequestResponse {
|
|
35
|
-
requestId: string,
|
|
36
|
-
totalPrice: number,
|
|
37
|
-
info: {
|
|
38
|
-
name: string,
|
|
39
|
-
price: number
|
|
40
|
-
}[]
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export interface IDomainSetupResult {
|
|
44
|
-
succeed: string[],
|
|
45
|
-
failed: string[]
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
export const CONST_CLOUFLARE_STATUS_READY = "active"
|
|
49
|
-
|
|
50
|
-
export enum DomainStatus {
|
|
51
|
-
PENDING = "pending",
|
|
52
|
-
READY = "ready",
|
|
53
|
-
READY_AND_NOTIFIED = "ready-and-notified",
|
|
54
|
-
WITHOUT_CLOUDFLARE = "without-cloudflare"
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
export enum DomainTarget {
|
|
58
|
-
KEITARO = "keitaro",
|
|
59
|
-
HOSTING = "hosting",
|
|
60
|
-
OTHER = "other",
|
|
61
|
-
MAIN = "main",
|
|
62
|
-
UNKNOWN = "unknown"
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
export let getDomainTargetByIp = (ip: string): DomainTarget => {
|
|
66
|
-
switch (ip) {
|
|
67
|
-
case "185.123.53.227":
|
|
68
|
-
return DomainTarget.MAIN
|
|
69
|
-
case "46.246.96.114":
|
|
70
|
-
return DomainTarget.KEITARO
|
|
71
|
-
case "46.246.98.201":
|
|
72
|
-
return DomainTarget.HOSTING
|
|
73
|
-
case "none":
|
|
74
|
-
return DomainTarget.UNKNOWN
|
|
75
|
-
|
|
76
|
-
default: return DomainTarget.OTHER
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
export const DomainSchema = new Schema({
|
|
81
|
-
id: String,
|
|
82
|
-
namecheapId: String,
|
|
83
|
-
name: String,
|
|
84
|
-
caption: String,
|
|
85
|
-
status: String,
|
|
86
|
-
isUpdating: Boolean,
|
|
87
|
-
cloudflareStatus: String,
|
|
88
|
-
paused: Boolean,
|
|
89
|
-
type: String,
|
|
90
|
-
nameServers: [String],
|
|
91
|
-
originalNameServers: [String],
|
|
92
|
-
originalRegistrar: String,
|
|
93
|
-
originalDNSHost: String,
|
|
94
|
-
createdAt: Number,
|
|
95
|
-
expiresAt: Number,
|
|
96
|
-
ip: String,
|
|
97
|
-
subdomain: String,
|
|
98
|
-
txtRecords: [String],
|
|
99
|
-
mxRecord: String,
|
|
100
|
-
target: String,
|
|
101
|
-
assignedTo: [Number],
|
|
102
|
-
archived: Boolean,
|
|
103
|
-
title: String,
|
|
104
|
-
note: String,
|
|
105
|
-
proxied: Boolean,
|
|
106
|
-
appid: Number
|
|
1
|
+
import { ICloudflareDomainType } from "general/cloudflare-domain"
|
|
2
|
+
import { Document, Model, Schema, model } from "mongoose"
|
|
3
|
+
|
|
4
|
+
export interface IDomain extends Document {
|
|
5
|
+
id: string
|
|
6
|
+
namecheapId: string
|
|
7
|
+
isUpdating: boolean
|
|
8
|
+
name: string
|
|
9
|
+
caption: string,
|
|
10
|
+
status: DomainStatus
|
|
11
|
+
cloudflareStatus: string
|
|
12
|
+
paused: boolean
|
|
13
|
+
type: ICloudflareDomainType
|
|
14
|
+
autorenew: boolean,
|
|
15
|
+
nameServers: string[]
|
|
16
|
+
originalNameServers: string[]
|
|
17
|
+
originalRegistrar: string | null
|
|
18
|
+
originalDNSHost: string | null
|
|
19
|
+
createdAt: number
|
|
20
|
+
expiresAt: number
|
|
21
|
+
ip: string
|
|
22
|
+
subdomain: string | null
|
|
23
|
+
txtRecords: string[]
|
|
24
|
+
mxRecord: string
|
|
25
|
+
target: DomainTarget,
|
|
26
|
+
assignedTo: number[]
|
|
27
|
+
archived: boolean,
|
|
28
|
+
title: string | String,
|
|
29
|
+
note: string,
|
|
30
|
+
proxied: boolean
|
|
31
|
+
appid: number
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface IDomainsBuyRequestResponse {
|
|
35
|
+
requestId: string,
|
|
36
|
+
totalPrice: number,
|
|
37
|
+
info: {
|
|
38
|
+
name: string,
|
|
39
|
+
price: number
|
|
40
|
+
}[]
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export interface IDomainSetupResult {
|
|
44
|
+
succeed: string[],
|
|
45
|
+
failed: string[]
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export const CONST_CLOUFLARE_STATUS_READY = "active"
|
|
49
|
+
|
|
50
|
+
export enum DomainStatus {
|
|
51
|
+
PENDING = "pending",
|
|
52
|
+
READY = "ready",
|
|
53
|
+
READY_AND_NOTIFIED = "ready-and-notified",
|
|
54
|
+
WITHOUT_CLOUDFLARE = "without-cloudflare"
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export enum DomainTarget {
|
|
58
|
+
KEITARO = "keitaro",
|
|
59
|
+
HOSTING = "hosting",
|
|
60
|
+
OTHER = "other",
|
|
61
|
+
MAIN = "main",
|
|
62
|
+
UNKNOWN = "unknown"
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export let getDomainTargetByIp = (ip: string): DomainTarget => {
|
|
66
|
+
switch (ip) {
|
|
67
|
+
case "185.123.53.227":
|
|
68
|
+
return DomainTarget.MAIN
|
|
69
|
+
case "46.246.96.114":
|
|
70
|
+
return DomainTarget.KEITARO
|
|
71
|
+
case "46.246.98.201":
|
|
72
|
+
return DomainTarget.HOSTING
|
|
73
|
+
case "none":
|
|
74
|
+
return DomainTarget.UNKNOWN
|
|
75
|
+
|
|
76
|
+
default: return DomainTarget.OTHER
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export const DomainSchema = new Schema({
|
|
81
|
+
id: String,
|
|
82
|
+
namecheapId: String,
|
|
83
|
+
name: String,
|
|
84
|
+
caption: String,
|
|
85
|
+
status: String,
|
|
86
|
+
isUpdating: Boolean,
|
|
87
|
+
cloudflareStatus: String,
|
|
88
|
+
paused: Boolean,
|
|
89
|
+
type: String,
|
|
90
|
+
nameServers: [String],
|
|
91
|
+
originalNameServers: [String],
|
|
92
|
+
originalRegistrar: String,
|
|
93
|
+
originalDNSHost: String,
|
|
94
|
+
createdAt: Number,
|
|
95
|
+
expiresAt: Number,
|
|
96
|
+
ip: String,
|
|
97
|
+
subdomain: String,
|
|
98
|
+
txtRecords: [String],
|
|
99
|
+
mxRecord: String,
|
|
100
|
+
target: String,
|
|
101
|
+
assignedTo: [Number],
|
|
102
|
+
archived: Boolean,
|
|
103
|
+
title: String,
|
|
104
|
+
note: String,
|
|
105
|
+
proxied: Boolean,
|
|
106
|
+
appid: Number
|
|
107
107
|
})
|
|
@@ -1,63 +1,63 @@
|
|
|
1
|
-
import { Schema, Document } from "mongoose"
|
|
2
|
-
|
|
3
|
-
export interface INamecheapDomain {
|
|
4
|
-
ID: string
|
|
5
|
-
Name: string
|
|
6
|
-
User: string
|
|
7
|
-
Created: string
|
|
8
|
-
Expires: string
|
|
9
|
-
IsExpired: 'true' | 'false'
|
|
10
|
-
IsLocked: 'true' | 'false'
|
|
11
|
-
AutoRenew: 'true' | 'false'
|
|
12
|
-
WhoisGuard: 'ENABLED' | 'DISABLED'
|
|
13
|
-
IsPremium: 'true' | 'false'
|
|
14
|
-
IsOurDNS: 'true' | 'false'
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export interface INamecheapContactInfo {
|
|
18
|
-
FirstName: string;
|
|
19
|
-
LastName: string;
|
|
20
|
-
Address1: string;
|
|
21
|
-
City: string;
|
|
22
|
-
StateProvince: string;
|
|
23
|
-
PostalCode: string;
|
|
24
|
-
Country: string;
|
|
25
|
-
Phone: string;
|
|
26
|
-
EmailAddress: string;
|
|
27
|
-
Address2?: string;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
export interface INamecheapGetDomainsResult {
|
|
31
|
-
total: number,
|
|
32
|
-
domains: INamecheapDomain[],
|
|
33
|
-
page: number,
|
|
34
|
-
perPage: number
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
export interface INamecheapBuyRequest extends Document {
|
|
38
|
-
domains: {
|
|
39
|
-
name: string,
|
|
40
|
-
price: number,
|
|
41
|
-
available: boolean
|
|
42
|
-
}[]
|
|
43
|
-
ip: string,
|
|
44
|
-
fullfilled: boolean,
|
|
45
|
-
id: string
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
export interface INamecheapBuyResult {
|
|
49
|
-
succeed: { [key: string]: number },
|
|
50
|
-
failed: { [key: string]: string },
|
|
51
|
-
paidTotal: number
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
export const NamecheapBuyRequestSchema = new Schema({
|
|
55
|
-
domains: [{
|
|
56
|
-
name: String,
|
|
57
|
-
price: Number,
|
|
58
|
-
available: Boolean
|
|
59
|
-
}],
|
|
60
|
-
ip: String,
|
|
61
|
-
fullfilled: Boolean,
|
|
62
|
-
id: String
|
|
63
|
-
})
|
|
1
|
+
import { Schema, Document } from "mongoose"
|
|
2
|
+
|
|
3
|
+
export interface INamecheapDomain {
|
|
4
|
+
ID: string
|
|
5
|
+
Name: string
|
|
6
|
+
User: string
|
|
7
|
+
Created: string
|
|
8
|
+
Expires: string
|
|
9
|
+
IsExpired: 'true' | 'false'
|
|
10
|
+
IsLocked: 'true' | 'false'
|
|
11
|
+
AutoRenew: 'true' | 'false'
|
|
12
|
+
WhoisGuard: 'ENABLED' | 'DISABLED'
|
|
13
|
+
IsPremium: 'true' | 'false'
|
|
14
|
+
IsOurDNS: 'true' | 'false'
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface INamecheapContactInfo {
|
|
18
|
+
FirstName: string;
|
|
19
|
+
LastName: string;
|
|
20
|
+
Address1: string;
|
|
21
|
+
City: string;
|
|
22
|
+
StateProvince: string;
|
|
23
|
+
PostalCode: string;
|
|
24
|
+
Country: string;
|
|
25
|
+
Phone: string;
|
|
26
|
+
EmailAddress: string;
|
|
27
|
+
Address2?: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export interface INamecheapGetDomainsResult {
|
|
31
|
+
total: number,
|
|
32
|
+
domains: INamecheapDomain[],
|
|
33
|
+
page: number,
|
|
34
|
+
perPage: number
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export interface INamecheapBuyRequest extends Document {
|
|
38
|
+
domains: {
|
|
39
|
+
name: string,
|
|
40
|
+
price: number,
|
|
41
|
+
available: boolean
|
|
42
|
+
}[]
|
|
43
|
+
ip: string,
|
|
44
|
+
fullfilled: boolean,
|
|
45
|
+
id: string
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export interface INamecheapBuyResult {
|
|
49
|
+
succeed: { [key: string]: number },
|
|
50
|
+
failed: { [key: string]: string },
|
|
51
|
+
paidTotal: number
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export const NamecheapBuyRequestSchema = new Schema({
|
|
55
|
+
domains: [{
|
|
56
|
+
name: String,
|
|
57
|
+
price: Number,
|
|
58
|
+
available: Boolean
|
|
59
|
+
}],
|
|
60
|
+
ip: String,
|
|
61
|
+
fullfilled: Boolean,
|
|
62
|
+
id: String
|
|
63
|
+
})
|
package/src/general/push.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export interface IPush {
|
|
2
|
-
app_id: string,
|
|
3
|
-
contents: any,
|
|
4
|
-
headings: any,
|
|
5
|
-
filters: any[],
|
|
1
|
+
export interface IPush {
|
|
2
|
+
app_id: string,
|
|
3
|
+
contents: any,
|
|
4
|
+
headings: any,
|
|
5
|
+
filters: any[],
|
|
6
6
|
}
|
package/src/general/queue.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
interface IQueueElement {
|
|
2
|
-
|
|
3
|
-
}
|
|
4
|
-
|
|
1
|
+
interface IQueueElement {
|
|
2
|
+
|
|
3
|
+
}
|
|
4
|
+
|
package/src/general/shape.tsx
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
import styled from 'styled-components';
|
|
2
|
-
|
|
3
|
-
export interface IGradient {
|
|
4
|
-
startColor: string;
|
|
5
|
-
centerColor?: string;
|
|
6
|
-
endColor: string;
|
|
7
|
-
angle?: number;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export interface IStroke {
|
|
11
|
-
width: number;
|
|
12
|
-
color: string;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export interface IShape {
|
|
16
|
-
fill: IGradient | string;
|
|
17
|
-
stroke?: IStroke;
|
|
18
|
-
textColor?: string;
|
|
19
|
-
fontUrl?: string;
|
|
20
|
-
cornerRadius?: number;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
export const ShapeDiv = styled.div<IShape>`
|
|
24
|
-
background: ${props =>
|
|
25
|
-
typeof props.fill === 'string'
|
|
26
|
-
? props.fill
|
|
27
|
-
: props.fill.angle
|
|
28
|
-
? `linear-gradient(${props.fill.angle}deg, ${props.fill.startColor} 0%, ${props.fill.centerColor || props.fill.startColor} 50%, ${props.fill.endColor} 100%)`
|
|
29
|
-
: `radial-gradient(circle, ${props.fill.startColor} 0%, ${props.fill.endColor} 100%)`};
|
|
30
|
-
|
|
31
|
-
${props =>
|
|
32
|
-
props.stroke &&
|
|
33
|
-
`
|
|
34
|
-
border: ${props.stroke.width}px solid ${props.stroke.color};
|
|
35
|
-
box-sizing: border-box;
|
|
36
|
-
`};
|
|
37
|
-
|
|
38
|
-
${props =>
|
|
39
|
-
props.cornerRadius &&
|
|
40
|
-
`
|
|
41
|
-
border-radius: ${props.cornerRadius}px;
|
|
42
|
-
`}
|
|
43
|
-
|
|
44
|
-
color: ${props => props.textColor || "white"};
|
|
45
|
-
|
|
46
|
-
${props =>
|
|
47
|
-
props.fontUrl &&
|
|
48
|
-
`
|
|
49
|
-
@font-face {
|
|
50
|
-
font-family: 'custom';
|
|
51
|
-
src: url(${props.fontUrl});
|
|
52
|
-
}
|
|
53
|
-
font-family: 'custom', sans-serif;
|
|
54
|
-
`};
|
|
55
|
-
`;
|
|
1
|
+
import styled from 'styled-components';
|
|
2
|
+
|
|
3
|
+
export interface IGradient {
|
|
4
|
+
startColor: string;
|
|
5
|
+
centerColor?: string;
|
|
6
|
+
endColor: string;
|
|
7
|
+
angle?: number;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export interface IStroke {
|
|
11
|
+
width: number;
|
|
12
|
+
color: string;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export interface IShape {
|
|
16
|
+
fill: IGradient | string;
|
|
17
|
+
stroke?: IStroke;
|
|
18
|
+
textColor?: string;
|
|
19
|
+
fontUrl?: string;
|
|
20
|
+
cornerRadius?: number;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export const ShapeDiv = styled.div<IShape>`
|
|
24
|
+
background: ${props =>
|
|
25
|
+
typeof props.fill === 'string'
|
|
26
|
+
? props.fill
|
|
27
|
+
: props.fill.angle
|
|
28
|
+
? `linear-gradient(${props.fill.angle}deg, ${props.fill.startColor} 0%, ${props.fill.centerColor || props.fill.startColor} 50%, ${props.fill.endColor} 100%)`
|
|
29
|
+
: `radial-gradient(circle, ${props.fill.startColor} 0%, ${props.fill.endColor} 100%)`};
|
|
30
|
+
|
|
31
|
+
${props =>
|
|
32
|
+
props.stroke &&
|
|
33
|
+
`
|
|
34
|
+
border: ${props.stroke.width}px solid ${props.stroke.color};
|
|
35
|
+
box-sizing: border-box;
|
|
36
|
+
`};
|
|
37
|
+
|
|
38
|
+
${props =>
|
|
39
|
+
props.cornerRadius &&
|
|
40
|
+
`
|
|
41
|
+
border-radius: ${props.cornerRadius}px;
|
|
42
|
+
`}
|
|
43
|
+
|
|
44
|
+
color: ${props => props.textColor || "white"};
|
|
45
|
+
|
|
46
|
+
${props =>
|
|
47
|
+
props.fontUrl &&
|
|
48
|
+
`
|
|
49
|
+
@font-face {
|
|
50
|
+
font-family: 'custom';
|
|
51
|
+
src: url(${props.fontUrl});
|
|
52
|
+
}
|
|
53
|
+
font-family: 'custom', sans-serif;
|
|
54
|
+
`};
|
|
55
|
+
`;
|
package/src/index.ts
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
export { IPush } from "./general/push"
|
|
2
|
-
|
|
3
|
-
export { IOffer, IPartner, IOfferType } from "./offers/offer"
|
|
4
|
-
export { IOffersSection, OffersSectionSchema, DefaultSectionId } from "./offers/section"
|
|
5
|
-
export { IAppOffersSection, ISectionsList, SectionsListSchema } from "./offers/list"
|
|
6
|
-
|
|
7
|
-
export { IntegrationAlterations, IAdjustEventIds, IntegrationVersion, IApp, AppSchema, PlugType, IAppKeitaroData, IExternalParams, IPlatformParams, EPlatform } from "./app/app"
|
|
8
|
-
export { IAppListItem } from "./app/app-list-item"
|
|
9
|
-
export { AppType } from "./app/app-type"
|
|
10
|
-
export { AlternativeLayoutType, AlternativeSourceType, AlternativeLogicType, AlternativeNetworkTool, AlternativeStorageType, AlternativeNavigation, AlternativeOnBackPressed, AlternativeOnActivityResult, IAppIntegration as IFlashIntegration } from "./app/app-integration"
|
|
11
|
-
|
|
12
|
-
export { IPanelUser, PanelUserAccessScope, PanelUserSchema } from "./panel/user"
|
|
13
|
-
export { IAuthToken } from "./panel/auth"
|
|
14
|
-
export { IUpsertAppRequest, IUpsertAppResponse } from "./panel/app/upsert-flash-app-request"
|
|
15
|
-
|
|
16
|
-
export { IGradient, IStroke, IShape, ShapeDiv } from "./general/shape"
|
|
17
|
-
export { IOfferWallHomeDialogData } from "./offers/offerwall/offerwall-home-dialog-data"
|
|
18
|
-
export { IOfferWallOffer } from "./offers/offerwall/offerwall-offer"
|
|
19
|
-
export { IOfferWallResponse } from "./offers/offerwall/offerwall-response"
|
|
20
|
-
export { IOfferWallSection } from "./offers/offerwall/offerwall-section"
|
|
21
|
-
|
|
22
|
-
export { KeitaroService, IKeitaroOffersFilter } from "./network/keitaro/keitaro-service"
|
|
23
|
-
export * as KeitaroUtils from "./utils/keitaro-utils"
|
|
24
|
-
|
|
25
|
-
export { IKeitaroCampaign, IKeitaroCampaignParameters, IKeitaroCampaignParameter } from "./keitaro/keitaro-campaign"
|
|
26
|
-
export { IKeitaroDomain } from "./keitaro/keitaro-domain"
|
|
27
|
-
export { IKeitaroOffer } from "./keitaro/keitaro-offer"
|
|
28
|
-
export { IKeitaroStream } from "./keitaro/keitaro-stream"
|
|
29
|
-
|
|
30
|
-
export { ICloudflareDomainStatus, ICloudflareDomainType, ICloudflareDomain } from "./general/cloudflare-domain"
|
|
31
|
-
export { IDomain, IDomainSetupResult, DomainStatus, DomainTarget, CONST_CLOUFLARE_STATUS_READY, IDomainsBuyRequestResponse, getDomainTargetByIp } from "./general/domain"
|
|
32
|
-
export { INamecheapDomain, INamecheapBuyRequest, INamecheapContactInfo, NamecheapBuyRequestSchema, INamecheapGetDomainsResult, INamecheapBuyResult } from "./general/namecheap-domain"
|
|
1
|
+
export { IPush } from "./general/push"
|
|
2
|
+
|
|
3
|
+
export { IOffer, IPartner, IOfferType } from "./offers/offer"
|
|
4
|
+
export { IOffersSection, OffersSectionSchema, DefaultSectionId } from "./offers/section"
|
|
5
|
+
export { IAppOffersSection, ISectionsList, SectionsListSchema } from "./offers/list"
|
|
6
|
+
|
|
7
|
+
export { IntegrationAlterations, IAdjustEventIds, IntegrationVersion, IApp, AppSchema, PlugType, IAppKeitaroData, IExternalParams, IPlatformParams, EPlatform } from "./app/app"
|
|
8
|
+
export { IAppListItem } from "./app/app-list-item"
|
|
9
|
+
export { AppType } from "./app/app-type"
|
|
10
|
+
export { AlternativeLayoutType, AlternativeSourceType, AlternativeLogicType, AlternativeNetworkTool, AlternativeStorageType, AlternativeNavigation, AlternativeOnBackPressed, AlternativeOnActivityResult, IAppIntegration as IFlashIntegration } from "./app/app-integration"
|
|
11
|
+
|
|
12
|
+
export { IPanelUser, PanelUserAccessScope, PanelUserSchema } from "./panel/user"
|
|
13
|
+
export { IAuthToken } from "./panel/auth"
|
|
14
|
+
export { IUpsertAppRequest, IUpsertAppResponse } from "./panel/app/upsert-flash-app-request"
|
|
15
|
+
|
|
16
|
+
export { IGradient, IStroke, IShape, ShapeDiv } from "./general/shape"
|
|
17
|
+
export { IOfferWallHomeDialogData } from "./offers/offerwall/offerwall-home-dialog-data"
|
|
18
|
+
export { IOfferWallOffer } from "./offers/offerwall/offerwall-offer"
|
|
19
|
+
export { IOfferWallResponse } from "./offers/offerwall/offerwall-response"
|
|
20
|
+
export { IOfferWallSection } from "./offers/offerwall/offerwall-section"
|
|
21
|
+
|
|
22
|
+
export { KeitaroService, IKeitaroOffersFilter } from "./network/keitaro/keitaro-service"
|
|
23
|
+
export * as KeitaroUtils from "./utils/keitaro-utils"
|
|
24
|
+
|
|
25
|
+
export { IKeitaroCampaign, IKeitaroCampaignParameters, IKeitaroCampaignParameter } from "./keitaro/keitaro-campaign"
|
|
26
|
+
export { IKeitaroDomain } from "./keitaro/keitaro-domain"
|
|
27
|
+
export { IKeitaroOffer } from "./keitaro/keitaro-offer"
|
|
28
|
+
export { IKeitaroStream } from "./keitaro/keitaro-stream"
|
|
29
|
+
|
|
30
|
+
export { ICloudflareDomainStatus, ICloudflareDomainType, ICloudflareDomain } from "./general/cloudflare-domain"
|
|
31
|
+
export { IDomain, IDomainSetupResult, DomainStatus, DomainTarget, CONST_CLOUFLARE_STATUS_READY, IDomainsBuyRequestResponse, getDomainTargetByIp } from "./general/domain"
|
|
32
|
+
export { INamecheapDomain, INamecheapBuyRequest, INamecheapContactInfo, NamecheapBuyRequestSchema, INamecheapGetDomainsResult, INamecheapBuyResult } from "./general/namecheap-domain"
|
|
33
33
|
export { NginxTemplate } from "./templates/nginx-template";
|