fix(build): Update CI workflows, bump dependency versions, and refine import and TypeScript configuration

This commit is contained in:
2025-04-26 12:48:38 +00:00
parent 6425e4a93f
commit b84714b208
15 changed files with 4845 additions and 2888 deletions

View File

@ -1,8 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
* autocreated commitinfo by @push.rocks/commitinfo
*/
export const commitinfo = {
name: '@push.rocks/smartacme',
version: '5.0.0',
version: '5.0.1',
description: 'A TypeScript-based ACME client for LetsEncrypt certificate management with a focus on simplicity and power.'
}

View File

@ -1,2 +1,2 @@
export * from './smartacme.classes.smartacme.js';
export { SmartacmeCert as Cert } from './smartacme.classes.cert.js';
export { SmartacmeCert as Cert } from './smartacme.classes.cert.js';

View File

@ -22,7 +22,7 @@ export class SmartacmeCertManager {
smartAcmeArg: SmartAcme,
optionsArg: {
mongoDescriptor: plugins.smartdata.IMongoDescriptor;
}
},
) {
this.mongoDescriptor = optionsArg.mongoDescriptor;
}

View File

@ -31,7 +31,7 @@ export class SmartAcme {
// the acme client
private client: any;
private smartdns = new plugins.smartdns.Smartdns({});
private smartdns = new plugins.smartdnsClient.Smartdns({});
public logger: plugins.smartlog.Smartlog;
// the account private key

View File

@ -7,7 +7,7 @@ export { typedserver };
import * as lik from '@push.rocks/lik';
import * as smartdata from '@push.rocks/smartdata';
import * as smartdelay from '@push.rocks/smartdelay';
import * as smartdns from '@push.rocks/smartdns';
import * as smartdnsClient from '@push.rocks/smartdns/client';
import * as smartlog from '@push.rocks/smartlog';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrequest from '@push.rocks/smartrequest';
@ -19,7 +19,7 @@ export {
lik,
smartdata,
smartdelay,
smartdns,
smartdnsClient,
smartlog,
smartpromise,
smartrequest,