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.
Files changed (46) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +1 -1
  3. package/resources/ach-transfers.d.ts +7 -0
  4. package/resources/ach-transfers.d.ts.map +1 -1
  5. package/resources/ach-transfers.js.map +1 -1
  6. package/resources/ach-transfers.mjs.map +1 -1
  7. package/resources/card-payments.d.ts +127 -0
  8. package/resources/card-payments.d.ts.map +1 -1
  9. package/resources/card-payments.js.map +1 -1
  10. package/resources/card-payments.mjs.map +1 -1
  11. package/resources/exports.d.ts +52 -2
  12. package/resources/exports.d.ts.map +1 -1
  13. package/resources/exports.js.map +1 -1
  14. package/resources/exports.mjs.map +1 -1
  15. package/resources/simulations/ach-transfers.d.ts +46 -0
  16. package/resources/simulations/ach-transfers.d.ts.map +1 -1
  17. package/resources/simulations/ach-transfers.js.map +1 -1
  18. package/resources/simulations/ach-transfers.mjs.map +1 -1
  19. package/resources/simulations/interest-payments.d.ts +46 -0
  20. package/resources/simulations/interest-payments.d.ts.map +1 -1
  21. package/resources/simulations/interest-payments.js.map +1 -1
  22. package/resources/simulations/interest-payments.mjs.map +1 -1
  23. package/resources/simulations/real-time-payments-transfers.d.ts +46 -0
  24. package/resources/simulations/real-time-payments-transfers.d.ts.map +1 -1
  25. package/resources/simulations/real-time-payments-transfers.js.map +1 -1
  26. package/resources/simulations/real-time-payments-transfers.mjs.map +1 -1
  27. package/resources/simulations/wire-transfers.d.ts +46 -0
  28. package/resources/simulations/wire-transfers.d.ts.map +1 -1
  29. package/resources/simulations/wire-transfers.js.map +1 -1
  30. package/resources/simulations/wire-transfers.mjs.map +1 -1
  31. package/resources/transactions.d.ts +46 -0
  32. package/resources/transactions.d.ts.map +1 -1
  33. package/resources/transactions.js.map +1 -1
  34. package/resources/transactions.mjs.map +1 -1
  35. package/src/resources/ach-transfers.ts +8 -0
  36. package/src/resources/card-payments.ts +147 -0
  37. package/src/resources/exports.ts +59 -2
  38. package/src/resources/simulations/ach-transfers.ts +54 -0
  39. package/src/resources/simulations/interest-payments.ts +54 -0
  40. package/src/resources/simulations/real-time-payments-transfers.ts +54 -0
  41. package/src/resources/simulations/wire-transfers.ts +54 -0
  42. package/src/resources/transactions.ts +54 -0
  43. package/src/version.ts +1 -1
  44. package/version.d.ts +1 -1
  45. package/version.js +1 -1
  46. 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.14.0'; // x-release-please-version
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.14.0";
1
+ export declare const VERSION = "0.15.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '0.14.0'; // x-release-please-version
4
+ exports.VERSION = '0.15.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.14.0'; // x-release-please-version
1
+ export const VERSION = '0.15.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map