@certd/acme-client 1.37.4 → 1.37.6

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/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.37.4",
6
+ "version": "1.37.6",
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.37.4",
21
+ "@certd/basic": "^1.37.6",
22
22
  "@peculiar/x509": "^1.11.0",
23
23
  "asn1js": "^3.0.5",
24
24
  "axios": "^1.7.2",
@@ -70,5 +70,5 @@
70
70
  "bugs": {
71
71
  "url": "https://github.com/publishlab/node-acme-client/issues"
72
72
  },
73
- "gitHead": "dbce75146439dac484597ce6494b935fd7ce75f7"
73
+ "gitHead": "9fcdeca6920fc7d465e2443dab4f246d279f108b"
74
74
  }
package/src/index.js CHANGED
@@ -21,6 +21,9 @@ export const directory = {
21
21
  staging: 'https://acme-staging-v02.api.letsencrypt.org/directory',
22
22
  production: 'https://acme-v02.api.letsencrypt.org/directory',
23
23
  },
24
+ letsencrypt_staging: {
25
+ production: 'https://acme-staging-v02.api.letsencrypt.org/directory',
26
+ },
24
27
  zerossl: {
25
28
  staging: 'https://acme.zerossl.com/v2/DV90',
26
29
  production: 'https://acme.zerossl.com/v2/DV90',
package/types/index.d.ts CHANGED
@@ -108,6 +108,9 @@ export const directory: {
108
108
  staging: string,
109
109
  production: string
110
110
  },
111
+ letsencrypt_staging: {
112
+ production: string
113
+ },
111
114
  zerossl: {
112
115
  staging: string,
113
116
  production: string