@endevops/peppol-schema 0.1.3 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (185) hide show
  1. package/README.md +5 -5
  2. package/dist/constants.d.ts +131 -0
  3. package/dist/constants.d.ts.map +1 -1
  4. package/dist/constants.js +114 -1
  5. package/dist/constants.js.map +1 -1
  6. package/dist/{index-BBzPjq7o.d.ts → index-XG-N6PcG.d.ts} +1702 -724
  7. package/dist/index-XG-N6PcG.d.ts.map +1 -0
  8. package/dist/index.d.ts +2 -2
  9. package/dist/index.js +1247 -200
  10. package/dist/index.js.map +1 -1
  11. package/dist/invoice-response-code-not-needs-schema-DNrfKYLh.js +36 -0
  12. package/dist/invoice-response-code-not-needs-schema-DNrfKYLh.js.map +1 -0
  13. package/dist/invoice-response-codes.d.ts +28 -0
  14. package/dist/invoice-response-codes.d.ts.map +1 -1
  15. package/dist/invoice-response-codes.js +11 -1
  16. package/dist/invoice-response-codes.js.map +1 -1
  17. package/dist/{is-valid-abn-160i38PG.js → is-valid-abn-D7eSygBG.js} +115 -2
  18. package/dist/is-valid-abn-D7eSygBG.js.map +1 -0
  19. package/dist/{is-valid-mod97-0208-CzMOXMO-.js → is-valid-mod97-0208-CjR324eG.js} +11 -1
  20. package/dist/is-valid-mod97-0208-CjR324eG.js.map +1 -0
  21. package/dist/message-level-response-profile-id-B9c0A7S_.js +27 -0
  22. package/dist/message-level-response-profile-id-B9c0A7S_.js.map +1 -0
  23. package/dist/{nodable-parser-CyDZtLCK.js → nodable-parser-CupS2H55.js} +31 -1
  24. package/dist/nodable-parser-CupS2H55.js.map +1 -0
  25. package/dist/schematron.d.ts +57 -1
  26. package/dist/schematron.d.ts.map +1 -1
  27. package/dist/schematron.js +458 -7
  28. package/dist/schematron.js.map +1 -1
  29. package/dist/validations.d.ts +132 -0
  30. package/dist/validations.d.ts.map +1 -1
  31. package/dist/validations.js +11 -2
  32. package/dist/validations.js.map +1 -1
  33. package/dist/values.d.ts +67 -2
  34. package/dist/values.d.ts.map +1 -1
  35. package/dist/xml.d.ts +30 -0
  36. package/dist/xml.d.ts.map +1 -1
  37. package/dist/xml.js +10 -1
  38. package/dist/xml.js.map +1 -1
  39. package/package.json +1 -1
  40. package/src/constants/credit-note-doctype-id.ts +9 -0
  41. package/src/constants/credit-note-process-id.ts +9 -0
  42. package/src/constants/document-scheme.ts +9 -0
  43. package/src/constants/invoice-doctype-id.ts +9 -0
  44. package/src/constants/invoice-process-id.ts +10 -0
  45. package/src/constants/invoice-response-doctype-id.ts +10 -0
  46. package/src/constants/invoice-response-process-id.ts +9 -0
  47. package/src/constants/invoice-response-profile-id.ts +9 -0
  48. package/src/constants/message-level-response-doctype-id.ts +10 -0
  49. package/src/constants/message-level-response-process-id.ts +9 -0
  50. package/src/constants/message-level-response-profile-id.ts +9 -0
  51. package/src/constants/participant-scheme.ts +10 -0
  52. package/src/constants/process-scheme.ts +9 -0
  53. package/src/constants/transport-profile.ts +10 -0
  54. package/src/decoders/fields/decode-invoice-message-document-party.ts +2 -2
  55. package/src/decoders/fields/decode-parties-tax-scheme.ts +2 -2
  56. package/src/decoders/fields/decode-party-legal-entity.ts +2 -2
  57. package/src/decoders/fields/decode-party-tax-scheme.ts +2 -2
  58. package/src/decoders/fields/decode-tax-category.ts +1 -1
  59. package/src/decoders/fields/decode-tax-representative-party.ts +2 -2
  60. package/src/decoders/fields/encode-message-party.ts +2 -2
  61. package/src/decoders/fields/encode-parties-tax-scheme.ts +3 -3
  62. package/src/decoders/fields/encode-party-legal-entity.ts +1 -1
  63. package/src/decoders/fields/encode-party-tax-scheme.ts +2 -2
  64. package/src/decoders/fields/encode-tax-representative-party.ts +2 -2
  65. package/src/invoice-response-codes/invoice-response-code-needs-schema.ts +9 -0
  66. package/src/invoice-response-codes/invoice-response-code-not-needs-schema.ts +9 -0
  67. package/src/invoice-response-codes/invoice-response-codes-order.ts +10 -0
  68. package/src/peppol-validations/add-piva.ts +12 -0
  69. package/src/peppol-validations/check-cf.ts +11 -0
  70. package/src/peppol-validations/check-cf16.ts +12 -0
  71. package/src/peppol-validations/check-piva-se-it.ts +11 -0
  72. package/src/peppol-validations/check-piva.ts +11 -0
  73. package/src/peppol-validations/check-se-orgnr.ts +9 -0
  74. package/src/peppol-validations/greek-tin-verification.ts +9 -0
  75. package/src/peppol-validations/is-valid-abn.ts +9 -0
  76. package/src/peppol-validations/is-valid-gln.ts +10 -0
  77. package/src/peppol-validations/is-valid-iban.ts +10 -0
  78. package/src/peppol-validations/is-valid-mod11.ts +9 -0
  79. package/src/peppol-validations/is-valid-mod97-0208.ts +10 -0
  80. package/src/peppol-validations/luhn-check.ts +9 -0
  81. package/src/schemas/fields/default-customization-id.ts +9 -0
  82. package/src/schemas/fields/default-profile-id.ts +9 -0
  83. package/src/schemas/fields/peppol-additional-document-reference-schema.ts +61 -20
  84. package/src/schemas/fields/peppol-address-schema.ts +25 -2
  85. package/src/schemas/fields/peppol-allowance-charge-schema.ts +63 -9
  86. package/src/schemas/fields/peppol-amount-schema.ts +15 -2
  87. package/src/schemas/fields/peppol-base-line-schema.ts +12 -2
  88. package/src/schemas/fields/peppol-billing-reference-schema.ts +13 -0
  89. package/src/schemas/fields/peppol-binary-object-schema.ts +12 -4
  90. package/src/schemas/fields/peppol-contact-schema.ts +11 -0
  91. package/src/schemas/fields/peppol-credit-note-line-schema.ts +7 -2
  92. package/src/schemas/fields/peppol-delivery-schema.ts +44 -2
  93. package/src/schemas/fields/peppol-identifier-schema.ts +8 -0
  94. package/src/schemas/fields/peppol-invoice-line-period-schema.ts +11 -0
  95. package/src/schemas/fields/peppol-invoice-line-schema.ts +9 -2
  96. package/src/schemas/fields/peppol-invoice-period-schema.ts +2 -2
  97. package/src/schemas/fields/peppol-item-classification-schema.ts +2 -2
  98. package/src/schemas/fields/peppol-line-allowance-charge-schema.ts +56 -8
  99. package/src/schemas/fields/peppol-line-item-schema.ts +66 -6
  100. package/src/schemas/fields/peppol-line-price-allowance-charge-schema.ts +20 -0
  101. package/src/schemas/fields/peppol-line-price-schema.ts +2 -0
  102. package/src/schemas/fields/peppol-order-reference-schema.ts +2 -0
  103. package/src/schemas/fields/peppol-party-base-schema.ts +36 -4
  104. package/src/schemas/fields/peppol-party-legal-entity-schema.ts +10 -2
  105. package/src/schemas/fields/peppol-party-tax-scheme-schema.ts +4 -4
  106. package/src/schemas/fields/peppol-payee-party-schema.ts +8 -8
  107. package/src/schemas/fields/peppol-payment-means-schema.ts +62 -2
  108. package/src/schemas/fields/peppol-payment-terms-schema.ts +2 -0
  109. package/src/schemas/fields/peppol-quantity-schema.ts +4 -2
  110. package/src/schemas/fields/peppol-reference-schema.ts +20 -1
  111. package/src/schemas/fields/peppol-tax-category-schema.ts +12 -2
  112. package/src/schemas/fields/peppol-tax-representative-schema.ts +2 -2
  113. package/src/schemas/fields/peppol-tax-subtotal-category-schema.ts +3 -0
  114. package/src/schemas/fields/peppol-tax-subtotal-schema.ts +2 -0
  115. package/src/schemas/fields/peppol-tax-totals-base-schema.ts +3 -3
  116. package/src/schemas/peppol-billing-base-schema.ts +49 -9
  117. package/src/schemas/peppol-credit-note-schema.ts +2 -2
  118. package/src/schemas/peppol-document-response-document-reference-schema.ts +12 -4
  119. package/src/schemas/peppol-document-response-document-schema.ts +5 -5
  120. package/src/schemas/peppol-document-response-line-response-content-schema.ts +22 -2
  121. package/src/schemas/peppol-document-response-line-response-schema.ts +23 -2
  122. package/src/schemas/peppol-document-schema.ts +69 -6
  123. package/src/schemas/peppol-invoice-response-document-actual-response-schema.ts +53 -4
  124. package/src/schemas/peppol-invoice-response-document-actual-response-status-schema.ts +22 -4
  125. package/src/schemas/peppol-invoice-response-schema.ts +54 -6
  126. package/src/schemas/peppol-invoice-response-status-reason-code-schema.ts +36 -8
  127. package/src/schemas/peppol-invoice-schema.ts +30 -2
  128. package/src/schemas/peppol-message-level-response-document-response-schema.ts +10 -0
  129. package/src/schemas/peppol-message-level-response-party-schema.ts +10 -0
  130. package/src/schemas/peppol-message-level-response-schema.ts +18 -0
  131. package/src/schemas/utils/format-quantity-with-unit.ts +19 -0
  132. package/src/schemas/utils/get-credit-note-type-code-description.ts +12 -0
  133. package/src/schemas/utils/get-invoice-type-code-description.ts +12 -0
  134. package/src/schemas/utils/is-valid-credit-note-type-code.ts +13 -0
  135. package/src/schemas/utils/is-valid-invoice-type-code.ts +13 -0
  136. package/src/schemas/utils/is-valid-process.ts +13 -0
  137. package/src/schemas/utils/peppol-base-64-schema.ts +7 -4
  138. package/src/schemas/utils/peppol-vat-regex-schema.ts +38 -30
  139. package/src/schemas/utils/peppol-xsd-time-schema.ts +12 -2
  140. package/src/schemas/utils/quantity-unit-code-to-intl-unit.ts +34 -0
  141. package/src/schemas/values/additional-document-reference-code-schema.ts +9 -15
  142. package/src/schemas/values/allowance-charge-reason-code-schema.ts +12 -14
  143. package/src/schemas/values/application-response-type-code-schema.ts +10 -14
  144. package/src/schemas/values/charge-reason-code-schema.ts +12 -14
  145. package/src/schemas/values/credit-note-type-code-schema.ts +8 -14
  146. package/src/schemas/values/currency-code-schema.ts +13 -16
  147. package/src/schemas/values/document-type-schemes-schema.ts +9 -5
  148. package/src/schemas/values/document-type-values-schema.ts +5 -6
  149. package/src/schemas/values/duty-tax-fee-category-schema.ts +15 -13
  150. package/src/schemas/values/electronic-codes-schema.ts +10 -12
  151. package/src/schemas/values/icd-codes-schema.ts +8 -12
  152. package/src/schemas/values/invoice-status-code-schema.ts +10 -12
  153. package/src/schemas/values/invoice-type-code-schema.ts +10 -12
  154. package/src/schemas/values/item-classification-codes-schema.ts +10 -12
  155. package/src/schemas/values/mime-codes-schema.ts +12 -14
  156. package/src/schemas/values/op-status-action-schema.ts +10 -12
  157. package/src/schemas/values/op-status-reason-schema.ts +10 -12
  158. package/src/schemas/values/participant-identifier-code-schema.ts +10 -13
  159. package/src/schemas/values/payment-means-code-schema.ts +10 -12
  160. package/src/schemas/values/peppol-country-code-schema.ts +7 -9
  161. package/src/schemas/values/peppol-document-type-code-schema.ts +10 -12
  162. package/src/schemas/values/peppol-document-type-schema.ts +12 -21
  163. package/src/schemas/values/peppol-process-schema.ts +19 -15
  164. package/src/schemas/values/process-from-document-type-schema.ts +3 -3
  165. package/src/schemas/values/quantity-unit-codes-schema.ts +10 -12
  166. package/src/schemas/values/vat-date-code-schema.ts +12 -5
  167. package/src/schemas/values/vatex-code-schema.ts +8 -12
  168. package/src/schematron/errors.ts +14 -0
  169. package/src/schematron/helpers.ts +457 -11
  170. package/src/schematron/run-all-rules.ts +10 -0
  171. package/src/schematron/schematron.ts +25 -0
  172. package/src/xml/builder-options.ts +9 -0
  173. package/src/xml/common-xml-options.ts +9 -0
  174. package/src/xml/nodable-parser.ts +12 -0
  175. package/src/xml/parser-options.ts +9 -0
  176. package/dist/index-BBzPjq7o.d.ts.map +0 -1
  177. package/dist/invoice-response-code-not-needs-schema-p_RKKNLc.js +0 -18
  178. package/dist/invoice-response-code-not-needs-schema-p_RKKNLc.js.map +0 -1
  179. package/dist/is-valid-abn-160i38PG.js.map +0 -1
  180. package/dist/is-valid-mod97-0208-CzMOXMO-.js.map +0 -1
  181. package/dist/message-level-response-profile-id-DBpOW91B.js +0 -9
  182. package/dist/message-level-response-profile-id-DBpOW91B.js.map +0 -1
  183. package/dist/nodable-parser-CyDZtLCK.js.map +0 -1
  184. package/dist/vat-dates.generated-CxFvt7m3.d.ts +0 -68
  185. package/dist/vat-dates.generated-CxFvt7m3.d.ts.map +0 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index-XG-N6PcG.d.ts","names":[],"sources":["../src/schemas/utils/opaque.ts","../src/schemas/peppol-iso-date-string.ts","../src/schemas/utils/peppol-base-64-schema.ts","../src/schemas/values/mime-codes-schema.ts","../src/schemas/fields/peppol-binary-object-schema.ts","../src/schemas/values/additional-document-reference-code-schema.ts","../src/schemas/fields/peppol-additional-document-reference-schema.ts","../src/schemas/values/currency-code-schema.ts","../src/schemas/fields/peppol-amount-schema.ts","../src/schemas/values/allowance-charge-reason-code-schema.ts","../src/schemas/values/charge-reason-code-schema.ts","../src/schemas/values/duty-tax-fee-category-schema.ts","../src/schemas/fields/peppol-allowance-charge-schema.ts","../src/schemas/fields/peppol-billing-reference-schema.ts","../src/schemas/values/icd-codes-schema.ts","../src/schemas/values/peppol-country-code-schema.ts","../src/schemas/fields/peppol-address-schema.ts","../src/schemas/fields/peppol-delivery-schema.ts","../src/schemas/values/vat-date-code-schema.ts","../src/schemas/fields/peppol-invoice-period-schema.ts","../src/schemas/fields/peppol-legal-monetary-total-schema.ts","../src/schemas/fields/peppol-order-reference-schema.ts","../src/schemas/fields/peppol-contact-schema.ts","../src/schemas/fields/peppol-identifier-schema.ts","../src/schemas/fields/peppol-party-legal-entity-schema.ts","../src/schemas/fields/peppol-party-tax-scheme-schema.ts","../src/schemas/values/electronic-codes-schema.ts","../src/schemas/fields/peppol-party-base-schema.ts","../src/schemas/fields/peppol-payee-party-schema.ts","../src/schemas/values/payment-means-code-schema.ts","../src/schemas/fields/peppol-payment-means-schema.ts","../src/schemas/fields/peppol-payment-terms-schema.ts","../src/schemas/fields/peppol-tax-representative-schema.ts","../src/schemas/values/application-response-type-code-schema.ts","../src/schemas/values/credit-note-type-code-schema.ts","../src/schemas/values/peppol-document-type-code-schema.ts","../src/schemas/values/peppol-document-type-schema.ts","../src/schemas/values/document-type-schemes-schema.ts","../src/schemas/values/document-type-values-schema.ts","../src/schemas/values/invoice-status-code-schema.ts","../src/schemas/values/invoice-type-code-schema.ts","../src/schemas/values/item-classification-codes-schema.ts","../src/schemas/values/op-status-action-schema.ts","../src/schemas/values/op-status-reason-schema.ts","../src/schemas/values/participant-identifier-code-schema.ts","../src/schemas/values/peppol-process-schema.ts","../src/schemas/values/process-from-document-type-schema.ts","../src/schemas/values/quantity-unit-codes-schema.ts","../src/schemas/values/vatex-code-schema.ts","../src/schemas/fields/peppol-tax-category-schema.ts","../src/schemas/fields/peppol-tax-subtotal-category-schema.ts","../src/schemas/fields/peppol-tax-subtotal-schema.ts","../src/schemas/fields/peppol-tax-totals-base-schema.ts","../src/schemas/peppol-billing-base-schema.ts","../src/schemas/fields/peppol-line-allowance-charge-schema.ts","../src/schemas/fields/peppol-invoice-line-period-schema.ts","../src/schemas/fields/peppol-item-classification-schema.ts","../src/schemas/fields/peppol-line-item-schema.ts","../src/schemas/fields/peppol-line-price-allowance-charge-schema.ts","../src/schemas/fields/peppol-quantity-schema.ts","../src/schemas/fields/peppol-line-price-schema.ts","../src/schemas/fields/peppol-base-line-schema.ts","../src/schemas/fields/peppol-invoice-line-schema.ts","../src/schemas/peppol-invoice-schema.ts","../src/schemas/fields/peppol-credit-note-line-schema.ts","../src/schemas/peppol-credit-note-schema.ts","../src/schemas/peppol-message-level-response-party-schema.ts","../src/schemas/peppol-document-response-document-reference-schema.ts","../src/schemas/peppol-document-response-document-schema.ts","../src/schemas/peppol-document-response-line-response-content-schema.ts","../src/schemas/peppol-document-response-line-response-schema.ts","../src/schemas/peppol-message-level-response-document-response-schema.ts","../src/schemas/utils/peppol-xsd-time-schema.ts","../src/schemas/peppol-message-level-response-schema.ts","../src/schemas/peppol-invoice-response-status-reason-code-schema.ts","../src/schemas/peppol-invoice-response-document-actual-response-status-schema.ts","../src/schemas/peppol-invoice-response-document-actual-response-schema.ts","../src/schemas/utils/format-quantity-with-unit.ts","../src/schemas/utils/get-credit-note-type-code-description.ts","../src/schemas/utils/get-invoice-type-code-description.ts","../src/schemas/utils/is-valid-credit-note-type-code.ts","../src/schemas/utils/is-valid-invoice-type-code.ts","../src/schemas/utils/is-valid-process.ts","../src/schemas/utils/quantity-unit-code-to-intl-unit.ts","../src/schemas/utils/peppol-vat-regex-schema.ts","../src/schemas/peppol-invoice-response-schema.ts","../src/schemas/peppol-document-schema.ts","../src/schemas/fields/default-customization-id.ts","../src/schemas/fields/default-profile-id.ts","../src/schemas/fields/peppol-reference-schema.ts"],"mappings":"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"}
