tencentcloud-sdk-nodejs-ssl 4.0.1053 → 4.1.41
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 +27 -5
- package/es/index.js +1 -0
- package/es/services/index.js +1 -0
- package/es/services/ssl/index.js +4 -0
- package/es/services/ssl/v20191205/index.js +6 -0
- package/es/services/ssl/v20191205/ssl_client.js +195 -0
- package/es/services/ssl/v20191205/ssl_models.js +0 -0
- package/package.json +26 -8
- package/tencentcloud/services/ssl/v20191205/index.js +2 -1
- package/tencentcloud/services/ssl/v20191205/ssl_client.js +2 -1
- package/tencentcloud/services/ssl/v20191205/ssl_models.d.ts +88 -3
- package/index.d.ts +0 -2
- package/index.js +0 -6
- package/prettier.config.js +0 -38
- package/src/index.ts +0 -1
- package/src/services/index.ts +0 -1
- package/src/services/ssl/index.ts +0 -5
- package/src/services/ssl/v20191205/index.ts +0 -6
- package/src/services/ssl/v20191205/ssl_client.ts +0 -867
- package/src/services/ssl/v20191205/ssl_models.ts +0 -6119
- package/tsconfig.json +0 -33
- package/typings/index.d.ts +0 -2
package/README.md
CHANGED
|
@@ -44,18 +44,40 @@ npm install tencentcloud-sdk-nodejs-vpc --save
|
|
|
44
44
|
|
|
45
45
|
### 安装全产品 SDK
|
|
46
46
|
|
|
47
|
+
如果项目依赖的云产品较多,可以引入全产品 SDK。
|
|
48
|
+
|
|
47
49
|
```
|
|
48
50
|
npm install tencentcloud-sdk-nodejs --save
|
|
49
51
|
```
|
|
50
52
|
|
|
51
|
-
全产品 SDK
|
|
53
|
+
全产品 SDK 包含所有云产品调用代码和 TypeScript 类型文件,体积偏大。对于体积敏感的场景,推荐安装指定产品 SDK。
|
|
54
|
+
|
|
55
|
+
如果既希望全产品调用,又对包体积比较敏感,可以使用 Slim 版本 SDK。Slim SDK 移除类型文件,并进行了代码压缩,适合体积敏感场景使用:
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
npm install tencentcloud-sdk-slim-nodejs --save
|
|
59
|
+
```
|
|
52
60
|
|
|
53
61
|
## 通过源码包安装
|
|
54
62
|
|
|
55
|
-
1.
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
63
|
+
1. clone 代码到本地:
|
|
64
|
+
```
|
|
65
|
+
git clone https://github.com/tencentcloud/tencentcloud-sdk-nodejs
|
|
66
|
+
# 或者
|
|
67
|
+
git clone https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs
|
|
68
|
+
```
|
|
69
|
+
2. 在项目根目录执行以下命令完成构建:
|
|
70
|
+
```
|
|
71
|
+
npm install && npm run build
|
|
72
|
+
```
|
|
73
|
+
3. 打包 NPM 压缩文件,例如 `tencentcloud-sdk-nodejs-4.0.0.tgz`
|
|
74
|
+
```
|
|
75
|
+
npm pack
|
|
76
|
+
```
|
|
77
|
+
4. 安装包到你的项目里:
|
|
78
|
+
```
|
|
79
|
+
npm install /path/to/tencentcloud-sdk-nodejs/tencentcloud-sdk-nodejs-4.0.0.tgz
|
|
80
|
+
```
|
|
59
81
|
|
|
60
82
|
# 示例
|
|
61
83
|
|
package/es/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./services";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ssl } from "./ssl";
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
+
export class Client extends TencentCloudCommon.AbstractClient {
|
|
3
|
+
constructor(clientConfig) {
|
|
4
|
+
super("ssl.tencentcloudapi.com", "2019-12-05", clientConfig);
|
|
5
|
+
}
|
|
6
|
+
async DescribeHostCosInstanceList(req, cb) {
|
|
7
|
+
return this.request("DescribeHostCosInstanceList", req, cb);
|
|
8
|
+
}
|
|
9
|
+
async DescribeCertificates(req, cb) {
|
|
10
|
+
return this.request("DescribeCertificates", req, cb);
|
|
11
|
+
}
|
|
12
|
+
async DescribeHostCdnInstanceList(req, cb) {
|
|
13
|
+
return this.request("DescribeHostCdnInstanceList", req, cb);
|
|
14
|
+
}
|
|
15
|
+
async CancelAuditCertificate(req, cb) {
|
|
16
|
+
return this.request("CancelAuditCertificate", req, cb);
|
|
17
|
+
}
|
|
18
|
+
async DescribeHostTkeInstanceList(req, cb) {
|
|
19
|
+
return this.request("DescribeHostTkeInstanceList", req, cb);
|
|
20
|
+
}
|
|
21
|
+
async DescribeHostUpdateRecord(req, cb) {
|
|
22
|
+
return this.request("DescribeHostUpdateRecord", req, cb);
|
|
23
|
+
}
|
|
24
|
+
async DescribeHostDeployRecord(req, cb) {
|
|
25
|
+
return this.request("DescribeHostDeployRecord", req, cb);
|
|
26
|
+
}
|
|
27
|
+
async DeleteManager(req, cb) {
|
|
28
|
+
return this.request("DeleteManager", req, cb);
|
|
29
|
+
}
|
|
30
|
+
async CertificateInfoSubmit(req, cb) {
|
|
31
|
+
return this.request("CertificateInfoSubmit", req, cb);
|
|
32
|
+
}
|
|
33
|
+
async DescribeDownloadCertificateUrl(req, cb) {
|
|
34
|
+
return this.request("DescribeDownloadCertificateUrl", req, cb);
|
|
35
|
+
}
|
|
36
|
+
async DeployCertificateInstance(req, cb) {
|
|
37
|
+
return this.request("DeployCertificateInstance", req, cb);
|
|
38
|
+
}
|
|
39
|
+
async SubmitAuditManager(req, cb) {
|
|
40
|
+
return this.request("SubmitAuditManager", req, cb);
|
|
41
|
+
}
|
|
42
|
+
async DescribePackages(req, cb) {
|
|
43
|
+
return this.request("DescribePackages", req, cb);
|
|
44
|
+
}
|
|
45
|
+
async SubmitCertificateInformation(req, cb) {
|
|
46
|
+
return this.request("SubmitCertificateInformation", req, cb);
|
|
47
|
+
}
|
|
48
|
+
async UpdateCertificateRecordRollback(req, cb) {
|
|
49
|
+
return this.request("UpdateCertificateRecordRollback", req, cb);
|
|
50
|
+
}
|
|
51
|
+
async UpdateCertificateRecordRetry(req, cb) {
|
|
52
|
+
return this.request("UpdateCertificateRecordRetry", req, cb);
|
|
53
|
+
}
|
|
54
|
+
async DescribeHostDdosInstanceList(req, cb) {
|
|
55
|
+
return this.request("DescribeHostDdosInstanceList", req, cb);
|
|
56
|
+
}
|
|
57
|
+
async VerifyManager(req, cb) {
|
|
58
|
+
return this.request("VerifyManager", req, cb);
|
|
59
|
+
}
|
|
60
|
+
async DescribeHostClbInstanceList(req, cb) {
|
|
61
|
+
return this.request("DescribeHostClbInstanceList", req, cb);
|
|
62
|
+
}
|
|
63
|
+
async DescribeHostTeoInstanceList(req, cb) {
|
|
64
|
+
return this.request("DescribeHostTeoInstanceList", req, cb);
|
|
65
|
+
}
|
|
66
|
+
async CancelCertificateOrder(req, cb) {
|
|
67
|
+
return this.request("CancelCertificateOrder", req, cb);
|
|
68
|
+
}
|
|
69
|
+
async CertificateOrderSubmit(req, cb) {
|
|
70
|
+
return this.request("CertificateOrderSubmit", req, cb);
|
|
71
|
+
}
|
|
72
|
+
async DownloadCertificate(req, cb) {
|
|
73
|
+
return this.request("DownloadCertificate", req, cb);
|
|
74
|
+
}
|
|
75
|
+
async DeleteCertificate(req, cb) {
|
|
76
|
+
return this.request("DeleteCertificate", req, cb);
|
|
77
|
+
}
|
|
78
|
+
async CompleteCertificate(req, cb) {
|
|
79
|
+
return this.request("CompleteCertificate", req, cb);
|
|
80
|
+
}
|
|
81
|
+
async UpdateCertificateInstance(req, cb) {
|
|
82
|
+
return this.request("UpdateCertificateInstance", req, cb);
|
|
83
|
+
}
|
|
84
|
+
async UploadCertificate(req, cb) {
|
|
85
|
+
return this.request("UploadCertificate", req, cb);
|
|
86
|
+
}
|
|
87
|
+
async CheckCertificateChain(req, cb) {
|
|
88
|
+
return this.request("CheckCertificateChain", req, cb);
|
|
89
|
+
}
|
|
90
|
+
async ModifyCertificateAlias(req, cb) {
|
|
91
|
+
return this.request("ModifyCertificateAlias", req, cb);
|
|
92
|
+
}
|
|
93
|
+
async DescribeCompanies(req, cb) {
|
|
94
|
+
return this.request("DescribeCompanies", req, cb);
|
|
95
|
+
}
|
|
96
|
+
async DescribeCertificateDetail(req, cb) {
|
|
97
|
+
return this.request("DescribeCertificateDetail", req, cb);
|
|
98
|
+
}
|
|
99
|
+
async DescribeHostVodInstanceList(req, cb) {
|
|
100
|
+
return this.request("DescribeHostVodInstanceList", req, cb);
|
|
101
|
+
}
|
|
102
|
+
async DescribeHostLiveInstanceList(req, cb) {
|
|
103
|
+
return this.request("DescribeHostLiveInstanceList", req, cb);
|
|
104
|
+
}
|
|
105
|
+
async DescribeHostWafInstanceList(req, cb) {
|
|
106
|
+
return this.request("DescribeHostWafInstanceList", req, cb);
|
|
107
|
+
}
|
|
108
|
+
async DescribeManagerDetail(req, cb) {
|
|
109
|
+
return this.request("DescribeManagerDetail", req, cb);
|
|
110
|
+
}
|
|
111
|
+
async UploadRevokeLetter(req, cb) {
|
|
112
|
+
return this.request("UploadRevokeLetter", req, cb);
|
|
113
|
+
}
|
|
114
|
+
async DescribeHostDeployRecordDetail(req, cb) {
|
|
115
|
+
return this.request("DescribeHostDeployRecordDetail", req, cb);
|
|
116
|
+
}
|
|
117
|
+
async DeployCertificateRecordRollback(req, cb) {
|
|
118
|
+
return this.request("DeployCertificateRecordRollback", req, cb);
|
|
119
|
+
}
|
|
120
|
+
async DeployCertificateRecordRetry(req, cb) {
|
|
121
|
+
return this.request("DeployCertificateRecordRetry", req, cb);
|
|
122
|
+
}
|
|
123
|
+
async DescribeCertificateBindResourceTaskResult(req, cb) {
|
|
124
|
+
return this.request("DescribeCertificateBindResourceTaskResult", req, cb);
|
|
125
|
+
}
|
|
126
|
+
async CheckCertificateDomainVerification(req, cb) {
|
|
127
|
+
return this.request("CheckCertificateDomainVerification", req, cb);
|
|
128
|
+
}
|
|
129
|
+
async CheckCertificateExist(req, cb) {
|
|
130
|
+
return this.request("CheckCertificateExist", req, cb);
|
|
131
|
+
}
|
|
132
|
+
async DeleteCertificates(req, cb) {
|
|
133
|
+
return this.request("DeleteCertificates", req, cb);
|
|
134
|
+
}
|
|
135
|
+
async RevokeCertificate(req, cb) {
|
|
136
|
+
return this.request("RevokeCertificate", req, cb);
|
|
137
|
+
}
|
|
138
|
+
async ModifyCertificateProject(req, cb) {
|
|
139
|
+
return this.request("ModifyCertificateProject", req, cb);
|
|
140
|
+
}
|
|
141
|
+
async DescribeCertificate(req, cb) {
|
|
142
|
+
return this.request("DescribeCertificate", req, cb);
|
|
143
|
+
}
|
|
144
|
+
async DescribeDeployedResources(req, cb) {
|
|
145
|
+
return this.request("DescribeDeployedResources", req, cb);
|
|
146
|
+
}
|
|
147
|
+
async CreateCertificate(req, cb) {
|
|
148
|
+
return this.request("CreateCertificate", req, cb);
|
|
149
|
+
}
|
|
150
|
+
async UploadConfirmLetter(req, cb) {
|
|
151
|
+
return this.request("UploadConfirmLetter", req, cb);
|
|
152
|
+
}
|
|
153
|
+
async DescribeHostLighthouseInstanceList(req, cb) {
|
|
154
|
+
return this.request("DescribeHostLighthouseInstanceList", req, cb);
|
|
155
|
+
}
|
|
156
|
+
async DescribeHostUpdateRecordDetail(req, cb) {
|
|
157
|
+
return this.request("DescribeHostUpdateRecordDetail", req, cb);
|
|
158
|
+
}
|
|
159
|
+
async CommitCertificateInformation(req, cb) {
|
|
160
|
+
return this.request("CommitCertificateInformation", req, cb);
|
|
161
|
+
}
|
|
162
|
+
async DescribeCertificateOperateLogs(req, cb) {
|
|
163
|
+
return this.request("DescribeCertificateOperateLogs", req, cb);
|
|
164
|
+
}
|
|
165
|
+
async DescribeHostApiGatewayInstanceList(req, cb) {
|
|
166
|
+
return this.request("DescribeHostApiGatewayInstanceList", req, cb);
|
|
167
|
+
}
|
|
168
|
+
async CreateCertificateByPackage(req, cb) {
|
|
169
|
+
return this.request("CreateCertificateByPackage", req, cb);
|
|
170
|
+
}
|
|
171
|
+
async CreateCertificateBindResourceSyncTask(req, cb) {
|
|
172
|
+
return this.request("CreateCertificateBindResourceSyncTask", req, cb);
|
|
173
|
+
}
|
|
174
|
+
async ModifyCertificatesExpiringNotificationSwitch(req, cb) {
|
|
175
|
+
return this.request("ModifyCertificatesExpiringNotificationSwitch", req, cb);
|
|
176
|
+
}
|
|
177
|
+
async ReplaceCertificate(req, cb) {
|
|
178
|
+
return this.request("ReplaceCertificate", req, cb);
|
|
179
|
+
}
|
|
180
|
+
async ApplyCertificate(req, cb) {
|
|
181
|
+
return this.request("ApplyCertificate", req, cb);
|
|
182
|
+
}
|
|
183
|
+
async DescribeDeleteCertificatesTaskResult(req, cb) {
|
|
184
|
+
return this.request("DescribeDeleteCertificatesTaskResult", req, cb);
|
|
185
|
+
}
|
|
186
|
+
async DescribeManagers(req, cb) {
|
|
187
|
+
return this.request("DescribeManagers", req, cb);
|
|
188
|
+
}
|
|
189
|
+
async DescribeCertificateBindResourceTaskDetail(req, cb) {
|
|
190
|
+
return this.request("DescribeCertificateBindResourceTaskDetail", req, cb);
|
|
191
|
+
}
|
|
192
|
+
async ModifyCertificateResubmit(req, cb) {
|
|
193
|
+
return this.request("ModifyCertificateResubmit", req, cb);
|
|
194
|
+
}
|
|
195
|
+
}
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,16 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tencentcloud-sdk-nodejs-ssl",
|
|
3
|
-
"version": "4.
|
|
4
|
-
"description": "
|
|
5
|
-
"main": "tencentcloud/index.js",
|
|
3
|
+
"version": "4.1.41",
|
|
4
|
+
"description": "腾讯云 API NODEJS SDK",
|
|
5
|
+
"main": "./tencentcloud/index.js",
|
|
6
|
+
"module": "./es/index.js",
|
|
7
|
+
"types": "./tencentcloud/index.d.ts",
|
|
6
8
|
"scripts": {
|
|
7
9
|
"test": "mocha -t 10000",
|
|
8
|
-
"build": "
|
|
9
|
-
"
|
|
10
|
+
"build": "concurrently 'npm:build:cjs' 'npm:build:es'",
|
|
11
|
+
"build:cjs": "tsc -p tsconfig.json",
|
|
12
|
+
"build:es": "tsc -p tsconfig.es.json",
|
|
13
|
+
"build:slim": "node ./scripts/build_slim.js",
|
|
14
|
+
"prettier": "prettier --config prettier.config.js --write 'src/**/*.{tsx,ts,jsx,js,css,json,vue}'",
|
|
15
|
+
"clean": "rimraf tencentcloud es"
|
|
10
16
|
},
|
|
11
17
|
"engines": {
|
|
12
18
|
"node": ">=10"
|
|
13
19
|
},
|
|
20
|
+
"files": [
|
|
21
|
+
"tencentcloud",
|
|
22
|
+
"es"
|
|
23
|
+
],
|
|
14
24
|
"keywords": [
|
|
15
25
|
"tencentcloudapi",
|
|
16
26
|
"tencentcloud",
|
|
@@ -22,7 +32,7 @@
|
|
|
22
32
|
"author": "tencentcloudapi",
|
|
23
33
|
"license": "Apache-2.0",
|
|
24
34
|
"dependencies": {
|
|
25
|
-
"tencentcloud-sdk-nodejs-common": "
|
|
35
|
+
"tencentcloud-sdk-nodejs-common": "*",
|
|
26
36
|
"tslib": "1.13.0"
|
|
27
37
|
},
|
|
28
38
|
"directories": {
|
|
@@ -35,14 +45,22 @@
|
|
|
35
45
|
},
|
|
36
46
|
"devDependencies": {
|
|
37
47
|
"@types/form-data": "^2.5.0",
|
|
48
|
+
"@types/json-bigint": "^1.0.1",
|
|
38
49
|
"@types/node": "^14.0.26",
|
|
39
50
|
"@types/node-fetch": "^2.5.7",
|
|
51
|
+
"@types/uuid": "^9.0.8",
|
|
40
52
|
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
|
41
53
|
"@typescript-eslint/parser": "^2.34.0",
|
|
54
|
+
"babel-eslint": "^10.0.2",
|
|
42
55
|
"chai": "^4.2.0",
|
|
56
|
+
"concurrently": "^6.5.1",
|
|
57
|
+
"esbuild": "^0.25.0",
|
|
43
58
|
"eslint": "^6.8.0",
|
|
44
|
-
"
|
|
59
|
+
"eslint-plugin-react": "^7.17.0",
|
|
60
|
+
"mocha": "^8.4.0",
|
|
61
|
+
"prettier": "^2.3.0",
|
|
62
|
+
"rimraf": "^5.0.10",
|
|
45
63
|
"ts-node": "^8.10.2",
|
|
46
64
|
"typescript": "^3.9.7"
|
|
47
65
|
}
|
|
48
|
-
}
|
|
66
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.v20191205 = void 0;
|
|
4
|
-
const
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const Models = tslib_1.__importStar(require("./ssl_models"));
|
|
5
6
|
const ssl_client_1 = require("./ssl_client");
|
|
6
7
|
exports.v20191205 = {
|
|
7
8
|
Client: ssl_client_1.Client,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Client = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
4
5
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
5
6
|
/*
|
|
6
7
|
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|
@@ -18,7 +19,7 @@ exports.Client = void 0;
|
|
|
18
19
|
* specific language governing permissions and limitations
|
|
19
20
|
* under the License.
|
|
20
21
|
*/
|
|
21
|
-
const TencentCloudCommon = require("tencentcloud-sdk-nodejs-common");
|
|
22
|
+
const TencentCloudCommon = tslib_1.__importStar(require("tencentcloud-sdk-nodejs-common"));
|
|
22
23
|
/**
|
|
23
24
|
* ssl client
|
|
24
25
|
* @class
|
|
@@ -2689,15 +2689,100 @@ export interface CertBasicInfo {
|
|
|
2689
2689
|
*/
|
|
2690
2690
|
export interface CreateCertificateRequest {
|
|
2691
2691
|
/**
|
|
2692
|
-
*
|
|
2692
|
+
* 证书套餐类型:
|
|
2693
|
+
3:SecureSite 增强型企业版(EV Pro),
|
|
2694
|
+
4:SecureSite 增强型(EV),
|
|
2695
|
+
5:SecureSite 企业型专业版(OV Pro),
|
|
2696
|
+
6:SecureSite 企业型(OV),
|
|
2697
|
+
7:SecureSite 企业型(OV)通配符,
|
|
2698
|
+
8:Geotrust 增强型(EV),
|
|
2699
|
+
9:Geotrust 企业型(OV),
|
|
2700
|
+
10:Geotrust 企业型(OV)通配符,
|
|
2701
|
+
11:TrustAsia 域名型多域名 SSL 证书,
|
|
2702
|
+
12:TrustAsia 域名型(DV)通配符,
|
|
2703
|
+
13:TrustAsia 企业型通配符(OV)SSL 证书(D3),
|
|
2704
|
+
14:TrustAsia 企业型(OV)SSL 证书(D3),
|
|
2705
|
+
15:TrustAsia 企业型多域名 (OV)SSL 证书(D3),
|
|
2706
|
+
16:TrustAsia 增强型 (EV)SSL 证书(D3),
|
|
2707
|
+
17:TrustAsia 增强型多域名(EV)SSL 证书(D3),
|
|
2708
|
+
18:GlobalSign 企业型(OV)SSL 证书,
|
|
2709
|
+
19:GlobalSign 企业型通配符 (OV)SSL 证书,
|
|
2710
|
+
20:GlobalSign 增强型 (EV)SSL 证书,
|
|
2711
|
+
21:TrustAsia 企业型通配符多域名(OV)SSL 证书(D3),
|
|
2712
|
+
22:GlobalSign 企业型多域名(OV)SSL 证书,
|
|
2713
|
+
23:GlobalSign 企业型通配符多域名(OV)SSL 证书,
|
|
2714
|
+
24:GlobalSign 增强型多域名(EV)SSL 证书,
|
|
2715
|
+
25:Wotrus 域名型证书,
|
|
2716
|
+
26:Wotrus 域名型多域名证书,
|
|
2717
|
+
27:Wotrus 域名型通配符证书,
|
|
2718
|
+
28:Wotrus 企业型证书,
|
|
2719
|
+
29:Wotrus 企业型多域名证书,
|
|
2720
|
+
30:Wotrus 企业型通配符证书,
|
|
2721
|
+
31:Wotrus 增强型证书,
|
|
2722
|
+
32:Wotrus 增强型多域名证书,
|
|
2723
|
+
33:WoTrus-国密域名型证书,
|
|
2724
|
+
34:WoTrus-国密域名型证书(多域名),
|
|
2725
|
+
35:WoTrus-国密域名型证书(通配符),
|
|
2726
|
+
37:WoTrus-国密企业型证书,
|
|
2727
|
+
38:WoTrus-国密企业型证书(多域名),
|
|
2728
|
+
39:WoTrus-国密企业型证书(通配符),
|
|
2729
|
+
40:WoTrus-国密增强型证书,
|
|
2730
|
+
41:WoTrus-国密增强型证书(多域名),
|
|
2731
|
+
42:TrustAsia-域名型证书(通配符多域名),
|
|
2732
|
+
43:DNSPod-企业型(OV)SSL证书
|
|
2733
|
+
44:DNSPod-企业型(OV)通配符SSL证书
|
|
2734
|
+
45:DNSPod-企业型(OV)多域名SSL证书
|
|
2735
|
+
46:DNSPod-增强型(EV)SSL证书
|
|
2736
|
+
47:DNSPod-增强型(EV)多域名SSL证书
|
|
2737
|
+
48:DNSPod-域名型(DV)SSL证书
|
|
2738
|
+
49:DNSPod-域名型(DV)通配符SSL证书
|
|
2739
|
+
50:DNSPod-域名型(DV)多域名SSL证书
|
|
2740
|
+
51:DNSPod(国密)-企业型(OV)SSL证书
|
|
2741
|
+
52:DNSPod(国密)-企业型(OV)通配符SSL证书
|
|
2742
|
+
53:DNSPod(国密)-企业型(OV)多域名SSL证书
|
|
2743
|
+
54:DNSPod(国密)-域名型(DV)SSL证书
|
|
2744
|
+
55:DNSPod(国密)-域名型(DV)通配符SSL证书
|
|
2745
|
+
56:DNSPod(国密)-域名型(DV)多域名SSL证书
|
|
2746
|
+
57:SecureSite 企业型专业版多域名(OV Pro)
|
|
2747
|
+
58:SecureSite 企业型多域名(OV)
|
|
2748
|
+
59:SecureSite 增强型专业版多域名(EV Pro)
|
|
2749
|
+
60:SecureSite 增强型多域名(EV)
|
|
2750
|
+
61:Geotrust 增强型多域名(EV)
|
|
2751
|
+
75:SecureSite 企业型(OV)
|
|
2752
|
+
76:SecureSite 企业型(OV)通配符
|
|
2753
|
+
77:SecureSite 增强型(EV)
|
|
2754
|
+
78:Geotrust 企业型(OV)
|
|
2755
|
+
79:Geotrust 企业型(OV)通配符
|
|
2756
|
+
80:Geotrust 增强型(EV)
|
|
2757
|
+
81:GlobalSign 企业型(OV)SSL证书
|
|
2758
|
+
82:GlobalSign 企业型通配符 (OV)SSL证书
|
|
2759
|
+
85:GlobalSign 增强型 (EV)SSL证书
|
|
2760
|
+
88:GlobalSign 企业型通配符多域名 (OV)SSL证书
|
|
2761
|
+
89:GlobalSign 企业型多域名 (OV)SSL证书
|
|
2762
|
+
90:GlobalSign 增强型多域名(EV) SSL证书
|
|
2763
|
+
91:Geotrust 增强型多域名(EV)
|
|
2764
|
+
92:SecureSite 企业型专业版多域名(OV Pro)
|
|
2765
|
+
93:SecureSite 企业型多域名(OV)
|
|
2766
|
+
94:SecureSite 增强型专业版多域名(EV Pro)
|
|
2767
|
+
95:SecureSite 增强型多域名(EV)
|
|
2768
|
+
96:SecureSite 增强型专业版(EV Pro)
|
|
2769
|
+
97:SecureSite 企业型专业版(OV Pro)
|
|
2770
|
+
98:CFCA 企业型(OV)SSL证书
|
|
2771
|
+
99:CFCA 企业型多域名(OV)SSL证书,不支持多年期
|
|
2772
|
+
100:CFCA 企业型通配符(OV)SSL证书,不支持多年期
|
|
2773
|
+
101:CFCA 增强型(EV)SSL证书,不支持多年期
|
|
2774
|
+
102: Rapid-域名型(DV)SSL证书
|
|
2775
|
+
103: Rapid-域名型(DV)SSL证书(通配符)
|
|
2776
|
+
104: TrustAsia-域名型(单域名)
|
|
2777
|
+
105: SSL单域名证书(一年期)
|
|
2693
2778
|
*/
|
|
2694
2779
|
ProductId: number;
|
|
2695
2780
|
/**
|
|
2696
|
-
*
|
|
2781
|
+
* 证书包含的域名数量。 多域名或者多泛域名证书类型必须大于1
|
|
2697
2782
|
*/
|
|
2698
2783
|
DomainNum: number;
|
|
2699
2784
|
/**
|
|
2700
|
-
*
|
|
2785
|
+
* 证书年限。 支持多年期的证书才可以大于1年
|
|
2701
2786
|
*/
|
|
2702
2787
|
TimeSpan: number;
|
|
2703
2788
|
/**
|
package/index.d.ts
DELETED
package/index.js
DELETED
package/prettier.config.js
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
// prettier.config.js
|
|
2
|
-
module.exports = {
|
|
3
|
-
// 一行最多 100 字符
|
|
4
|
-
printWidth: 100,
|
|
5
|
-
// 使用 4 个空格缩进
|
|
6
|
-
tabWidth: 2,
|
|
7
|
-
// 不使用缩进符,而使用空格
|
|
8
|
-
useTabs: false,
|
|
9
|
-
// 行尾需要有分号
|
|
10
|
-
semi: false,
|
|
11
|
-
// 使用单引号
|
|
12
|
-
singleQuote: false,
|
|
13
|
-
// 对象的 key 仅在必要时用引号
|
|
14
|
-
quoteProps: "as-needed",
|
|
15
|
-
// jsx 不使用单引号,而使用双引号
|
|
16
|
-
jsxSingleQuote: false,
|
|
17
|
-
// 末尾不需要逗号
|
|
18
|
-
trailingComma: "es5",
|
|
19
|
-
// 大括号内的首尾需要空格
|
|
20
|
-
bracketSpacing: true,
|
|
21
|
-
// jsx 标签的反尖括号需要换行
|
|
22
|
-
jsxBracketSameLine: false,
|
|
23
|
-
// 箭头函数,只有一个参数的时候,也需要括号
|
|
24
|
-
arrowParens: "always",
|
|
25
|
-
// 每个文件格式化的范围是文件的全部内容
|
|
26
|
-
rangeStart: 0,
|
|
27
|
-
rangeEnd: Infinity,
|
|
28
|
-
// 不需要写文件开头的 @prettier
|
|
29
|
-
requirePragma: false,
|
|
30
|
-
// 不需要自动在文件开头插入 @prettier
|
|
31
|
-
insertPragma: false,
|
|
32
|
-
// 使用默认的折行标准
|
|
33
|
-
proseWrap: "preserve",
|
|
34
|
-
// 根据显示样式决定 html 要不要折行
|
|
35
|
-
htmlWhitespaceSensitivity: "css",
|
|
36
|
-
// 换行符使用 lf
|
|
37
|
-
endOfLine: "lf",
|
|
38
|
-
}
|
package/src/index.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./services"
|
package/src/services/index.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { ssl } from "./ssl"
|