feat(index): Bump @tsclass/tsclass to 9.2.0 and update module exports to include handlers

This commit is contained in:
2025-05-05 12:02:04 +00:00
parent d456876de7
commit 10511b4293
5 changed files with 21 additions and 9 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartacme',
version: '7.2.5',
version: '7.3.0',
description: 'A TypeScript-based ACME client for LetsEncrypt certificate management with a focus on simplicity and power.'
}

View File

@ -1,5 +1,11 @@
export * from './smartacme.classes.smartacme.js';
export { SmartacmeCert as Cert } from './smartacme.classes.cert.js';
export type { ICertManager } from './interfaces/certmanager.js';
// certmanagers
import * as certmanagers from './certmanagers/index.js';
export { certmanagers };
export { certmanagers };
// handlers
import * as handlers from './handlers/index.js';
export { handlers };