increase 0.13.1 → 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 (71) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +1 -1
  3. package/resources/accounts.d.ts +7 -0
  4. package/resources/accounts.d.ts.map +1 -1
  5. package/resources/accounts.js.map +1 -1
  6. package/resources/accounts.mjs.map +1 -1
  7. package/resources/ach-transfers.d.ts +7 -0
  8. package/resources/ach-transfers.d.ts.map +1 -1
  9. package/resources/ach-transfers.js.map +1 -1
  10. package/resources/ach-transfers.mjs.map +1 -1
  11. package/resources/card-payments.d.ts +215 -0
  12. package/resources/card-payments.d.ts.map +1 -1
  13. package/resources/card-payments.js.map +1 -1
  14. package/resources/card-payments.mjs.map +1 -1
  15. package/resources/declined-transactions.d.ts +25 -0
  16. package/resources/declined-transactions.d.ts.map +1 -1
  17. package/resources/declined-transactions.js.map +1 -1
  18. package/resources/declined-transactions.mjs.map +1 -1
  19. package/resources/exports.d.ts +52 -2
  20. package/resources/exports.d.ts.map +1 -1
  21. package/resources/exports.js.map +1 -1
  22. package/resources/exports.mjs.map +1 -1
  23. package/resources/pending-transactions.d.ts +25 -0
  24. package/resources/pending-transactions.d.ts.map +1 -1
  25. package/resources/pending-transactions.js.map +1 -1
  26. package/resources/pending-transactions.mjs.map +1 -1
  27. package/resources/real-time-decisions.d.ts +25 -0
  28. package/resources/real-time-decisions.d.ts.map +1 -1
  29. package/resources/real-time-decisions.js.map +1 -1
  30. package/resources/real-time-decisions.mjs.map +1 -1
  31. package/resources/simulations/ach-transfers.d.ts +71 -0
  32. package/resources/simulations/ach-transfers.d.ts.map +1 -1
  33. package/resources/simulations/ach-transfers.js.map +1 -1
  34. package/resources/simulations/ach-transfers.mjs.map +1 -1
  35. package/resources/simulations/cards.d.ts +50 -0
  36. package/resources/simulations/cards.d.ts.map +1 -1
  37. package/resources/simulations/cards.js.map +1 -1
  38. package/resources/simulations/cards.mjs.map +1 -1
  39. package/resources/simulations/interest-payments.d.ts +46 -0
  40. package/resources/simulations/interest-payments.d.ts.map +1 -1
  41. package/resources/simulations/interest-payments.js.map +1 -1
  42. package/resources/simulations/interest-payments.mjs.map +1 -1
  43. package/resources/simulations/real-time-payments-transfers.d.ts +71 -0
  44. package/resources/simulations/real-time-payments-transfers.d.ts.map +1 -1
  45. package/resources/simulations/real-time-payments-transfers.js.map +1 -1
  46. package/resources/simulations/real-time-payments-transfers.mjs.map +1 -1
  47. package/resources/simulations/wire-transfers.d.ts +46 -0
  48. package/resources/simulations/wire-transfers.d.ts.map +1 -1
  49. package/resources/simulations/wire-transfers.js.map +1 -1
  50. package/resources/simulations/wire-transfers.mjs.map +1 -1
  51. package/resources/transactions.d.ts +46 -0
  52. package/resources/transactions.d.ts.map +1 -1
  53. package/resources/transactions.js.map +1 -1
  54. package/resources/transactions.mjs.map +1 -1
  55. package/src/resources/accounts.ts +8 -0
  56. package/src/resources/ach-transfers.ts +8 -0
  57. package/src/resources/card-payments.ts +250 -0
  58. package/src/resources/declined-transactions.ts +29 -0
  59. package/src/resources/exports.ts +59 -2
  60. package/src/resources/pending-transactions.ts +29 -0
  61. package/src/resources/real-time-decisions.ts +29 -0
  62. package/src/resources/simulations/ach-transfers.ts +83 -0
  63. package/src/resources/simulations/cards.ts +58 -0
  64. package/src/resources/simulations/interest-payments.ts +54 -0
  65. package/src/resources/simulations/real-time-payments-transfers.ts +83 -0
  66. package/src/resources/simulations/wire-transfers.ts +54 -0
  67. package/src/resources/transactions.ts +54 -0
  68. package/src/version.ts +1 -1
  69. package/version.d.ts +1 -1
  70. package/version.js +1 -1
  71. package/version.mjs +1 -1
