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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +21 -0
- data/README.md +1 -1
- data/lib/increase/models/card_push_transfer.rb +538 -33
- data/lib/increase/models/card_push_transfer_create_params.rb +532 -9
- data/lib/increase/models/check_transfer_create_params.rb +14 -1
- data/lib/increase/models/transaction.rb +4 -4
- data/lib/increase/resources/card_push_transfers.rb +3 -3
- data/lib/increase/version.rb +1 -1
- data/lib/increase.rb +1 -0
- data/manifest.yaml +1 -0
- data/rbi/increase/models/card_push_transfer.rbi +1230 -42
- data/rbi/increase/models/card_push_transfer_create_params.rbi +1226 -8
- data/rbi/increase/models/check_transfer_create_params.rbi +16 -3
- data/rbi/increase/models/transaction.rbi +8 -4
- data/rbi/increase/resources/card_push_transfers.rbi +6 -3
- data/sig/increase/models/card_push_transfer.rbs +683 -24
- data/sig/increase/models/card_push_transfer_create_params.rbs +675 -5
- data/sig/increase/models/check_transfer_create_params.rbs +10 -3
- data/sig/increase/models/transaction.rbs +7 -4
- data/sig/increase/resources/card_push_transfers.rbs +1 -1
- metadata +2 -2
|
@@ -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
|
-
{
|
|
1663
|
+
{ settlement_amount: Integer, transfer_id: String }
|
|
1664
1664
|
|
|
1665
1665
|
class CardPushTransferAcceptance < Increase::Internal::Type::BaseModel
|
|
1666
|
-
attr_accessor
|
|
1666
|
+
attr_accessor settlement_amount: Integer
|
|
1667
1667
|
|
|
1668
1668
|
attr_accessor transfer_id: String
|
|
1669
1669
|
|
|
1670
|
-
def initialize: (
|
|
1670
|
+
def initialize: (
|
|
1671
|
+
settlement_amount: Integer,
|
|
1672
|
+
transfer_id: String
|
|
1673
|
+
) -> void
|
|
1671
1674
|
|
|
1672
|
-
def to_hash: -> {
|
|
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.
|
|
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-
|
|
11
|
+
date: 2025-11-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|