fix: 修复西部数码账户级别apikey不可用的bug

This commit is contained in:
xiaojunnuo
2024-10-01 23:34:01 +08:00
parent f2f56adfd7
commit f8f3e8b43f
6 changed files with 41 additions and 23 deletions

View File

@@ -1,4 +1,4 @@
import { HttpClient, IAccess, ILogger, Registrable } from "@certd/pipeline";
import { HttpClient, IAccess, ILogger, Registrable, utils } from "@certd/pipeline";
export type DnsProviderDefine = Registrable & {
accessType: string;
@@ -22,6 +22,7 @@ export type DnsProviderContext = {
access: IAccess;
logger: ILogger;
http: HttpClient;
utils: typeof utils;
};
export interface IDnsProvider<T = any> {