6 Commits

9 changed files with 39 additions and 17 deletions

View File

@ -1,5 +1,24 @@
# Changelog
## 2024-10-02 - 1.0.11 - fix(email,sms)
Reorder debug logging to avoid confusion in email and sms connectors
- Reordered the logging after request creation in `sendEmail` method of `SzEmailConnector`
- Reordered the logging after request creation in `sendSms` method of `SzSmsConnector`
## 2024-10-02 - 1.0.10 - fix(build)
Fix build script configuration and plugins import path
- Corrected the build script in package.json to include tsfolders parameter
- Fixed the import path for plugins in classes.infohtml.ts
## 2024-10-02 - 1.0.9 - fix(infohtml)
Refactor infohtml module and fix import paths
- Refactored ts_infohtml module.
- Fixed incorrect import paths in ts_infohtml module.
- Ensured that the InfoHtml class and related templates are properly imported and used.
## 2024-10-02 - 1.0.8 - fix(core)
Maintain dependencies, update metadata

View File

@ -1,6 +1,6 @@
{
"name": "@serve.zone/platformclient",
"version": "1.0.8",
"version": "1.0.11",
"private": false,
"description": "a module that makes it really easy to use the serve.zone platform inside your app",
"main": "dist_ts/index.js",
@ -10,7 +10,7 @@
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany)",
"build": "(tsbuild tsfolders --web --allowimplicitany)",
"localPublish": "gitzone commit && pnpm run build && pnpm publish && pnpm publish --access public --registry=\"https://registry.npmjs.org\""
},
"devDependencies": {

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/platformclient',
version: '1.0.8',
version: '1.0.11',
description: 'a module that makes it really easy to use the serve.zone platform inside your app'
}

View File

@ -13,12 +13,6 @@ export class SzEmailConnector {
public async sendEmail(
optionsArg: plugins.servezoneInterfaces.platformservice.mta.IRequest_SendEmail['request']
) {
const typedRequest =
this.platformClientRef.typedsocket.createTypedRequest<plugins.servezoneInterfaces.platformservice.mta.IRequest_SendEmail>(
'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:
@ -26,6 +20,11 @@ export class SzEmailConnector {
`);
}
const typedRequest =
this.platformClientRef.typedsocket.createTypedRequest<plugins.servezoneInterfaces.platformservice.mta.IRequest_SendEmail>(
'sendEmail'
);
const response = await typedRequest.fire(optionsArg);
}

View File

@ -10,11 +10,6 @@ export class SzSmsConnector {
}
public async sendSms(messageArg: plugins.servezoneInterfaces.platformservice.sms.IRequest_SendSms['request']) {
const typedrequest = this.platformClientRef.typedsocket.createTypedRequest<plugins.servezoneInterfaces.platformservice.sms.IRequest_SendSms>(
'sendSms'
);
const response = await typedrequest.fire(messageArg);
if (process.env.SERVEZONE_PLATFORMCLIENT_DEBUG) {
logger.log('info', `sent sms to ${messageArg.toNumber}}
body:
@ -22,7 +17,11 @@ export class SzSmsConnector {
`);
}
const typedrequest = this.platformClientRef.typedsocket.createTypedRequest<plugins.servezoneInterfaces.platformservice.sms.IRequest_SendSms>(
'sendSms'
);
const response = await typedrequest.fire(messageArg);
return response.status;
}

View File

@ -1,4 +1,4 @@
import * as plugins from '../plugins.js';
import * as plugins from './plugins.js';
import { simpleInfo } from './template.js';

5
ts_infohtml/plugins.ts Normal file
View File

@ -0,0 +1,5 @@
import * as smartntml from '@push.rocks/smartntml';
export {
smartntml,
}

View File

@ -1,4 +1,4 @@
import * as plugins from '../plugins.js';
import * as plugins from './plugins.js';
import { type IHtmlInfoOptions } from './classes.infohtml.js';
export const simpleInfo = async (