@certd/plugin-cert 1.21.2 → 1.22.1
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/CHANGELOG.md +13 -0
- package/dist/access/eab-access.d.ts +4 -0
- package/dist/access/eab-access.js +46 -0
- package/dist/access/index.d.ts +1 -0
- package/dist/access/index.js +2 -0
- package/dist/bundle.js +1 -1
- package/dist/d/plugin/cert-plugin/acme.d.ts +0 -2
- package/dist/d/plugin/cert-plugin/index.d.ts +0 -1
- package/dist/dns-provider/api.d.ts +27 -0
- package/dist/dns-provider/api.js +2 -0
- package/dist/dns-provider/base.d.ts +8 -0
- package/dist/dns-provider/base.js +7 -0
- package/dist/dns-provider/decorator.d.ts +3 -0
- package/dist/dns-provider/decorator.js +26 -0
- package/dist/dns-provider/index.d.ts +4 -0
- package/dist/dns-provider/index.js +5 -0
- package/dist/dns-provider/registry.d.ts +2 -0
- package/dist/dns-provider/registry.js +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4 -0
- package/dist/plugin/cert-plugin/acme.d.ts +54 -0
- package/dist/plugin/cert-plugin/acme.js +203 -0
- package/dist/plugin/cert-plugin/base.d.ts +49 -0
- package/dist/plugin/cert-plugin/base.js +259 -0
- package/dist/plugin/cert-plugin/cert-reader.d.ts +16 -0
- package/dist/plugin/cert-plugin/cert-reader.js +45 -0
- package/dist/plugin/cert-plugin/index.d.ts +16 -0
- package/dist/plugin/cert-plugin/index.js +171 -0
- package/dist/plugin/cert-plugin/lego.d.ts +16 -0
- package/dist/plugin/cert-plugin/lego.js +153 -0
- package/dist/plugin/index.d.ts +2 -0
- package/dist/plugin/index.js +3 -0
- package/dist/plugin-cert.mjs +11786 -0
- package/dist/plugin-cert.umd.js +28 -0
- package/fix-esm-import-paths.js +96 -0
- package/package.json +10 -10
- package/rollup.config.js +1 -1
- package/stats.html +6177 -0
- package/test/user.secret.js +7 -0
- package/test/user.secret.ts +4 -0
- package/tsconfig.json +33 -10
- package/tsconfig.tsbuildinfo +1 -0
- package/vite.config.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.22.1](https://github.com/certd/certd/compare/v1.22.0...v1.22.1) (2024-07-20)
|
|
7
|
+
|
|
8
|
+
### Performance Improvements
|
|
9
|
+
|
|
10
|
+
* 创建证书任务可以选择lege插件 ([affef13](https://github.com/certd/certd/commit/affef130378030c517250c58a4e787b0fc85d7d1))
|
|
11
|
+
|
|
12
|
+
# [1.22.0](https://github.com/certd/certd/compare/v1.21.2...v1.22.0) (2024-07-19)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* 升级midway,支持esm ([485e603](https://github.com/certd/certd/commit/485e603b5165c28bc08694997726eaf2a585ebe7))
|
|
17
|
+
* 支持lego,海量DNS提供商 ([0bc6d0a](https://github.com/certd/certd/commit/0bc6d0a211920fb0084d705e1db67ee1e7262c44))
|
|
18
|
+
|
|
6
19
|
## [1.21.2](https://github.com/certd/certd/compare/v1.21.1...v1.21.2) (2024-07-08)
|
|
7
20
|
|
|
8
21
|
### Performance Improvements
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
8
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
|
+
};
|
|
10
|
+
import { IsAccess, AccessInput } from "@certd/pipeline";
|
|
11
|
+
let EabAccess = class EabAccess {
|
|
12
|
+
kid = "";
|
|
13
|
+
hmacKey = "";
|
|
14
|
+
};
|
|
15
|
+
__decorate([
|
|
16
|
+
AccessInput({
|
|
17
|
+
title: "KID",
|
|
18
|
+
component: {
|
|
19
|
+
placeholder: "kid",
|
|
20
|
+
},
|
|
21
|
+
helper: "EAB KID",
|
|
22
|
+
required: true,
|
|
23
|
+
}),
|
|
24
|
+
__metadata("design:type", Object)
|
|
25
|
+
], EabAccess.prototype, "kid", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
AccessInput({
|
|
28
|
+
title: "HMACKey",
|
|
29
|
+
component: {
|
|
30
|
+
placeholder: "HMAC Key",
|
|
31
|
+
},
|
|
32
|
+
helper: "EAB HMAC Key",
|
|
33
|
+
required: true,
|
|
34
|
+
}),
|
|
35
|
+
__metadata("design:type", Object)
|
|
36
|
+
], EabAccess.prototype, "hmacKey", void 0);
|
|
37
|
+
EabAccess = __decorate([
|
|
38
|
+
IsAccess({
|
|
39
|
+
name: "eab",
|
|
40
|
+
title: "EAB授权",
|
|
41
|
+
desc: "ZeroSSL证书申请需要EAB授权",
|
|
42
|
+
})
|
|
43
|
+
], EabAccess);
|
|
44
|
+
export { EabAccess };
|
|
45
|
+
new EabAccess();
|
|
46
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWFiLWFjY2Vzcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9hY2Nlc3MvZWFiLWFjY2Vzcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7QUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLFdBQVcsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBT2pELElBQU0sU0FBUyxHQUFmLE1BQU0sU0FBUztJQVNwQixHQUFHLEdBQUcsRUFBRSxDQUFDO0lBU1QsT0FBTyxHQUFHLEVBQUUsQ0FBQztDQUNkLENBQUE7QUFWQztJQVJDLFdBQVcsQ0FBQztRQUNYLEtBQUssRUFBRSxLQUFLO1FBQ1osU0FBUyxFQUFFO1lBQ1QsV0FBVyxFQUFFLEtBQUs7U0FDbkI7UUFDRCxNQUFNLEVBQUUsU0FBUztRQUNqQixRQUFRLEVBQUUsSUFBSTtLQUNmLENBQUM7O3NDQUNPO0FBU1Q7SUFSQyxXQUFXLENBQUM7UUFDWCxLQUFLLEVBQUUsU0FBUztRQUNoQixTQUFTLEVBQUU7WUFDVCxXQUFXLEVBQUUsVUFBVTtTQUN4QjtRQUNELE1BQU0sRUFBRSxjQUFjO1FBQ3RCLFFBQVEsRUFBRSxJQUFJO0tBQ2YsQ0FBQzs7MENBQ1c7QUFsQkYsU0FBUztJQUxyQixRQUFRLENBQUM7UUFDUixJQUFJLEVBQUUsS0FBSztRQUNYLEtBQUssRUFBRSxPQUFPO1FBQ2QsSUFBSSxFQUFFLG9CQUFvQjtLQUMzQixDQUFDO0dBQ1csU0FBUyxDQW1CckI7O0FBRUQsSUFBSSxTQUFTLEVBQUUsQ0FBQyJ9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./eab-access.js";
|