From f4ace3999dde77c118376ca5f9463f345c393b48 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Thu, 8 May 2025 12:56:17 +0000 Subject: [PATCH] feat(platformservice): Expose DcRouter and update package visibility. Changed package.json private flag from true to false to allow public publication, and added export of DcRouter in ts/index.ts for improved API accessibility. --- changelog.md | 6 ++++++ package.json | 2 +- ts/00_commitinfo_data.ts | 2 +- ts/index.ts | 3 +++ ts_web/00_commitinfo_data.ts | 2 +- 5 files changed, 12 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index fe159b6..9160016 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2025-05-08 - 2.11.0 - feat(platformservice) +Expose DcRouter and update package visibility. Changed package.json 'private' flag from true to false to allow public publication, and added export of DcRouter in ts/index.ts for improved API accessibility. + +- Changed package.json: set 'private' to false +- Added export for DcRouter in ts/index.ts + ## 2025-05-08 - 2.10.0 - feat(config): Implement standardized configuration system Create a comprehensive configuration system with validation, defaults, and documentation diff --git a/package.json b/package.json index ab08e41..c91551b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@serve.zone/platformservice", - "private": true, + "private": false, "version": "2.10.0", "description": "A multifaceted platform service handling mail, SMS, letter delivery, and AI services.", "main": "dist_ts/index.js", diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 1c1616c..d19b662 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/platformservice', - version: '2.8.9', + version: '2.11.0', description: 'A multifaceted platform service handling mail, SMS, letter delivery, and AI services.' } diff --git a/ts/index.ts b/ts/index.ts index a6cdac0..10508bf 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -2,4 +2,7 @@ export * from './00_commitinfo_data.js'; import { SzPlatformService } from './platformservice.js'; export * from './mail/index.js'; +// DcRouter +export * from './classes.dcrouter.js'; + export const runCli = async () => {} \ No newline at end of file diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 1c1616c..d19b662 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/platformservice', - version: '2.8.9', + version: '2.11.0', description: 'A multifaceted platform service handling mail, SMS, letter delivery, and AI services.' }