package/dist/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- import { $ as PeppolDocumentLine, $n as PeppolPayeeFinancialAccount, $t as PeppolLineReference, A as PeppolDocumentTypeCode, An as PeppolInvoiceLinePeriod, Ar as PeppolAttachmentExternalReference, At as getCreditNoteTypeCodeDescription, B as PeppolAllowanceChargeReasonCode, Bn as PeppolOriginatorDocumentReference, Br as PeppolAmount, Bt as withStatusCodes, C as PeppolDutyTaxFeeCategoryCode, Cn as PeppolCommodityClassifications, Cr as PeppolAddress, Ct as PeppolProcesses, D as documentTypeSchemesSchema, Dn as PeppolSellersItemIdentification, Dr as PeppolInvoiceDocumentReference, Dt as getInvoiceTypeCodeDescription, E as documentTypeValuesSchema, En as PeppolOriginCountryCode, Er as PeppolBillingReference, Et as isValidCreditNoteTypeCode, F as peppolCountryCodeSchema, Fn as PeppolLineCharge, Fr as PeppolAllowanceCharge, Ft as peppolBase64Schema, G as PeppolReferenceSchema, Gn as PeppolTaxSubTotalCategory, Gt as PeppolInvoiceResponseStatusReasonCode, H as PeppolAdditionalDocumentReferenceCode, Hn as PeppolTaxTotal, Hr as PeppolIsoDateString, Ht as InvoiceResponseDocumentActualResponseStatus, I as PeppolChargeReasonCode, In as peppolLineAllowanceChargeSchema, Ir as PeppolAllowanceChargeEncoded, It as InvoiceResponseDocumentActualResponse, J as DEFAULT_CUSTOMIZATION_ID, Jn as PeppolTaxSchemeId, Jt as peppolInvoiceResponseStatusReasonCodeSchema, K as peppolReferenceSchema, Kn as PeppolTaxSubTotalCategoryEncoded, Kt as PeppolInvoiceResponseStatusReasonCodeAction, L as chargeReasonCodeSchema, Ln as PeppolBillingBase, Lr as PeppolCharge, Lt as PeppolInvoiceResponseDocumentActualResponseWithStatus, M as PeppolCurrencyCode, Mn as PeppolLineAllowance, Mr as PeppolBinaryObject, Mt as creditNoteTypeCodeSchema, N as PeppolCurrencyCodeEncoded, Nn as PeppolLineAllowanceCharge, Nr as BaseAllowanceCharge, Nt as formatQuantityWithUnit, O as PeppolDocumentType, On as PeppolStandardItemIdentification, Or as PeppolAdditionalDocumentReference, Ot as PeppolInvoiceTypeCode, P as currencyCodeSchema, Pn as PeppolLineAllowanceChargeEncoded, Pr as PeppolAllowance, Pt as Base64, Q as PeppolDocumentEncoded, Qn as PeppolCardAccount, Qt as PeppolDocumentResponseLineResponse, R as PeppolApplicationResponseTypeCode, Rn as PeppolContractDocumentReference, Rr as PeppolTaxCategoryTaxSchemeId, Rt as PeppolInvoiceResponseDocumentActualResponseWithoutStatus, S as electronicCodesSchema, Sn as PeppolBuyersItemIdentification, Sr as PeppolDeliveryPartyPartyName, St as isValidProcess, T as peppolDutyTaxFeeCategorySchema, Tn as PeppolLineItem, Tr as PeppolCountryCode, Tt as isValidInvoiceTypeCode, U as additionalDocumentReferenceCodeSchema, Un as PeppolTaxTotalsBase, Ut as PeppolInvoiceResponseCondition, V as allowanceChargeReasonCodeSchema, Vn as PeppolReceiptDocumentReference, Vr as PeppolAmountEncoded, Vt as withoutStatusCodes, W as PeppolReferenceId, Wn as PeppolTaxSubTotal, Wt as PeppolInvoiceResponseDocumentActualResponseStatus, X as PeppolDocument, Xn as PeppolTaxRepresentativeParty, Xt as PeppolXsdTime, Y as PeppolAllDocuments, Yn as PeppolTaxRepresentative, Yt as PeppolMessageLevelResponse, Z as PeppolDocumentDecoded, Zn as PeppolPaymentTerms, Zt as PeppolMessageLevelResponseDocumentResponse, _ as PeppolInvoiceStatusCodes, _n as PeppolLinePrice, _r as PeppolLegalMonetaryTotal, _t as TimeIntlUnit, a as processFromDocumentTypeSchema, an as PeppolDocumentResponseDocumentReference, ar as PeppolPayeeParty, at as peppolDocumentSchema, b as icdCodesSchema, bn as PriceAllowanceCharge, br as PeppolDeliveryLocation, bt as PeppolQuantityUnitCode, c as participantIdentifierCodeSchema, cn as PeppolCreditNote, cr as PeppolPartyName, ct as PeppolInvoiceResponseDocumentReference, d as PeppolOpStatusAction, dn as PeppolInvoice, dr as PeppolPartyTaxScheme, dt as PeppolInvoiceResponseDocumentResponsePartyName, en as PeppolMessageLevelDocumentResponseLineResponse, er as PeppolPayeeFinancialAccountFinancialInstitutionBranch, et as PeppolMessage, f as opStatusActionSchema, fn as PeppolProjectReference, fr as PeppolPartyLegalEntity, ft as PeppolInvoiceResponseParty, g as itemClassificationCodesSchema, gn as PeppolOrderLineReference, gr as PeppolOrderReference, gt as IntlUnit, h as PeppolItemClassificationCode, hn as PeppolBaseLine, hr as PeppolContact, ht as BaseIntlUnit, i as vatexCodeSchema, in as PeppolMessageLevelResponseDocumentResponseDocument, ir as PeppolPaymentMeansCode, it as isPeppolMessageLevelResponse, j as peppolDocumentTypeCodeSchema, jn as BaseLineAllowanceCharge, jr as PeppolId, jt as PeppolCreditNoteTypeCode, k as peppolDocumentTypeSchema, kn as PeppolItemClassification, kr as PeppolAttachment, kt as invoiceTypeCodeSchema, l as PeppolOpStatusReason, ln as PeppolCreditNoteLine, lr as PeppolPartySchema, lt as PeppolInvoiceResponseDocumentResponse, m as mimeCodesSchema, mn as PeppolInvoiceLineEncoded, mr as PeppolIdentifier, mt as peppolVatRegexSchema, n as vatDateCodeSchema, nn as PeppolStatus, nr as PeppolPaymentMandatePayerFinancialAccountId, nt as isPeppolInvoice, o as paymentMeansCodeSchema, on as PeppolMessageLevelDocumentResponseDocumentReference, or as PeppolPartyEndpointId, ot as PeppolInvoiceDocumentResponseParty, p as PeppolMimeCode, pn as PeppolInvoiceLine, pr as PeppolPartyLegalEntitySchema, pt as PeppolInvoiceResponseSenderParty, q as DEFAULT_PROFILE_ID, qn as PeppolTaxCategory, qt as PeppolInvoiceResponseStatusReasonCodeReason, r as PeppolVatexCode, rn as PeppolDocumentResponseDocument, rr as PeppolPaymentMeans, rt as isPeppolInvoiceResponse, s as PeppolParticipantIdentifierCode, sn as PeppolMessageLevelResponseParty, sr as PeppolPartyIdentification, st as PeppolInvoiceResponse, t as PeppolVatDateCode, tn as PeppolDocumentResponseLineResponseContent, tr as PeppolPaymentMandate, tt as isPeppolCreditNote, u as opStatusReasonSchema, un as PeppolCreditNoteLineEncoded, ur as PeppolPartyTaxSchema, ut as PeppolInvoiceResponseDocumentResponseParty, v as invoiceStatusCodeSchema, vn as PeppolQuantity, vr as PeppolInvoicePeriod, vt as quantityToIntlUnitMap, w as PeppolDutyTaxFeeCategoryCodeEncoded, wn as PeppolItem, wr as PeppolAddressLine, wt as peppolProcessSchema, x as PeppolElectronicAddressCode, xn as PeppolAdditionalItemProperties, xr as PeppolDeliveryParty, xt as quantityUnitCodesSchema, y as PeppolIcdCode, yn as PeppolLinePriceAllowanceCharge, yr as PeppolDelivery, yt as quantityUnitCodeToIntlUnit, z as applicationResponseTypeCodeSchema, zn as PeppolDespatchDocumentReference, zr as peppolAllowanceChargeSchema, zt as peppolInvoiceResponseDocumentActualResponseSchema } from "./index-BBzPjq7o.js";
2
- export { Base64, BaseAllowanceCharge, BaseIntlUnit, BaseLineAllowanceCharge, DEFAULT_CUSTOMIZATION_ID, DEFAULT_PROFILE_ID, IntlUnit, InvoiceResponseDocumentActualResponse, InvoiceResponseDocumentActualResponseStatus, PeppolAdditionalDocumentReference, PeppolAdditionalDocumentReferenceCode, PeppolAdditionalItemProperties, PeppolAddress, PeppolAddressLine, PeppolAllDocuments, PeppolAllowance, PeppolAllowanceCharge, PeppolAllowanceChargeEncoded, PeppolAllowanceChargeReasonCode, PeppolAmount, PeppolAmountEncoded, PeppolApplicationResponseTypeCode, PeppolAttachment, PeppolAttachmentExternalReference, PeppolBaseLine, PeppolBillingBase, PeppolBillingReference, PeppolBinaryObject, PeppolBuyersItemIdentification, PeppolCardAccount, PeppolCharge, PeppolChargeReasonCode, PeppolCommodityClassifications, PeppolContact, PeppolContractDocumentReference, PeppolCreditNote, PeppolCreditNoteLine, PeppolCreditNoteLineEncoded, PeppolCreditNoteTypeCode, PeppolCurrencyCode, PeppolCurrencyCodeEncoded, PeppolDelivery, PeppolDeliveryLocation, PeppolDeliveryParty, PeppolDeliveryPartyPartyName, PeppolDespatchDocumentReference, PeppolDocument, PeppolDocumentDecoded, PeppolDocumentEncoded, PeppolDocumentLine, PeppolDocumentResponseDocument, PeppolDocumentResponseDocumentReference, PeppolDocumentResponseLineResponse, PeppolDocumentResponseLineResponseContent, PeppolDocumentType, PeppolDocumentTypeCode, PeppolDutyTaxFeeCategoryCode, PeppolDutyTaxFeeCategoryCodeEncoded, PeppolElectronicAddressCode, PeppolIcdCode, PeppolId, PeppolIdentifier, PeppolInvoice, PeppolInvoiceDocumentReference, PeppolInvoiceDocumentResponseParty, PeppolInvoiceLine, PeppolInvoiceLineEncoded, PeppolInvoiceLinePeriod, PeppolInvoicePeriod, PeppolInvoiceResponse, PeppolInvoiceResponseCondition, PeppolInvoiceResponseDocumentActualResponseStatus, PeppolInvoiceResponseDocumentActualResponseWithStatus, PeppolInvoiceResponseDocumentActualResponseWithoutStatus, PeppolInvoiceResponseDocumentReference, PeppolInvoiceResponseDocumentResponse, PeppolInvoiceResponseDocumentResponseParty, PeppolInvoiceResponseDocumentResponsePartyName, PeppolInvoiceResponseParty, PeppolInvoiceResponseSenderParty, PeppolInvoiceResponseStatusReasonCode, PeppolInvoiceResponseStatusReasonCodeAction, PeppolInvoiceResponseStatusReasonCodeReason, PeppolInvoiceStatusCodes, PeppolInvoiceTypeCode, PeppolIsoDateString, PeppolItem, PeppolItemClassification, PeppolItemClassificationCode, PeppolLegalMonetaryTotal, PeppolLineAllowance, PeppolLineAllowanceCharge, PeppolLineAllowanceChargeEncoded, PeppolLineCharge, PeppolLineItem, PeppolLinePrice, PeppolLinePriceAllowanceCharge, PeppolLineReference, PeppolMessage, PeppolMessageLevelDocumentResponseDocumentReference, PeppolMessageLevelDocumentResponseLineResponse, PeppolMessageLevelResponse, PeppolMessageLevelResponseDocumentResponse, PeppolMessageLevelResponseDocumentResponseDocument, PeppolMessageLevelResponseParty, PeppolMimeCode, PeppolOpStatusAction, PeppolOpStatusReason, PeppolOrderLineReference, PeppolOrderReference, PeppolOriginCountryCode, PeppolOriginatorDocumentReference, PeppolParticipantIdentifierCode, PeppolPartyEndpointId, PeppolPartyIdentification, PeppolPartyLegalEntity, PeppolPartyLegalEntitySchema, PeppolPartyName, PeppolPartySchema, PeppolPartyTaxSchema, PeppolPartyTaxScheme, PeppolPayeeFinancialAccount, PeppolPayeeFinancialAccountFinancialInstitutionBranch, PeppolPayeeParty, PeppolPaymentMandate, PeppolPaymentMandatePayerFinancialAccountId, PeppolPaymentMeans, PeppolPaymentTerms, PeppolProcesses, PeppolProjectReference, PeppolQuantity, PeppolQuantityUnitCode, PeppolReceiptDocumentReference, PeppolReferenceId, PeppolReferenceSchema, PeppolSellersItemIdentification, PeppolStandardItemIdentification, PeppolStatus, PeppolTaxCategory, PeppolTaxCategoryTaxSchemeId, PeppolTaxRepresentative, PeppolTaxRepresentativeParty, PeppolTaxSchemeId, PeppolTaxSubTotal, PeppolTaxSubTotalCategory, PeppolTaxSubTotalCategoryEncoded, PeppolTaxTotal, PeppolTaxTotalsBase, PeppolVatDateCode, PeppolVatexCode, PeppolXsdTime, PriceAllowanceCharge, TimeIntlUnit, additionalDocumentReferenceCodeSchema, allowanceChargeReasonCodeSchema, applicationResponseTypeCodeSchema, chargeReasonCodeSchema, creditNoteTypeCodeSchema, currencyCodeSchema, documentTypeSchemesSchema, documentTypeValuesSchema, electronicCodesSchema, formatQuantityWithUnit, getCreditNoteTypeCodeDescription, getInvoiceTypeCodeDescription, icdCodesSchema, invoiceStatusCodeSchema, invoiceTypeCodeSchema, isPeppolCreditNote, isPeppolInvoice, isPeppolInvoiceResponse, isPeppolMessageLevelResponse, isValidCreditNoteTypeCode, isValidInvoiceTypeCode, isValidProcess, itemClassificationCodesSchema, mimeCodesSchema, opStatusActionSchema, opStatusReasonSchema, participantIdentifierCodeSchema, paymentMeansCodeSchema, peppolAllowanceChargeSchema, peppolBase64Schema, peppolCountryCodeSchema, peppolDocumentSchema, peppolDocumentTypeCodeSchema, peppolDocumentTypeSchema, peppolDutyTaxFeeCategorySchema, peppolInvoiceResponseDocumentActualResponseSchema, peppolInvoiceResponseStatusReasonCodeSchema, peppolLineAllowanceChargeSchema, peppolProcessSchema, peppolReferenceSchema, peppolVatRegexSchema, processFromDocumentTypeSchema, quantityToIntlUnitMap, quantityUnitCodeToIntlUnit, quantityUnitCodesSchema, vatDateCodeSchema, vatexCodeSchema, withStatusCodes, withoutStatusCodes };
1
+ import { $ as PeppolDocumentResponseDocument, $n as PeppolAmountEncoded, $t as PeppolDocumentType, A as isValidProcess, An as PeppolVatDateCode, At as PeppolContractDocumentReference, B as withoutStatusCodes, Bn as PeppolBillingReference, Bt as PeppolVatexCode, C as PeppolInvoiceResponseSenderParty, Cn as PeppolPartyTaxSchemeId, Ct as PeppolInvoiceLinePeriod, D as TimeIntlUnit, Dn as PeppolOrderReference, Dt as PeppolLineAllowanceChargeEncoded, E as IntlUnit, En as PeppolContact, Et as PeppolLineAllowanceCharge, F as formatQuantityWithUnit, Fn as PeppolAddress, Ft as PeppolTaxSubTotal, G as PeppolInvoiceResponseStatusReasonCodeReason, Gn as PeppolAllowanceChargeEncoded, Gt as PeppolParticipantIdentifierCode, H as PeppolInvoiceResponseDocumentActualResponseStatus, Hn as BaseAllowanceCharge, Ht as processFromDocumentTypeSchema, I as PeppolInvoiceResponseDocumentActualResponse, In as PeppolAddressLine, It as PeppolTaxSubTotalCategory, J as PeppolMessageLevelResponseDocumentResponse, Jn as PeppolDutyTaxFeeCategoryCode, Jt as PeppolItemClassificationCode, K as PeppolMessageLevelResponse, Kn as PeppolCharge, Kt as PeppolOpStatusReason, L as PeppolInvoiceResponseDocumentActualResponseWithStatus, Ln as PeppolCountryCode, Lt as PeppolTaxSubTotalCategoryEncoded, M as isValidCreditNoteTypeCode, Mn as PeppolDeliveryLocation, Mt as PeppolOriginatorDocumentReference, N as getInvoiceTypeCodeDescription, Nn as PeppolDeliveryParty, Nt as PeppolReceiptDocumentReference, O as quantityToIntlUnitMap, On as PeppolLegalMonetaryTotal, Ot as PeppolLineCharge, P as getCreditNoteTypeCodeDescription, Pn as PeppolDeliveryPartyPartyName, Pt as PeppolTaxTotal, Q as PeppolStatus, Qn as PeppolAmount, Qt as PeppolDocumentTypeScheme, R as PeppolInvoiceResponseDocumentActualResponseWithoutStatus, Rn as PeppolCountryCodeValue, Rt as PeppolTaxCategory, S as PeppolInvoiceResponseParty, Sn as PeppolPartyTaxScheme, St as PeppolItemClassification, T as BaseIntlUnit, Tn as PeppolIdentifier, Tt as PeppolLineAllowance, U as PeppolInvoiceResponseStatusReasonCode, Un as PeppolAllowance, Ut as PeppolProcess, V as PeppolInvoiceResponseCondition, Vn as PeppolInvoiceDocumentReference, Vt as PeppolQuantityUnitCode, W as PeppolInvoiceResponseStatusReasonCodeAction, Wn as PeppolAllowanceCharge, Wt as PeppolProcesses, X as PeppolLineReference, Xn as PeppolChargeReasonCode, Xt as PeppolInvoiceStatusCodes, Y as PeppolDocumentResponseLineResponse, Yn as PeppolDutyTaxFeeCategoryCodeEncoded, Yt as PeppolInvoiceTypeCode, Z as PeppolDocumentResponseLineResponseContent, Zn as PeppolAllowanceChargeReasonCode, Zt as PeppolDocumentTypeValue, _ as PeppolInvoiceResponse, _n as PeppolPartyEndpointId, _t as PeppolCommodityClassifications, a as DEFAULT_CUSTOMIZATION_ID, an as PeppolCardAccount, ar as PeppolId, at as PeppolInvoice, b as PeppolInvoiceResponseDocumentResponseParty, bn as PeppolPartySchema, bt as PeppolSellersItemIdentification, c as PeppolDocumentDecoded, cn as PeppolPaymentMandate, cr as PeppolMimeCode, ct as PeppolInvoiceLineEncoded, d as PeppolDocumentSchema, dn as PeppolPaymentMeansCode, dt as PeppolLinePrice, en as PeppolDocumentTypeCode, er as PeppolCurrencyCode, et as PeppolDocumentResponseDocumentReference, f as PeppolMessage, fn as PeppolPaymentMeansCodeValue, ft as PeppolQuantity, g as isPeppolMessageLevelResponse, gn as PeppolPayeePartyName, gt as PeppolBuyersItemIdentification, h as isPeppolInvoiceResponse, hn as PeppolPayeePartyLegalEntity, ht as PeppolAdditionalItemProperties, i as DEFAULT_PROFILE_ID, in as PeppolPaymentTerms, ir as PeppolAttachmentExternalReference, it as PeppolCreditNoteLineEncoded, j as isValidInvoiceTypeCode, jn as PeppolDelivery, jt as PeppolDespatchDocumentReference, k as quantityUnitCodeToIntlUnit, kn as PeppolInvoicePeriod, kt as PeppolBillingBase, l as PeppolDocumentEncoded, ln as PeppolPaymentMandatePayerFinancialAccountId, lr as PeppolBase64, lt as PeppolBaseLine, m as isPeppolInvoice, mn as PeppolPayeePartyIdentification, mt as PriceAllowanceCharge, n as PeppolReferenceSchema, nn as PeppolApplicationResponseTypeCode, nr as PeppolAdditionalDocumentReference, nt as PeppolCreditNote, o as PeppolAllDocuments, on as PeppolPayeeFinancialAccount, or as PeppolAdditionalDocumentReferenceCode, ot as PeppolProjectReference, p as isPeppolCreditNote, pn as PeppolPayeeParty, pt as PeppolLinePriceAllowanceCharge, q as PeppolXsdTime, qn as PeppolTaxCategoryTaxSchemeId, qt as PeppolOpStatusAction, r as peppolReferenceSchema, rn as PeppolTaxRepresentative, rr as PeppolAttachment, rt as PeppolCreditNoteLine, s as PeppolDocument, sn as PeppolPayeeFinancialAccountFinancialInstitutionBranch, sr as PeppolBinaryObject, st as PeppolInvoiceLine, t as PeppolReferenceId, tn as PeppolCreditNoteTypeCode, tr as PeppolCurrencyCodeEncoded, tt as PeppolMessageLevelResponseParty, u as PeppolDocumentLine, un as PeppolPaymentMeans, ur as PeppolIsoDateString, ut as PeppolOrderLineReference, v as PeppolInvoiceResponseDocumentReference, vn as PeppolPartyIdentification, vt as PeppolLineItem, w as PeppolVatRegex, wn as PeppolPartyLegalEntity, wt as BaseLineAllowanceCharge, x as PeppolInvoiceResponseDocumentResponsePartyName, xn as PeppolElectronicAddressCode, xt as PeppolStandardItemIdentification, y as PeppolInvoiceResponseDocumentResponse, yn as PeppolPartyName, yt as PeppolOriginCountryCode, z as withStatusCodes, zn as PeppolIcdCode, zt as PeppolTaxSchemeId } from "./index-XG-N6PcG.js";
2
+ export { BaseAllowanceCharge, BaseIntlUnit, BaseLineAllowanceCharge, DEFAULT_CUSTOMIZATION_ID, DEFAULT_PROFILE_ID, IntlUnit, PeppolAdditionalDocumentReference, PeppolAdditionalDocumentReferenceCode, PeppolAdditionalItemProperties, PeppolAddress, PeppolAddressLine, PeppolAllDocuments, PeppolAllowance, PeppolAllowanceCharge, PeppolAllowanceChargeEncoded, PeppolAllowanceChargeReasonCode, PeppolAmount, PeppolAmountEncoded, PeppolApplicationResponseTypeCode, PeppolAttachment, PeppolAttachmentExternalReference, PeppolBase64, PeppolBaseLine, PeppolBillingBase, PeppolBillingReference, PeppolBinaryObject, PeppolBuyersItemIdentification, PeppolCardAccount, PeppolCharge, PeppolChargeReasonCode, PeppolCommodityClassifications, PeppolContact, PeppolContractDocumentReference, PeppolCountryCode, PeppolCountryCodeValue, PeppolCreditNote, PeppolCreditNoteLine, PeppolCreditNoteLineEncoded, PeppolCreditNoteTypeCode, PeppolCurrencyCode, PeppolCurrencyCodeEncoded, PeppolDelivery, PeppolDeliveryLocation, PeppolDeliveryParty, PeppolDeliveryPartyPartyName, PeppolDespatchDocumentReference, PeppolDocument, PeppolDocumentDecoded, PeppolDocumentEncoded, PeppolDocumentLine, PeppolDocumentResponseDocument, PeppolDocumentResponseDocumentReference, PeppolDocumentResponseLineResponse, PeppolDocumentResponseLineResponseContent, PeppolDocumentSchema, PeppolDocumentType, PeppolDocumentTypeCode, PeppolDocumentTypeScheme, PeppolDocumentTypeValue, PeppolDutyTaxFeeCategoryCode, PeppolDutyTaxFeeCategoryCodeEncoded, PeppolElectronicAddressCode, PeppolIcdCode, PeppolId, PeppolIdentifier, PeppolInvoice, PeppolInvoiceDocumentReference, PeppolInvoiceLine, PeppolInvoiceLineEncoded, PeppolInvoiceLinePeriod, PeppolInvoicePeriod, PeppolInvoiceResponse, PeppolInvoiceResponseCondition, PeppolInvoiceResponseDocumentActualResponse, PeppolInvoiceResponseDocumentActualResponseStatus, PeppolInvoiceResponseDocumentActualResponseWithStatus, PeppolInvoiceResponseDocumentActualResponseWithoutStatus, PeppolInvoiceResponseDocumentReference, PeppolInvoiceResponseDocumentResponse, PeppolInvoiceResponseDocumentResponseParty, PeppolInvoiceResponseDocumentResponsePartyName, PeppolInvoiceResponseParty, PeppolInvoiceResponseSenderParty, PeppolInvoiceResponseStatusReasonCode, PeppolInvoiceResponseStatusReasonCodeAction, PeppolInvoiceResponseStatusReasonCodeReason, PeppolInvoiceStatusCodes, PeppolInvoiceTypeCode, PeppolIsoDateString, PeppolItemClassification, PeppolItemClassificationCode, PeppolLegalMonetaryTotal, PeppolLineAllowance, PeppolLineAllowanceCharge, PeppolLineAllowanceChargeEncoded, PeppolLineCharge, PeppolLineItem, PeppolLinePrice, PeppolLinePriceAllowanceCharge, PeppolLineReference, PeppolMessage, PeppolMessageLevelResponse, PeppolMessageLevelResponseDocumentResponse, PeppolMessageLevelResponseParty, PeppolMimeCode, PeppolOpStatusAction, PeppolOpStatusReason, PeppolOrderLineReference, PeppolOrderReference, PeppolOriginCountryCode, PeppolOriginatorDocumentReference, PeppolParticipantIdentifierCode, PeppolPartyEndpointId, PeppolPartyIdentification, PeppolPartyLegalEntity, PeppolPartyName, PeppolPartySchema, PeppolPartyTaxScheme, PeppolPartyTaxSchemeId, PeppolPayeeFinancialAccount, PeppolPayeeFinancialAccountFinancialInstitutionBranch, PeppolPayeeParty, PeppolPayeePartyIdentification, PeppolPayeePartyLegalEntity, PeppolPayeePartyName, PeppolPaymentMandate, PeppolPaymentMandatePayerFinancialAccountId, PeppolPaymentMeans, PeppolPaymentMeansCode, PeppolPaymentMeansCodeValue, PeppolPaymentTerms, PeppolProcess, PeppolProcesses, PeppolProjectReference, PeppolQuantity, PeppolQuantityUnitCode, PeppolReceiptDocumentReference, PeppolReferenceId, PeppolReferenceSchema, PeppolSellersItemIdentification, PeppolStandardItemIdentification, PeppolStatus, PeppolTaxCategory, PeppolTaxCategoryTaxSchemeId, PeppolTaxRepresentative, PeppolTaxSchemeId, PeppolTaxSubTotal, PeppolTaxSubTotalCategory, PeppolTaxSubTotalCategoryEncoded, PeppolTaxTotal, PeppolVatDateCode, PeppolVatRegex, PeppolVatexCode, PeppolXsdTime, PriceAllowanceCharge, TimeIntlUnit, formatQuantityWithUnit, getCreditNoteTypeCodeDescription, getInvoiceTypeCodeDescription, isPeppolCreditNote, isPeppolInvoice, isPeppolInvoiceResponse, isPeppolMessageLevelResponse, isValidCreditNoteTypeCode, isValidInvoiceTypeCode, isValidProcess, peppolReferenceSchema, processFromDocumentTypeSchema, quantityToIntlUnitMap, quantityUnitCodeToIntlUnit, withStatusCodes, withoutStatusCodes };