increase 1.233.0 → 1.235.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 64f79a751e0b3929ada9912ae0c3b2f2f7787f333e7ed7fc2cb6f7cd8f075ab6
4
- data.tar.gz: 03a2ea6cc40a8234c826c4880982fa1ee7db23b3c832faadb6d620c3c1624f9e
3
+ metadata.gz: b7b8b1fe09bc1ce545e7063f9b5612a325ae4ad2584e9977fbc9818c4871bc86
4
+ data.tar.gz: 2b56cb378b8a0bd769df0d13f2761a746fc3fa8cf309944e5537aaad5066176c
5
5
  SHA512:
6
- metadata.gz: a7be92ef70c6a38f23272345a878e7c85350f7f1c11e81bb4b5a2c2596be7a939b65bfe01019c61d1f5392240b9747df1f4bf6eed97894c7c1d7bc040e2614a5
7
- data.tar.gz: 0d518bbb1fd2d108d3f37a91f05f22313532e8b27622a225261a71a9b75ec6669edc24312b78faaf245ef445ca2afeeefe9d2fe6c2efbb7c559f2a29deba81b8
6
+ metadata.gz: 5db0f97c3eb0b4fdfe2a97a4296934979da293b313037e9fc7c954442404512420e14189111877688108148dfee00f60a7822f25583672db12e1a6417848e519
7
+ data.tar.gz: 7530bdfc2e4b9491c6642bfb9d6f9105551da956cb5c5b06b1f1fa0eba625f9eaa2c6a7fc672f3a78ffb197907adc80d32b32a0b6c45bf79b70930599354f4e7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.235.0 (2026-03-06)
4
+
5
+ Full Changelog: [v1.234.0...v1.235.0](https://github.com/Increase/increase-ruby/compare/v1.234.0...v1.235.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([1615eb2](https://github.com/Increase/increase-ruby/commit/1615eb20b76cee8d5258eff5049dbb5289cbe204))
10
+
11
+ ## 1.234.0 (2026-03-06)
12
+
13
+ Full Changelog: [v1.233.0...v1.234.0](https://github.com/Increase/increase-ruby/compare/v1.233.0...v1.234.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([b6c7325](https://github.com/Increase/increase-ruby/commit/b6c7325c671925b430c9e2dba7a0b354589bb57d))
18
+
3
19
  ## 1.233.0 (2026-03-05)
4
20
 
5
21
  Full Changelog: [v1.232.0...v1.233.0](https://github.com/Increase/increase-ruby/compare/v1.232.0...v1.233.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.233.0"
18
+ gem "increase", "~> 1.235.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -485,6 +485,13 @@ module Increase
485
485
  # @return [Integer, nil]
486
486
  required :purchase_amount, Integer, nil?: true
487
487
 
488
+ # @!attribute purchase_amount_cardholder_estimated
489
+ # The purchase amount in the cardholder's currency (i.e., USD) estimated using
490
+ # daily conversion rates from the card network.
491
+ #
492
+ # @return [Integer, nil]
493
+ required :purchase_amount_cardholder_estimated, Integer, nil?: true
494
+
488
495
  # @!attribute purchase_currency
489
496
  # The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
490
497
  # authentication attempt's purchase currency.
@@ -602,7 +609,7 @@ module Increase
602
609
  # @return [Symbol, Increase::Models::CardPayment::Element::CardAuthentication::Type]
603
610
  required :type, enum: -> { Increase::CardPayment::Element::CardAuthentication::Type }
604
611
 
605
- # @!method initialize(id:, access_control_server_transaction_id:, billing_address_city:, billing_address_country:, billing_address_line1:, billing_address_line2:, billing_address_line3:, billing_address_postal_code:, billing_address_state:, card_id:, card_payment_id:, cardholder_email:, cardholder_name:, category:, challenge:, created_at:, deny_reason:, device_channel:, directory_server_transaction_id:, merchant_acceptor_id:, merchant_category_code:, merchant_country:, merchant_name:, prior_card_authentication_id:, purchase_amount:, purchase_currency:, real_time_decision_id:, requestor_authentication_indicator:, requestor_challenge_indicator:, requestor_name:, requestor_url:, shipping_address_city:, shipping_address_country:, shipping_address_line1:, shipping_address_line2:, shipping_address_line3:, shipping_address_postal_code:, shipping_address_state:, status:, three_d_secure_server_transaction_id:, transaction_type:, type:)
612
+ # @!method initialize(id:, access_control_server_transaction_id:, billing_address_city:, billing_address_country:, billing_address_line1:, billing_address_line2:, billing_address_line3:, billing_address_postal_code:, billing_address_state:, card_id:, card_payment_id:, cardholder_email:, cardholder_name:, category:, challenge:, created_at:, deny_reason:, device_channel:, directory_server_transaction_id:, merchant_acceptor_id:, merchant_category_code:, merchant_country:, merchant_name:, prior_card_authentication_id:, purchase_amount:, purchase_amount_cardholder_estimated:, purchase_currency:, real_time_decision_id:, requestor_authentication_indicator:, requestor_challenge_indicator:, requestor_name:, requestor_url:, shipping_address_city:, shipping_address_country:, shipping_address_line1:, shipping_address_line2:, shipping_address_line3:, shipping_address_postal_code:, shipping_address_state:, status:, three_d_secure_server_transaction_id:, transaction_type:, type:)
606
613
  # Some parameter documentations has been truncated, see
607
614
  # {Increase::Models::CardPayment::Element::CardAuthentication} for more details.
608
615
  #
@@ -660,6 +667,8 @@ module Increase
660
667
  #
661
668
  # @param purchase_amount [Integer, nil] The purchase amount in minor units.
662
669
  #
670
+ # @param purchase_amount_cardholder_estimated [Integer, nil] The purchase amount in the cardholder's currency (i.e., USD) estimated using dai
671
+ #
663
672
  # @param purchase_currency [String, nil] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the authenticati
664
673
  #
665
674
  # @param real_time_decision_id [String, nil] The identifier of the Real-Time Decision sent to approve or decline this authent