@lucianpacurar/iso20022.js 0.2.12 → 0.2.14
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.d.ts +2 -2
- package/dist/index.js +1044 -720
- package/dist/index.mjs +1044 -720
- package/dist/src/pain/001/sepa-multi-credit-payment-initiation.d.ts +2 -1
- package/dist/src/pain/008/sepa-direct-debit-payment-initiation.d.ts +0 -1
- package/dist/src/parseUtils.d.ts +1 -1
- package/dist/src/utils/format.d.ts +1 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -889,6 +889,8 @@ interface SEPAMultiCreditPaymentInstructionGroup {
|
|
|
889
889
|
payments: AtLeastOne$4<SEPACreditPaymentInstruction>;
|
|
890
890
|
/** Optional category purpose code for this payment information block. */
|
|
891
891
|
categoryPurpose?: ExternalCategoryPurpose;
|
|
892
|
+
/** Indicates whether transactions should be booked in batch. Defaults to false. */
|
|
893
|
+
batchBooking?: boolean;
|
|
892
894
|
}
|
|
893
895
|
/**
|
|
894
896
|
* Configuration for SEPA Multi Credit Payment Initiation.
|
|
@@ -938,7 +940,6 @@ declare class SEPAMultiCreditPaymentInitiation extends PaymentInitiation {
|
|
|
938
940
|
messageId: string;
|
|
939
941
|
creationDate: Date;
|
|
940
942
|
paymentInstructions: AtLeastOne$4<SEPAMultiCreditPaymentInstructionGroup>;
|
|
941
|
-
paymentInformationIdBase: string;
|
|
942
943
|
private formattedPaymentSum;
|
|
943
944
|
private totalTransactionCount;
|
|
944
945
|
/**
|
|
@@ -1382,7 +1383,6 @@ declare class SEPADirectDebitPaymentInitiation extends PaymentInitiation {
|
|
|
1382
1383
|
messageId: string;
|
|
1383
1384
|
creationDate: Date;
|
|
1384
1385
|
paymentInstructions: AtLeastOne$1<SEPADirectDebitPaymentInstructionGroup>;
|
|
1385
|
-
paymentInformationIdBase: string;
|
|
1386
1386
|
private formattedPaymentSum;
|
|
1387
1387
|
private totalTransactionCount;
|
|
1388
1388
|
/**
|