node-zugferd
Version:
A Node.js library for creating ZUGFeRD/Factur-X compliant documents. Generating XML and embedding it into PDF/A files, enabling seamless e-invoicing and digital document compliance.
26 lines (25 loc) • 636 B
JavaScript
// src/codelists/filename.gen.ts
var PUBLISHED = "Factur-X";
var FILENAME = [
{
value: "factur-x.xml",
definition: "The hybrid document contains a Factur-X / ZUGFeRD XML-file",
usage: "The ConformanceLevel MUST not be XRECHNUNG"
},
{
value: "xrechnung.xml",
definition: "The hybrid document contains a XRechnung XML file",
usage: "The ConformanceLevel MUST be XRECHNUNG"
},
{
value: "order-x.xml",
definition: "The hybrid document contains an Order-X XML file",
usage: void 0
}
];
var filenameCode = FILENAME.map(({ value }) => value);
export {
FILENAME,
PUBLISHED,
filenameCode
};