chore: 修复metadata的一些bug

This commit is contained in:
xiaojunnuo
2026-01-14 02:05:31 +08:00
parent c776c34cfd
commit db453c8038
20 changed files with 731 additions and 730 deletions
@@ -1 +1,2 @@
export const dnsList = [];
export type PrivateKeyType = "rsa2048" | "rsa3072" | "rsa4096" | "rsa8192" | "ec256" | "ec384";
@@ -1,15 +1,12 @@
import { IsTaskPlugin, pluginGroups, RunStrategy, Step, TaskInput } from "@certd/pipeline";
import type { CertInfo } from "../acme.js";
import { CertReader } from "@certd/plugin-lib";
import { CertApplyBasePlugin } from "../base.js";
import fs from "fs";
import { EabAccess } from "../../../access/index.js";
import path from "path";
import JSZip from "jszip";
import { PrivateKeyType } from "./dns.js";
export { CertReader };
export type { CertInfo };
export type PrivateKeyType = "rsa2048" | "rsa3072" | "rsa4096" | "rsa8192" | "ec256" | "ec384";
@IsTaskPlugin({
name: "CertApplyLego",