payrex-node
Advanced tools
Comparing version 1.0.0 to 1.0.1
# Changelog | ||
## [1.0.1] - 2024-10-02 | ||
- Add send billing statement via email endpoint. | ||
## [1.0.0] - 2024-09-04 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "payrex-node", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "PayRex Node JS Library", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -78,2 +78,11 @@ const BaseService = require('./BaseService'); | ||
BillingStatementService.prototype.send = function (id) { | ||
return this.request({ | ||
path: `${this.path}/${id}/send`, | ||
method: 'post', | ||
}).then(function () { | ||
return null; | ||
}); | ||
}; | ||
BillingStatementService.prototype.void = function (id) { | ||
@@ -80,0 +89,0 @@ return this.request({ |
27827
709