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.
55 lines (54 loc) • 1.73 kB
JavaScript
// src/codelists/hybrid-conformance.gen.ts
var PUBLISHED = "Factur-X";
var HYBRID_CONFORMANCE = [
{
value: "MINIMUM",
definition: "The included document uses a MINIMUM profile",
usage: "Only applicable in Factur-X/ZUGFeRD",
comment: "Not allowed in Germany from 2025-01-01"
},
{
value: "BASIC WL",
definition: "The included document uses a Basic Without Lines profile",
usage: "Only applicable in Factur-X/ZUGFeRD",
comment: "Not allowed in Germany from 2025-01-01"
},
{
value: "BASIC",
definition: "The included document uses a Basic profile",
usage: "Applicable in Factur-X/ZUGFeRD and Order-X. For Factur-X/ZUGFeRD the BASIC profile is compliant to the EN16931.",
comment: void 0
},
{
value: "COMFORT",
definition: "The included document uses a Comfort profile",
usage: "Only applicable in Order-X",
comment: void 0
},
{
value: "EN 16931",
definition: "The included document uses a EN 16931 profile",
usage: "Only applicable in Factur-X/ZUGFeRD. This profile is compliant to the EN16931.",
comment: void 0
},
{
value: "EXTENDED",
definition: "The included document uses a Comfort profile",
usage: "Applicable in Factur-X/ZUGFeRD and Order-X. For Factur-X/ZUGFeRD the EXTENDED profile is compliant to and conformant extension of the EN16931.",
comment: void 0
},
{
value: "XRECHNUNG",
definition: "The included document uses an XRECHNUNG profile",
usage: "Only applicable in Factur-X/ZUGFeRD.",
comment: "Not applicable in France"
}
];
var hybridConformanceCode = HYBRID_CONFORMANCE.map(
({ value }) => value
);
export {
HYBRID_CONFORMANCE,
PUBLISHED,
hybridConformanceCode
};