@@ -357,6 +357,11 @@ export namespace PendingTransaction {
357
357
  */
358
358
  network_details: CardAuthorization.NetworkDetails;
359
359
 
360
+ /**
361
+ * Network-specific identifiers for a specific request or transaction.
362
+ */
363
+ network_identifiers: CardAuthorization.NetworkIdentifiers;
364
+
360
365
  /**
361
366
  * The identifier of the Pending Transaction associated with this Transaction.
362
367
  */
@@ -488,6 +493,30 @@ export namespace PendingTransaction {
488
493
  }
489
494
  }
490
495
 
496
+ /**
497
+ * Network-specific identifiers for a specific request or transaction.
498
+ */
499
+ export interface NetworkIdentifiers {
500
+ /**
501
+ * A life-cycle identifier used across e.g., an authorization and a reversal.
502
+ * Expected to be unique per acquirer within a window of time. For some card
503
+ * networks the retrieval reference number includes the trace counter.
504
+ */
505
+ retrieval_reference_number: string | null;
506
+
507
+ /**
508
+ * A counter used to verify an individual authorization. Expected to be unique per
509
+ * acquirer within a window of time.
510
+ */
511
+ trace_number: string | null;
512
+
513
+ /**
514
+ * A globally unique transaction identifier provided by the card network, used
515
+ * across multiple life-cycle requests.
516
+ */
517
+ transaction_id: string | null;
518
+ }
519
+
491
520
  /**
492
521
  * Fields related to verification of cardholder-provided values.
493
522
  */
