Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
c4d13e6f8a | |||
f6bda9a20c |
@ -1,5 +1,10 @@
|
||||
# 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)
|
||||
Refactor IProduct to separate IProductFeature interface
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tsclass/tsclass",
|
||||
"version": "4.0.63",
|
||||
"version": "4.0.64",
|
||||
"private": false,
|
||||
"description": "Provides TypeScript definitions for various business, financial, networking, content, and other common classes.",
|
||||
"main": "dist_ts/index.js",
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
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.'
|
||||
}
|
||||
|
@ -14,6 +14,7 @@ export interface IContact {
|
||||
salutation?: TContactSalutation;
|
||||
type: TContactType;
|
||||
title?: TContactTitle;
|
||||
relationship?: 'customer' | 'supplier' | 'partner' | 'employee' | 'other';
|
||||
name: string;
|
||||
surname?: string;
|
||||
legalEntity?: string;
|
||||
|
Reference in New Issue
Block a user