@endevops/peppol-schema 0.1.0-beta.3 → 0.1.0-beta.4
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/effect.d.ts +23 -6
- package/dist/effect.d.ts.map +1 -1
- package/dist/effect.js +23 -22
- package/dist/effect.js.map +1 -1
- package/package.json +1 -1
- package/src/effect/fields/peppol-additional-document-reference-schema.ts +1 -1
- package/src/effect/fields/peppol-allowance-charge-schema.ts +2 -1
- package/src/effect/fields/peppol-amount-schema.ts +2 -1
- package/src/effect/fields/peppol-credit-note-line-schema.ts +1 -0
- package/src/effect/fields/peppol-invoice-line-schema.ts +1 -0
- package/src/effect/fields/peppol-line-allowance-charge-schema.ts +1 -0
- package/src/effect/fields/peppol-party-base-schema.ts +25 -23
- package/src/effect/fields/peppol-tax-subtotal-category-schema.ts +2 -1
- package/src/effect/peppol-document-schema.ts +1 -1
- package/src/effect/values/currency-code-schema.ts +7 -1
- package/src/effect/values/duty-tax-fee-category-schema.ts +1 -0
package/dist/effect.d.ts
CHANGED
|
@@ -2669,6 +2669,7 @@ export declare const peppolCreditNoteLineSchema: Schema.Struct<{
|
|
|
2669
2669
|
}>;
|
|
2670
2670
|
}>;
|
|
2671
2671
|
export interface PeppolCreditNoteLine extends Schema.Schema.Type<typeof peppolCreditNoteLineSchema> {}
|
|
2672
|
+
export interface PeppolCreditNoteLineEncoded extends Schema.Codec.Encoded<typeof peppolCreditNoteLineSchema> {}
|
|
2672
2673
|
//#endregion
|
|
2673
2674
|
//#region src/effect/fields/peppol-invoice-line-schema.d.ts
|
|
2674
2675
|
/**
|
|
@@ -2787,6 +2788,7 @@ export declare const peppolInvoiceLineSchema: Schema.Struct<{
|
|
|
2787
2788
|
}>;
|
|
2788
2789
|
}>;
|
|
2789
2790
|
export interface PeppolInvoiceLine extends Schema.Schema.Type<typeof peppolInvoiceLineSchema> {}
|
|
2791
|
+
export interface PeppolInvoiceLineEncoded extends Schema.Codec.Encoded<typeof peppolInvoiceLineSchema> {}
|
|
2790
2792
|
//#endregion
|
|
2791
2793
|
//#region src/effect/peppol-document-schema.d.ts
|
|
2792
2794
|
declare const PeppolInvalidDocumentType_base: Schema.Class<PeppolInvalidDocumentType, Schema.TaggedStruct<"PeppolInvalidDocumentType", {
|
|
@@ -3856,7 +3858,7 @@ export declare const peppolDocumentSchema: Schema.decodeTo<Schema.Union<readonly
|
|
|
3856
3858
|
}>>;
|
|
3857
3859
|
}>;
|
|
3858
3860
|
}>]>, Schema.String, never, never>;
|
|
3859
|
-
export type PeppolDocumentEncoded =
|
|
3861
|
+
export type PeppolDocumentEncoded = Schema.Codec.Encoded<typeof peppolDocumentSchema>;
|
|
3860
3862
|
export interface PeppolDocumentDecoded extends AllUnionFields<Schema.Schema.Type<typeof peppolDocumentSchema>> {}
|
|
3861
3863
|
/**
|
|
3862
3864
|
* @description This defines the types of documents that are sent/received through the peppol network.
|
|
@@ -3941,7 +3943,7 @@ export declare const peppolAdditionalDocumentReferenceSchema: Schema.Struct<{
|
|
|
3941
3943
|
}>>;
|
|
3942
3944
|
}>>;
|
|
3943
3945
|
}>;
|
|
3944
|
-
export
|
|
3946
|
+
export interface PeppolAdditionalDocumentReference extends Schema.Schema.Type<typeof peppolAdditionalDocumentReferenceSchema> {}
|
|
3945
3947
|
//#endregion
|
|
3946
3948
|
//#region src/effect/fields/peppol-address-schema.d.ts
|
|
3947
3949
|
/**
|
|
@@ -4100,7 +4102,8 @@ export declare const peppolAllowanceChargeSchema: Schema.Union<readonly [Schema.
|
|
|
4100
4102
|
readonly allowanceChargeReasonCode: Schema.optional<Schema.brand<Schema.Literals<[string, ...string[]]>, "PeppolChargeReasonCode">>;
|
|
4101
4103
|
readonly chargeIndicator: Schema.Literal<true>;
|
|
4102
4104
|
}>]>;
|
|
4103
|
-
export type PeppolAllowanceCharge = typeof peppolAllowanceChargeSchema
|
|
4105
|
+
export type PeppolAllowanceCharge = Schema.Schema.Type<typeof peppolAllowanceChargeSchema>;
|
|
4106
|
+
export type PeppolAllowanceChargeEncoded = Schema.Codec.Encoded<typeof peppolAllowanceChargeSchema>;
|
|
4104
4107
|
//#endregion
|
|
4105
4108
|
//#region src/effect/fields/peppol-amount-schema.d.ts
|
|
4106
4109
|
/**
|
|
@@ -4118,7 +4121,8 @@ export declare const peppolAmountSchema: Schema.Struct<{
|
|
|
4118
4121
|
*/
|
|
4119
4122
|
readonly value: Schema.Finite;
|
|
4120
4123
|
}>;
|
|
4121
|
-
export
|
|
4124
|
+
export interface PeppolAmount extends Schema.Schema.Type<typeof peppolAmountSchema> {}
|
|
4125
|
+
export interface PeppolAmountEncoded extends Schema.Codec.Encoded<typeof peppolAmountSchema> {}
|
|
4122
4126
|
//#endregion
|
|
4123
4127
|
//#region src/effect/fields/peppol-base-line-schema.d.ts
|
|
4124
4128
|
/**
|
|
@@ -4774,6 +4778,7 @@ export declare const peppolLineAllowanceChargeSchema: Schema.Union<readonly [Sch
|
|
|
4774
4778
|
readonly chargeIndicator: Schema.Literal<true>;
|
|
4775
4779
|
}>]>;
|
|
4776
4780
|
export type PeppolLineAllowanceCharge = typeof peppolLineAllowanceChargeSchema.Type;
|
|
4781
|
+
export type PeppolLineAllowanceChargeEncoded = typeof peppolLineAllowanceChargeSchema.Encoded;
|
|
4777
4782
|
//#endregion
|
|
4778
4783
|
//#region src/effect/fields/peppol-line-item-schema.d.ts
|
|
4779
4784
|
/**
|
|
@@ -5051,6 +5056,10 @@ export declare const peppolOrderReferenceSchema: Schema.Struct<{
|
|
|
5051
5056
|
export type PeppolOrderReference = typeof peppolOrderReferenceSchema.Type;
|
|
5052
5057
|
//#endregion
|
|
5053
5058
|
//#region src/effect/fields/peppol-party-base-schema.d.ts
|
|
5059
|
+
export declare const peppolPartyEndpointIdSchema: Schema.Struct<{
|
|
5060
|
+
readonly id: Schema.String;
|
|
5061
|
+
readonly schemeId: Schema.brand<Schema.Literals<[string, ...string[]]>, "PeppolElectronicAddressCode">;
|
|
5062
|
+
}>;
|
|
5054
5063
|
/**
|
|
5055
5064
|
* @summary Party common substructure
|
|
5056
5065
|
*
|
|
@@ -5666,7 +5675,8 @@ export declare const peppolTaxSubtotalCategorySchema: Schema.Struct<{
|
|
|
5666
5675
|
readonly taxExemptionReason: Schema.optional<Schema.String>;
|
|
5667
5676
|
readonly taxExemptionReasonCode: Schema.optional<Schema.String>;
|
|
5668
5677
|
}>;
|
|
5669
|
-
export
|
|
5678
|
+
export interface PeppolTaxSubTotalCategory extends Schema.Schema.Type<typeof peppolTaxSubtotalCategorySchema> {}
|
|
5679
|
+
export interface PeppolTaxSubTotalCategoryEncoded extends Schema.Codec.Encoded<typeof peppolTaxSubtotalCategorySchema> {}
|
|
5670
5680
|
//#endregion
|
|
5671
5681
|
//#region src/effect/fields/peppol-tax-subtotal-schema.d.ts
|
|
5672
5682
|
/**
|
|
@@ -5898,7 +5908,13 @@ export declare const creditNoteTypeCodeSchema: Schema.Literals<readonly ["81", "
|
|
|
5898
5908
|
*
|
|
5899
5909
|
* @see https://docs.peppol.eu/poacc/billing/3.0/codelist/ISO4217/
|
|
5900
5910
|
*/
|
|
5901
|
-
export type PeppolCurrencyCode = typeof currencyCodeSchema
|
|
5911
|
+
export type PeppolCurrencyCode = Schema.Schema.Type<typeof currencyCodeSchema>;
|
|
5912
|
+
/**
|
|
5913
|
+
* @description An ISO 4217 currency code as defined by the PEPPOL subset.
|
|
5914
|
+
*
|
|
5915
|
+
* @see https://docs.peppol.eu/poacc/billing/3.0/codelist/ISO4217/
|
|
5916
|
+
*/
|
|
5917
|
+
export type PeppolCurrencyCodeEncoded = Schema.Codec.Encoded<typeof currencyCodeSchema>;
|
|
5902
5918
|
/**
|
|
5903
5919
|
* @description Validates an ISO 4217 currency code against the PEPPOL codelist.
|
|
5904
5920
|
*
|
|
@@ -5981,6 +5997,7 @@ export declare const documentTypeValuesSchema: Schema.String;
|
|
|
5981
5997
|
* @see https://docs.peppol.eu/poacc/billing/3.0/codelist/UNCL5305/
|
|
5982
5998
|
*/
|
|
5983
5999
|
export type PeppolDutyTaxFeeCategoryCode = typeof dutyTaxFeeCategorySchema.Type;
|
|
6000
|
+
export type PeppolDutyTaxFeeCategoryCodeEncoded = typeof dutyTaxFeeCategorySchema.Encoded;
|
|
5984
6001
|
/**
|
|
5985
6002
|
* @description Validates a duty, tax or fee category code against the PEPPOL subset of UNCL 5305 (VAT category code).
|
|
5986
6003
|
*
|
package/dist/effect.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"effect.d.ts","names":[],"sources":["../src/effect/peppol-iso-date-string-schema.ts","../src/effect/peppol-billing-base-schema.ts","../src/effect/peppol-invoice-schema.ts","../src/effect/peppol-credit-note-schema.ts","../src/effect/peppol-message-level-response-party-schema.ts","../src/effect/peppol-document-response-document-reference-schema.ts","../src/effect/peppol-document-response-document-schema.ts","../src/effect/peppol-document-response-line-response-content-schema.ts","../src/effect/peppol-document-response-line-response-schema.ts","../src/effect/peppol-message-level-response-document-response-schema.ts","../src/effect/peppol-message-level-response-schema.ts","../src/effect/peppol-invoice-response-status-reason-code-schema.ts","../src/effect/peppol-invoice-response-document-actual-response-status-schema.ts","../src/effect/peppol-invoice-response-document-actual-response-schema.ts","../src/effect/peppol-invoice-response-schema.ts","../src/effect/fields/peppol-credit-note-line-schema.ts","../src/effect/fields/peppol-invoice-line-schema.ts","../src/effect/peppol-document-schema.ts","../src/effect/fields/peppol-additional-document-reference-schema.ts","../src/effect/fields/peppol-address-schema.ts","../src/effect/fields/peppol-allowance-charge-schema.ts","../src/effect/fields/peppol-amount-schema.ts","../src/effect/fields/peppol-base-line-schema.ts","../src/effect/fields/peppol-billing-reference-schema.ts","../src/effect/fields/peppol-binary-object-schema.ts","../src/effect/fields/peppol-contact-schema.ts","../src/effect/fields/default-customization-id.ts","../src/effect/fields/default-profile-id.ts","../src/effect/fields/peppol-delivery-schema.ts","../src/effect/fields/peppol-identifier-schema.ts","../src/effect/fields/peppol-invoice-line-period-schema.ts","../src/effect/fields/peppol-invoice-period-schema.ts","../src/effect/fields/peppol-legal-monetary-total-schema.ts","../src/effect/fields/peppol-line-allowance-charge-schema.ts","../src/effect/fields/peppol-line-item-schema.ts","../src/effect/fields/peppol-line-price-allowance-charge-schema.ts","../src/effect/fields/peppol-item-classification-schema.ts","../src/effect/fields/peppol-order-reference-schema.ts","../src/effect/fields/peppol-party-base-schema.ts","../src/effect/fields/peppol-party-legal-entity-schema.ts","../src/effect/fields/peppol-party-tax-scheme-schema.ts","../src/effect/fields/peppol-payee-party-schema.ts","../src/effect/fields/peppol-payment-means-schema.ts","../src/effect/fields/peppol-payment-terms-schema.ts","../src/effect/fields/peppol-line-price-schema.ts","../src/effect/fields/peppol-quantity-schema.ts","../src/effect/fields/peppol-reference-schema.ts","../src/effect/fields/peppol-tax-category-schema.ts","../src/effect/fields/peppol-tax-representative-schema.ts","../src/effect/fields/peppol-tax-subtotal-category-schema.ts","../src/effect/fields/peppol-tax-subtotal-schema.ts","../src/effect/fields/peppol-tax-totals-base-schema.ts","../src/effect/utils/peppol-base-64-schema.ts","../src/effect/utils/peppol-vat-regex-schema.ts","../src/effect/utils/peppol-xsd-time-schema.ts","../src/effect/values/additional-document-reference-code-schema.ts","../src/effect/values/allowance-charge-reason-code-schema.ts","../src/effect/values/application-response-type-code-schema.ts","../src/effect/values/charge-reason-code-schema.ts","../src/effect/values/peppol-country-code-schema.ts","../src/effect/values/credit-note-type-code-schema.ts","../src/effect/values/currency-code-schema.ts","../src/effect/values/peppol-document-type-code-schema.ts","../src/effect/values/peppol-document-type-schema.ts","../src/effect/values/document-type-schemes-schema.ts","../src/effect/values/document-type-values-schema.ts","../src/effect/values/duty-tax-fee-category-schema.ts","../src/effect/values/electronic-codes-schema.ts","../src/effect/values/icd-codes-schema.ts","../src/effect/values/invoice-status-code-schema.ts","../src/effect/values/invoice-type-code-schema.ts","../src/effect/values/item-classification-codes-schema.ts","../src/effect/values/mime-codes-schema.ts","../src/effect/values/op-status-action-schema.ts","../src/effect/values/op-status-reason-schema.ts","../src/effect/values/participant-identifier-code-schema.ts","../src/effect/values/payment-means-code-schema.ts","../src/effect/values/process-from-document-type-schema.ts","../src/effect/values/peppol-process-schema.ts","../src/effect/values/quantity-unit-codes-schema.ts","../src/effect/values/vatex-code-schema.ts","../src/effect/values/vat-date-code-schema.ts"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"effect.d.ts","names":[],"sources":["../src/effect/peppol-iso-date-string-schema.ts","../src/effect/peppol-billing-base-schema.ts","../src/effect/peppol-invoice-schema.ts","../src/effect/peppol-credit-note-schema.ts","../src/effect/peppol-message-level-response-party-schema.ts","../src/effect/peppol-document-response-document-reference-schema.ts","../src/effect/peppol-document-response-document-schema.ts","../src/effect/peppol-document-response-line-response-content-schema.ts","../src/effect/peppol-document-response-line-response-schema.ts","../src/effect/peppol-message-level-response-document-response-schema.ts","../src/effect/peppol-message-level-response-schema.ts","../src/effect/peppol-invoice-response-status-reason-code-schema.ts","../src/effect/peppol-invoice-response-document-actual-response-status-schema.ts","../src/effect/peppol-invoice-response-document-actual-response-schema.ts","../src/effect/peppol-invoice-response-schema.ts","../src/effect/fields/peppol-credit-note-line-schema.ts","../src/effect/fields/peppol-invoice-line-schema.ts","../src/effect/peppol-document-schema.ts","../src/effect/fields/peppol-additional-document-reference-schema.ts","../src/effect/fields/peppol-address-schema.ts","../src/effect/fields/peppol-allowance-charge-schema.ts","../src/effect/fields/peppol-amount-schema.ts","../src/effect/fields/peppol-base-line-schema.ts","../src/effect/fields/peppol-billing-reference-schema.ts","../src/effect/fields/peppol-binary-object-schema.ts","../src/effect/fields/peppol-contact-schema.ts","../src/effect/fields/default-customization-id.ts","../src/effect/fields/default-profile-id.ts","../src/effect/fields/peppol-delivery-schema.ts","../src/effect/fields/peppol-identifier-schema.ts","../src/effect/fields/peppol-invoice-line-period-schema.ts","../src/effect/fields/peppol-invoice-period-schema.ts","../src/effect/fields/peppol-legal-monetary-total-schema.ts","../src/effect/fields/peppol-line-allowance-charge-schema.ts","../src/effect/fields/peppol-line-item-schema.ts","../src/effect/fields/peppol-line-price-allowance-charge-schema.ts","../src/effect/fields/peppol-item-classification-schema.ts","../src/effect/fields/peppol-order-reference-schema.ts","../src/effect/fields/peppol-party-base-schema.ts","../src/effect/fields/peppol-party-legal-entity-schema.ts","../src/effect/fields/peppol-party-tax-scheme-schema.ts","../src/effect/fields/peppol-payee-party-schema.ts","../src/effect/fields/peppol-payment-means-schema.ts","../src/effect/fields/peppol-payment-terms-schema.ts","../src/effect/fields/peppol-line-price-schema.ts","../src/effect/fields/peppol-quantity-schema.ts","../src/effect/fields/peppol-reference-schema.ts","../src/effect/fields/peppol-tax-category-schema.ts","../src/effect/fields/peppol-tax-representative-schema.ts","../src/effect/fields/peppol-tax-subtotal-category-schema.ts","../src/effect/fields/peppol-tax-subtotal-schema.ts","../src/effect/fields/peppol-tax-totals-base-schema.ts","../src/effect/utils/peppol-base-64-schema.ts","../src/effect/utils/peppol-vat-regex-schema.ts","../src/effect/utils/peppol-xsd-time-schema.ts","../src/effect/values/additional-document-reference-code-schema.ts","../src/effect/values/allowance-charge-reason-code-schema.ts","../src/effect/values/application-response-type-code-schema.ts","../src/effect/values/charge-reason-code-schema.ts","../src/effect/values/peppol-country-code-schema.ts","../src/effect/values/credit-note-type-code-schema.ts","../src/effect/values/currency-code-schema.ts","../src/effect/values/peppol-document-type-code-schema.ts","../src/effect/values/peppol-document-type-schema.ts","../src/effect/values/document-type-schemes-schema.ts","../src/effect/values/document-type-values-schema.ts","../src/effect/values/duty-tax-fee-category-schema.ts","../src/effect/values/electronic-codes-schema.ts","../src/effect/values/icd-codes-schema.ts","../src/effect/values/invoice-status-code-schema.ts","../src/effect/values/invoice-type-code-schema.ts","../src/effect/values/item-classification-codes-schema.ts","../src/effect/values/mime-codes-schema.ts","../src/effect/values/op-status-action-schema.ts","../src/effect/values/op-status-reason-schema.ts","../src/effect/values/participant-identifier-code-schema.ts","../src/effect/values/payment-means-code-schema.ts","../src/effect/values/process-from-document-type-schema.ts","../src/effect/values/peppol-process-schema.ts","../src/effect/values/quantity-unit-codes-schema.ts","../src/effect/values/vatex-code-schema.ts","../src/effect/values/vat-date-code-schema.ts"],"mappings":"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"}
|
package/dist/effect.js
CHANGED
|
@@ -1039,6 +1039,27 @@ id: Schema.String.pipe(Schema.withDecodingDefaultType(Effect.succeed("VAT"))) })
|
|
|
1039
1039
|
const electronicCodesSchema = Schema.Literals(electronicAddressCodesKeys).pipe(Schema.brand("PeppolElectronicAddressCode"));
|
|
1040
1040
|
//#endregion
|
|
1041
1041
|
//#region src/effect/fields/peppol-party-base-schema.ts
|
|
1042
|
+
const peppolPartyEndpointIdSchema = peppolIdentifierSchema.pipe(Schema.fieldsAssign({
|
|
1043
|
+
/**
|
|
1044
|
+
* @description Identifies the Seller/buyer's electronic address to which the application level response to the invoice may be delivered.
|
|
1045
|
+
*
|
|
1046
|
+
* @example
|
|
1047
|
+
* 7300010000001;
|
|
1048
|
+
*
|
|
1049
|
+
* @summary Seller/Buyer electronic address
|
|
1050
|
+
*
|
|
1051
|
+
* @name `#text`
|
|
1052
|
+
*/
|
|
1053
|
+
id: Schema.String,
|
|
1054
|
+
/**
|
|
1055
|
+
* @description The identification scheme identifier of the Seller/Buyer electronic address.
|
|
1056
|
+
*
|
|
1057
|
+
* @summary Seller/Buyer electronic address identification scheme identifier
|
|
1058
|
+
*
|
|
1059
|
+
* @name `@schemeID`
|
|
1060
|
+
*/
|
|
1061
|
+
schemeId: electronicCodesSchema
|
|
1062
|
+
}));
|
|
1042
1063
|
/**
|
|
1043
1064
|
* @summary Party common substructure
|
|
1044
1065
|
*
|
|
@@ -1055,27 +1076,7 @@ const peppolPartyBaseSchema = Schema.Struct({
|
|
|
1055
1076
|
*
|
|
1056
1077
|
* @name `cbc:EndpointID`
|
|
1057
1078
|
*/
|
|
1058
|
-
endpointId:
|
|
1059
|
-
/**
|
|
1060
|
-
* @description Identifies the Seller/buyer's electronic address to which the application level response to the invoice may be delivered.
|
|
1061
|
-
*
|
|
1062
|
-
* @example
|
|
1063
|
-
* 7300010000001;
|
|
1064
|
-
*
|
|
1065
|
-
* @summary Seller/Buyer electronic address
|
|
1066
|
-
*
|
|
1067
|
-
* @name `#text`
|
|
1068
|
-
*/
|
|
1069
|
-
id: Schema.String,
|
|
1070
|
-
/**
|
|
1071
|
-
* @description The identification scheme identifier of the Seller/Buyer electronic address.
|
|
1072
|
-
*
|
|
1073
|
-
* @summary Seller/Buyer electronic address identification scheme identifier
|
|
1074
|
-
*
|
|
1075
|
-
* @name `@schemeID`
|
|
1076
|
-
*/
|
|
1077
|
-
schemeId: electronicCodesSchema
|
|
1078
|
-
})),
|
|
1079
|
+
endpointId: peppolPartyEndpointIdSchema,
|
|
1079
1080
|
/**
|
|
1080
1081
|
* @example
|
|
1081
1082
|
* 5060012349998;
|
|
@@ -3234,6 +3235,6 @@ function processFromDocumentTypeSchema(documentType, error = "invalid process ty
|
|
|
3234
3235
|
*/
|
|
3235
3236
|
const vatexCodeSchema = Schema.Literals(vatexCodesKeys).pipe(Schema.brand("PeppolVatexCode"));
|
|
3236
3237
|
//#endregion
|
|
3237
|
-
export { DEFAULT_CUSTOMIZATION_ID, DEFAULT_PROFILE_ID, PeppolInvalidDocumentType, additionalDocumentReferenceCodeSchema, allowanceChargeReasonCodeSchema, applicationResponseTypeCodeSchema, baseLineAllowanceChargeSchema, chargeReasonCodeSchema, creditNoteTypeCodeSchema, currencyCodeSchema, documentTypeSchemesSchema, documentTypeValuesSchema, dutyTaxFeeCategorySchema, electronicCodesSchema, formatQuantityWithUnit, getCreditNoteTypeCodeDescription, getInvoiceTypeCodeDescription, icdCodesSchema, invoiceStatusCodeSchema, invoiceTypeCodeSchema, isValidCreditNoteTypeCode, isValidInvoiceTypeCode, isValidProcess, itemClassificationCodesSchema, mimeCodesSchema, opStatusActionSchema, opStatusReasonSchema, participantIdentifierCodeSchema, paymentMeansCodeSchema, peppolAdditionalDocumentReferenceSchema, peppolAddressSchema, peppolAllowanceChargeSchema, peppolAmountSchema, peppolBase64Schema, peppolBaseLineSchema, peppolBillingBaseSchema, peppolBillingReferenceSchema, peppolBinaryObjectSchema, peppolContactSchema, peppolCountryCodeSchema, peppolCreditNoteLineSchema, peppolCreditNoteSchema, peppolDeliverySchema, peppolDocumentResponseDocumentReferenceSchema, peppolDocumentResponseDocumentSchema, peppolDocumentResponseLineResponseContentSchema, peppolDocumentResponseLineResponseSchema, peppolDocumentSchema, peppolDocumentTypeCodeSchema, peppolDocumentTypeSchema, peppolIdentifierSchema, peppolInvoiceLinePeriodSchema, peppolInvoiceLineSchema, peppolInvoicePeriodSchema, peppolInvoiceResponseDocumentActualResponseSchema, peppolInvoiceResponseDocumentActualResponseStatusSchema, peppolInvoiceResponseDocumentReferenceSchema, peppolInvoiceResponseDocumentResponsePartySchema, peppolInvoiceResponseDocumentResponseSchema, peppolInvoiceResponsePartySchema, peppolInvoiceResponseSchema, peppolInvoiceResponseSenderPartySchema, peppolInvoiceResponseStatusReasonCodeSchema, peppolInvoiceSchema, peppolIsoDateStringSchema, peppolItemClassificationSchema, peppolLegalMonetaryTotalSchema, peppolLineAllowanceChargeSchema, peppolLineItemSchema, peppolLinePriceAllowanceChargeSchema, peppolLinePriceSchema, peppolMessageLevelResponseDocumentResponseSchema, peppolMessageLevelResponsePartySchema, peppolMessageLevelResponseSchema, peppolOrderReferenceSchema, peppolPartyBaseSchema, peppolPartyLegalEntitySchema, peppolPartyTaxSchemeSchema, peppolPayeePartySchema, peppolPaymentMeansSchema, peppolPaymentTermsSchema, peppolProcessSchema, peppolQuantitySchema, peppolReferenceSchema, peppolTaxCategorySchema, peppolTaxRepresentativeSchema, peppolTaxSubtotalCategorySchema, peppolTaxSubtotalSchema, peppolTaxTotalsBaseSchema, peppolVatRegexSchema, peppolXsdTimeSchema, priceAllowanceChargeSchema, processFromDocumentTypeSchema, quantityToIntlUnitMap, quantityUnitCodeToIntlUnit, quantityUnitCodesSchema, vatDateCodeSchema, vatexCodeSchema };
|
|
3238
|
+
export { DEFAULT_CUSTOMIZATION_ID, DEFAULT_PROFILE_ID, PeppolInvalidDocumentType, additionalDocumentReferenceCodeSchema, allowanceChargeReasonCodeSchema, applicationResponseTypeCodeSchema, baseLineAllowanceChargeSchema, chargeReasonCodeSchema, creditNoteTypeCodeSchema, currencyCodeSchema, documentTypeSchemesSchema, documentTypeValuesSchema, dutyTaxFeeCategorySchema, electronicCodesSchema, formatQuantityWithUnit, getCreditNoteTypeCodeDescription, getInvoiceTypeCodeDescription, icdCodesSchema, invoiceStatusCodeSchema, invoiceTypeCodeSchema, isValidCreditNoteTypeCode, isValidInvoiceTypeCode, isValidProcess, itemClassificationCodesSchema, mimeCodesSchema, opStatusActionSchema, opStatusReasonSchema, participantIdentifierCodeSchema, paymentMeansCodeSchema, peppolAdditionalDocumentReferenceSchema, peppolAddressSchema, peppolAllowanceChargeSchema, peppolAmountSchema, peppolBase64Schema, peppolBaseLineSchema, peppolBillingBaseSchema, peppolBillingReferenceSchema, peppolBinaryObjectSchema, peppolContactSchema, peppolCountryCodeSchema, peppolCreditNoteLineSchema, peppolCreditNoteSchema, peppolDeliverySchema, peppolDocumentResponseDocumentReferenceSchema, peppolDocumentResponseDocumentSchema, peppolDocumentResponseLineResponseContentSchema, peppolDocumentResponseLineResponseSchema, peppolDocumentSchema, peppolDocumentTypeCodeSchema, peppolDocumentTypeSchema, peppolIdentifierSchema, peppolInvoiceLinePeriodSchema, peppolInvoiceLineSchema, peppolInvoicePeriodSchema, peppolInvoiceResponseDocumentActualResponseSchema, peppolInvoiceResponseDocumentActualResponseStatusSchema, peppolInvoiceResponseDocumentReferenceSchema, peppolInvoiceResponseDocumentResponsePartySchema, peppolInvoiceResponseDocumentResponseSchema, peppolInvoiceResponsePartySchema, peppolInvoiceResponseSchema, peppolInvoiceResponseSenderPartySchema, peppolInvoiceResponseStatusReasonCodeSchema, peppolInvoiceSchema, peppolIsoDateStringSchema, peppolItemClassificationSchema, peppolLegalMonetaryTotalSchema, peppolLineAllowanceChargeSchema, peppolLineItemSchema, peppolLinePriceAllowanceChargeSchema, peppolLinePriceSchema, peppolMessageLevelResponseDocumentResponseSchema, peppolMessageLevelResponsePartySchema, peppolMessageLevelResponseSchema, peppolOrderReferenceSchema, peppolPartyBaseSchema, peppolPartyEndpointIdSchema, peppolPartyLegalEntitySchema, peppolPartyTaxSchemeSchema, peppolPayeePartySchema, peppolPaymentMeansSchema, peppolPaymentTermsSchema, peppolProcessSchema, peppolQuantitySchema, peppolReferenceSchema, peppolTaxCategorySchema, peppolTaxRepresentativeSchema, peppolTaxSubtotalCategorySchema, peppolTaxSubtotalSchema, peppolTaxTotalsBaseSchema, peppolVatRegexSchema, peppolXsdTimeSchema, priceAllowanceChargeSchema, processFromDocumentTypeSchema, quantityToIntlUnitMap, quantityUnitCodeToIntlUnit, quantityUnitCodesSchema, vatDateCodeSchema, vatexCodeSchema };
|
|
3238
3239
|
|
|
3239
3240
|
//# sourceMappingURL=effect.js.map
|