Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
079e315b23 | |||
caf3e4766f |
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-03-19 - 6.0.1 - fix(business)
|
||||||
|
Remove exports for 'company' and 'person' modules from the business index
|
||||||
|
|
||||||
|
- Removed export statement for './company.js' in ts/business/index.ts
|
||||||
|
- Removed export statement for './person.js' in ts/business/index.ts
|
||||||
|
|
||||||
## 2025-03-19 - 6.0.0 - BREAKING CHANGE(TContact)
|
## 2025-03-19 - 6.0.0 - BREAKING CHANGE(TContact)
|
||||||
Reaffirm project metadata and documentation consistency
|
Reaffirm project metadata and documentation consistency
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tsclass/tsclass",
|
"name": "@tsclass/tsclass",
|
||||||
"version": "6.0.0",
|
"version": "6.0.1",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "Provides TypeScript definitions for various business, financial, networking, content, and other common classes.",
|
"description": "Provides TypeScript definitions for various business, financial, networking, content, and other common classes.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@tsclass/tsclass',
|
name: '@tsclass/tsclass',
|
||||||
version: '6.0.0',
|
version: '6.0.1',
|
||||||
description: 'Provides TypeScript definitions for various business, financial, networking, content, and other common classes.'
|
description: 'Provides TypeScript definitions for various business, financial, networking, content, and other common classes.'
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
export * from './address.js';
|
export * from './address.js';
|
||||||
export * from './company.js';
|
|
||||||
export * from './contact.js';
|
export * from './contact.js';
|
||||||
export * from './job.js';
|
export * from './job.js';
|
||||||
export * from './letter.js';
|
export * from './letter.js';
|
||||||
export * from './pdf.js';
|
export * from './pdf.js';
|
||||||
export * from './person.js';
|
|
||||||
export * from './project.js';
|
export * from './project.js';
|
||||||
|
Reference in New Issue
Block a user