increase 1.143.0 → 1.144.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.
@@ -1660,16 +1660,19 @@ module Increase
1660
1660
  end
1661
1661
 
1662
1662
  type card_push_transfer_acceptance =
1663
- { amount: Integer, transfer_id: String }
1663
+ { settlement_amount: Integer, transfer_id: String }
1664
1664
 
1665
1665
  class CardPushTransferAcceptance < Increase::Internal::Type::BaseModel
1666
- attr_accessor amount: Integer
1666
+ attr_accessor settlement_amount: Integer
1667
1667
 
1668
1668
  attr_accessor transfer_id: String
1669
1669
 
1670
- def initialize: (amount: Integer, transfer_id: String) -> void
1670
+ def initialize: (
1671
+ settlement_amount: Integer,
1672
+ transfer_id: String
1673
+ ) -> void
1671
1674
 
1672
- def to_hash: -> { amount: Integer, transfer_id: String }
1675
+ def to_hash: -> { settlement_amount: Integer, transfer_id: String }
1673
1676
  end
1674
1677
 
1675
1678
  type card_refund =
@@ -2,7 +2,6 @@ module Increase
2
2
  module Resources
3
3
  class CardPushTransfers
4
4
  def create: (
5
- amount: Integer,
6
5
  business_application_identifier: Increase::Models::CardPushTransferCreateParams::business_application_identifier,
7
6
  card_token_id: String,
8
7
  merchant_category_code: String,
@@ -11,6 +10,7 @@ module Increase
11
10
  merchant_name_prefix: String,
12
11
  merchant_postal_code: String,
13
12
  merchant_state: String,
13
+ presentment_amount: Increase::CardPushTransferCreateParams::PresentmentAmount,
14
14
  recipient_name: String,
15
15
  sender_address_city: String,
16
16
  sender_address_line1: String,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.143.0
4
+ version: 1.144.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-11-14 00:00:00.000000000 Z
11
+ date: 2025-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool