increase 0.14.0 → 0.15.0
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/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/resources/ach-transfers.d.ts +7 -0
- package/resources/ach-transfers.d.ts.map +1 -1
- package/resources/ach-transfers.js.map +1 -1
- package/resources/ach-transfers.mjs.map +1 -1
- package/resources/card-payments.d.ts +127 -0
- package/resources/card-payments.d.ts.map +1 -1
- package/resources/card-payments.js.map +1 -1
- package/resources/card-payments.mjs.map +1 -1
- package/resources/exports.d.ts +52 -2
- package/resources/exports.d.ts.map +1 -1
- package/resources/exports.js.map +1 -1
- package/resources/exports.mjs.map +1 -1
- package/resources/simulations/ach-transfers.d.ts +46 -0
- package/resources/simulations/ach-transfers.d.ts.map +1 -1
- package/resources/simulations/ach-transfers.js.map +1 -1
- package/resources/simulations/ach-transfers.mjs.map +1 -1
- package/resources/simulations/interest-payments.d.ts +46 -0
- package/resources/simulations/interest-payments.d.ts.map +1 -1
- package/resources/simulations/interest-payments.js.map +1 -1
- package/resources/simulations/interest-payments.mjs.map +1 -1
- package/resources/simulations/real-time-payments-transfers.d.ts +46 -0
- package/resources/simulations/real-time-payments-transfers.d.ts.map +1 -1
- package/resources/simulations/real-time-payments-transfers.js.map +1 -1
- package/resources/simulations/real-time-payments-transfers.mjs.map +1 -1
- package/resources/simulations/wire-transfers.d.ts +46 -0
- package/resources/simulations/wire-transfers.d.ts.map +1 -1
- package/resources/simulations/wire-transfers.js.map +1 -1
- package/resources/simulations/wire-transfers.mjs.map +1 -1
- package/resources/transactions.d.ts +46 -0
- package/resources/transactions.d.ts.map +1 -1
- package/resources/transactions.js.map +1 -1
- package/resources/transactions.mjs.map +1 -1
- package/src/resources/ach-transfers.ts +8 -0
- package/src/resources/card-payments.ts +147 -0
- package/src/resources/exports.ts +59 -2
- package/src/resources/simulations/ach-transfers.ts +54 -0
- package/src/resources/simulations/interest-payments.ts +54 -0
- package/src/resources/simulations/real-time-payments-transfers.ts +54 -0
- package/src/resources/simulations/wire-transfers.ts +54 -0
- package/src/resources/transactions.ts +54 -0
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -821,6 +821,11 @@ export namespace Transaction {
|
|
|
821
821
|
*/
|
|
822
822
|
merchant_state: string | null;
|
|
823
823
|
|
|
824
|
+
/**
|
|
825
|
+
* Network-specific identifiers for this refund.
|
|
826
|
+
*/
|
|
827
|
+
network_identifiers: CardRefund.NetworkIdentifiers;
|
|
828
|
+
|
|
824
829
|
/**
|
|
825
830
|
* Additional details about the card purchase, such as tax and industry-specific
|
|
826
831
|
* fields.
|
|
@@ -840,6 +845,28 @@ export namespace Transaction {
|
|
|
840
845
|
}
|
|
841
846
|
|
|
842
847
|
export namespace CardRefund {
|
|
848
|
+
/**
|
|
849
|
+
* Network-specific identifiers for this refund.
|
|
850
|
+
*/
|
|
851
|
+
export interface NetworkIdentifiers {
|
|
852
|
+
/**
|
|
853
|
+
* A network assigned business ID that identifies the acquirer that processed this
|
|
854
|
+
* transaction.
|
|
855
|
+
*/
|
|
856
|
+
acquirer_business_id: string;
|
|
857
|
+
|
|
858
|
+
/**
|
|
859
|
+
* A globally unique identifier for this settlement.
|
|
860
|
+
*/
|
|
861
|
+
acquirer_reference_number: string;
|
|
862
|
+
|
|
863
|
+
/**
|
|
864
|
+
* A globally unique transaction identifier provided by the card network, used
|
|
865
|
+
* across multiple life-cycle requests.
|
|
866
|
+
*/
|
|
867
|
+
transaction_id: string | null;
|
|
868
|
+
}
|
|
869
|
+
|
|
843
870
|
/**
|
|
844
871
|
* Additional details about the card purchase, such as tax and industry-specific
|
|
845
872
|
* fields.
|
|
@@ -1479,6 +1506,11 @@ export namespace Transaction {
|
|
|
1479
1506
|
*/
|
|
1480
1507
|
merchant_state: string | null;
|
|
1481
1508
|
|
|
1509
|
+
/**
|
|
1510
|
+
* Network-specific identifiers for this refund.
|
|
1511
|
+
*/
|
|
1512
|
+
network_identifiers: CardSettlement.NetworkIdentifiers;
|
|
1513
|
+
|
|
1482
1514
|
/**
|
|
1483
1515
|
* The identifier of the Pending Transaction associated with this Transaction.
|
|
1484
1516
|
*/
|
|
@@ -1514,6 +1546,28 @@ export namespace Transaction {
|
|
|
1514
1546
|
}
|
|
1515
1547
|
|
|
1516
1548
|
export namespace CardSettlement {
|
|
1549
|
+
/**
|
|
1550
|
+
* Network-specific identifiers for this refund.
|
|
1551
|
+
*/
|
|
1552
|
+
export interface NetworkIdentifiers {
|
|
1553
|
+
/**
|
|
1554
|
+
* A network assigned business ID that identifies the acquirer that processed this
|
|
1555
|
+
* transaction.
|
|
1556
|
+
*/
|
|
1557
|
+
acquirer_business_id: string;
|
|
1558
|
+
|
|
1559
|
+
/**
|
|
1560
|
+
* A globally unique identifier for this settlement.
|
|
1561
|
+
*/
|
|
1562
|
+
acquirer_reference_number: string;
|
|
1563
|
+
|
|
1564
|
+
/**
|
|
1565
|
+
* A globally unique transaction identifier provided by the card network, used
|
|
1566
|
+
* across multiple life-cycle requests.
|
|
1567
|
+
*/
|
|
1568
|
+
transaction_id: string | null;
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1517
1571
|
/**
|
|
1518
1572
|
* Additional details about the card purchase, such as tax and industry-specific
|
|
1519
1573
|
* fields.
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.15.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.15.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.15.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|