fix(core): Update dependencies and add logging for email and SMS functions

This commit is contained in:
2024-10-02 08:01:31 +02:00
parent e19a5b6195
commit a71d5f1bde
10 changed files with 461 additions and 505 deletions

View File

@ -1,6 +1,8 @@
import type { SzPlatformClient } from '../classes.platformclient.js';
import * as plugins from '../plugins.js';
import { logger } from '../logger.js';
export class SzEmailConnector {
public platformClientRef: SzPlatformClient;
@ -16,6 +18,15 @@ export class SzEmailConnector {
'sendEmail'
);
const response = await typedRequest.fire(optionsArg);
if (process.env.SERVEZONE_PLATFORMCLIENT_DEBUG) {
logger.log('info', `sent email with subject ${optionsArg.title} to ${optionsArg.to}
body:
${optionsArg.body.split('\n').map(line => ` ${line}`).join('\n')}
`);
}
}
public async sendNotification(optionsArg: { toArg: string; subject: string; text: string }) {}

View File

@ -1,4 +1,5 @@
import type { SzPlatformClient } from '../classes.platformclient.js';
import { logger } from '../logger.js';
import * as plugins from '../plugins.js';
export class SzSmsConnector {
@ -13,6 +14,16 @@ export class SzSmsConnector {
'sendSms'
);
const response = await typedrequest.fire(messageArg);
if (process.env.SERVEZONE_PLATFORMCLIENT_DEBUG) {
logger.log('info', `sent sms to ${messageArg.toNumber}}
body:
${messageArg.messageText.split('\n').map(line => ` ${line}`).join('\n')}
`);
}
return response.status;
}