Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
c4d13e6f8a | |||
f6bda9a20c |
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-07-18 - 4.0.64 - fix(business)
|
||||||
|
Add relationship field to contact interface
|
||||||
|
|
||||||
|
- Added 'relationship' field to the IContact interface in ts/business/contact.ts
|
||||||
|
|
||||||
## 2024-06-28 - 4.0.63 - fix(saas)
|
## 2024-06-28 - 4.0.63 - fix(saas)
|
||||||
Refactor IProduct to separate IProductFeature interface
|
Refactor IProduct to separate IProductFeature interface
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tsclass/tsclass",
|
"name": "@tsclass/tsclass",
|
||||||
"version": "4.0.63",
|
"version": "4.0.64",
|
||||||
"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: '4.0.63',
|
version: '4.0.64',
|
||||||
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.'
|
||||||
}
|
}
|
||||||
|
@ -14,6 +14,7 @@ export interface IContact {
|
|||||||
salutation?: TContactSalutation;
|
salutation?: TContactSalutation;
|
||||||
type: TContactType;
|
type: TContactType;
|
||||||
title?: TContactTitle;
|
title?: TContactTitle;
|
||||||
|
relationship?: 'customer' | 'supplier' | 'partner' | 'employee' | 'other';
|
||||||
name: string;
|
name: string;
|
||||||
surname?: string;
|
surname?: string;
|
||||||
legalEntity?: string;
|
legalEntity?: string;
|
||||||
|
Reference in New Issue
Block a user