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.
This commit is contained in:
parent
8b857e3d1d
commit
f4ace3999d
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# 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
|
## 2025-05-08 - 2.10.0 - feat(config): Implement standardized configuration system
|
||||||
Create a comprehensive configuration system with validation, defaults, and documentation
|
Create a comprehensive configuration system with validation, defaults, and documentation
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@serve.zone/platformservice",
|
"name": "@serve.zone/platformservice",
|
||||||
"private": true,
|
"private": false,
|
||||||
"version": "2.10.0",
|
"version": "2.10.0",
|
||||||
"description": "A multifaceted platform service handling mail, SMS, letter delivery, and AI services.",
|
"description": "A multifaceted platform service handling mail, SMS, letter delivery, and AI services.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/platformservice',
|
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.'
|
description: 'A multifaceted platform service handling mail, SMS, letter delivery, and AI services.'
|
||||||
}
|
}
|
||||||
|
@ -2,4 +2,7 @@ export * from './00_commitinfo_data.js';
|
|||||||
import { SzPlatformService } from './platformservice.js';
|
import { SzPlatformService } from './platformservice.js';
|
||||||
export * from './mail/index.js';
|
export * from './mail/index.js';
|
||||||
|
|
||||||
|
// DcRouter
|
||||||
|
export * from './classes.dcrouter.js';
|
||||||
|
|
||||||
export const runCli = async () => {}
|
export const runCli = async () => {}
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/platformservice',
|
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.'
|
description: 'A multifaceted platform service handling mail, SMS, letter delivery, and AI services.'
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user