payrex-node 0.1.3 → 0.1.4

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,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.4] - 2024-07-23
4
+
5
+ - Move the deprecated capture_type attribute.
6
+
7
+ ## [0.1.3] - 2024-07-22
8
+
9
+ - Add the new payment_method_options attribute.
10
+
3
11
  ## [0.1.2] - 2024-05-23
4
12
 
5
13
  - Update error handling.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payrex-node",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "PayRex Node JS Library",
5
5
  "keywords": [
6
6
  "payrex",
@@ -4,7 +4,6 @@ function PaymentIntentEntity(apiResource) {
4
4
  this.id = data.id;
5
5
  this.resource = data.resource;
6
6
  this.amount = data.amount;
7
- this.captureType = data.capture_type;
8
7
  this.clientSecret = data.client_secret;
9
8
  this.currency = data.currency;
10
9
  this.description = data.description;