@certd/acme-client 1.34.9 → 1.34.11

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/types/index.d.ts +1 -0
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Simple and unopinionated ACME client",
4
4
  "private": false,
5
5
  "author": "nmorsman",
6
- "version": "1.34.9",
6
+ "version": "1.34.11",
7
7
  "type": "module",
8
8
  "module": "scr/index.js",
9
9
  "main": "src/index.js",
@@ -18,7 +18,7 @@
18
18
  "types"
19
19
  ],
20
20
  "dependencies": {
21
- "@certd/basic": "^1.34.9",
21
+ "@certd/basic": "^1.34.11",
22
22
  "@peculiar/x509": "^1.11.0",
23
23
  "asn1js": "^3.0.5",
24
24
  "axios": "^1.7.2",
@@ -27,7 +27,7 @@
27
27
  "https-proxy-agent": "^7.0.5",
28
28
  "lodash-es": "^4.17.21",
29
29
  "node-forge": "^1.3.1",
30
- "punycode": "^2.3.1"
30
+ "punycode.js": "^2.3.1"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/node": "^20.14.10",
@@ -69,5 +69,5 @@
69
69
  "bugs": {
70
70
  "url": "https://github.com/publishlab/node-acme-client/issues"
71
71
  },
72
- "gitHead": "85f9ef35f650d6ed1125f9d5eecee08cabc7fe8a"
72
+ "gitHead": "ab3a3156f24d7fc70f8a907c5f6fc754413a89d6"
73
73
  }
package/types/index.d.ts CHANGED
@@ -203,6 +203,7 @@ export const agents: any;
203
203
  export function setLogger(fn: (message: any, ...args: any[]) => void): void;
204
204
 
205
205
  export function walkTxtRecord(record: any): Promise<string[]>;
206
+ export function getAuthoritativeDnsResolver(record:string): Promise<any>;
206
207
 
207
208
  export const CancelError: typeof CancelError;
208
209