@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
|
@@ -20,7 +20,7 @@ declare const PeppolIsoDateString_base: OpaqueSchema<PeppolIsoDateString, Schema
|
|
|
20
20
|
declare class PeppolIsoDateString extends PeppolIsoDateString_base {}
|
|
21
21
|
//#endregion
|
|
22
22
|
//#region src/schemas/utils/peppol-base-64-schema.d.ts
|
|
23
|
-
declare const PeppolBase64_base:
|
|
23
|
+
declare const PeppolBase64_base: Schema.String;
|
|
24
24
|
/**
|
|
25
25
|
* @description RFC 4648 base64 string (PEM / MIME / XML line endings tolerated). Effect port of `base64Schema` (`z.string().check(z.refine(...))`): strips CRLF /
|
|
26
26
|
* LF line endings before testing the quantum regex.
|
|
@@ -31,10 +31,6 @@ declare const PeppolBase64_base: OpaqueSchema<PeppolBase64, Schema.String>;
|
|
|
31
31
|
* ```;
|
|
32
32
|
*/
|
|
33
33
|
declare class PeppolBase64 extends PeppolBase64_base {}
|
|
34
|
-
/**
|
|
35
|
-
* @description Alias of {@link PeppolBase64} for callers that prefer the shorter name.
|
|
36
|
-
*/
|
|
37
|
-
type Base64 = PeppolBase64;
|
|
38
34
|
//#endregion
|
|
39
35
|
//#region src/schemas/values/mime-codes-schema.d.ts
|
|
40
36
|
declare const PeppolMimeCode_base: OpaqueSchema<PeppolMimeCode, Schema.brand<Schema.Literals<readonly ["text/csv", "application/pdf", "image/png", "image/jpeg", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "application/vnd.oasis.opendocument.spreadsheet"]>, "PeppolMimeCode">>;
|
|
@@ -187,22 +183,7 @@ declare const PeppolAttachment_base: OpaqueSchema<PeppolAttachment, Schema.Struc
|
|
|
187
183
|
*/
|
|
188
184
|
declare class PeppolAttachment extends PeppolAttachment_base {}
|
|
189
185
|
declare const PeppolId_base: OpaqueSchema<PeppolId, Schema.Struct<{
|
|
190
|
-
/**
|
|
191
|
-
* @description An identifier for an object on which the invoice is based (with DocumentTypeCode=130), given by the Seller, the identifier for the supporting
|
|
192
|
-
* document or the project reference identifier (DocumentTypeCode=50).
|
|
193
|
-
*
|
|
194
|
-
* @summary Invoiced object identifier, Supporting document reference or project reference
|
|
195
|
-
*
|
|
196
|
-
* @name `#text`
|
|
197
|
-
*/
|
|
198
186
|
readonly id: Schema.String;
|
|
199
|
-
/**
|
|
200
|
-
* @description The identification scheme identifier of the Invoiced object identifier.
|
|
201
|
-
*
|
|
202
|
-
* @summary Scheme identifier
|
|
203
|
-
*
|
|
204
|
-
* @name `@schemeID`
|
|
205
|
-
*/
|
|
206
187
|
readonly schemeId: Schema.optional<typeof PeppolAdditionalDocumentReferenceCode>;
|
|
207
188
|
}>>;
|
|
208
189
|
/**
|
|
@@ -479,7 +460,7 @@ declare const PeppolCharge_base: OpaqueSchema<PeppolCharge, Schema.Struct<{
|
|
|
479
460
|
* @see {@link PeppolAllowanceCharge}
|
|
480
461
|
*/
|
|
481
462
|
declare class PeppolCharge extends PeppolCharge_base {}
|
|
482
|
-
declare const PeppolAllowanceCharge_base:
|
|
463
|
+
declare const PeppolAllowanceCharge_base: Schema.Union<readonly [typeof PeppolAllowance, typeof PeppolCharge]>;
|
|
483
464
|
/**
|
|
484
465
|
* @description A document level allowance or charge, selected by the `cbc:ChargeIndicator` value: `false` selects an allowance, `true` selects a charge.
|
|
485
466
|
*
|
|
@@ -573,7 +554,7 @@ declare const PeppolIcdCode_base: OpaqueSchema<PeppolIcdCode, Schema.brand<Schem
|
|
|
573
554
|
declare class PeppolIcdCode extends PeppolIcdCode_base {}
|
|
574
555
|
//#endregion
|
|
575
556
|
//#region src/schemas/values/peppol-country-code-schema.d.ts
|
|
576
|
-
declare const PeppolCountryCodeValue_base:
|
|
557
|
+
declare const PeppolCountryCodeValue_base: Schema.brand<Schema.Literals<[string, ...string[]]>, "PeppolCountryCodeValue">;
|
|
577
558
|
/**
|
|
578
559
|
* @description A two character ISO 3166-1 alpha-2 country code from the PEPPOL codelist. The literal union enforces the length.
|
|
579
560
|
*
|
|
@@ -1081,7 +1062,7 @@ declare const PeppolIdentifier_base: OpaqueSchema<PeppolIdentifier, Schema.Struc
|
|
|
1081
1062
|
declare class PeppolIdentifier extends PeppolIdentifier_base {}
|
|
1082
1063
|
//#endregion
|
|
1083
1064
|
//#region src/schemas/fields/peppol-party-legal-entity-schema.d.ts
|
|
1084
|
-
declare const PeppolPartyLegalEntity_base
|
|
1065
|
+
declare const PeppolPartyLegalEntity_base: OpaqueSchema<PeppolPartyLegalEntity, Schema.Struct<{
|
|
1085
1066
|
/**
|
|
1086
1067
|
* @example
|
|
1087
1068
|
* 987654321;
|
|
@@ -1114,14 +1095,10 @@ declare const PeppolPartyLegalEntity_base$1: OpaqueSchema<PeppolPartyLegalEntity
|
|
|
1114
1095
|
*
|
|
1115
1096
|
* @see {@link PeppolPartySchema}
|
|
1116
1097
|
*/
|
|
1117
|
-
declare class PeppolPartyLegalEntity
|
|
1118
|
-
/**
|
|
1119
|
-
* @description Alias for {@link PeppolPartyLegalEntity}.
|
|
1120
|
-
*/
|
|
1121
|
-
type PeppolPartyLegalEntitySchema = PeppolPartyLegalEntity$1;
|
|
1098
|
+
declare class PeppolPartyLegalEntity extends PeppolPartyLegalEntity_base {}
|
|
1122
1099
|
//#endregion
|
|
1123
1100
|
//#region src/schemas/fields/peppol-party-tax-scheme-schema.d.ts
|
|
1124
|
-
declare const
|
|
1101
|
+
declare const PeppolPartyTaxSchemeId_base: OpaqueSchema<PeppolPartyTaxSchemeId, Schema.Struct<{
|
|
1125
1102
|
/**
|
|
1126
1103
|
* @description Mandatory element. For Seller VAT identifier (BT-31), use value “VAT”, for the seller tax registration identifier (BT-32), use != "VAT"
|
|
1127
1104
|
*
|
|
@@ -1129,7 +1106,7 @@ declare const PeppolTaxSchemeId_base$1: OpaqueSchema<PeppolTaxSchemeId$1, Schema
|
|
|
1129
1106
|
*/
|
|
1130
1107
|
readonly id: Schema.withDecodingDefaultType<Schema.String, never>;
|
|
1131
1108
|
}>>;
|
|
1132
|
-
declare class
|
|
1109
|
+
declare class PeppolPartyTaxSchemeId extends PeppolPartyTaxSchemeId_base {}
|
|
1133
1110
|
declare const PeppolPartyTaxScheme_base: OpaqueSchema<PeppolPartyTaxScheme, Schema.Struct<{
|
|
1134
1111
|
/**
|
|
1135
1112
|
* @description The Seller's VAT identifier (also known as Seller VAT identification number) or the local identification (defined by the Seller’s address) of
|
|
@@ -1147,7 +1124,7 @@ declare const PeppolPartyTaxScheme_base: OpaqueSchema<PeppolPartyTaxScheme, Sche
|
|
|
1147
1124
|
*
|
|
1148
1125
|
* @name `cac:TaxScheme`
|
|
1149
1126
|
*/
|
|
1150
|
-
readonly taxSchemeId: typeof
|
|
1127
|
+
readonly taxSchemeId: typeof PeppolPartyTaxSchemeId;
|
|
1151
1128
|
}>>;
|
|
1152
1129
|
/**
|
|
1153
1130
|
* @description The Seller tax registration details, combining a tax identifier such as a VAT number with the tax scheme.
|
|
@@ -1155,10 +1132,6 @@ declare const PeppolPartyTaxScheme_base: OpaqueSchema<PeppolPartyTaxScheme, Sche
|
|
|
1155
1132
|
* @name cac:PartyTaxScheme (0..2)
|
|
1156
1133
|
*/
|
|
1157
1134
|
declare class PeppolPartyTaxScheme extends PeppolPartyTaxScheme_base {}
|
|
1158
|
-
/**
|
|
1159
|
-
* @description Alias for {@link PeppolPartyTaxScheme}.
|
|
1160
|
-
*/
|
|
1161
|
-
type PeppolPartyTaxSchema = PeppolPartyTaxScheme;
|
|
1162
1135
|
//#endregion
|
|
1163
1136
|
//#region src/schemas/values/electronic-codes-schema.d.ts
|
|
1164
1137
|
declare const PeppolElectronicAddressCode_base: OpaqueSchema<PeppolElectronicAddressCode, Schema.brand<Schema.Literals<[string, ...string[]]>, "PeppolElectronicAddressCode">>;
|
|
@@ -1179,7 +1152,7 @@ declare const PeppolElectronicAddressCode_base: OpaqueSchema<PeppolElectronicAdd
|
|
|
1179
1152
|
declare class PeppolElectronicAddressCode extends PeppolElectronicAddressCode_base {}
|
|
1180
1153
|
//#endregion
|
|
1181
1154
|
//#region src/schemas/fields/peppol-party-base-schema.d.ts
|
|
1182
|
-
declare const PeppolPartyName_base
|
|
1155
|
+
declare const PeppolPartyName_base: OpaqueSchema<PeppolPartyName, Schema.Struct<{
|
|
1183
1156
|
/**
|
|
1184
1157
|
* @description A name by which the Buyer/Seller is known, other than Buyer/Seller name (also known as Business name).
|
|
1185
1158
|
*
|
|
@@ -1200,8 +1173,8 @@ declare const PeppolPartyName_base$1: OpaqueSchema<PeppolPartyName$1, Schema.Str
|
|
|
1200
1173
|
*
|
|
1201
1174
|
* @see {@link PeppolPartySchema}
|
|
1202
1175
|
*/
|
|
1203
|
-
declare class PeppolPartyName
|
|
1204
|
-
declare const PeppolPartyIdentification_base
|
|
1176
|
+
declare class PeppolPartyName extends PeppolPartyName_base {}
|
|
1177
|
+
declare const PeppolPartyIdentification_base: OpaqueSchema<PeppolPartyIdentification, Schema.Struct<{
|
|
1205
1178
|
/**
|
|
1206
1179
|
* @description An identifier of the Buyer/seller.
|
|
1207
1180
|
*
|
|
@@ -1224,7 +1197,7 @@ declare const PeppolPartyIdentification_base$1: OpaqueSchema<PeppolPartyIdentifi
|
|
|
1224
1197
|
*
|
|
1225
1198
|
* @see {@link PeppolPartySchema}
|
|
1226
1199
|
*/
|
|
1227
|
-
declare class PeppolPartyIdentification
|
|
1200
|
+
declare class PeppolPartyIdentification extends PeppolPartyIdentification_base {}
|
|
1228
1201
|
declare const PeppolPartyEndpointId_base: OpaqueSchema<PeppolPartyEndpointId, Schema.Struct<{
|
|
1229
1202
|
readonly id: Schema.String;
|
|
1230
1203
|
readonly schemeId: typeof PeppolElectronicAddressCode;
|
|
@@ -1260,7 +1233,7 @@ declare const PeppolPartySchema_base: OpaqueSchema<PeppolPartySchema, Schema.Str
|
|
|
1260
1233
|
*
|
|
1261
1234
|
* @name `cac:PartyIdentification`
|
|
1262
1235
|
*/
|
|
1263
|
-
readonly partyIdentification: Schema.optional<typeof PeppolPartyIdentification
|
|
1236
|
+
readonly partyIdentification: Schema.optional<typeof PeppolPartyIdentification>;
|
|
1264
1237
|
/**
|
|
1265
1238
|
* @example
|
|
1266
1239
|
* Seller Business Name AS
|
|
@@ -1269,7 +1242,7 @@ declare const PeppolPartySchema_base: OpaqueSchema<PeppolPartySchema, Schema.Str
|
|
|
1269
1242
|
*
|
|
1270
1243
|
* @name cac:PartyName
|
|
1271
1244
|
*/
|
|
1272
|
-
readonly partyName: Schema.optional<typeof PeppolPartyName
|
|
1245
|
+
readonly partyName: Schema.optional<typeof PeppolPartyName>;
|
|
1273
1246
|
/**
|
|
1274
1247
|
* @name cac:PostalAddress
|
|
1275
1248
|
*/
|
|
@@ -1286,7 +1259,7 @@ declare const PeppolPartySchema_base: OpaqueSchema<PeppolPartySchema, Schema.Str
|
|
|
1286
1259
|
/**
|
|
1287
1260
|
* @name cac:PartyLegalEntity
|
|
1288
1261
|
*/
|
|
1289
|
-
readonly partyLegalEntity: typeof PeppolPartyLegalEntity
|
|
1262
|
+
readonly partyLegalEntity: typeof PeppolPartyLegalEntity;
|
|
1290
1263
|
/**
|
|
1291
1264
|
* @name cac:Contact
|
|
1292
1265
|
*/
|
|
@@ -1302,11 +1275,11 @@ declare const PeppolPartySchema_base: OpaqueSchema<PeppolPartySchema, Schema.Str
|
|
|
1302
1275
|
declare class PeppolPartySchema extends PeppolPartySchema_base {}
|
|
1303
1276
|
//#endregion
|
|
1304
1277
|
//#region src/schemas/fields/peppol-payee-party-schema.d.ts
|
|
1305
|
-
declare const
|
|
1278
|
+
declare const PeppolPayeePartyName_base: OpaqueSchema<PeppolPayeePartyName, Schema.Struct<{
|
|
1306
1279
|
readonly name: Schema.String;
|
|
1307
1280
|
}>>;
|
|
1308
|
-
declare class
|
|
1309
|
-
declare const
|
|
1281
|
+
declare class PeppolPayeePartyName extends PeppolPayeePartyName_base {}
|
|
1282
|
+
declare const PeppolPayeePartyLegalEntity_base: OpaqueSchema<PeppolPayeePartyLegalEntity, Schema.Struct<{
|
|
1310
1283
|
/**
|
|
1311
1284
|
* @description An identifier issued by an official registrar that identifies the payee as a legal entity or person.
|
|
1312
1285
|
*
|
|
@@ -1322,8 +1295,8 @@ declare const PeppolPartyLegalEntity_base: OpaqueSchema<PeppolPartyLegalEntity,
|
|
|
1322
1295
|
readonly schemeId: Schema.optional<typeof PeppolIcdCode>;
|
|
1323
1296
|
}>>;
|
|
1324
1297
|
}>>;
|
|
1325
|
-
declare class
|
|
1326
|
-
declare const
|
|
1298
|
+
declare class PeppolPayeePartyLegalEntity extends PeppolPayeePartyLegalEntity_base {}
|
|
1299
|
+
declare const PeppolPayeePartyIdentification_base: OpaqueSchema<PeppolPayeePartyIdentification, Schema.Struct<{
|
|
1327
1300
|
/**
|
|
1328
1301
|
* @description This element is used for both the identification of the Payee, or the unique banking reference identifier of Payee (assigned by the Payee
|
|
1329
1302
|
* bank.) For payee identification use ICD code list, for SEPA bank assigned creditor reference, use SEPA.
|
|
@@ -1337,20 +1310,20 @@ declare const PeppolPartyIdentification_base: OpaqueSchema<PeppolPartyIdentifica
|
|
|
1337
1310
|
readonly schemeId: Schema.optional<Schema.String>;
|
|
1338
1311
|
}>>;
|
|
1339
1312
|
}>>;
|
|
1340
|
-
declare class
|
|
1313
|
+
declare class PeppolPayeePartyIdentification extends PeppolPayeePartyIdentification_base {}
|
|
1341
1314
|
declare const PeppolPayeeParty_base: OpaqueSchema<PeppolPayeeParty, Schema.Struct<{
|
|
1342
1315
|
/**
|
|
1343
1316
|
* @summary PARTY IDENTIFICATION
|
|
1344
1317
|
*
|
|
1345
1318
|
* @name `cac:PartyIdentification`
|
|
1346
1319
|
*/
|
|
1347
|
-
readonly partyIdentification: Schema.optional<typeof
|
|
1320
|
+
readonly partyIdentification: Schema.optional<typeof PeppolPayeePartyIdentification>;
|
|
1348
1321
|
/**
|
|
1349
1322
|
* @summary PARTY LEGAL ENTITY
|
|
1350
1323
|
*
|
|
1351
1324
|
* @name `cac:PartyLegalEntity`
|
|
1352
1325
|
*/
|
|
1353
|
-
readonly partyLegalEntity: Schema.optional<typeof
|
|
1326
|
+
readonly partyLegalEntity: Schema.optional<typeof PeppolPayeePartyLegalEntity>;
|
|
1354
1327
|
/**
|
|
1355
1328
|
* @description The name of the payee.
|
|
1356
1329
|
*
|
|
@@ -1361,7 +1334,7 @@ declare const PeppolPayeeParty_base: OpaqueSchema<PeppolPayeeParty, Schema.Struc
|
|
|
1361
1334
|
*
|
|
1362
1335
|
* @name `cac:PartyName`
|
|
1363
1336
|
*/
|
|
1364
|
-
readonly partyName: typeof
|
|
1337
|
+
readonly partyName: typeof PeppolPayeePartyName;
|
|
1365
1338
|
}>>;
|
|
1366
1339
|
/**
|
|
1367
1340
|
* @description A group of business terms providing information about the Payee, i.e. the role that received the payment. Shall be used wwhen the payee is
|
|
@@ -1702,10 +1675,6 @@ declare const PeppolTaxRepresentative_base: OpaqueSchema<PeppolTaxRepresentative
|
|
|
1702
1675
|
* @name cac:TaxRepresentativeParty
|
|
1703
1676
|
*/
|
|
1704
1677
|
declare class PeppolTaxRepresentative extends PeppolTaxRepresentative_base {}
|
|
1705
|
-
/**
|
|
1706
|
-
* @description Alias for {@link PeppolTaxRepresentative}.
|
|
1707
|
-
*/
|
|
1708
|
-
type PeppolTaxRepresentativeParty = PeppolTaxRepresentative;
|
|
1709
1678
|
//#endregion
|
|
1710
1679
|
//#region src/schemas/values/application-response-type-code-schema.d.ts
|
|
1711
1680
|
declare const PeppolApplicationResponseTypeCode_base: OpaqueSchema<PeppolApplicationResponseTypeCode, Schema.Literals<readonly ["AB", "AP", "RE"]>>;
|
|
@@ -2059,7 +2028,7 @@ declare const PeppolTaxSubTotal_base: OpaqueSchema<PeppolTaxSubTotal, Schema.Str
|
|
|
2059
2028
|
declare class PeppolTaxSubTotal extends PeppolTaxSubTotal_base {}
|
|
2060
2029
|
//#endregion
|
|
2061
2030
|
//#region src/schemas/fields/peppol-tax-totals-base-schema.d.ts
|
|
2062
|
-
declare const
|
|
2031
|
+
declare const PeppolTaxTotal_base: OpaqueSchema<PeppolTaxTotal, Schema.Struct<{
|
|
2063
2032
|
/**
|
|
2064
2033
|
* @example
|
|
2065
2034
|
* 200;
|
|
@@ -2079,11 +2048,7 @@ declare const PeppolTaxTotalsBase_base: OpaqueSchema<PeppolTaxTotalsBase, Schema
|
|
|
2079
2048
|
*
|
|
2080
2049
|
* @name cac:TaxTotal (1..2)
|
|
2081
2050
|
*/
|
|
2082
|
-
declare class
|
|
2083
|
-
/**
|
|
2084
|
-
* @description Alias for {@link PeppolTaxTotalsBase}.
|
|
2085
|
-
*/
|
|
2086
|
-
type PeppolTaxTotal = PeppolTaxTotalsBase;
|
|
2051
|
+
declare class PeppolTaxTotal extends PeppolTaxTotal_base {}
|
|
2087
2052
|
//#endregion
|
|
2088
2053
|
//#region src/schemas/peppol-billing-base-schema.d.ts
|
|
2089
2054
|
declare const PeppolContractDocumentReference_base: OpaqueSchema<PeppolContractDocumentReference, Schema.Struct<{
|
|
@@ -2425,7 +2390,7 @@ declare const PeppolBillingBase_base: OpaqueSchema<PeppolBillingBase, Schema.Str
|
|
|
2425
2390
|
*
|
|
2426
2391
|
* @name cac:TaxTotal
|
|
2427
2392
|
*/
|
|
2428
|
-
readonly taxTotals: Schema.$Array<typeof
|
|
2393
|
+
readonly taxTotals: Schema.$Array<typeof PeppolTaxTotal>;
|
|
2429
2394
|
/**
|
|
2430
2395
|
* @summary DOCUMENT TOTALS
|
|
2431
2396
|
*
|
|
@@ -2535,7 +2500,7 @@ declare const PeppolLineCharge_base: OpaqueSchema<PeppolLineCharge, Schema.Struc
|
|
|
2535
2500
|
* @see {@link PeppolLineAllowanceCharge}
|
|
2536
2501
|
*/
|
|
2537
2502
|
declare class PeppolLineCharge extends PeppolLineCharge_base {}
|
|
2538
|
-
declare const PeppolLineAllowanceCharge_base:
|
|
2503
|
+
declare const PeppolLineAllowanceCharge_base: Schema.Union<readonly [typeof PeppolLineAllowance, typeof PeppolLineCharge]>;
|
|
2539
2504
|
/**
|
|
2540
2505
|
* @description An allowance or charge applied to an Invoice line, selected by the `cbc:ChargeIndicator` value: `false` selects an allowance, `true` selects a
|
|
2541
2506
|
* charge.
|
|
@@ -2858,10 +2823,6 @@ declare const PeppolLineItem_base: OpaqueSchema<PeppolLineItem, Schema.Struct<{
|
|
|
2858
2823
|
* @name cac:Item
|
|
2859
2824
|
*/
|
|
2860
2825
|
declare class PeppolLineItem extends PeppolLineItem_base {}
|
|
2861
|
-
/**
|
|
2862
|
-
* @description Alias for {@link PeppolLineItem}.
|
|
2863
|
-
*/
|
|
2864
|
-
type PeppolItem = PeppolLineItem;
|
|
2865
2826
|
//#endregion
|
|
2866
2827
|
//#region src/schemas/fields/peppol-line-price-allowance-charge-schema.d.ts
|
|
2867
2828
|
declare const PriceAllowanceCharge_base: OpaqueSchema<PriceAllowanceCharge, Schema.Struct<{
|
|
@@ -3185,7 +3146,7 @@ declare const PeppolInvoice_base: OpaqueSchema<PeppolInvoice, Schema.Struct<{
|
|
|
3185
3146
|
readonly paymentMeans: Schema.optional<Schema.$Array<typeof PeppolPaymentMeans>>;
|
|
3186
3147
|
readonly paymentTerms: Schema.optional<typeof PeppolPaymentTerms>;
|
|
3187
3148
|
readonly allowanceCharges: Schema.optional<Schema.$Array<typeof PeppolAllowanceCharge>>;
|
|
3188
|
-
readonly taxTotals: Schema.$Array<typeof
|
|
3149
|
+
readonly taxTotals: Schema.$Array<typeof PeppolTaxTotal>;
|
|
3189
3150
|
readonly legalMonetaryTotal: typeof PeppolLegalMonetaryTotal;
|
|
3190
3151
|
/**
|
|
3191
3152
|
* @example
|
|
@@ -3298,7 +3259,7 @@ declare const PeppolCreditNote_base: OpaqueSchema<PeppolCreditNote, Schema.Struc
|
|
|
3298
3259
|
readonly paymentMeans: Schema.optional<Schema.$Array<typeof PeppolPaymentMeans>>;
|
|
3299
3260
|
readonly paymentTerms: Schema.optional<typeof PeppolPaymentTerms>;
|
|
3300
3261
|
readonly allowanceCharges: Schema.optional<Schema.$Array<typeof PeppolAllowanceCharge>>;
|
|
3301
|
-
readonly taxTotals: Schema.$Array<typeof
|
|
3262
|
+
readonly taxTotals: Schema.$Array<typeof PeppolTaxTotal>;
|
|
3302
3263
|
readonly legalMonetaryTotal: typeof PeppolLegalMonetaryTotal;
|
|
3303
3264
|
/**
|
|
3304
3265
|
* @description CREDIT NOTE LINE.
|
|
@@ -3392,10 +3353,6 @@ declare const PeppolDocumentResponseDocumentReference_base: OpaqueSchema<PeppolD
|
|
|
3392
3353
|
* @see {@link PeppolMessageLevelResponseDocumentResponse}
|
|
3393
3354
|
*/
|
|
3394
3355
|
declare class PeppolDocumentResponseDocumentReference extends PeppolDocumentResponseDocumentReference_base {}
|
|
3395
|
-
/**
|
|
3396
|
-
* @description Alias of {@link PeppolDocumentResponseDocumentReference} under the message level response naming.
|
|
3397
|
-
*/
|
|
3398
|
-
type PeppolMessageLevelDocumentResponseDocumentReference = PeppolDocumentResponseDocumentReference;
|
|
3399
3356
|
//#endregion
|
|
3400
3357
|
//#region src/schemas/peppol-document-response-document-schema.d.ts
|
|
3401
3358
|
declare const PeppolDocumentResponseDocument_base: OpaqueSchema<PeppolDocumentResponseDocument, Schema.Struct<{
|
|
@@ -3430,10 +3387,6 @@ declare const PeppolDocumentResponseDocument_base: OpaqueSchema<PeppolDocumentRe
|
|
|
3430
3387
|
* @see {@link PeppolMessageLevelResponseDocumentResponse}
|
|
3431
3388
|
*/
|
|
3432
3389
|
declare class PeppolDocumentResponseDocument extends PeppolDocumentResponseDocument_base {}
|
|
3433
|
-
/**
|
|
3434
|
-
* @description Alias of {@link PeppolDocumentResponseDocument} under the message level response naming.
|
|
3435
|
-
*/
|
|
3436
|
-
type PeppolMessageLevelResponseDocumentResponseDocument = PeppolDocumentResponseDocument;
|
|
3437
3390
|
//#endregion
|
|
3438
3391
|
//#region src/schemas/peppol-document-response-line-response-content-schema.d.ts
|
|
3439
3392
|
declare const PeppolStatus_base: OpaqueSchema<PeppolStatus, Schema.Struct<{
|
|
@@ -3552,10 +3505,6 @@ declare const PeppolDocumentResponseLineResponse_base: OpaqueSchema<PeppolDocume
|
|
|
3552
3505
|
* @see {@link PeppolMessageLevelResponseDocumentResponse}
|
|
3553
3506
|
*/
|
|
3554
3507
|
declare class PeppolDocumentResponseLineResponse extends PeppolDocumentResponseLineResponse_base {}
|
|
3555
|
-
/**
|
|
3556
|
-
* @description Alias of {@link PeppolDocumentResponseLineResponse} under the message level response naming.
|
|
3557
|
-
*/
|
|
3558
|
-
type PeppolMessageLevelDocumentResponseLineResponse = PeppolDocumentResponseLineResponse;
|
|
3559
3508
|
//#endregion
|
|
3560
3509
|
//#region src/schemas/peppol-message-level-response-document-response-schema.d.ts
|
|
3561
3510
|
declare const PeppolMessageLevelResponseDocumentResponse_base: OpaqueSchema<PeppolMessageLevelResponseDocumentResponse, Schema.Struct<{
|
|
@@ -3762,7 +3711,7 @@ declare const PeppolInvoiceResponseStatusReasonCodeAction_base: OpaqueSchema<Pep
|
|
|
3762
3711
|
* @see {@link PeppolInvoiceResponseStatusReasonCode}
|
|
3763
3712
|
*/
|
|
3764
3713
|
declare class PeppolInvoiceResponseStatusReasonCodeAction extends PeppolInvoiceResponseStatusReasonCodeAction_base {}
|
|
3765
|
-
declare const PeppolInvoiceResponseStatusReasonCode_base:
|
|
3714
|
+
declare const PeppolInvoiceResponseStatusReasonCode_base: Schema.Union<readonly [typeof PeppolInvoiceResponseStatusReasonCodeAction, typeof PeppolInvoiceResponseStatusReasonCodeReason]>;
|
|
3766
3715
|
/**
|
|
3767
3716
|
* @description Union of the accepted status clarification reasons and actions on an invoice response.
|
|
3768
3717
|
*
|
|
@@ -3849,10 +3798,6 @@ declare const PeppolInvoiceResponseDocumentActualResponseStatus_base: OpaqueSche
|
|
|
3849
3798
|
* @see {@link PeppolInvoiceResponseDocumentActualResponse}
|
|
3850
3799
|
*/
|
|
3851
3800
|
declare class PeppolInvoiceResponseDocumentActualResponseStatus extends PeppolInvoiceResponseDocumentActualResponseStatus_base {}
|
|
3852
|
-
/**
|
|
3853
|
-
* @description Alias of {@link PeppolInvoiceResponseDocumentActualResponseStatus}.
|
|
3854
|
-
*/
|
|
3855
|
-
type InvoiceResponseDocumentActualResponseStatus = PeppolInvoiceResponseDocumentActualResponseStatus;
|
|
3856
3801
|
//#endregion
|
|
3857
3802
|
//#region src/schemas/peppol-invoice-response-document-actual-response-schema.d.ts
|
|
3858
3803
|
/**
|
|
@@ -3958,7 +3903,7 @@ declare const PeppolInvoiceResponseDocumentActualResponseWithStatus_base: Opaque
|
|
|
3958
3903
|
* @see {@link PeppolInvoiceResponseDocumentActualResponse}
|
|
3959
3904
|
*/
|
|
3960
3905
|
declare class PeppolInvoiceResponseDocumentActualResponseWithStatus extends PeppolInvoiceResponseDocumentActualResponseWithStatus_base {}
|
|
3961
|
-
declare const PeppolInvoiceResponseDocumentActualResponse_base:
|
|
3906
|
+
declare const PeppolInvoiceResponseDocumentActualResponse_base: Schema.Union<readonly [typeof PeppolInvoiceResponseDocumentActualResponseWithStatus, typeof PeppolInvoiceResponseDocumentActualResponseWithoutStatus]>;
|
|
3962
3907
|
/**
|
|
3963
3908
|
* @description Union of the invoice response variants selected by `cbc:ResponseCode`: one that requires a clarification and one that does not.
|
|
3964
3909
|
*
|
|
@@ -3970,10 +3915,6 @@ declare const PeppolInvoiceResponseDocumentActualResponse_base: OpaqueSchema<Pep
|
|
|
3970
3915
|
* @see {@link PeppolInvoiceResponseDocumentResponse}
|
|
3971
3916
|
*/
|
|
3972
3917
|
declare class PeppolInvoiceResponseDocumentActualResponse extends PeppolInvoiceResponseDocumentActualResponse_base {}
|
|
3973
|
-
/**
|
|
3974
|
-
* @description Alias of {@link PeppolInvoiceResponseDocumentActualResponse}.
|
|
3975
|
-
*/
|
|
3976
|
-
type InvoiceResponseDocumentActualResponse = PeppolInvoiceResponseDocumentActualResponse;
|
|
3977
3918
|
//#endregion
|
|
3978
3919
|
//#region src/schemas/utils/format-quantity-with-unit.d.ts
|
|
3979
3920
|
/**
|
|
@@ -4270,10 +4211,6 @@ declare const PeppolInvoiceResponseDocumentResponseParty_base: OpaqueSchema<Pepp
|
|
|
4270
4211
|
* @description Party schema used under `cac:DocumentReference/(cac:IssuerParty|cac:RecipientParty)`
|
|
4271
4212
|
*/
|
|
4272
4213
|
declare class PeppolInvoiceResponseDocumentResponseParty extends PeppolInvoiceResponseDocumentResponseParty_base {}
|
|
4273
|
-
/**
|
|
4274
|
-
* @description Alias of {@link PeppolInvoiceResponseDocumentResponseParty}.
|
|
4275
|
-
*/
|
|
4276
|
-
type PeppolInvoiceDocumentResponseParty = PeppolInvoiceResponseDocumentResponseParty;
|
|
4277
4214
|
declare const PeppolInvoiceResponseDocumentReference_base: OpaqueSchema<PeppolInvoiceResponseDocumentReference, Schema.Struct<{
|
|
4278
4215
|
/**
|
|
4279
4216
|
* @description An identifier for the invoice that the status applies to. The invoice identifier must be of the main invoice number that appears in the invoice
|
|
@@ -4441,7 +4378,7 @@ declare const isPeppolMessageLevelResponse: <I>(input: I) => input is I & Peppol
|
|
|
4441
4378
|
* @see {@link PeppolDocumentSchema}
|
|
4442
4379
|
*/
|
|
4443
4380
|
declare const isPeppolInvoiceResponse: <I>(input: I) => input is I & PeppolInvoiceResponse;
|
|
4444
|
-
declare const PeppolDocumentSchema_base:
|
|
4381
|
+
declare const PeppolDocumentSchema_base: Schema.decodeTo<Schema.Union<readonly [typeof PeppolInvoice, typeof PeppolCreditNote, typeof PeppolMessageLevelResponse, typeof PeppolInvoiceResponse]>, Schema.String, never, never>;
|
|
4445
4382
|
/**
|
|
4446
4383
|
* @description Union of every supported PEPPOL business document. Members discriminate cleanly: invoice vs credit note via `invoiceLines`/`creditNoteLines`,
|
|
4447
4384
|
* message-level vs invoice response via the `profileId` literal. Decodes and encodes XML strings by dispatching on the root element;
|
|
@@ -4532,5 +4469,5 @@ declare const peppolReferenceSchema: Schema.Union<readonly [typeof PeppolReferen
|
|
|
4532
4469
|
*/
|
|
4533
4470
|
type PeppolReferenceSchema = Schema.Schema.Type<typeof peppolReferenceSchema>;
|
|
4534
4471
|
//#endregion
|
|
4535
|
-
export {
|
|
4536
|
-
//# sourceMappingURL=index-
|
|
4472
|
+
export { PeppolDocumentResponseDocument as $, PeppolAmountEncoded as $n, PeppolDocumentType as $t, isValidProcess as A, PeppolVatDateCode as An, PeppolContractDocumentReference as At, withoutStatusCodes as B, PeppolBillingReference as Bn, PeppolVatexCode as Bt, PeppolInvoiceResponseSenderParty as C, PeppolPartyTaxSchemeId as Cn, PeppolInvoiceLinePeriod as Ct, TimeIntlUnit as D, PeppolOrderReference as Dn, PeppolLineAllowanceChargeEncoded as Dt, IntlUnit as E, PeppolContact as En, PeppolLineAllowanceCharge as Et, formatQuantityWithUnit as F, PeppolAddress as Fn, PeppolTaxSubTotal as Ft, PeppolInvoiceResponseStatusReasonCodeReason as G, PeppolAllowanceChargeEncoded as Gn, PeppolParticipantIdentifierCode as Gt, PeppolInvoiceResponseDocumentActualResponseStatus as H, BaseAllowanceCharge as Hn, processFromDocumentTypeSchema as Ht, PeppolInvoiceResponseDocumentActualResponse as I, PeppolAddressLine as In, PeppolTaxSubTotalCategory as It, PeppolMessageLevelResponseDocumentResponse as J, PeppolDutyTaxFeeCategoryCode as Jn, PeppolItemClassificationCode as Jt, PeppolMessageLevelResponse as K, PeppolCharge as Kn, PeppolOpStatusReason as Kt, PeppolInvoiceResponseDocumentActualResponseWithStatus as L, PeppolCountryCode as Ln, PeppolTaxSubTotalCategoryEncoded as Lt, isValidCreditNoteTypeCode as M, PeppolDeliveryLocation as Mn, PeppolOriginatorDocumentReference as Mt, getInvoiceTypeCodeDescription as N, PeppolDeliveryParty as Nn, PeppolReceiptDocumentReference as Nt, quantityToIntlUnitMap as O, PeppolLegalMonetaryTotal as On, PeppolLineCharge as Ot, getCreditNoteTypeCodeDescription as P, PeppolDeliveryPartyPartyName as Pn, PeppolTaxTotal as Pt, PeppolStatus as Q, PeppolAmount as Qn, PeppolDocumentTypeScheme as Qt, PeppolInvoiceResponseDocumentActualResponseWithoutStatus as R, PeppolCountryCodeValue as Rn, PeppolTaxCategory as Rt, PeppolInvoiceResponseParty as S, PeppolPartyTaxScheme as Sn, PeppolItemClassification as St, BaseIntlUnit as T, PeppolIdentifier as Tn, PeppolLineAllowance as Tt, PeppolInvoiceResponseStatusReasonCode as U, PeppolAllowance as Un, PeppolProcess as Ut, PeppolInvoiceResponseCondition as V, PeppolInvoiceDocumentReference as Vn, PeppolQuantityUnitCode as Vt, PeppolInvoiceResponseStatusReasonCodeAction as W, PeppolAllowanceCharge as Wn, PeppolProcesses as Wt, PeppolLineReference as X, PeppolChargeReasonCode as Xn, PeppolInvoiceStatusCodes as Xt, PeppolDocumentResponseLineResponse as Y, PeppolDutyTaxFeeCategoryCodeEncoded as Yn, PeppolInvoiceTypeCode as Yt, PeppolDocumentResponseLineResponseContent as Z, PeppolAllowanceChargeReasonCode as Zn, PeppolDocumentTypeValue as Zt, PeppolInvoiceResponse as _, PeppolPartyEndpointId as _n, PeppolCommodityClassifications as _t, DEFAULT_CUSTOMIZATION_ID as a, PeppolCardAccount as an, PeppolId as ar, PeppolInvoice as at, PeppolInvoiceResponseDocumentResponseParty as b, PeppolPartySchema as bn, PeppolSellersItemIdentification as bt, PeppolDocumentDecoded as c, PeppolPaymentMandate as cn, PeppolMimeCode as cr, PeppolInvoiceLineEncoded as ct, PeppolDocumentSchema as d, PeppolPaymentMeansCode as dn, PeppolLinePrice as dt, PeppolDocumentTypeCode as en, PeppolCurrencyCode as er, PeppolDocumentResponseDocumentReference as et, PeppolMessage as f, PeppolPaymentMeansCodeValue as fn, PeppolQuantity as ft, isPeppolMessageLevelResponse as g, PeppolPayeePartyName as gn, PeppolBuyersItemIdentification as gt, isPeppolInvoiceResponse as h, PeppolPayeePartyLegalEntity as hn, PeppolAdditionalItemProperties as ht, DEFAULT_PROFILE_ID as i, PeppolPaymentTerms as in, PeppolAttachmentExternalReference as ir, PeppolCreditNoteLineEncoded as it, isValidInvoiceTypeCode as j, PeppolDelivery as jn, PeppolDespatchDocumentReference as jt, quantityUnitCodeToIntlUnit as k, PeppolInvoicePeriod as kn, PeppolBillingBase as kt, PeppolDocumentEncoded as l, PeppolPaymentMandatePayerFinancialAccountId as ln, PeppolBase64 as lr, PeppolBaseLine as lt, isPeppolInvoice as m, PeppolPayeePartyIdentification as mn, PriceAllowanceCharge as mt, PeppolReferenceSchema as n, PeppolApplicationResponseTypeCode as nn, PeppolAdditionalDocumentReference as nr, PeppolCreditNote as nt, PeppolAllDocuments as o, PeppolPayeeFinancialAccount as on, PeppolAdditionalDocumentReferenceCode as or, PeppolProjectReference as ot, isPeppolCreditNote as p, PeppolPayeeParty as pn, PeppolLinePriceAllowanceCharge as pt, PeppolXsdTime as q, PeppolTaxCategoryTaxSchemeId as qn, PeppolOpStatusAction as qt, peppolReferenceSchema as r, PeppolTaxRepresentative as rn, PeppolAttachment as rr, PeppolCreditNoteLine as rt, PeppolDocument as s, PeppolPayeeFinancialAccountFinancialInstitutionBranch as sn, PeppolBinaryObject as sr, PeppolInvoiceLine as st, PeppolReferenceId as t, PeppolCreditNoteTypeCode as tn, PeppolCurrencyCodeEncoded as tr, PeppolMessageLevelResponseParty as tt, PeppolDocumentLine as u, PeppolPaymentMeans as un, PeppolIsoDateString as ur, PeppolOrderLineReference as ut, PeppolInvoiceResponseDocumentReference as v, PeppolPartyIdentification as vn, PeppolLineItem as vt, PeppolVatRegex as w, PeppolPartyLegalEntity as wn, BaseLineAllowanceCharge as wt, PeppolInvoiceResponseDocumentResponsePartyName as x, PeppolElectronicAddressCode as xn, PeppolStandardItemIdentification as xt, PeppolInvoiceResponseDocumentResponse as y, PeppolPartyName as yn, PeppolOriginCountryCode as yt, withStatusCodes as z, PeppolIcdCode as zn, PeppolTaxSchemeId as zt };
|
|
4473
|
+
//# sourceMappingURL=index-XG-N6PcG.d.ts.map
|
|
@@ -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
|
|
2
|
-
export {
|
|
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 };
|