@@ -154,6 +154,11 @@ export namespace RealTimeDecision {
154
154
  */
155
155
  network_details: CardAuthorization.NetworkDetails;
156
156
 
157
+ /**
158
+ * Network-specific identifiers for a specific request or transaction.
159
+ */
160
+ network_identifiers: CardAuthorization.NetworkIdentifiers;
161
+
157
162
  /**
158
163
  * If the authorization was made in-person with a physical card, the Physical Card
159
164
  * that was used.
@@ -298,6 +303,30 @@ export namespace RealTimeDecision {
298
303
  }
299
304
  }
300
305
 
306
+ /**
307
+ * Network-specific identifiers for a specific request or transaction.
308
+ */
309
+ export interface NetworkIdentifiers {
310
+ /**
311
+ * A life-cycle identifier used across e.g., an authorization and a reversal.
312
+ * Expected to be unique per acquirer within a window of time. For some card
313
+ * networks the retrieval reference number includes the trace counter.
314
+ */
315
+ retrieval_reference_number: string | null;
316
+
317
+ /**
318
+ * A counter used to verify an individual authorization. Expected to be unique per
319
+ * acquirer within a window of time.
320
+ */
321
+ trace_number: string | null;
322
+
323
+ /**
324
+ * A globally unique transaction identifier provided by the card network, used
325
+ * across multiple life-cycle requests.
326
+ */
327
+ transaction_id: string | null;
328
+ }
329
+
301
330
  /**
302
331
  * Fields specific to the type of request, such as an incremental authorization.
303
332
  */
@@ -411,6 +411,11 @@ export namespace ACHTransferSimulation {
411
411
  */
412
412
  network_details: CardDecline.NetworkDetails;
413
413
 
414
+ /**
415
+ * Network-specific identifiers for a specific request or transaction.
416
+ */
417
+ network_identifiers: CardDecline.NetworkIdentifiers;
418
+
414
419
  /**
415
420
  * If the authorization was made in-person with a physical card, the Physical Card
416
421
  * that was used.
@@ -571,6 +576,30 @@ export namespace ACHTransferSimulation {
571
576
  }
572
577
  }
573
578
 
579
+ /**
580
+ * Network-specific identifiers for a specific request or transaction.
581
+ */
582
+ export interface NetworkIdentifiers {
583
+ /**
584
+ * A life-cycle identifier used across e.g., an authorization and a reversal.
585
+ * Expected to be unique per acquirer within a window of time. For some card
586
+ * networks the retrieval reference number includes the trace counter.
587
+ */
588
+ retrieval_reference_number: string | null;
589
+
590
+ /**
591
+ * A counter used to verify an individual authorization. Expected to be unique per
592
+ * acquirer within a window of time.
593
+ */
594
+ trace_number: string | null;
595
+
596
+ /**
597
+ * A globally unique transaction identifier provided by the card network, used
598
+ * across multiple life-cycle requests.
599
+ */
600
+ transaction_id: string | null;
601
+ }
602
+
574
603
  /**
575
604
  * Fields related to verification of cardholder-provided values.
576
605
  */
@@ -1973,6 +2002,11 @@ export namespace ACHTransferSimulation {
1973
2002
  */
1974
2003
  merchant_state: string | null;
1975
2004
 
2005
+ /**
2006
+ * Network-specific identifiers for this refund.
2007
+ */
2008
+ network_identifiers: CardRefund.NetworkIdentifiers;
2009
+
1976
2010
  /**
1977
2011
  * Additional details about the card purchase, such as tax and industry-specific
1978
2012
  * fields.
@@ -1992,6 +2026,28 @@ export namespace ACHTransferSimulation {
1992
2026
  }
1993
2027
 
1994
2028
  export namespace CardRefund {
2029
+ /**
2030
+ * Network-specific identifiers for this refund.
2031
+ */
2032
+ export interface NetworkIdentifiers {
2033
+ /**
2034
+ * A network assigned business ID that identifies the acquirer that processed this
2035
+ * transaction.
2036
+ */
2037
+ acquirer_business_id: string;
2038
+
2039
+ /**
2040
+ * A globally unique identifier for this settlement.
2041
+ */
2042
+ acquirer_reference_number: string;
2043
+
2044
+ /**
2045
+ * A globally unique transaction identifier provided by the card network, used
2046
+ * across multiple life-cycle requests.
2047
+ */
2048
+ transaction_id: string | null;
2049
+ }
2050
+
1995
2051
  /**
1996
2052
  * Additional details about the card purchase, such as tax and industry-specific
1997
2053
  * fields.
@@ -2631,6 +2687,11 @@ export namespace ACHTransferSimulation {
2631
2687
  */
2632
2688
  merchant_state: string | null;
2633
2689
 
2690
+ /**
2691
+ * Network-specific identifiers for this refund.
2692
+ */
2693
+ network_identifiers: CardSettlement.NetworkIdentifiers;
2694
+
2634
2695
  /**
2635
2696
  * The identifier of the Pending Transaction associated with this Transaction.
2636
2697
  */
@@ -2666,6 +2727,28 @@ export namespace ACHTransferSimulation {
2666
2727
  }
2667
2728
 
2668
2729
  export namespace CardSettlement {
2730
+ /**
2731
+ * Network-specific identifiers for this refund.
2732
+ */
2733
+ export interface NetworkIdentifiers {
2734
+ /**
2735
+ * A network assigned business ID that identifies the acquirer that processed this
2736
+ * transaction.
2737
+ */
2738
+ acquirer_business_id: string;
2739
+
2740
+ /**
2741
+ * A globally unique identifier for this settlement.
2742
+ */
2743
+ acquirer_reference_number: string;
2744
+
2745
+ /**
2746
+ * A globally unique transaction identifier provided by the card network, used
2747
+ * across multiple life-cycle requests.
2748
+ */
2749
+ transaction_id: string | null;
2750
+ }
2751
+
2669
2752
  /**
2670
2753
  * Additional details about the card purchase, such as tax and industry-specific
2671
2754
  * fields.
@@ -392,6 +392,11 @@ export namespace CardAuthorizationSimulation {
392
392
  */
393
393
  network_details: CardDecline.NetworkDetails;
394
394
 
395
+ /**
396
+ * Network-specific identifiers for a specific request or transaction.
397
+ */
398
+ network_identifiers: CardDecline.NetworkIdentifiers;
399
+
395
400
  /**
396
401
  * If the authorization was made in-person with a physical card, the Physical Card
397
402
  * that was used.
@@ -552,6 +557,30 @@ export namespace CardAuthorizationSimulation {
552
557
  }
553
558
  }
554
559
 
560
+ /**
561
+ * Network-specific identifiers for a specific request or transaction.
562
+ */
563
+ export interface NetworkIdentifiers {
564
+ /**
565
+ * A life-cycle identifier used across e.g., an authorization and a reversal.
566
+ * Expected to be unique per acquirer within a window of time. For some card
567
+ * networks the retrieval reference number includes the trace counter.
568
+ */
569
+ retrieval_reference_number: string | null;
570
+
571
+ /**
572
+ * A counter used to verify an individual authorization. Expected to be unique per
573
+ * acquirer within a window of time.
574
+ */
575
+ trace_number: string | null;
576
+
577
+ /**
578
+ * A globally unique transaction identifier provided by the card network, used
579
+ * across multiple life-cycle requests.
580
+ */
581
+ transaction_id: string | null;
582
+ }
583
+
555
584
  /**
556
585
  * Fields related to verification of cardholder-provided values.
557
586
  */
@@ -1490,6 +1519,11 @@ export namespace CardAuthorizationSimulation {
1490
1519
  */
1491
1520
  network_details: CardAuthorization.NetworkDetails;
1492
1521
 
1522
+ /**
1523
+ * Network-specific identifiers for a specific request or transaction.
1524
+ */
1525
+ network_identifiers: CardAuthorization.NetworkIdentifiers;
1526
+
1493
1527
  /**
1494
1528
  * The identifier of the Pending Transaction associated with this Transaction.
1495
1529
  */
@@ -1621,6 +1655,30 @@ export namespace CardAuthorizationSimulation {
1621
1655
  }
1622
1656
  }
1623
1657
 
1658
+ /**
1659
+ * Network-specific identifiers for a specific request or transaction.
1660
+ */
1661
+ export interface NetworkIdentifiers {
1662
+ /**
1663
+ * A life-cycle identifier used across e.g., an authorization and a reversal.
1664
+ * Expected to be unique per acquirer within a window of time. For some card
1665
+ * networks the retrieval reference number includes the trace counter.
1666
+ */
1667
+ retrieval_reference_number: string | null;
1668
+
1669
+ /**
1670
+ * A counter used to verify an individual authorization. Expected to be unique per
1671
+ * acquirer within a window of time.
1672
+ */
1673
+ trace_number: string | null;
1674
+
1675
+ /**
1676
+ * A globally unique transaction identifier provided by the card network, used
1677
+ * across multiple life-cycle requests.
1678
+ */
1679
+ transaction_id: string | null;
1680
+ }
1681
+
1624
1682
  /**
1625
1683
  * Fields related to verification of cardholder-provided values.
1626
1684
  */
@@ -821,6 +821,11 @@ export namespace InterestPaymentSimulationResult {
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 InterestPaymentSimulationResult {
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 InterestPaymentSimulationResult {
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 InterestPaymentSimulationResult {
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.
@@ -391,6 +391,11 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
391
391
  */
392
392
  network_details: CardDecline.NetworkDetails;
393
393
 
394
+ /**
395
+ * Network-specific identifiers for a specific request or transaction.
396
+ */
397
+ network_identifiers: CardDecline.NetworkIdentifiers;
398
+
394
399
  /**
395
400
  * If the authorization was made in-person with a physical card, the Physical Card
396
401
  * that was used.
@@ -551,6 +556,30 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
551
556
  }
552
557
  }
553
558
 
559
+ /**
560
+ * Network-specific identifiers for a specific request or transaction.
561
+ */
562
+ export interface NetworkIdentifiers {
563
+ /**
564
+ * A life-cycle identifier used across e.g., an authorization and a reversal.
565
+ * Expected to be unique per acquirer within a window of time. For some card
566
+ * networks the retrieval reference number includes the trace counter.
567
+ */
568
+ retrieval_reference_number: string | null;
569
+
570
+ /**
571
+ * A counter used to verify an individual authorization. Expected to be unique per
572
+ * acquirer within a window of time.
573
+ */
574
+ trace_number: string | null;
575
+
576
+ /**
577
+ * A globally unique transaction identifier provided by the card network, used
578
+ * across multiple life-cycle requests.
579
+ */
580
+ transaction_id: string | null;
581
+ }
582
+
554
583
  /**
555
584
  * Fields related to verification of cardholder-provided values.
556
585
  */
@@ -1953,6 +1982,11 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
1953
1982
  */
1954
1983
  merchant_state: string | null;
1955
1984
 
1985
+ /**
1986
+ * Network-specific identifiers for this refund.
1987
+ */
1988
+ network_identifiers: CardRefund.NetworkIdentifiers;
1989
+
1956
1990
  /**
1957
1991
  * Additional details about the card purchase, such as tax and industry-specific
1958
1992
  * fields.
@@ -1972,6 +2006,28 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
1972
2006
  }
1973
2007
 
1974
2008
  export namespace CardRefund {
2009
+ /**
2010
+ * Network-specific identifiers for this refund.
2011
+ */
2012
+ export interface NetworkIdentifiers {
2013
+ /**
2014
+ * A network assigned business ID that identifies the acquirer that processed this
2015
+ * transaction.
2016
+ */
2017
+ acquirer_business_id: string;
2018
+
2019
+ /**
2020
+ * A globally unique identifier for this settlement.
2021
+ */
2022
+ acquirer_reference_number: string;
2023
+
2024
+ /**
2025
+ * A globally unique transaction identifier provided by the card network, used
2026
+ * across multiple life-cycle requests.
2027
+ */
2028
+ transaction_id: string | null;
2029
+ }
2030
+
1975
2031
  /**
1976
2032
  * Additional details about the card purchase, such as tax and industry-specific
1977
2033
  * fields.
@@ -2611,6 +2667,11 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
2611
2667
  */
2612
2668
  merchant_state: string | null;
2613
2669
 
2670
+ /**
2671
+ * Network-specific identifiers for this refund.
2672
+ */
2673
+ network_identifiers: CardSettlement.NetworkIdentifiers;
2674
+
2614
2675
  /**
2615
2676
  * The identifier of the Pending Transaction associated with this Transaction.
2616
2677
  */
@@ -2646,6 +2707,28 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
2646
2707
  }
2647
2708
 
2648
2709
  export namespace CardSettlement {
2710
+ /**
2711
+ * Network-specific identifiers for this refund.
2712
+ */
2713
+ export interface NetworkIdentifiers {
2714
+ /**
2715
+ * A network assigned business ID that identifies the acquirer that processed this
2716
+ * transaction.
2717
+ */
2718
+ acquirer_business_id: string;
2719
+
2720
+ /**
2721
+ * A globally unique identifier for this settlement.
2722
+ */
2723
+ acquirer_reference_number: string;
2724
+
2725
+ /**
2726
+ * A globally unique transaction identifier provided by the card network, used
2727
+ * across multiple life-cycle requests.
2728
+ */
2729
+ transaction_id: string | null;
2730
+ }
2731
+
2649
2732
  /**
2650
2733
  * Additional details about the card purchase, such as tax and industry-specific
2651
2734
  * fields.
@@ -822,6 +822,11 @@ export namespace WireTransferSimulation {
822
822
  */
823
823
  merchant_state: string | null;
824
824
 
825
+ /**
826
+ * Network-specific identifiers for this refund.
827
+ */
828
+ network_identifiers: CardRefund.NetworkIdentifiers;
829
+
825
830
  /**
826
831
  * Additional details about the card purchase, such as tax and industry-specific
827
832
  * fields.
@@ -841,6 +846,28 @@ export namespace WireTransferSimulation {
841
846
  }
842
847
 
843
848
  export namespace CardRefund {
849
+ /**
850
+ * Network-specific identifiers for this refund.
851
+ */
852
+ export interface NetworkIdentifiers {
853
+ /**
854
+ * A network assigned business ID that identifies the acquirer that processed this
855
+ * transaction.
856
+ */
857
+ acquirer_business_id: string;
858
+
859
+ /**
860
+ * A globally unique identifier for this settlement.
861
+ */
862
+ acquirer_reference_number: string;
863
+
864
+ /**
865
+ * A globally unique transaction identifier provided by the card network, used
866
+ * across multiple life-cycle requests.
867
+ */
868
+ transaction_id: string | null;
869
+ }
870
+
844
871
  /**
845
872
  * Additional details about the card purchase, such as tax and industry-specific
846
873
  * fields.
@@ -1480,6 +1507,11 @@ export namespace WireTransferSimulation {
1480
1507
  */
1481
1508
  merchant_state: string | null;
1482
1509
 
1510
+ /**
1511
+ * Network-specific identifiers for this refund.
1512
+ */
1513
+ network_identifiers: CardSettlement.NetworkIdentifiers;
1514
+
1483
1515
  /**
1484
1516
  * The identifier of the Pending Transaction associated with this Transaction.
1485
1517
  */
@@ -1515,6 +1547,28 @@ export namespace WireTransferSimulation {
1515
1547
  }
1516
1548
 
1517
1549
  export namespace CardSettlement {
1550
+ /**
1551
+ * Network-specific identifiers for this refund.
1552
+ */
1553
+ export interface NetworkIdentifiers {
1554
+ /**
1555
+ * A network assigned business ID that identifies the acquirer that processed this
1556
+ * transaction.
1557
+ */
1558
+ acquirer_business_id: string;
1559
+
1560
+ /**
1561
+ * A globally unique identifier for this settlement.
1562
+ */
1563
+ acquirer_reference_number: string;
1564
+
1565
+ /**
1566
+ * A globally unique transaction identifier provided by the card network, used
1567
+ * across multiple life-cycle requests.
1568
+ */
1569
+ transaction_id: string | null;
1570
+ }
1571
+
1518
1572
  /**
1519
1573
  * Additional details about the card purchase, such as tax and industry-specific
1520
1574
  * fields.
@@ -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.13.1'; // 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.13.1";
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.13.1'; // 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.13.1'; // x-release-please-version
1
+ export const VERSION = '0.15.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map