increase 1.142.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -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/file.rb +1 -1
- data/lib/increase/models/file_create_params.rb +1 -1
- data/lib/increase/models/file_list_params.rb +1 -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/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/file.rbi +1 -1
- data/rbi/increase/models/file_create_params.rbi +1 -1
- data/rbi/increase/models/file_list_params.rbi +1 -1
- 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/file.rbs +1 -1
- data/sig/increase/models/file_create_params.rbs +1 -1
- data/sig/increase/models/file_list_params.rbs +1 -1
- data/sig/increase/models/transaction.rbs +7 -4
- data/sig/increase/resources/card_push_transfers.rbs +1 -1
- metadata +2 -2
|
@@ -93,7 +93,7 @@ module Increase
|
|
|
93
93
|
# An icon for you app to be rendered inside digital wallet apps. This must be a 100x100 pixel PNG.
|
|
94
94
|
DIGITAL_WALLET_APP_ICON: :digital_wallet_app_icon
|
|
95
95
|
|
|
96
|
-
# A card image to be printed on the front of a physical card. This must be a
|
|
96
|
+
# A card image to be printed on the front of a physical card. This must be a 2100x1344 pixel PNG with no other color but black.
|
|
97
97
|
PHYSICAL_CARD_FRONT: :physical_card_front
|
|
98
98
|
|
|
99
99
|
# An image representing the entirety of the carrier used for a physical card. This must be a 2550x3300 pixel PNG with no other color but black.
|
|
@@ -198,7 +198,7 @@ module Increase
|
|
|
198
198
|
# An icon for you app to be rendered inside digital wallet apps. This must be a 100x100 pixel PNG.
|
|
199
199
|
DIGITAL_WALLET_APP_ICON: :digital_wallet_app_icon
|
|
200
200
|
|
|
201
|
-
# A card image to be printed on the front of a physical card. This must be a
|
|
201
|
+
# A card image to be printed on the front of a physical card. This must be a 2100x1344 pixel PNG with no other color but black.
|
|
202
202
|
PHYSICAL_CARD_FRONT: :physical_card_front
|
|
203
203
|
|
|
204
204
|
# The image to be printed on the back of a physical card.
|
|
@@ -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.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-
|
|
11
|
+
date: 2025-11-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|