@push.rocks/smartacme 7.2.5 → 7.3.0

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.
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@push.rocks/smartacme',
6
- version: '7.2.5',
6
+ version: '7.3.0',
7
7
  description: 'A TypeScript-based ACME client for LetsEncrypt certificate management with a focus on simplicity and power.'
8
8
  };
9
9
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx1QkFBdUI7SUFDN0IsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLDZHQUE2RztDQUMzSCxDQUFBIn0=
@@ -3,3 +3,5 @@ export { SmartacmeCert as Cert } from './smartacme.classes.cert.js';
3
3
  export type { ICertManager } from './interfaces/certmanager.js';
4
4
  import * as certmanagers from './certmanagers/index.js';
5
5
  export { certmanagers };
6
+ import * as handlers from './handlers/index.js';
7
+ export { handlers };
package/dist_ts/index.js CHANGED
@@ -1,5 +1,9 @@
1
1
  export * from './smartacme.classes.smartacme.js';
2
2
  export { SmartacmeCert as Cert } from './smartacme.classes.cert.js';
3
+ // certmanagers
3
4
  import * as certmanagers from './certmanagers/index.js';
4
5
  export { certmanagers };
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELE9BQU8sRUFBRSxhQUFhLElBQUksSUFBSSxFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFFcEUsT0FBTyxLQUFLLFlBQVksTUFBTSx5QkFBeUIsQ0FBQztBQUN4RCxPQUFPLEVBQUUsWUFBWSxFQUFFLENBQUMifQ==
6
+ // handlers
7
+ import * as handlers from './handlers/index.js';
8
+ export { handlers };
9
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELE9BQU8sRUFBRSxhQUFhLElBQUksSUFBSSxFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFHcEUsZUFBZTtBQUNmLE9BQU8sS0FBSyxZQUFZLE1BQU0seUJBQXlCLENBQUM7QUFDeEQsT0FBTyxFQUFFLFlBQVksRUFBRSxDQUFDO0FBRXhCLFdBQVc7QUFDWCxPQUFPLEtBQUssUUFBUSxNQUFNLHFCQUFxQixDQUFDO0FBQ2hELE9BQU8sRUFBRSxRQUFRLEVBQUUsQ0FBQyJ9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@push.rocks/smartacme",
3
- "version": "7.2.5",
3
+ "version": "7.3.0",
4
4
  "private": false,
5
5
  "description": "A TypeScript-based ACME client for LetsEncrypt certificate management with a focus on simplicity and power.",
6
6
  "main": "dist_ts/index.js",
@@ -46,7 +46,7 @@
46
46
  "@push.rocks/smartstring": "^4.0.15",
47
47
  "@push.rocks/smarttime": "^4.1.1",
48
48
  "@push.rocks/smartunique": "^3.0.9",
49
- "@tsclass/tsclass": "^9.1.0",
49
+ "@tsclass/tsclass": "^9.2.0",
50
50
  "acme-client": "^5.4.0"
51
51
  },
52
52
  "devDependencies": {
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@push.rocks/smartacme',
6
- version: '7.2.5',
6
+ version: '7.3.0',
7
7
  description: 'A TypeScript-based ACME client for LetsEncrypt certificate management with a focus on simplicity and power.'
8
8
  }
package/ts/index.ts CHANGED
@@ -1,5 +1,11 @@
1
1
  export * from './smartacme.classes.smartacme.js';
2
2
  export { SmartacmeCert as Cert } from './smartacme.classes.cert.js';
3
3
  export type { ICertManager } from './interfaces/certmanager.js';
4
+
5
+ // certmanagers
4
6
  import * as certmanagers from './certmanagers/index.js';
5
- export { certmanagers };
7
+ export { certmanagers };
8
+
9
+ // handlers
10
+ import * as handlers from './handlers/index.js';
11
+ export { handlers };