Compare commits
No commits in common. "master" and "v1.0.11" have entirely different histories.
@ -1,12 +1,5 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 2024-12-19 - 1.1.0 - feat(demodata)
|
|
||||||
Add demo data feature for contracts
|
|
||||||
|
|
||||||
- Introduced demo contract data for Minijob Employment Contract outlining details for employer and employee roles.
|
|
||||||
- Enhanced package.json with new export entry for demodata.
|
|
||||||
- Implemented new ts_demodata directory with sample contract representation.
|
|
||||||
|
|
||||||
## 2024-12-19 - 1.0.11 - fix(interfaces)
|
## 2024-12-19 - 1.0.11 - fix(interfaces)
|
||||||
Fixed import path in ts_interfaces/index.ts
|
Fixed import path in ts_interfaces/index.ts
|
||||||
|
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "@signature.digital/tools",
|
"name": "@signature.digital/tools",
|
||||||
"version": "1.1.0",
|
"version": "1.0.11",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A TypeScript package providing utilities for managing digital contracts with modular interfaces and business context integration.",
|
"description": "A TypeScript package providing utilities for managing digital contracts with modular interfaces and business context integration.",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./ts/index.js",
|
".": "./ts/index.js",
|
||||||
"./interfaces": "./dist_ts_interfaces/index.js",
|
"./interfaces": "./dist_ts_interfaces/index.js"
|
||||||
"./demodata": "./dist_ts_demodata/index.js"
|
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"author": "Task Venture Capital GmbH",
|
"author": "Task Venture Capital GmbH",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@signature.digital/tools',
|
name: '@signature.digital/tools',
|
||||||
version: '1.1.0',
|
version: '1.0.11',
|
||||||
description: 'A TypeScript package providing utilities for managing digital contracts with modular interfaces and business context integration.'
|
description: 'A TypeScript package providing utilities for managing digital contracts with modular interfaces and business context integration.'
|
||||||
}
|
}
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"order": 2
|
|
||||||
}
|
|
@ -1,49 +0,0 @@
|
|||||||
import * as plugins from './plugins.js';
|
|
||||||
|
|
||||||
export const demoContract: plugins.interfaces.IPortableContract = {
|
|
||||||
"title": "Minijob Employment Contract",
|
|
||||||
"context": "This contract is for a Minijob position under German law.",
|
|
||||||
"availableRoles": [
|
|
||||||
{
|
|
||||||
"id": "employer",
|
|
||||||
"name": "Employer",
|
|
||||||
"description": "The party offering the Minijob position."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "employee",
|
|
||||||
"name": "Employee",
|
|
||||||
"description": "The party accepting the Minijob position."
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"involvedParties": [
|
|
||||||
{
|
|
||||||
"role": "employer",
|
|
||||||
"contact": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"role": "employee",
|
|
||||||
"contact": null
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"priorContracts": [],
|
|
||||||
"paragraphs": [
|
|
||||||
{
|
|
||||||
"uniqueId": "1",
|
|
||||||
"parent": null,
|
|
||||||
"title": "Introduction",
|
|
||||||
"content": "This contract outlines the terms of employment for a Minijob position between [Employer Name] and [Employee Name]."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uniqueId": "2",
|
|
||||||
"parent": null,
|
|
||||||
"title": "Scope of Work",
|
|
||||||
"content": "The employee will perform the following duties: [List of Duties]."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"uniqueId": "3",
|
|
||||||
"parent": null,
|
|
||||||
"title": "Compensation",
|
|
||||||
"content": "The employee will be compensated with a monthly salary of [Salary Amount], in accordance with Minijob regulations."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
};
|
|
@ -1 +0,0 @@
|
|||||||
export * from './democontract.js';
|
|
@ -1,5 +0,0 @@
|
|||||||
import * as interfaces from '../dist_ts_interfaces/index.js';
|
|
||||||
|
|
||||||
export {
|
|
||||||
interfaces,
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"order": 3
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"order": 1
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user