@endevops/peppol-schema 0.1.4 → 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.
- package/dist/{index-CILtZytZ.d.ts → index-XG-N6PcG.d.ts} +35 -98
- package/dist/index-XG-N6PcG.d.ts.map +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +22 -22
- package/dist/index.js.map +1 -1
- package/dist/schematron.d.ts +1 -1
- package/dist/schematron.d.ts.map +1 -1
- package/dist/schematron.js +5 -5
- package/dist/schematron.js.map +1 -1
- package/package.json +1 -1
- package/src/decoders/fields/decode-invoice-message-document-party.ts +2 -2
- package/src/decoders/fields/decode-parties-tax-scheme.ts +2 -2
- package/src/decoders/fields/decode-party-legal-entity.ts +2 -2
- package/src/decoders/fields/decode-party-tax-scheme.ts +2 -2
- package/src/decoders/fields/decode-tax-category.ts +1 -1
- package/src/decoders/fields/decode-tax-representative-party.ts +2 -2
- package/src/decoders/fields/encode-message-party.ts +2 -2
- package/src/decoders/fields/encode-parties-tax-scheme.ts +3 -3
- package/src/decoders/fields/encode-party-legal-entity.ts +1 -1
- package/src/decoders/fields/encode-party-tax-scheme.ts +2 -2
- package/src/decoders/fields/encode-tax-representative-party.ts +2 -2
- package/src/schemas/fields/peppol-additional-document-reference-schema.ts +21 -19
- package/src/schemas/fields/peppol-allowance-charge-schema.ts +1 -3
- package/src/schemas/fields/peppol-line-allowance-charge-schema.ts +3 -3
- package/src/schemas/fields/peppol-line-item-schema.ts +0 -5
- package/src/schemas/fields/peppol-party-legal-entity-schema.ts +0 -5
- package/src/schemas/fields/peppol-party-tax-scheme-schema.ts +2 -7
- package/src/schemas/fields/peppol-payee-party-schema.ts +6 -6
- package/src/schemas/fields/peppol-tax-representative-schema.ts +0 -5
- package/src/schemas/fields/peppol-tax-totals-base-schema.ts +1 -6
- package/src/schemas/peppol-billing-base-schema.ts +2 -2
- package/src/schemas/peppol-document-response-document-reference-schema.ts +0 -5
- package/src/schemas/peppol-document-response-document-schema.ts +0 -5
- package/src/schemas/peppol-document-response-line-response-schema.ts +0 -5
- package/src/schemas/peppol-document-schema.ts +7 -9
- package/src/schemas/peppol-invoice-response-document-actual-response-schema.ts +4 -8
- package/src/schemas/peppol-invoice-response-document-actual-response-status-schema.ts +0 -5
- package/src/schemas/peppol-invoice-response-schema.ts +0 -5
- package/src/schemas/peppol-invoice-response-status-reason-code-schema.ts +4 -3
- package/src/schemas/utils/peppol-base-64-schema.ts +3 -10
- package/src/schemas/values/peppol-country-code-schema.ts +1 -4
- package/src/schematron/helpers.ts +9 -14
- package/dist/index-CILtZytZ.d.ts.map +0 -1
package/dist/index.js
CHANGED
|
@@ -42,7 +42,7 @@ const BASE64_RE = /^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=
|
|
|
42
42
|
* const value = 'SGVsbG8=';
|
|
43
43
|
* ```;
|
|
44
44
|
*/
|
|
45
|
-
var PeppolBase64 = class extends
|
|
45
|
+
var PeppolBase64 = class extends Schema.String.check(Schema.makeFilter((val) => BASE64_RE.test(val.replace(/\r?\n/g, "")))).annotate({ message: "Invalid base64" }) {};
|
|
46
46
|
//#endregion
|
|
47
47
|
//#region src/schemas/values/mime-codes-schema.ts
|
|
48
48
|
/**
|
|
@@ -225,7 +225,7 @@ var PeppolAttachment = class extends opaque()(Schema.Struct({
|
|
|
225
225
|
*
|
|
226
226
|
* @see {@link PeppolAdditionalDocumentReference}
|
|
227
227
|
*/
|
|
228
|
-
var PeppolId = class extends opaque()(Schema.
|
|
228
|
+
var PeppolId = class extends opaque()(PeppolIdentifier.pipe(Schema.fieldsAssign({
|
|
229
229
|
/**
|
|
230
230
|
* @description An identifier for an object on which the invoice is based (with DocumentTypeCode=130), given by the Seller, the identifier for the supporting
|
|
231
231
|
* document or the project reference identifier (DocumentTypeCode=50).
|
|
@@ -243,7 +243,7 @@ var PeppolId = class extends opaque()(Schema.Struct({
|
|
|
243
243
|
* @name `@schemeID`
|
|
244
244
|
*/
|
|
245
245
|
schemeId: Schema.optional(PeppolAdditionalDocumentReferenceCode)
|
|
246
|
-
})) {};
|
|
246
|
+
}))) {};
|
|
247
247
|
/**
|
|
248
248
|
* @description A group of business terms providing information about additional supporting documents substantiating the claims made in the Invoice. The additional
|
|
249
249
|
* supporting documents can be used for both referencing a document number which is expected to be known by the receiver, an external document
|
|
@@ -503,7 +503,7 @@ var PeppolLineCharge = class extends opaque()(Schema.Struct({
|
|
|
503
503
|
*
|
|
504
504
|
* @see {@link PeppolLineAllowance}
|
|
505
505
|
*/
|
|
506
|
-
var PeppolLineAllowanceCharge = class extends
|
|
506
|
+
var PeppolLineAllowanceCharge = class extends Schema.Union([PeppolLineAllowance, PeppolLineCharge]).annotate({ message: "unable to decode line allowance charge" }) {};
|
|
507
507
|
//#endregion
|
|
508
508
|
//#region src/schemas/values/duty-tax-fee-category-schema.ts
|
|
509
509
|
/**
|
|
@@ -691,7 +691,7 @@ var PeppolCharge = class extends opaque()(Schema.Struct({
|
|
|
691
691
|
*
|
|
692
692
|
* @name cac:AllowanceCharge
|
|
693
693
|
*/
|
|
694
|
-
var PeppolAllowanceCharge = class extends
|
|
694
|
+
var PeppolAllowanceCharge = class extends Schema.Union([PeppolAllowance, PeppolCharge]).annotate({ message: "unable to decode allowance charge" }) {};
|
|
695
695
|
//#endregion
|
|
696
696
|
//#region src/schemas/fields/peppol-billing-reference-schema.ts
|
|
697
697
|
/**
|
|
@@ -789,7 +789,7 @@ var PeppolIcdCode = class extends opaque()(Schema.Literals(icdCodesKeys).pipe(Sc
|
|
|
789
789
|
* @see https://docs.peppol.eu/poacc/billing/3.0/codelist/ISO3166/
|
|
790
790
|
* @see {@link countryCodesKeys}
|
|
791
791
|
*/
|
|
792
|
-
var PeppolCountryCodeValue = class extends
|
|
792
|
+
var PeppolCountryCodeValue = class extends Schema.Literals(countryCodesKeys).pipe(Schema.brand("PeppolCountryCodeValue")) {};
|
|
793
793
|
//#endregion
|
|
794
794
|
//#region src/schemas/fields/peppol-address-schema.ts
|
|
795
795
|
/**
|
|
@@ -1340,7 +1340,7 @@ var PeppolPartyLegalEntity = class extends opaque()(Schema.Struct({
|
|
|
1340
1340
|
})) {};
|
|
1341
1341
|
//#endregion
|
|
1342
1342
|
//#region src/schemas/fields/peppol-party-tax-scheme-schema.ts
|
|
1343
|
-
var
|
|
1343
|
+
var PeppolPartyTaxSchemeId = class extends opaque()(Schema.Struct({
|
|
1344
1344
|
/**
|
|
1345
1345
|
* @description Mandatory element. For Seller VAT identifier (BT-31), use value “VAT”, for the seller tax registration identifier (BT-32), use != "VAT"
|
|
1346
1346
|
*
|
|
@@ -1369,7 +1369,7 @@ var PeppolPartyTaxScheme = class extends opaque()(Schema.Struct({
|
|
|
1369
1369
|
*
|
|
1370
1370
|
* @name `cac:TaxScheme`
|
|
1371
1371
|
*/
|
|
1372
|
-
taxSchemeId:
|
|
1372
|
+
taxSchemeId: PeppolPartyTaxSchemeId
|
|
1373
1373
|
})) {};
|
|
1374
1374
|
//#endregion
|
|
1375
1375
|
//#region src/schemas/values/electronic-codes-schema.ts
|
|
@@ -1548,8 +1548,8 @@ var PeppolPartySchema = class extends opaque()(Schema.Struct({
|
|
|
1548
1548
|
})) {};
|
|
1549
1549
|
//#endregion
|
|
1550
1550
|
//#region src/schemas/fields/peppol-payee-party-schema.ts
|
|
1551
|
-
var
|
|
1552
|
-
var
|
|
1551
|
+
var PeppolPayeePartyName = class extends opaque()(Schema.Struct({ name: Schema.String })) {};
|
|
1552
|
+
var PeppolPayeePartyLegalEntity = class extends opaque()(Schema.Struct({
|
|
1553
1553
|
/**
|
|
1554
1554
|
* @description An identifier issued by an official registrar that identifies the payee as a legal entity or person.
|
|
1555
1555
|
*
|
|
@@ -1581,7 +1581,7 @@ companyId: Schema.optional(PeppolIdentifier.pipe(Schema.fieldsAssign({
|
|
|
1581
1581
|
*/
|
|
1582
1582
|
schemeId: Schema.optional(PeppolIcdCode)
|
|
1583
1583
|
}))) })) {};
|
|
1584
|
-
var
|
|
1584
|
+
var PeppolPayeePartyIdentification = class extends opaque()(Schema.Struct({
|
|
1585
1585
|
/**
|
|
1586
1586
|
* @description This element is used for both the identification of the Payee, or the unique banking reference identifier of Payee (assigned by the Payee
|
|
1587
1587
|
* bank.) For payee identification use ICD code list, for SEPA bank assigned creditor reference, use SEPA.
|
|
@@ -1623,13 +1623,13 @@ var PeppolPayeeParty = class extends opaque()(Schema.Struct({
|
|
|
1623
1623
|
*
|
|
1624
1624
|
* @name `cac:PartyIdentification`
|
|
1625
1625
|
*/
|
|
1626
|
-
partyIdentification: Schema.optional(
|
|
1626
|
+
partyIdentification: Schema.optional(PeppolPayeePartyIdentification),
|
|
1627
1627
|
/**
|
|
1628
1628
|
* @summary PARTY LEGAL ENTITY
|
|
1629
1629
|
*
|
|
1630
1630
|
* @name `cac:PartyLegalEntity`
|
|
1631
1631
|
*/
|
|
1632
|
-
partyLegalEntity: Schema.optional(
|
|
1632
|
+
partyLegalEntity: Schema.optional(PeppolPayeePartyLegalEntity),
|
|
1633
1633
|
/**
|
|
1634
1634
|
* @description The name of the payee.
|
|
1635
1635
|
*
|
|
@@ -1640,7 +1640,7 @@ var PeppolPayeeParty = class extends opaque()(Schema.Struct({
|
|
|
1640
1640
|
*
|
|
1641
1641
|
* @name `cac:PartyName`
|
|
1642
1642
|
*/
|
|
1643
|
-
partyName:
|
|
1643
|
+
partyName: PeppolPayeePartyName
|
|
1644
1644
|
})) {};
|
|
1645
1645
|
//#endregion
|
|
1646
1646
|
//#region src/schemas/values/payment-means-code-schema.ts
|
|
@@ -2028,7 +2028,7 @@ var PeppolTaxSubTotal = class extends opaque()(Schema.Struct({
|
|
|
2028
2028
|
*
|
|
2029
2029
|
* @name cac:TaxTotal (1..2)
|
|
2030
2030
|
*/
|
|
2031
|
-
var
|
|
2031
|
+
var PeppolTaxTotal = class extends opaque()(Schema.Struct({
|
|
2032
2032
|
/**
|
|
2033
2033
|
* @example
|
|
2034
2034
|
* 200;
|
|
@@ -2380,7 +2380,7 @@ var PeppolBillingBase = class extends opaque()(Schema.Struct({
|
|
|
2380
2380
|
*
|
|
2381
2381
|
* @name cac:TaxTotal
|
|
2382
2382
|
*/
|
|
2383
|
-
taxTotals: Schema.Array(
|
|
2383
|
+
taxTotals: Schema.Array(PeppolTaxTotal).check(Schema.isMinLength(1), Schema.isMaxLength(2)),
|
|
2384
2384
|
/**
|
|
2385
2385
|
* @summary DOCUMENT TOTALS
|
|
2386
2386
|
*
|
|
@@ -3645,7 +3645,7 @@ var PeppolInvoiceResponseStatusReasonCodeAction = class extends opaque()(Schema.
|
|
|
3645
3645
|
*
|
|
3646
3646
|
* @see {@link PeppolInvoiceResponseDocumentActualResponseStatus}
|
|
3647
3647
|
*/
|
|
3648
|
-
var PeppolInvoiceResponseStatusReasonCode = class extends
|
|
3648
|
+
var PeppolInvoiceResponseStatusReasonCode = class extends Schema.Union([PeppolInvoiceResponseStatusReasonCodeAction, PeppolInvoiceResponseStatusReasonCodeReason]) {};
|
|
3649
3649
|
//#endregion
|
|
3650
3650
|
//#region src/schemas/peppol-invoice-response-document-actual-response-status-schema.ts
|
|
3651
3651
|
/**
|
|
@@ -3832,7 +3832,7 @@ var PeppolInvoiceResponseDocumentActualResponseWithStatus = class extends opaque
|
|
|
3832
3832
|
*
|
|
3833
3833
|
* @see {@link PeppolInvoiceResponseDocumentResponse}
|
|
3834
3834
|
*/
|
|
3835
|
-
var PeppolInvoiceResponseDocumentActualResponse = class extends
|
|
3835
|
+
var PeppolInvoiceResponseDocumentActualResponse = class extends Schema.Union([PeppolInvoiceResponseDocumentActualResponseWithStatus, PeppolInvoiceResponseDocumentActualResponseWithoutStatus]) {};
|
|
3836
3836
|
//#endregion
|
|
3837
3837
|
//#region src/schemas/peppol-invoice-response-schema.ts
|
|
3838
3838
|
/**
|
|
@@ -5545,7 +5545,7 @@ const encodeDocumentXml = Effect.fn("encode-peppol-document-xml")(function* (val
|
|
|
5545
5545
|
else if (isPeppolInvoiceResponse(value) || value.profileId === "urn:fdc:peppol.eu:poacc:bis:invoice_response:3") content = yield* encodeInvoiceResponse(value);
|
|
5546
5546
|
else {
|
|
5547
5547
|
const rootNodes = Object.keys(value);
|
|
5548
|
-
return yield* Effect.fail(new SchemaIssue.InvalidValue({ message: `Unsupported document type: ${value
|
|
5548
|
+
return yield* Effect.fail(new SchemaIssue.InvalidValue({ message: `Unsupported document type: ${value?.profileId}\n${rootNodes.join(",")}` }, value, options));
|
|
5549
5549
|
}
|
|
5550
5550
|
return new XMLBuilder(builderOptions).build(content);
|
|
5551
5551
|
});
|
|
@@ -5562,10 +5562,10 @@ const encodeDocumentXml = Effect.fn("encode-peppol-document-xml")(function* (val
|
|
|
5562
5562
|
* @see {@link PeppolDocumentDecoded}
|
|
5563
5563
|
* @see {@link PeppolDocumentEncoded}
|
|
5564
5564
|
*/
|
|
5565
|
-
var PeppolDocumentSchema = class extends
|
|
5565
|
+
var PeppolDocumentSchema = class extends peppolDocumentObjectSchema.pipe(Schema.encodeTo(Schema.String, {
|
|
5566
5566
|
encode: SchemaGetter.transformEffect((value, options) => encodeDocumentXml(value, options)),
|
|
5567
5567
|
decode: SchemaGetter.transformEffect((value, options) => decodeDocumentXml(value, options))
|
|
5568
|
-
}))
|
|
5568
|
+
})) {};
|
|
5569
5569
|
//#endregion
|
|
5570
5570
|
//#region src/schemas/fields/peppol-reference-schema.ts
|
|
5571
5571
|
/**
|
|
@@ -5971,6 +5971,6 @@ function processFromDocumentTypeSchema(documentType, error = "invalid process ty
|
|
|
5971
5971
|
*/
|
|
5972
5972
|
var PeppolVatexCode = class extends opaque()(Schema.Literals(vatexCodesKeys).pipe(Schema.brand("PeppolVatexCode"))) {};
|
|
5973
5973
|
//#endregion
|
|
5974
|
-
export { BaseAllowanceCharge, BaseLineAllowanceCharge, DEFAULT_CUSTOMIZATION_ID, DEFAULT_PROFILE_ID, PeppolAdditionalDocumentReference, PeppolAdditionalDocumentReferenceCode, PeppolAdditionalItemProperties, PeppolAddress, PeppolAddressLine, PeppolAllowance, PeppolAllowanceCharge, PeppolAllowanceChargeReasonCode, PeppolAmount, PeppolApplicationResponseTypeCode, PeppolAttachment, PeppolAttachmentExternalReference, PeppolBase64, PeppolBaseLine, PeppolBillingBase, PeppolBillingReference, PeppolBinaryObject, PeppolBuyersItemIdentification, PeppolCardAccount, PeppolCharge, PeppolChargeReasonCode, PeppolCommodityClassifications, PeppolContact, PeppolContractDocumentReference, PeppolCountryCode, PeppolCountryCodeValue, PeppolCreditNote, PeppolCreditNoteLine, PeppolCreditNoteTypeCode, PeppolCurrencyCode, PeppolDelivery, PeppolDeliveryLocation, PeppolDeliveryParty, PeppolDeliveryPartyPartyName, PeppolDespatchDocumentReference, PeppolDocumentResponseDocument, PeppolDocumentResponseDocumentReference, PeppolDocumentResponseLineResponse, PeppolDocumentResponseLineResponseContent, PeppolDocumentSchema, PeppolDocumentType, PeppolDocumentTypeCode, PeppolDocumentTypeScheme, PeppolDocumentTypeValue, PeppolDutyTaxFeeCategoryCode, PeppolElectronicAddressCode, PeppolIcdCode, PeppolId, PeppolIdentifier, PeppolInvoice, PeppolInvoiceDocumentReference, PeppolInvoiceLine, 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, PeppolLineCharge, PeppolLineItem, PeppolLinePrice, PeppolLinePriceAllowanceCharge, PeppolLineReference, PeppolMessageLevelResponse, PeppolMessageLevelResponseDocumentResponse, PeppolMessageLevelResponseParty, PeppolMimeCode, PeppolOpStatusAction, PeppolOpStatusReason, PeppolOrderLineReference, PeppolOrderReference, PeppolOriginCountryCode, PeppolOriginatorDocumentReference, PeppolParticipantIdentifierCode, PeppolPartyEndpointId, PeppolPartyIdentification, PeppolPartyLegalEntity, PeppolPartyName, PeppolPartySchema, PeppolPartyTaxScheme, PeppolPayeeFinancialAccount, PeppolPayeeFinancialAccountFinancialInstitutionBranch, PeppolPayeeParty, PeppolPaymentMandate, PeppolPaymentMandatePayerFinancialAccountId, PeppolPaymentMeans, PeppolPaymentMeansCode, PeppolPaymentMeansCodeValue, PeppolPaymentTerms, PeppolProcess, PeppolProjectReference, PeppolQuantity, PeppolQuantityUnitCode, PeppolReceiptDocumentReference, PeppolReferenceId, PeppolSellersItemIdentification, PeppolStandardItemIdentification, PeppolStatus, PeppolTaxCategory, PeppolTaxCategoryTaxSchemeId, PeppolTaxRepresentative, PeppolTaxSchemeId, PeppolTaxSubTotal, PeppolTaxSubTotalCategory,
|
|
5974
|
+
export { BaseAllowanceCharge, BaseLineAllowanceCharge, DEFAULT_CUSTOMIZATION_ID, DEFAULT_PROFILE_ID, PeppolAdditionalDocumentReference, PeppolAdditionalDocumentReferenceCode, PeppolAdditionalItemProperties, PeppolAddress, PeppolAddressLine, PeppolAllowance, PeppolAllowanceCharge, PeppolAllowanceChargeReasonCode, PeppolAmount, PeppolApplicationResponseTypeCode, PeppolAttachment, PeppolAttachmentExternalReference, PeppolBase64, PeppolBaseLine, PeppolBillingBase, PeppolBillingReference, PeppolBinaryObject, PeppolBuyersItemIdentification, PeppolCardAccount, PeppolCharge, PeppolChargeReasonCode, PeppolCommodityClassifications, PeppolContact, PeppolContractDocumentReference, PeppolCountryCode, PeppolCountryCodeValue, PeppolCreditNote, PeppolCreditNoteLine, PeppolCreditNoteTypeCode, PeppolCurrencyCode, PeppolDelivery, PeppolDeliveryLocation, PeppolDeliveryParty, PeppolDeliveryPartyPartyName, PeppolDespatchDocumentReference, PeppolDocumentResponseDocument, PeppolDocumentResponseDocumentReference, PeppolDocumentResponseLineResponse, PeppolDocumentResponseLineResponseContent, PeppolDocumentSchema, PeppolDocumentType, PeppolDocumentTypeCode, PeppolDocumentTypeScheme, PeppolDocumentTypeValue, PeppolDutyTaxFeeCategoryCode, PeppolElectronicAddressCode, PeppolIcdCode, PeppolId, PeppolIdentifier, PeppolInvoice, PeppolInvoiceDocumentReference, PeppolInvoiceLine, 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, PeppolLineCharge, PeppolLineItem, PeppolLinePrice, PeppolLinePriceAllowanceCharge, PeppolLineReference, 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, PeppolProjectReference, PeppolQuantity, PeppolQuantityUnitCode, PeppolReceiptDocumentReference, PeppolReferenceId, PeppolSellersItemIdentification, PeppolStandardItemIdentification, PeppolStatus, PeppolTaxCategory, PeppolTaxCategoryTaxSchemeId, PeppolTaxRepresentative, PeppolTaxSchemeId, PeppolTaxSubTotal, PeppolTaxSubTotalCategory, PeppolTaxTotal, PeppolVatDateCode, PeppolVatRegex, PeppolVatexCode, PeppolXsdTime, PriceAllowanceCharge, formatQuantityWithUnit, getCreditNoteTypeCodeDescription, getInvoiceTypeCodeDescription, isPeppolCreditNote, isPeppolInvoice, isPeppolInvoiceResponse, isPeppolMessageLevelResponse, isValidCreditNoteTypeCode, isValidInvoiceTypeCode, isValidProcess, peppolReferenceSchema, processFromDocumentTypeSchema, quantityToIntlUnitMap, quantityUnitCodeToIntlUnit, withStatusCodes, withoutStatusCodes };
|
|
5975
5975
|
|
|
5976
5976
|
//# sourceMappingURL=index.js.map
|