@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
package/lib/app/app.js
CHANGED
|
@@ -1,156 +1,156 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AppSchema = exports.PlugType = exports.IntegrationVersion = exports.EPlatform = exports.EImageFormat = void 0;
|
|
4
|
-
const app_type_1 = require("./app-type");
|
|
5
|
-
const mongoose_1 = require("mongoose");
|
|
6
|
-
const util = require("util");
|
|
7
|
-
var EImageFormat;
|
|
8
|
-
(function (EImageFormat) {
|
|
9
|
-
EImageFormat["PNG"] = "png";
|
|
10
|
-
EImageFormat["JPEG"] = "jpg";
|
|
11
|
-
EImageFormat["WEBP"] = "webp";
|
|
12
|
-
})(EImageFormat = exports.EImageFormat || (exports.EImageFormat = {}));
|
|
13
|
-
var EPlatform;
|
|
14
|
-
(function (EPlatform) {
|
|
15
|
-
EPlatform["GENERAL"] = "@";
|
|
16
|
-
EPlatform["HUAWEI"] = "hw";
|
|
17
|
-
EPlatform["SAMSUNG"] = "sm";
|
|
18
|
-
EPlatform["ruSTORE"] = "rs";
|
|
19
|
-
EPlatform["XIAOMI"] = "xm";
|
|
20
|
-
EPlatform["APKPURE"] = "ap";
|
|
21
|
-
EPlatform["TELEGRAM"] = "tg";
|
|
22
|
-
EPlatform["AMAZON"] = "am";
|
|
23
|
-
})(EPlatform = exports.EPlatform || (exports.EPlatform = {}));
|
|
24
|
-
var IntegrationVersion;
|
|
25
|
-
(function (IntegrationVersion) {
|
|
26
|
-
IntegrationVersion["NONE"] = "MVVM";
|
|
27
|
-
IntegrationVersion["POLICY"] = "POLICY";
|
|
28
|
-
IntegrationVersion["OFFER_STUB"] = "OFFER_STUB";
|
|
29
|
-
IntegrationVersion["DIRECT"] = "DIRECT";
|
|
30
|
-
IntegrationVersion["WEB"] = "WEB";
|
|
31
|
-
IntegrationVersion["WEB_DIRECT"] = "WEB_DIRECT";
|
|
32
|
-
IntegrationVersion["BANNER"] = "BANNER";
|
|
33
|
-
IntegrationVersion["PWA"] = "PWA";
|
|
34
|
-
})(IntegrationVersion = exports.IntegrationVersion || (exports.IntegrationVersion = {}));
|
|
35
|
-
var PlugType;
|
|
36
|
-
(function (PlugType) {
|
|
37
|
-
PlugType["PASTEBIN"] = "PASTEBIN";
|
|
38
|
-
PlugType["GIST"] = "GIST";
|
|
39
|
-
PlugType["OTHER"] = "OTHER";
|
|
40
|
-
})(PlugType = exports.PlugType || (exports.PlugType = {}));
|
|
41
|
-
exports.AppSchema = new mongoose_1.Schema({
|
|
42
|
-
id: {
|
|
43
|
-
type: Number,
|
|
44
|
-
unique: true,
|
|
45
|
-
required: true
|
|
46
|
-
},
|
|
47
|
-
enabled: {
|
|
48
|
-
type: Boolean,
|
|
49
|
-
required: true,
|
|
50
|
-
default: false
|
|
51
|
-
},
|
|
52
|
-
proxied: {
|
|
53
|
-
type: Boolean,
|
|
54
|
-
require: true,
|
|
55
|
-
default: true
|
|
56
|
-
},
|
|
57
|
-
imageFormat: {
|
|
58
|
-
type: String,
|
|
59
|
-
enum: EImageFormat,
|
|
60
|
-
default: EImageFormat.PNG
|
|
61
|
-
},
|
|
62
|
-
bundle: {
|
|
63
|
-
type: String,
|
|
64
|
-
unique: true,
|
|
65
|
-
required: true
|
|
66
|
-
},
|
|
67
|
-
name: String,
|
|
68
|
-
trackingUrl: {
|
|
69
|
-
type: String,
|
|
70
|
-
default: null
|
|
71
|
-
},
|
|
72
|
-
pushesEnabled: Boolean,
|
|
73
|
-
integrationVersion: {
|
|
74
|
-
type: String,
|
|
75
|
-
enum: IntegrationVersion,
|
|
76
|
-
default: null
|
|
77
|
-
},
|
|
78
|
-
type: {
|
|
79
|
-
type: String,
|
|
80
|
-
enum: app_type_1.AppType,
|
|
81
|
-
default: app_type_1.AppType.GAMBLING
|
|
82
|
-
},
|
|
83
|
-
geos: {
|
|
84
|
-
type: String,
|
|
85
|
-
required: true
|
|
86
|
-
},
|
|
87
|
-
geo: {
|
|
88
|
-
type: [String]
|
|
89
|
-
},
|
|
90
|
-
onesignalAppId: {
|
|
91
|
-
type: String,
|
|
92
|
-
required: false
|
|
93
|
-
},
|
|
94
|
-
onesignalRestApiKey: {
|
|
95
|
-
type: String,
|
|
96
|
-
required: false
|
|
97
|
-
},
|
|
98
|
-
appmetricaApiKey: {
|
|
99
|
-
type: String,
|
|
100
|
-
required: false
|
|
101
|
-
},
|
|
102
|
-
appmetricaAppId: {
|
|
103
|
-
type: Number,
|
|
104
|
-
required: false
|
|
105
|
-
},
|
|
106
|
-
externalParams: {
|
|
107
|
-
showButton: Boolean,
|
|
108
|
-
schema: String,
|
|
109
|
-
autoRedirect: Boolean,
|
|
110
|
-
},
|
|
111
|
-
keitaroData: {
|
|
112
|
-
trackingCampaignId: {
|
|
113
|
-
type: Number,
|
|
114
|
-
// unique: true,
|
|
115
|
-
required: true,
|
|
116
|
-
default: 0
|
|
117
|
-
},
|
|
118
|
-
trackingCampaignName: {
|
|
119
|
-
type: String,
|
|
120
|
-
// unique: true,
|
|
121
|
-
required: true,
|
|
122
|
-
default: "none"
|
|
123
|
-
},
|
|
124
|
-
trackingCampaignAlias: {
|
|
125
|
-
type: String,
|
|
126
|
-
// unique: true,
|
|
127
|
-
required: true,
|
|
128
|
-
default: "none"
|
|
129
|
-
},
|
|
130
|
-
trackingDomainId: {
|
|
131
|
-
type: Number,
|
|
132
|
-
required: true,
|
|
133
|
-
default: 0
|
|
134
|
-
},
|
|
135
|
-
trackingDomainName: {
|
|
136
|
-
type: String,
|
|
137
|
-
required: true,
|
|
138
|
-
default: "none"
|
|
139
|
-
},
|
|
140
|
-
},
|
|
141
|
-
removeDataParams: Object,
|
|
142
|
-
privacyPolicyParams: Object,
|
|
143
|
-
offersStubParams: Object,
|
|
144
|
-
bannerParams: Object,
|
|
145
|
-
directParams: Object,
|
|
146
|
-
domainParams: {
|
|
147
|
-
name: {
|
|
148
|
-
type: String,
|
|
149
|
-
unique: true
|
|
150
|
-
},
|
|
151
|
-
clouflareZone: {
|
|
152
|
-
type: String,
|
|
153
|
-
},
|
|
154
|
-
},
|
|
155
|
-
platforms: Object
|
|
156
|
-
});
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AppSchema = exports.PlugType = exports.IntegrationVersion = exports.EPlatform = exports.EImageFormat = void 0;
|
|
4
|
+
const app_type_1 = require("./app-type");
|
|
5
|
+
const mongoose_1 = require("mongoose");
|
|
6
|
+
const util = require("util");
|
|
7
|
+
var EImageFormat;
|
|
8
|
+
(function (EImageFormat) {
|
|
9
|
+
EImageFormat["PNG"] = "png";
|
|
10
|
+
EImageFormat["JPEG"] = "jpg";
|
|
11
|
+
EImageFormat["WEBP"] = "webp";
|
|
12
|
+
})(EImageFormat = exports.EImageFormat || (exports.EImageFormat = {}));
|
|
13
|
+
var EPlatform;
|
|
14
|
+
(function (EPlatform) {
|
|
15
|
+
EPlatform["GENERAL"] = "@";
|
|
16
|
+
EPlatform["HUAWEI"] = "hw";
|
|
17
|
+
EPlatform["SAMSUNG"] = "sm";
|
|
18
|
+
EPlatform["ruSTORE"] = "rs";
|
|
19
|
+
EPlatform["XIAOMI"] = "xm";
|
|
20
|
+
EPlatform["APKPURE"] = "ap";
|
|
21
|
+
EPlatform["TELEGRAM"] = "tg";
|
|
22
|
+
EPlatform["AMAZON"] = "am";
|
|
23
|
+
})(EPlatform = exports.EPlatform || (exports.EPlatform = {}));
|
|
24
|
+
var IntegrationVersion;
|
|
25
|
+
(function (IntegrationVersion) {
|
|
26
|
+
IntegrationVersion["NONE"] = "MVVM";
|
|
27
|
+
IntegrationVersion["POLICY"] = "POLICY";
|
|
28
|
+
IntegrationVersion["OFFER_STUB"] = "OFFER_STUB";
|
|
29
|
+
IntegrationVersion["DIRECT"] = "DIRECT";
|
|
30
|
+
IntegrationVersion["WEB"] = "WEB";
|
|
31
|
+
IntegrationVersion["WEB_DIRECT"] = "WEB_DIRECT";
|
|
32
|
+
IntegrationVersion["BANNER"] = "BANNER";
|
|
33
|
+
IntegrationVersion["PWA"] = "PWA";
|
|
34
|
+
})(IntegrationVersion = exports.IntegrationVersion || (exports.IntegrationVersion = {}));
|
|
35
|
+
var PlugType;
|
|
36
|
+
(function (PlugType) {
|
|
37
|
+
PlugType["PASTEBIN"] = "PASTEBIN";
|
|
38
|
+
PlugType["GIST"] = "GIST";
|
|
39
|
+
PlugType["OTHER"] = "OTHER";
|
|
40
|
+
})(PlugType = exports.PlugType || (exports.PlugType = {}));
|
|
41
|
+
exports.AppSchema = new mongoose_1.Schema({
|
|
42
|
+
id: {
|
|
43
|
+
type: Number,
|
|
44
|
+
unique: true,
|
|
45
|
+
required: true
|
|
46
|
+
},
|
|
47
|
+
enabled: {
|
|
48
|
+
type: Boolean,
|
|
49
|
+
required: true,
|
|
50
|
+
default: false
|
|
51
|
+
},
|
|
52
|
+
proxied: {
|
|
53
|
+
type: Boolean,
|
|
54
|
+
require: true,
|
|
55
|
+
default: true
|
|
56
|
+
},
|
|
57
|
+
imageFormat: {
|
|
58
|
+
type: String,
|
|
59
|
+
enum: EImageFormat,
|
|
60
|
+
default: EImageFormat.PNG
|
|
61
|
+
},
|
|
62
|
+
bundle: {
|
|
63
|
+
type: String,
|
|
64
|
+
unique: true,
|
|
65
|
+
required: true
|
|
66
|
+
},
|
|
67
|
+
name: String,
|
|
68
|
+
trackingUrl: {
|
|
69
|
+
type: String,
|
|
70
|
+
default: null
|
|
71
|
+
},
|
|
72
|
+
pushesEnabled: Boolean,
|
|
73
|
+
integrationVersion: {
|
|
74
|
+
type: String,
|
|
75
|
+
enum: IntegrationVersion,
|
|
76
|
+
default: null
|
|
77
|
+
},
|
|
78
|
+
type: {
|
|
79
|
+
type: String,
|
|
80
|
+
enum: app_type_1.AppType,
|
|
81
|
+
default: app_type_1.AppType.GAMBLING
|
|
82
|
+
},
|
|
83
|
+
geos: {
|
|
84
|
+
type: String,
|
|
85
|
+
required: true
|
|
86
|
+
},
|
|
87
|
+
geo: {
|
|
88
|
+
type: [String]
|
|
89
|
+
},
|
|
90
|
+
onesignalAppId: {
|
|
91
|
+
type: String,
|
|
92
|
+
required: false
|
|
93
|
+
},
|
|
94
|
+
onesignalRestApiKey: {
|
|
95
|
+
type: String,
|
|
96
|
+
required: false
|
|
97
|
+
},
|
|
98
|
+
appmetricaApiKey: {
|
|
99
|
+
type: String,
|
|
100
|
+
required: false
|
|
101
|
+
},
|
|
102
|
+
appmetricaAppId: {
|
|
103
|
+
type: Number,
|
|
104
|
+
required: false
|
|
105
|
+
},
|
|
106
|
+
externalParams: {
|
|
107
|
+
showButton: Boolean,
|
|
108
|
+
schema: String,
|
|
109
|
+
autoRedirect: Boolean,
|
|
110
|
+
},
|
|
111
|
+
keitaroData: {
|
|
112
|
+
trackingCampaignId: {
|
|
113
|
+
type: Number,
|
|
114
|
+
// unique: true,
|
|
115
|
+
required: true,
|
|
116
|
+
default: 0
|
|
117
|
+
},
|
|
118
|
+
trackingCampaignName: {
|
|
119
|
+
type: String,
|
|
120
|
+
// unique: true,
|
|
121
|
+
required: true,
|
|
122
|
+
default: "none"
|
|
123
|
+
},
|
|
124
|
+
trackingCampaignAlias: {
|
|
125
|
+
type: String,
|
|
126
|
+
// unique: true,
|
|
127
|
+
required: true,
|
|
128
|
+
default: "none"
|
|
129
|
+
},
|
|
130
|
+
trackingDomainId: {
|
|
131
|
+
type: Number,
|
|
132
|
+
required: true,
|
|
133
|
+
default: 0
|
|
134
|
+
},
|
|
135
|
+
trackingDomainName: {
|
|
136
|
+
type: String,
|
|
137
|
+
required: true,
|
|
138
|
+
default: "none"
|
|
139
|
+
},
|
|
140
|
+
},
|
|
141
|
+
removeDataParams: Object,
|
|
142
|
+
privacyPolicyParams: Object,
|
|
143
|
+
offersStubParams: Object,
|
|
144
|
+
bannerParams: Object,
|
|
145
|
+
directParams: Object,
|
|
146
|
+
domainParams: {
|
|
147
|
+
name: {
|
|
148
|
+
type: String,
|
|
149
|
+
unique: true
|
|
150
|
+
},
|
|
151
|
+
clouflareZone: {
|
|
152
|
+
type: String,
|
|
153
|
+
},
|
|
154
|
+
},
|
|
155
|
+
platforms: Object
|
|
156
|
+
});
|
|
@@ -1,42 +1,42 @@
|
|
|
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
|
-
export interface ICloudflareDomainRecord {
|
|
16
|
-
id: string;
|
|
17
|
-
zone_id: string;
|
|
18
|
-
zone_name: string;
|
|
19
|
-
name: string;
|
|
20
|
-
type: string;
|
|
21
|
-
content: string;
|
|
22
|
-
proxiable: boolean;
|
|
23
|
-
proxied: boolean;
|
|
24
|
-
ttl: number;
|
|
25
|
-
locked: boolean;
|
|
26
|
-
meta: {
|
|
27
|
-
auto_added: boolean;
|
|
28
|
-
managed_by_apps: boolean;
|
|
29
|
-
managed_by_argo_tunnel: boolean;
|
|
30
|
-
};
|
|
31
|
-
comment: string;
|
|
32
|
-
tags: string[];
|
|
33
|
-
created_on: string;
|
|
34
|
-
modified_on: string;
|
|
35
|
-
}
|
|
36
|
-
export declare enum ICloudflareDomainStatus {
|
|
37
|
-
PENDING = "pending"
|
|
38
|
-
}
|
|
39
|
-
export declare enum ICloudflareDomainType {
|
|
40
|
-
FULL = "full",
|
|
41
|
-
FLEXIBLE = "flexible"
|
|
42
|
-
}
|
|
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
|
+
export interface ICloudflareDomainRecord {
|
|
16
|
+
id: string;
|
|
17
|
+
zone_id: string;
|
|
18
|
+
zone_name: string;
|
|
19
|
+
name: string;
|
|
20
|
+
type: string;
|
|
21
|
+
content: string;
|
|
22
|
+
proxiable: boolean;
|
|
23
|
+
proxied: boolean;
|
|
24
|
+
ttl: number;
|
|
25
|
+
locked: boolean;
|
|
26
|
+
meta: {
|
|
27
|
+
auto_added: boolean;
|
|
28
|
+
managed_by_apps: boolean;
|
|
29
|
+
managed_by_argo_tunnel: boolean;
|
|
30
|
+
};
|
|
31
|
+
comment: string;
|
|
32
|
+
tags: string[];
|
|
33
|
+
created_on: string;
|
|
34
|
+
modified_on: string;
|
|
35
|
+
}
|
|
36
|
+
export declare enum ICloudflareDomainStatus {
|
|
37
|
+
PENDING = "pending"
|
|
38
|
+
}
|
|
39
|
+
export declare enum ICloudflareDomainType {
|
|
40
|
+
FULL = "full",
|
|
41
|
+
FLEXIBLE = "flexible"
|
|
42
|
+
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ICloudflareDomainType = exports.ICloudflareDomainStatus = void 0;
|
|
4
|
-
var ICloudflareDomainStatus;
|
|
5
|
-
(function (ICloudflareDomainStatus) {
|
|
6
|
-
ICloudflareDomainStatus["PENDING"] = "pending";
|
|
7
|
-
})(ICloudflareDomainStatus = exports.ICloudflareDomainStatus || (exports.ICloudflareDomainStatus = {}));
|
|
8
|
-
var ICloudflareDomainType;
|
|
9
|
-
(function (ICloudflareDomainType) {
|
|
10
|
-
ICloudflareDomainType["FULL"] = "full";
|
|
11
|
-
ICloudflareDomainType["FLEXIBLE"] = "flexible";
|
|
12
|
-
})(ICloudflareDomainType = exports.ICloudflareDomainType || (exports.ICloudflareDomainType = {}));
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ICloudflareDomainType = exports.ICloudflareDomainStatus = void 0;
|
|
4
|
+
var ICloudflareDomainStatus;
|
|
5
|
+
(function (ICloudflareDomainStatus) {
|
|
6
|
+
ICloudflareDomainStatus["PENDING"] = "pending";
|
|
7
|
+
})(ICloudflareDomainStatus = exports.ICloudflareDomainStatus || (exports.ICloudflareDomainStatus = {}));
|
|
8
|
+
var ICloudflareDomainType;
|
|
9
|
+
(function (ICloudflareDomainType) {
|
|
10
|
+
ICloudflareDomainType["FULL"] = "full";
|
|
11
|
+
ICloudflareDomainType["FLEXIBLE"] = "flexible";
|
|
12
|
+
})(ICloudflareDomainType = exports.ICloudflareDomainType || (exports.ICloudflareDomainType = {}));
|