@endevops/peppol-schema 0.1.1-alpha.1 → 0.1.1-alpha.2
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.
- package/dist/{index-CiW698HY.d.ts → index-BBzPjq7o.d.ts} +8 -20
- package/dist/index-BBzPjq7o.d.ts.map +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/nodable-parser-CyDZtLCK.js.map +1 -1
- package/dist/schematron.d.ts +1 -1
- package/dist/xml.d.ts +1 -0
- package/dist/xml.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/schemas/fields/peppol-additional-document-reference-schema.ts +3 -3
- package/src/schemas/fields/peppol-address-schema.ts +2 -2
- package/src/schemas/fields/peppol-billing-reference-schema.ts +1 -1
- package/src/schemas/fields/peppol-delivery-schema.ts +3 -3
- package/src/schemas/fields/peppol-line-item-schema.ts +6 -6
- package/src/schemas/fields/peppol-payment-means-schema.ts +6 -6
- package/src/schemas/fields/peppol-reference-schema.ts +1 -1
- package/src/schemas/peppol-document-response-line-response-content-schema.ts +1 -1
- package/src/schemas/peppol-document-response-line-response-schema.ts +1 -1
- package/src/schemas/peppol-invoice-schema.ts +1 -1
- package/src/xml/nodable-parser.ts +2 -0
- package/dist/index-CiW698HY.d.ts.map +0 -1
|
@@ -307,7 +307,7 @@ declare const PeppolAddressLine_base: OpaqueSchema<PeppolAddressLine, Schema.Str
|
|
|
307
307
|
readonly line: Schema.String;
|
|
308
308
|
}>>;
|
|
309
309
|
declare class PeppolAddressLine extends PeppolAddressLine_base {}
|
|
310
|
-
declare const PeppolCountryCode_base: OpaqueSchema<PeppolCountryCode
|
|
310
|
+
declare const PeppolCountryCode_base: OpaqueSchema<PeppolCountryCode, Schema.Struct<{
|
|
311
311
|
/**
|
|
312
312
|
* @description A code that identifies the country.
|
|
313
313
|
*
|
|
@@ -320,7 +320,7 @@ declare const PeppolCountryCode_base: OpaqueSchema<PeppolCountryCode$1, Schema.S
|
|
|
320
320
|
*/
|
|
321
321
|
readonly identificationCode: Schema.brand<Schema.Literals<[string, ...string[]]>, "PeppolCountryCode">;
|
|
322
322
|
}>>;
|
|
323
|
-
declare class PeppolCountryCode
|
|
323
|
+
declare class PeppolCountryCode extends PeppolCountryCode_base {}
|
|
324
324
|
declare const PeppolAddress_base: OpaqueSchema<PeppolAddress, Schema.Struct<{
|
|
325
325
|
/**
|
|
326
326
|
* @description The main address line in an address.
|
|
@@ -383,7 +383,7 @@ declare const PeppolAddress_base: OpaqueSchema<PeppolAddress, Schema.Struct<{
|
|
|
383
383
|
*
|
|
384
384
|
* @name `cac:Country`
|
|
385
385
|
*/
|
|
386
|
-
readonly countryCode: typeof PeppolCountryCode
|
|
386
|
+
readonly countryCode: typeof PeppolCountryCode;
|
|
387
387
|
/**
|
|
388
388
|
* @example
|
|
389
389
|
* Building 23
|
|
@@ -1018,7 +1018,7 @@ declare const PeppolCardAccount_base: OpaqueSchema<PeppolCardAccount, Schema.Str
|
|
|
1018
1018
|
readonly primaryAccountNumberId: Schema.String;
|
|
1019
1019
|
}>>;
|
|
1020
1020
|
declare class PeppolCardAccount extends PeppolCardAccount_base {}
|
|
1021
|
-
declare const PeppolPaymentMeansCode_base: OpaqueSchema<PeppolPaymentMeansCode
|
|
1021
|
+
declare const PeppolPaymentMeansCode_base: OpaqueSchema<PeppolPaymentMeansCode, Schema.Struct<{
|
|
1022
1022
|
/**
|
|
1023
1023
|
* @description The means, expressed as code, for how a payment is expected to be or has been settled.
|
|
1024
1024
|
*
|
|
@@ -1042,7 +1042,7 @@ declare const PeppolPaymentMeansCode_base: OpaqueSchema<PeppolPaymentMeansCode$1
|
|
|
1042
1042
|
*/
|
|
1043
1043
|
readonly name: Schema.optional<Schema.String>;
|
|
1044
1044
|
}>>;
|
|
1045
|
-
declare class PeppolPaymentMeansCode
|
|
1045
|
+
declare class PeppolPaymentMeansCode extends PeppolPaymentMeansCode_base {}
|
|
1046
1046
|
declare const PeppolPaymentMeans_base: OpaqueSchema<PeppolPaymentMeans, Schema.Struct<{
|
|
1047
1047
|
/**
|
|
1048
1048
|
* @description The means, expressed as code, for how a payment is expected to be or has been settled.
|
|
@@ -1054,7 +1054,7 @@ declare const PeppolPaymentMeans_base: OpaqueSchema<PeppolPaymentMeans, Schema.S
|
|
|
1054
1054
|
*
|
|
1055
1055
|
* @name `cbc:PaymentMeansCode`
|
|
1056
1056
|
*/
|
|
1057
|
-
readonly paymentMeansCode: typeof PeppolPaymentMeansCode
|
|
1057
|
+
readonly paymentMeansCode: typeof PeppolPaymentMeansCode;
|
|
1058
1058
|
/**
|
|
1059
1059
|
* @description The date when the payment is due.Format "YYYY-MM-DD". In case the Amount due for payment (BT-115) is positive, either the Payment due date
|
|
1060
1060
|
* (BT-9) or the Payment terms (BT-20) shall be present.
|
|
@@ -3158,12 +3158,6 @@ type PeppolChargeReasonCode = typeof chargeReasonCodeSchema.Type;
|
|
|
3158
3158
|
declare const chargeReasonCodeSchema: Schema.brand<Schema.Literals<[string, ...string[]]>, "PeppolChargeReasonCode">;
|
|
3159
3159
|
//#endregion
|
|
3160
3160
|
//#region src/schemas/values/peppol-country-code-schema.d.ts
|
|
3161
|
-
/**
|
|
3162
|
-
* @description An ISO 3166-1 alpha-2 country code as defined by the PEPPOL subset.
|
|
3163
|
-
*
|
|
3164
|
-
* @see https://docs.peppol.eu/poacc/billing/3.0/codelist/ISO3166/
|
|
3165
|
-
*/
|
|
3166
|
-
type PeppolCountryCode = typeof peppolCountryCodeSchema.Type;
|
|
3167
3161
|
/**
|
|
3168
3162
|
* @description Validates a two character ISO 3166-1 alpha-2 country code against the PEPPOL codelist. All codes in the codelist are exactly 2 characters, so the
|
|
3169
3163
|
* literals union implies the length check.
|
|
@@ -3440,12 +3434,6 @@ type PeppolParticipantIdentifierCode = typeof participantIdentifierCodeSchema.Ty
|
|
|
3440
3434
|
declare const participantIdentifierCodeSchema: Schema.brand<Schema.Literals<[string, ...string[]]>, "PeppolParticipantIdentifierCode">;
|
|
3441
3435
|
//#endregion
|
|
3442
3436
|
//#region src/schemas/values/payment-means-code-schema.d.ts
|
|
3443
|
-
/**
|
|
3444
|
-
* @description A payment means code as defined by the PEPPOL subset of UNCL 4461.
|
|
3445
|
-
*
|
|
3446
|
-
* @see https://docs.peppol.eu/poacc/billing/3.0/codelist/UNCL4461/
|
|
3447
|
-
*/
|
|
3448
|
-
type PeppolPaymentMeansCode = typeof paymentMeansCodeSchema.Type;
|
|
3449
3437
|
/**
|
|
3450
3438
|
* @description Validates a payment means code against the PEPPOL subset of UNCL 4461.
|
|
3451
3439
|
*
|
|
@@ -3503,5 +3491,5 @@ type PeppolVatDateCode = VatDateCodesKeys;
|
|
|
3503
3491
|
*/
|
|
3504
3492
|
declare const vatDateCodeSchema: Schema.Literals<readonly ["3", "35", "432"]>;
|
|
3505
3493
|
//#endregion
|
|
3506
|
-
export {
|
|
3507
|
-
//# sourceMappingURL=index-
|
|
3494
|
+
export { PeppolDocumentLine as $, PeppolPayeeFinancialAccount as $n, PeppolLineReference as $t, PeppolDocumentTypeCode as A, PeppolInvoiceLinePeriod as An, PeppolAttachmentExternalReference as Ar, getCreditNoteTypeCodeDescription as At, PeppolAllowanceChargeReasonCode as B, PeppolOriginatorDocumentReference as Bn, PeppolAmount as Br, withStatusCodes as Bt, PeppolDutyTaxFeeCategoryCode as C, PeppolCommodityClassifications as Cn, PeppolAddress as Cr, PeppolProcesses as Ct, documentTypeSchemesSchema as D, PeppolSellersItemIdentification as Dn, PeppolInvoiceDocumentReference as Dr, getInvoiceTypeCodeDescription as Dt, documentTypeValuesSchema as E, PeppolOriginCountryCode as En, PeppolBillingReference as Er, isValidCreditNoteTypeCode as Et, peppolCountryCodeSchema as F, PeppolLineCharge as Fn, PeppolAllowanceCharge as Fr, peppolBase64Schema as Ft, PeppolReferenceSchema as G, PeppolTaxSubTotalCategory as Gn, PeppolInvoiceResponseStatusReasonCode as Gt, PeppolAdditionalDocumentReferenceCode as H, PeppolTaxTotal as Hn, PeppolIsoDateString as Hr, InvoiceResponseDocumentActualResponseStatus as Ht, PeppolChargeReasonCode as I, peppolLineAllowanceChargeSchema as In, PeppolAllowanceChargeEncoded as Ir, InvoiceResponseDocumentActualResponse as It, DEFAULT_CUSTOMIZATION_ID as J, PeppolTaxSchemeId as Jn, peppolInvoiceResponseStatusReasonCodeSchema as Jt, peppolReferenceSchema as K, PeppolTaxSubTotalCategoryEncoded as Kn, PeppolInvoiceResponseStatusReasonCodeAction as Kt, chargeReasonCodeSchema as L, PeppolBillingBase as Ln, PeppolCharge as Lr, PeppolInvoiceResponseDocumentActualResponseWithStatus as Lt, PeppolCurrencyCode as M, PeppolLineAllowance as Mn, PeppolBinaryObject as Mr, creditNoteTypeCodeSchema as Mt, PeppolCurrencyCodeEncoded as N, PeppolLineAllowanceCharge as Nn, BaseAllowanceCharge as Nr, formatQuantityWithUnit as Nt, PeppolDocumentType as O, PeppolStandardItemIdentification as On, PeppolAdditionalDocumentReference as Or, PeppolInvoiceTypeCode as Ot, currencyCodeSchema as P, PeppolLineAllowanceChargeEncoded as Pn, PeppolAllowance as Pr, Base64 as Pt, PeppolDocumentEncoded as Q, PeppolCardAccount as Qn, PeppolDocumentResponseLineResponse as Qt, PeppolApplicationResponseTypeCode as R, PeppolContractDocumentReference as Rn, PeppolTaxCategoryTaxSchemeId as Rr, PeppolInvoiceResponseDocumentActualResponseWithoutStatus as Rt, electronicCodesSchema as S, PeppolBuyersItemIdentification as Sn, PeppolDeliveryPartyPartyName as Sr, isValidProcess as St, peppolDutyTaxFeeCategorySchema as T, PeppolLineItem as Tn, PeppolCountryCode as Tr, isValidInvoiceTypeCode as Tt, additionalDocumentReferenceCodeSchema as U, PeppolTaxTotalsBase as Un, PeppolInvoiceResponseCondition as Ut, allowanceChargeReasonCodeSchema as V, PeppolReceiptDocumentReference as Vn, PeppolAmountEncoded as Vr, withoutStatusCodes as Vt, PeppolReferenceId as W, PeppolTaxSubTotal as Wn, PeppolInvoiceResponseDocumentActualResponseStatus as Wt, PeppolDocument as X, PeppolTaxRepresentativeParty as Xn, PeppolXsdTime as Xt, PeppolAllDocuments as Y, PeppolTaxRepresentative as Yn, PeppolMessageLevelResponse as Yt, PeppolDocumentDecoded as Z, PeppolPaymentTerms as Zn, PeppolMessageLevelResponseDocumentResponse as Zt, PeppolInvoiceStatusCodes as _, PeppolLinePrice as _n, PeppolLegalMonetaryTotal as _r, TimeIntlUnit as _t, processFromDocumentTypeSchema as a, PeppolDocumentResponseDocumentReference as an, PeppolPayeeParty as ar, peppolDocumentSchema as at, icdCodesSchema as b, PriceAllowanceCharge as bn, PeppolDeliveryLocation as br, PeppolQuantityUnitCode as bt, participantIdentifierCodeSchema as c, PeppolCreditNote as cn, PeppolPartyName$1 as cr, PeppolInvoiceResponseDocumentReference as ct, PeppolOpStatusAction as d, PeppolInvoice as dn, PeppolPartyTaxScheme as dr, PeppolInvoiceResponseDocumentResponsePartyName as dt, PeppolMessageLevelDocumentResponseLineResponse as en, PeppolPayeeFinancialAccountFinancialInstitutionBranch as er, PeppolMessage as et, opStatusActionSchema as f, PeppolProjectReference as fn, PeppolPartyLegalEntity$1 as fr, PeppolInvoiceResponseParty as ft, itemClassificationCodesSchema as g, PeppolOrderLineReference as gn, PeppolOrderReference as gr, IntlUnit as gt, PeppolItemClassificationCode as h, PeppolBaseLine as hn, PeppolContact as hr, BaseIntlUnit as ht, vatexCodeSchema as i, PeppolMessageLevelResponseDocumentResponseDocument as in, PeppolPaymentMeansCode as ir, isPeppolMessageLevelResponse as it, peppolDocumentTypeCodeSchema as j, BaseLineAllowanceCharge as jn, PeppolId as jr, PeppolCreditNoteTypeCode as jt, peppolDocumentTypeSchema as k, PeppolItemClassification as kn, PeppolAttachment as kr, invoiceTypeCodeSchema as kt, PeppolOpStatusReason as l, PeppolCreditNoteLine as ln, PeppolPartySchema as lr, PeppolInvoiceResponseDocumentResponse as lt, mimeCodesSchema as m, PeppolInvoiceLineEncoded as mn, PeppolIdentifier as mr, peppolVatRegexSchema as mt, vatDateCodeSchema as n, PeppolStatus as nn, PeppolPaymentMandatePayerFinancialAccountId as nr, isPeppolInvoice as nt, paymentMeansCodeSchema as o, PeppolMessageLevelDocumentResponseDocumentReference as on, PeppolPartyEndpointId as or, PeppolInvoiceDocumentResponseParty as ot, PeppolMimeCode as p, PeppolInvoiceLine as pn, PeppolPartyLegalEntitySchema as pr, PeppolInvoiceResponseSenderParty as pt, DEFAULT_PROFILE_ID as q, PeppolTaxCategory as qn, PeppolInvoiceResponseStatusReasonCodeReason as qt, PeppolVatexCode as r, PeppolDocumentResponseDocument as rn, PeppolPaymentMeans as rr, isPeppolInvoiceResponse as rt, PeppolParticipantIdentifierCode as s, PeppolMessageLevelResponseParty as sn, PeppolPartyIdentification$1 as sr, PeppolInvoiceResponse as st, PeppolVatDateCode as t, PeppolDocumentResponseLineResponseContent as tn, PeppolPaymentMandate as tr, isPeppolCreditNote as tt, opStatusReasonSchema as u, PeppolCreditNoteLineEncoded as un, PeppolPartyTaxSchema as ur, PeppolInvoiceResponseDocumentResponseParty as ut, invoiceStatusCodeSchema as v, PeppolQuantity as vn, PeppolInvoicePeriod as vr, quantityToIntlUnitMap as vt, PeppolDutyTaxFeeCategoryCodeEncoded as w, PeppolItem as wn, PeppolAddressLine as wr, peppolProcessSchema as wt, PeppolElectronicAddressCode as x, PeppolAdditionalItemProperties as xn, PeppolDeliveryParty as xr, quantityUnitCodesSchema as xt, PeppolIcdCode as y, PeppolLinePriceAllowanceCharge as yn, PeppolDelivery as yr, quantityUnitCodeToIntlUnit as yt, applicationResponseTypeCodeSchema as z, PeppolDespatchDocumentReference as zn, peppolAllowanceChargeSchema as zr, peppolInvoiceResponseDocumentActualResponseSchema as zt };
|
|
3495
|
+
//# sourceMappingURL=index-BBzPjq7o.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-BBzPjq7o.d.ts","names":[],"sources":["../src/schemas/utils/opaque.ts","../src/schemas/peppol-iso-date-string.ts","../src/schemas/fields/peppol-amount-schema.ts","../src/schemas/fields/peppol-allowance-charge-schema.ts","../src/schemas/fields/peppol-binary-object-schema.ts","../src/schemas/fields/peppol-additional-document-reference-schema.ts","../src/schemas/fields/peppol-billing-reference-schema.ts","../src/schemas/fields/peppol-address-schema.ts","../src/schemas/fields/peppol-delivery-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/fields/peppol-party-base-schema.ts","../src/schemas/fields/peppol-payee-party-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/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/peppol-base-64-schema.ts","../src/schemas/utils/format-quantity-with-unit.ts","../src/schemas/values/credit-note-type-code-schema.ts","../src/schemas/utils/get-credit-note-type-code-description.ts","../src/schemas/values/invoice-type-code-schema.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/values/peppol-process-schema.ts","../src/schemas/utils/is-valid-process.ts","../src/schemas/values/quantity-unit-codes-schema.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","../src/schemas/values/additional-document-reference-code-schema.ts","../src/schemas/values/allowance-charge-reason-code-schema.ts","../src/schemas/values/application-response-type-code-schema.ts","../src/schemas/values/charge-reason-code-schema.ts","../src/schemas/values/peppol-country-code-schema.ts","../src/schemas/values/currency-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/duty-tax-fee-category-schema.ts","../src/schemas/values/electronic-codes-schema.ts","../src/schemas/values/icd-codes-schema.ts","../src/schemas/values/invoice-status-code-schema.ts","../src/schemas/values/item-classification-codes-schema.ts","../src/schemas/values/mime-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/payment-means-code-schema.ts","../src/schemas/values/process-from-document-type-schema.ts","../src/schemas/values/vatex-code-schema.ts","../src/schemas/values/vat-date-code-schema.ts"],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as
|
|
2
|
-
export { Base64, BaseAllowanceCharge, BaseIntlUnit, BaseLineAllowanceCharge, DEFAULT_CUSTOMIZATION_ID, DEFAULT_PROFILE_ID, IntlUnit, InvoiceResponseDocumentActualResponse, InvoiceResponseDocumentActualResponseStatus, PeppolAdditionalDocumentReference, PeppolAdditionalDocumentReferenceCode, PeppolAddress, PeppolAllDocuments, PeppolAllowance, PeppolAllowanceCharge, PeppolAllowanceChargeEncoded, PeppolAllowanceChargeReasonCode, PeppolAmount, PeppolAmountEncoded, PeppolApplicationResponseTypeCode, PeppolBaseLine, PeppolBillingBase, PeppolBillingReference, PeppolBinaryObject, PeppolCharge, PeppolChargeReasonCode, PeppolContact, PeppolContractDocumentReference,
|
|
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 };
|
package/dist/index.js
CHANGED
|
@@ -4924,6 +4924,6 @@ function processFromDocumentTypeSchema(documentType, error = "invalid process ty
|
|
|
4924
4924
|
*/
|
|
4925
4925
|
const vatexCodeSchema = Schema.Literals(vatexCodesKeys).pipe(Schema.brand("PeppolVatexCode"));
|
|
4926
4926
|
//#endregion
|
|
4927
|
-
export { BaseAllowanceCharge, BaseLineAllowanceCharge, DEFAULT_CUSTOMIZATION_ID, DEFAULT_PROFILE_ID, PeppolAdditionalDocumentReference, PeppolAddress, PeppolAllowance, PeppolAmount, PeppolBaseLine, PeppolBillingBase, PeppolBillingReference, PeppolBinaryObject, PeppolCharge, PeppolContact, PeppolContractDocumentReference, PeppolCreditNote, PeppolCreditNoteLine, PeppolDelivery, PeppolDespatchDocumentReference, PeppolDocumentResponseDocument, PeppolDocumentResponseDocumentReference, PeppolDocumentResponseLineResponse, PeppolDocumentResponseLineResponseContent, PeppolIdentifier, PeppolInvoice, PeppolInvoiceLine, PeppolInvoiceLinePeriod, PeppolInvoicePeriod, PeppolInvoiceResponse, PeppolInvoiceResponseCondition, PeppolInvoiceResponseDocumentActualResponseStatus, PeppolInvoiceResponseDocumentActualResponseWithStatus, PeppolInvoiceResponseDocumentActualResponseWithoutStatus, PeppolInvoiceResponseDocumentReference, PeppolInvoiceResponseDocumentResponse, PeppolInvoiceResponseDocumentResponseParty, PeppolInvoiceResponseDocumentResponsePartyName, PeppolInvoiceResponseParty, PeppolInvoiceResponseSenderParty, PeppolInvoiceResponseStatusReasonCodeAction, PeppolInvoiceResponseStatusReasonCodeReason, PeppolIsoDateString, PeppolItemClassification, PeppolLegalMonetaryTotal, PeppolLineAllowance, PeppolLineCharge, PeppolLineItem, PeppolLinePrice, PeppolLinePriceAllowanceCharge, PeppolMessageLevelResponse, PeppolMessageLevelResponseDocumentResponse, PeppolMessageLevelResponseParty, PeppolOrderLineReference, PeppolOrderReference, PeppolOriginatorDocumentReference, PeppolPartyEndpointId, PeppolPartyIdentification, PeppolPartyLegalEntity, PeppolPartyName, PeppolPartySchema, PeppolPartyTaxScheme, PeppolPayeeParty, PeppolPaymentMeans, PeppolPaymentTerms, PeppolQuantity, PeppolReceiptDocumentReference, PeppolTaxCategory, PeppolTaxCategoryTaxSchemeId, PeppolTaxRepresentative, PeppolTaxSchemeId, PeppolTaxSubTotal, PeppolTaxSubTotalCategory, PeppolTaxTotalsBase, PeppolXsdTime, PriceAllowanceCharge, 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 };
|
|
4927
|
+
export { BaseAllowanceCharge, BaseLineAllowanceCharge, DEFAULT_CUSTOMIZATION_ID, DEFAULT_PROFILE_ID, PeppolAdditionalDocumentReference, PeppolAdditionalItemProperties, PeppolAddress, PeppolAddressLine, PeppolAllowance, PeppolAmount, PeppolAttachment, PeppolAttachmentExternalReference, PeppolBaseLine, PeppolBillingBase, PeppolBillingReference, PeppolBinaryObject, PeppolBuyersItemIdentification, PeppolCardAccount, PeppolCharge, PeppolCommodityClassifications, PeppolContact, PeppolContractDocumentReference, PeppolCountryCode, PeppolCreditNote, PeppolCreditNoteLine, PeppolDelivery, PeppolDeliveryLocation, PeppolDeliveryParty, PeppolDeliveryPartyPartyName, PeppolDespatchDocumentReference, PeppolDocumentResponseDocument, PeppolDocumentResponseDocumentReference, PeppolDocumentResponseLineResponse, PeppolDocumentResponseLineResponseContent, PeppolId, PeppolIdentifier, PeppolInvoice, PeppolInvoiceDocumentReference, PeppolInvoiceLine, PeppolInvoiceLinePeriod, PeppolInvoicePeriod, PeppolInvoiceResponse, PeppolInvoiceResponseCondition, PeppolInvoiceResponseDocumentActualResponseStatus, PeppolInvoiceResponseDocumentActualResponseWithStatus, PeppolInvoiceResponseDocumentActualResponseWithoutStatus, PeppolInvoiceResponseDocumentReference, PeppolInvoiceResponseDocumentResponse, PeppolInvoiceResponseDocumentResponseParty, PeppolInvoiceResponseDocumentResponsePartyName, PeppolInvoiceResponseParty, PeppolInvoiceResponseSenderParty, PeppolInvoiceResponseStatusReasonCodeAction, PeppolInvoiceResponseStatusReasonCodeReason, PeppolIsoDateString, PeppolItemClassification, PeppolLegalMonetaryTotal, PeppolLineAllowance, PeppolLineCharge, PeppolLineItem, PeppolLinePrice, PeppolLinePriceAllowanceCharge, PeppolLineReference, PeppolMessageLevelResponse, PeppolMessageLevelResponseDocumentResponse, PeppolMessageLevelResponseParty, PeppolOrderLineReference, PeppolOrderReference, PeppolOriginCountryCode, PeppolOriginatorDocumentReference, PeppolPartyEndpointId, PeppolPartyIdentification, PeppolPartyLegalEntity, PeppolPartyName, PeppolPartySchema, PeppolPartyTaxScheme, PeppolPayeeFinancialAccount, PeppolPayeeFinancialAccountFinancialInstitutionBranch, PeppolPayeeParty, PeppolPaymentMandate, PeppolPaymentMandatePayerFinancialAccountId, PeppolPaymentMeans, PeppolPaymentMeansCode, PeppolPaymentTerms, PeppolProjectReference, PeppolQuantity, PeppolReceiptDocumentReference, PeppolReferenceId, PeppolSellersItemIdentification, PeppolStandardItemIdentification, PeppolStatus, PeppolTaxCategory, PeppolTaxCategoryTaxSchemeId, PeppolTaxRepresentative, PeppolTaxSchemeId, PeppolTaxSubTotal, PeppolTaxSubTotalCategory, PeppolTaxTotalsBase, PeppolXsdTime, PriceAllowanceCharge, 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 };
|
|
4928
4928
|
|
|
4929
4929
|
//# sourceMappingURL=index.js.map
|