fix(project): Corrected misalignment in file structure and package metadata.
This commit is contained in:
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@signature.digital/tools',
|
||||
version: '1.0.6',
|
||||
description: 'a package that defines standard tools for working with contracts.'
|
||||
version: '1.0.7',
|
||||
description: 'A TypeScript package providing utility interfaces and classes for digital contract management and integration, leveraging modular design and business context integration.'
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
export * from './interfaces/index.js';
|
||||
export * from '../ts_interfaces/index.js';
|
@ -1,28 +0,0 @@
|
||||
import * as plugins from '../portablecontract.plugins.js';
|
||||
|
||||
export interface IParagraph {
|
||||
uniqueId: string;
|
||||
parent: IParagraph | null;
|
||||
title: string;
|
||||
content: string;
|
||||
}
|
||||
|
||||
export interface IRole {
|
||||
id: string;
|
||||
name: string;
|
||||
description: string;
|
||||
}
|
||||
|
||||
export interface IInvolvedParty {
|
||||
role: string;
|
||||
contact: plugins.tsclass.business.IContact;
|
||||
}
|
||||
|
||||
export interface IPortableContract {
|
||||
title: string;
|
||||
context: string;
|
||||
availableRoles: IRole[];
|
||||
involvedParties: IInvolvedParty[];
|
||||
priorContracts: IPortableContract[];
|
||||
paragraphs: IParagraph[];
|
||||
}
|
Reference in New Issue
Block a user