payrex-node 1.6.1 → 1.7.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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.7.0] - 2025-06-24
4
+
5
+ - Return billingStatementMerchantName in Billing Statement resource.
6
+
3
7
  ## [1.6.1] - 2025-06-02
4
8
 
5
9
  - Return net_amount in Payout Transaction resource.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payrex-node",
3
- "version": "1.6.1",
3
+ "version": "1.7.0",
4
4
  "description": "PayRex Node JS Library",
5
5
  "keywords": [
6
6
  "payrex",
@@ -9,6 +9,7 @@ function BillingStatementEntity(apiResource) {
9
9
  this.description = data.description;
10
10
  this.dueAt = data.due_at;
11
11
  this.finalizedAt = data.finalized_at;
12
+ this.billingStatementMerchantName = data.billing_statement_merchant_name;
12
13
  this.billingStatementNumber = data.billing_statement_number;
13
14
  this.billingStatementUrl = data.billing_statement_url;
14
15
  this.lineItems = data.line_items;