4 Commits

Author SHA1 Message Date
78ba483d35 1.0.6
Some checks failed
Default (tags) / security (push) Failing after 14s
Default (tags) / test (push) Failing after 12s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2024-07-02 15:45:59 +02:00
22bb35bb77 fix(core): Project files committed with initial structure and class implementation 2024-07-02 15:45:59 +02:00
f0c19ecdb0 1.0.5
Some checks failed
Default (tags) / security (push) Failing after 13s
Default (tags) / test (push) Failing after 13s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2024-04-22 16:31:28 +02:00
14bb77bd2e fix(core): update 2024-04-22 16:31:28 +02:00
3 changed files with 20 additions and 3 deletions

17
changelog.md Normal file
View File

@ -0,0 +1,17 @@
# Changelog
## 2024-07-02 - 1.0.6 - fix(core)
Project files committed with initial structure and class implementation
- Added package.json with project dependencies and scripts
- Included guide in readme.md on how to install and use the module
- Implemented ts/plugins.ts for exporting native Node.js and third-party modules
- Defined interfaces in ts/interfaces.ts to represent the structure of invoices
- Created ts/index.ts to export interfaces and classes
- Implemented XInvoice class in ts/classes.xinvoice.ts with methods for embedding and extracting XML from PDFs
- Added test/test.ts for basic testing of the embed XML functionality
## 2024-04-22 - 1.0.3 to 1.0.5 - core
Minor updates and bug fixes.
- fix: core update in versions 1.0.3 and 1.0.4

View File

@ -1,6 +1,6 @@
{ {
"name": "@fin.cx/xinvoice", "name": "@fin.cx/xinvoice",
"version": "1.0.4", "version": "1.0.6",
"private": false, "private": false,
"description": "A module for creating, manipulating, and embedding XML data within PDF files for xinvoice packages.", "description": "A module for creating, manipulating, and embedding XML data within PDF files for xinvoice packages.",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

View File

@ -1,8 +1,8 @@
/** /**
* autocreated commitinfo by @pushrocks/commitinfo * autocreated commitinfo by @push.rocks/commitinfo
*/ */
export const commitinfo = { export const commitinfo = {
name: '@fin.cx/xinvoice', name: '@fin.cx/xinvoice',
version: '1.0.4', version: '1.0.6',
description: 'A module for creating, manipulating, and embedding XML data within PDF files for xinvoice packages.' description: 'A module for creating, manipulating, and embedding XML data within PDF files for xinvoice packages.'
} }