fix(core): Update dependencies and add logging for email and SMS functions
This commit is contained in:
parent
e19a5b6195
commit
a71d5f1bde
@ -1,5 +1,13 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-10-02 - 1.0.7 - fix(core)
|
||||||
|
Update dependencies and add logging for email and SMS functions
|
||||||
|
|
||||||
|
- Updated devDependencies and dependencies in package.json
|
||||||
|
- Added logger import and logging statements in classes.emailconnector.ts and classes.smsconnector.ts
|
||||||
|
- Fixed formatting issues in test/test.ts
|
||||||
|
- Cleaned up and removed unused imports in index.ts and plugins.ts
|
||||||
|
|
||||||
## 2024-07-26 - 1.0.6 - fix(core)
|
## 2024-07-26 - 1.0.6 - fix(core)
|
||||||
Update @types/node dependency version
|
Update @types/node dependency version
|
||||||
|
|
||||||
|
10
package.json
10
package.json
@ -18,17 +18,17 @@
|
|||||||
"@git.zone/tsbundle": "^2.0.5",
|
"@git.zone/tsbundle": "^2.0.5",
|
||||||
"@git.zone/tsrun": "^1.2.49",
|
"@git.zone/tsrun": "^1.2.49",
|
||||||
"@git.zone/tstest": "^1.0.90",
|
"@git.zone/tstest": "^1.0.90",
|
||||||
"@push.rocks/tapbundle": "^5.0.23",
|
"@push.rocks/tapbundle": "^5.3.0",
|
||||||
"@types/node": "^20.14.12"
|
"@types/node": "^22.7.4"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@api.global/typedrequest": "^3.0.30",
|
"@api.global/typedrequest": "^3.0.32",
|
||||||
"@api.global/typedserver": "^3.0.50",
|
"@api.global/typedserver": "^3.0.51",
|
||||||
"@api.global/typedsocket": "^3.0.1",
|
"@api.global/typedsocket": "^3.0.1",
|
||||||
"@push.rocks/qenv": "^6.0.5",
|
"@push.rocks/qenv": "^6.0.5",
|
||||||
"@push.rocks/smartlog": "^3.0.7",
|
"@push.rocks/smartlog": "^3.0.7",
|
||||||
"@push.rocks/smartntml": "^2.0.4",
|
"@push.rocks/smartntml": "^2.0.4",
|
||||||
"@serve.zone/interfaces": "^1.0.74"
|
"@serve.zone/interfaces": "^1.0.81"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
905
pnpm-lock.yaml
generated
905
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -1,8 +1,8 @@
|
|||||||
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
|
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
|
||||||
import * as platformclient from '../ts/index.js'
|
import * as platformclient from '../ts/index.js';
|
||||||
|
|
||||||
tap.test('first test', async () => {
|
tap.test('first test', async () => {
|
||||||
console.log(platformclient)
|
console.log(platformclient);
|
||||||
})
|
});
|
||||||
|
|
||||||
tap.start()
|
tap.start();
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/platformclient',
|
name: '@serve.zone/platformclient',
|
||||||
version: '1.0.6',
|
version: '1.0.7',
|
||||||
description: 'a module that makes it really easy to use the serve.zone platform inside your app'
|
description: 'a module that makes it really easy to use the serve.zone platform inside your app'
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
import type { SzPlatformClient } from '../classes.platformclient.js';
|
import type { SzPlatformClient } from '../classes.platformclient.js';
|
||||||
import * as plugins from '../plugins.js';
|
import * as plugins from '../plugins.js';
|
||||||
|
|
||||||
|
import { logger } from '../logger.js';
|
||||||
|
|
||||||
export class SzEmailConnector {
|
export class SzEmailConnector {
|
||||||
public platformClientRef: SzPlatformClient;
|
public platformClientRef: SzPlatformClient;
|
||||||
|
|
||||||
@ -16,6 +18,15 @@ export class SzEmailConnector {
|
|||||||
'sendEmail'
|
'sendEmail'
|
||||||
);
|
);
|
||||||
const response = await typedRequest.fire(optionsArg);
|
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 }) {}
|
public async sendNotification(optionsArg: { toArg: string; subject: string; text: string }) {}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import type { SzPlatformClient } from '../classes.platformclient.js';
|
import type { SzPlatformClient } from '../classes.platformclient.js';
|
||||||
|
import { logger } from '../logger.js';
|
||||||
import * as plugins from '../plugins.js';
|
import * as plugins from '../plugins.js';
|
||||||
|
|
||||||
export class SzSmsConnector {
|
export class SzSmsConnector {
|
||||||
@ -13,6 +14,16 @@ export class SzSmsConnector {
|
|||||||
'sendSms'
|
'sendSms'
|
||||||
);
|
);
|
||||||
const response = await typedrequest.fire(messageArg);
|
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;
|
return response.status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1 @@
|
|||||||
export * from './classes.platformclient.js';
|
export * from './classes.platformclient.js';
|
||||||
|
|
||||||
// Things for building a server
|
|
||||||
import { servertools, utilityservers } from '@api.global/typedserver';
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -6,4 +6,6 @@ export const logger = new plugins.smartlog.Smartlog({
|
|||||||
runtime: 'node',
|
runtime: 'node',
|
||||||
zone: 'serve.zone',
|
zone: 'serve.zone',
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
logger.enableConsole();
|
@ -8,12 +8,10 @@ export {
|
|||||||
// @push.rocks scope
|
// @push.rocks scope
|
||||||
import * as qenv from '@push.rocks/qenv';
|
import * as qenv from '@push.rocks/qenv';
|
||||||
import * as smartlog from '@push.rocks/smartlog';
|
import * as smartlog from '@push.rocks/smartlog';
|
||||||
import * as smartntml from '@push.rocks/smartntml';
|
|
||||||
|
|
||||||
export {
|
export {
|
||||||
qenv,
|
qenv,
|
||||||
smartlog,
|
smartlog,
|
||||||
smartntml,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user