increase 1.143.0 → 1.145.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.
@@ -193,7 +193,8 @@ module Increase
193
193
  :line1 => String,
194
194
  postal_code: String,
195
195
  state: String,
196
- :line2 => String
196
+ :line2 => String,
197
+ name: String
197
198
  }
198
199
 
199
200
  class MailingAddress < Increase::Internal::Type::BaseModel
@@ -209,12 +210,17 @@ module Increase
209
210
 
210
211
  def line2=: (String) -> String
211
212
 
213
+ attr_reader name: String?
214
+
215
+ def name=: (String) -> String
216
+
212
217
  def initialize: (
213
218
  city: String,
214
219
  line1: String,
215
220
  postal_code: String,
216
221
  state: String,
217
- ?line2: String
222
+ ?line2: String,
223
+ ?name: String
218
224
  ) -> void
219
225
 
220
226
  def to_hash: -> {
@@ -222,7 +228,8 @@ module Increase
222
228
  :line1 => String,
223
229
  postal_code: String,
224
230
  state: String,
225
- :line2 => String
231
+ :line2 => String,
232
+ name: String
226
233
  }
227
234
  end
228
235
 
@@ -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.145.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-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool