BREAKING CHANGE(core): Rebrand XInvoice to EInvoice: update package name, class names, imports, and documentation

This commit is contained in:
2025-05-24 16:33:58 +00:00
parent 805adc6d5c
commit a93ea090ce
27 changed files with 3172 additions and 295 deletions

View File

@ -1,11 +1,11 @@
import { tap, expect } from '@push.rocks/tapbundle';
import { XInvoice } from '../ts/classes.xinvoice.js';
import { EInvoice } from '../ts/einvoice.js';
import { InvoiceFormat } from '../ts/interfaces/common.js';
import * as fs from 'fs/promises';
import * as path from 'path';
// Test a simple subset of corpus files
tap.test('XInvoice should handle a simple subset of corpus files', async () => {
tap.test('EInvoice should handle a simple subset of corpus files', async () => {
// Test a few specific files that we know work
const testFiles = [
// CII files
@ -32,25 +32,25 @@ tap.test('XInvoice should handle a simple subset of corpus files', async () => {
// Read the file
const xmlContent = await fs.readFile(file, 'utf8');
// Create XInvoice from XML
const xinvoice = await XInvoice.fromXml(xmlContent);
// Create EInvoice from XML
const einvoice = await EInvoice.fromXml(xmlContent);
// Check that the XInvoice instance has the expected properties
if (xinvoice && xinvoice.from && xinvoice.to && xinvoice.items) {
// Check that the EInvoice instance has the expected properties
if (einvoice && einvoice.from && einvoice.to && einvoice.items) {
console.log('✅ Success: File loaded and parsed successfully');
console.log(`Format: ${xinvoice.getFormat()}`);
console.log(`From: ${xinvoice.from.name}`);
console.log(`To: ${xinvoice.to.name}`);
console.log(`Items: ${xinvoice.items.length}`);
console.log(`Format: ${einvoice.getFormat()}`);
console.log(`From: ${einvoice.from.name}`);
console.log(`To: ${einvoice.to.name}`);
console.log(`Items: ${einvoice.items.length}`);
// Try to export the invoice back to XML
try {
let exportFormat = 'facturx';
if (xinvoice.getFormat() === InvoiceFormat.UBL || xinvoice.getFormat() === InvoiceFormat.XRECHNUNG) {
if (einvoice.getFormat() === InvoiceFormat.UBL || einvoice.getFormat() === InvoiceFormat.XRECHNUNG) {
exportFormat = 'xrechnung';
}
const exportedXml = await xinvoice.exportXml(exportFormat as any);
const exportedXml = await einvoice.exportXml(exportFormat as any);
if (exportedXml) {
console.log('✅ Successfully exported back to XML');