increase 1.80.0 → 1.82.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: 343135fffc41b357e677430877e8f571307fdafda068ee5583351c66765b6b1c
4
- data.tar.gz: 2e0b9b79252c7a672a4453b89fd35c305a4260fd52d1e5569c674d796bd0edc6
3
+ metadata.gz: 5003f82376cad0c3a0649ed1049044cc80282c1ffe3fab49f31db26dea176882
4
+ data.tar.gz: e88b81b77401dc95b54f4566e625653291f298a7b75e1e315745b77f83982670
5
5
  SHA512:
6
- metadata.gz: a724cffb3e3eca6f5479c67de7d70eb70e23b8d97b956b95644b91675d7e176c7cc6a28a604edd96aacf9d8593941902a6b5d852a9d70f5cd46cf713c8c3d14b
7
- data.tar.gz: 78b5e798bde64c975949c74a4cf4550b0f8b18da78fd6db8d1456de59f65836a4f844b4c8e00c513941dc37dd18e1ae658c18c2b3d36ea6f1198196c55b08b84
6
+ metadata.gz: dcdc47f03e58ce0edb0b8efea31b55a66c7ebdbffaf41e96e8817e78c4b201006ff3376b9a4b4be1b5563dfb43920907cee6beb6ab59a43aaa1bb4e669eed5b9
7
+ data.tar.gz: 3e09f27478c6ea7b33d5fc67ccdd79e76e57b98d0a46a7087363d7bd5c238b48a1258c40af637e68df8716801d8831fb0f666bdc23ce139527478412e825041f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.82.0 (2025-09-19)
4
+
5
+ Full Changelog: [v1.81.0...v1.82.0](https://github.com/Increase/increase-ruby/compare/v1.81.0...v1.82.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([624dfb0](https://github.com/Increase/increase-ruby/commit/624dfb082089270ae2431cda1b51e544366cf73c))
10
+
11
+ ## 1.81.0 (2025-09-18)
12
+
13
+ Full Changelog: [v1.80.0...v1.81.0](https://github.com/Increase/increase-ruby/compare/v1.80.0...v1.81.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([a2eb3e1](https://github.com/Increase/increase-ruby/commit/a2eb3e1d515bf955aa6b761a3762357cd9395862))
18
+
3
19
  ## 1.80.0 (2025-09-17)
4
20
 
5
21
  Full Changelog: [v1.79.0...v1.80.0](https://github.com/Increase/increase-ruby/compare/v1.79.0...v1.80.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.80.0"
18
+ gem "increase", "~> 1.82.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -187,15 +187,10 @@ module Increase
187
187
  # @!attribute cardholder_address_verification_result
188
188
  # Your decisions on whether or not each provided address component is a match.
189
189
  # Your response here is evaluated against the customer's provided `postal_code`
190
- # and `line1`, and an appropriate network response is generated. For example, if
191
- # you would like to approve all transactions for a given card, you can submit
192
- # `match` for both `postal_code` and `line1` and Increase will generate an
193
- # approval with an Address Verification System (AVS) code that will match all of
194
- # the available address information, or will report that no check was performed if
195
- # no address information is available. If you do not provide a response, the
196
- # address verification result will be calculated by Increase using the available
197
- # address information available on the card. If none is available, Increase will
198
- # report that no check was performed.
190
+ # and `line1`, and an appropriate network response is generated. For more
191
+ # information, see our
192
+ # [Address Verification System Codes and Overrides](https://increase.com/documentation/address-verification-system-codes-and-overrides)
193
+ # guide.
199
194
  #
200
195
  # @return [Increase::Models::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult, nil]
201
196
  optional :cardholder_address_verification_result,
@@ -232,15 +227,10 @@ module Increase
232
227
  # @!method initialize(line1:, postal_code:)
233
228
  # Your decisions on whether or not each provided address component is a match.
234
229
  # Your response here is evaluated against the customer's provided `postal_code`
235
- # and `line1`, and an appropriate network response is generated. For example, if
236
- # you would like to approve all transactions for a given card, you can submit
237
- # `match` for both `postal_code` and `line1` and Increase will generate an
238
- # approval with an Address Verification System (AVS) code that will match all of
239
- # the available address information, or will report that no check was performed if
240
- # no address information is available. If you do not provide a response, the
241
- # address verification result will be calculated by Increase using the available
242
- # address information available on the card. If none is available, Increase will
243
- # report that no check was performed.
230
+ # and `line1`, and an appropriate network response is generated. For more
231
+ # information, see our
232
+ # [Address Verification System Codes and Overrides](https://increase.com/documentation/address-verification-system-codes-and-overrides)
233
+ # guide.
244
234
  #
245
235
  # @param line1 [Symbol, Increase::Models::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::Line1] Your decision on the address line of the provided address.
246
236
  #
@@ -10,6 +10,12 @@ module Increase
10
10
  # @return [Symbol, Increase::Models::RoutingNumberListResponse::ACHTransfers]
11
11
  required :ach_transfers, enum: -> { Increase::Models::RoutingNumberListResponse::ACHTransfers }
12
12
 
13
+ # @!attribute fednow_transfers
14
+ # This routing number's support for FedNow Transfers.
15
+ #
16
+ # @return [Symbol, Increase::Models::RoutingNumberListResponse::FednowTransfers]
17
+ required :fednow_transfers, enum: -> { Increase::Models::RoutingNumberListResponse::FednowTransfers }
18
+
13
19
  # @!attribute name
14
20
  # The name of the financial institution belonging to a routing number.
15
21
  #
@@ -42,7 +48,7 @@ module Increase
42
48
  # @return [Symbol, Increase::Models::RoutingNumberListResponse::WireTransfers]
43
49
  required :wire_transfers, enum: -> { Increase::Models::RoutingNumberListResponse::WireTransfers }
44
50
 
45
- # @!method initialize(ach_transfers:, name:, real_time_payments_transfers:, routing_number:, type:, wire_transfers:)
51
+ # @!method initialize(ach_transfers:, fednow_transfers:, name:, real_time_payments_transfers:, routing_number:, type:, wire_transfers:)
46
52
  # Some parameter documentations has been truncated, see
47
53
  # {Increase::Models::RoutingNumberListResponse} for more details.
48
54
  #
@@ -50,6 +56,8 @@ module Increase
50
56
  #
51
57
  # @param ach_transfers [Symbol, Increase::Models::RoutingNumberListResponse::ACHTransfers] This routing number's support for ACH Transfers.
52
58
  #
59
+ # @param fednow_transfers [Symbol, Increase::Models::RoutingNumberListResponse::FednowTransfers] This routing number's support for FedNow Transfers.
60
+ #
53
61
  # @param name [String] The name of the financial institution belonging to a routing number.
54
62
  #
55
63
  # @param real_time_payments_transfers [Symbol, Increase::Models::RoutingNumberListResponse::RealTimePaymentsTransfers] This routing number's support for Real-Time Payments Transfers.
@@ -76,6 +84,22 @@ module Increase
76
84
  # @return [Array<Symbol>]
77
85
  end
78
86
 
87
+ # This routing number's support for FedNow Transfers.
88
+ #
89
+ # @see Increase::Models::RoutingNumberListResponse#fednow_transfers
90
+ module FednowTransfers
91
+ extend Increase::Internal::Type::Enum
92
+
93
+ # The routing number can receive this transfer type.
94
+ SUPPORTED = :supported
95
+
96
+ # The routing number cannot receive this transfer type.
97
+ NOT_SUPPORTED = :not_supported
98
+
99
+ # @!method self.values
100
+ # @return [Array<Symbol>]
101
+ end
102
+
79
103
  # This routing number's support for Real-Time Payments Transfers.
80
104
  #
81
105
  # @see Increase::Models::RoutingNumberListResponse#real_time_payments_transfers
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.80.0"
4
+ VERSION = "1.82.0"
5
5
  end
@@ -477,15 +477,10 @@ module Increase
477
477
 
478
478
  # Your decisions on whether or not each provided address component is a match.
479
479
  # Your response here is evaluated against the customer's provided `postal_code`
480
- # and `line1`, and an appropriate network response is generated. For example, if
481
- # you would like to approve all transactions for a given card, you can submit
482
- # `match` for both `postal_code` and `line1` and Increase will generate an
483
- # approval with an Address Verification System (AVS) code that will match all of
484
- # the available address information, or will report that no check was performed if
485
- # no address information is available. If you do not provide a response, the
486
- # address verification result will be calculated by Increase using the available
487
- # address information available on the card. If none is available, Increase will
488
- # report that no check was performed.
480
+ # and `line1`, and an appropriate network response is generated. For more
481
+ # information, see our
482
+ # [Address Verification System Codes and Overrides](https://increase.com/documentation/address-verification-system-codes-and-overrides)
483
+ # guide.
489
484
  sig do
490
485
  returns(
491
486
  T.nilable(
@@ -516,15 +511,10 @@ module Increase
516
511
  def self.new(
517
512
  # Your decisions on whether or not each provided address component is a match.
518
513
  # Your response here is evaluated against the customer's provided `postal_code`
519
- # and `line1`, and an appropriate network response is generated. For example, if
520
- # you would like to approve all transactions for a given card, you can submit
521
- # `match` for both `postal_code` and `line1` and Increase will generate an
522
- # approval with an Address Verification System (AVS) code that will match all of
523
- # the available address information, or will report that no check was performed if
524
- # no address information is available. If you do not provide a response, the
525
- # address verification result will be calculated by Increase using the available
526
- # address information available on the card. If none is available, Increase will
527
- # report that no check was performed.
514
+ # and `line1`, and an appropriate network response is generated. For more
515
+ # information, see our
516
+ # [Address Verification System Codes and Overrides](https://increase.com/documentation/address-verification-system-codes-and-overrides)
517
+ # guide.
528
518
  cardholder_address_verification_result: nil
529
519
  )
530
520
  end
@@ -567,15 +557,10 @@ module Increase
567
557
 
568
558
  # Your decisions on whether or not each provided address component is a match.
569
559
  # Your response here is evaluated against the customer's provided `postal_code`
570
- # and `line1`, and an appropriate network response is generated. For example, if
571
- # you would like to approve all transactions for a given card, you can submit
572
- # `match` for both `postal_code` and `line1` and Increase will generate an
573
- # approval with an Address Verification System (AVS) code that will match all of
574
- # the available address information, or will report that no check was performed if
575
- # no address information is available. If you do not provide a response, the
576
- # address verification result will be calculated by Increase using the available
577
- # address information available on the card. If none is available, Increase will
578
- # report that no check was performed.
560
+ # and `line1`, and an appropriate network response is generated. For more
561
+ # information, see our
562
+ # [Address Verification System Codes and Overrides](https://increase.com/documentation/address-verification-system-codes-and-overrides)
563
+ # guide.
579
564
  sig do
580
565
  params(
581
566
  line1:
@@ -19,6 +19,14 @@ module Increase
19
19
  end
20
20
  attr_accessor :ach_transfers
21
21
 
22
+ # This routing number's support for FedNow Transfers.
23
+ sig do
24
+ returns(
25
+ Increase::Models::RoutingNumberListResponse::FednowTransfers::TaggedSymbol
26
+ )
27
+ end
28
+ attr_accessor :fednow_transfers
29
+
22
30
  # The name of the financial institution belonging to a routing number.
23
31
  sig { returns(String) }
24
32
  attr_accessor :name
@@ -55,6 +63,8 @@ module Increase
55
63
  params(
56
64
  ach_transfers:
57
65
  Increase::Models::RoutingNumberListResponse::ACHTransfers::OrSymbol,
66
+ fednow_transfers:
67
+ Increase::Models::RoutingNumberListResponse::FednowTransfers::OrSymbol,
58
68
  name: String,
59
69
  real_time_payments_transfers:
60
70
  Increase::Models::RoutingNumberListResponse::RealTimePaymentsTransfers::OrSymbol,
@@ -67,6 +77,8 @@ module Increase
67
77
  def self.new(
68
78
  # This routing number's support for ACH Transfers.
69
79
  ach_transfers:,
80
+ # This routing number's support for FedNow Transfers.
81
+ fednow_transfers:,
70
82
  # The name of the financial institution belonging to a routing number.
71
83
  name:,
72
84
  # This routing number's support for Real-Time Payments Transfers.
@@ -86,6 +98,8 @@ module Increase
86
98
  {
87
99
  ach_transfers:
88
100
  Increase::Models::RoutingNumberListResponse::ACHTransfers::TaggedSymbol,
101
+ fednow_transfers:
102
+ Increase::Models::RoutingNumberListResponse::FednowTransfers::TaggedSymbol,
89
103
  name: String,
90
104
  real_time_payments_transfers:
91
105
  Increase::Models::RoutingNumberListResponse::RealTimePaymentsTransfers::TaggedSymbol,
@@ -138,6 +152,44 @@ module Increase
138
152
  end
139
153
  end
140
154
 
155
+ # This routing number's support for FedNow Transfers.
156
+ module FednowTransfers
157
+ extend Increase::Internal::Type::Enum
158
+
159
+ TaggedSymbol =
160
+ T.type_alias do
161
+ T.all(
162
+ Symbol,
163
+ Increase::Models::RoutingNumberListResponse::FednowTransfers
164
+ )
165
+ end
166
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
167
+
168
+ # The routing number can receive this transfer type.
169
+ SUPPORTED =
170
+ T.let(
171
+ :supported,
172
+ Increase::Models::RoutingNumberListResponse::FednowTransfers::TaggedSymbol
173
+ )
174
+
175
+ # The routing number cannot receive this transfer type.
176
+ NOT_SUPPORTED =
177
+ T.let(
178
+ :not_supported,
179
+ Increase::Models::RoutingNumberListResponse::FednowTransfers::TaggedSymbol
180
+ )
181
+
182
+ sig do
183
+ override.returns(
184
+ T::Array[
185
+ Increase::Models::RoutingNumberListResponse::FednowTransfers::TaggedSymbol
186
+ ]
187
+ )
188
+ end
189
+ def self.values
190
+ end
191
+ end
192
+
141
193
  # This routing number's support for Real-Time Payments Transfers.
142
194
  module RealTimePaymentsTransfers
143
195
  extend Increase::Internal::Type::Enum
@@ -3,6 +3,7 @@ module Increase
3
3
  type routing_number_list_response =
4
4
  {
5
5
  ach_transfers: Increase::Models::RoutingNumberListResponse::ach_transfers,
6
+ fednow_transfers: Increase::Models::RoutingNumberListResponse::fednow_transfers,
6
7
  name: String,
7
8
  real_time_payments_transfers: Increase::Models::RoutingNumberListResponse::real_time_payments_transfers,
8
9
  routing_number: String,
@@ -13,6 +14,8 @@ module Increase
13
14
  class RoutingNumberListResponse < Increase::Internal::Type::BaseModel
14
15
  attr_accessor ach_transfers: Increase::Models::RoutingNumberListResponse::ach_transfers
15
16
 
17
+ attr_accessor fednow_transfers: Increase::Models::RoutingNumberListResponse::fednow_transfers
18
+
16
19
  attr_accessor name: String
17
20
 
18
21
  attr_accessor real_time_payments_transfers: Increase::Models::RoutingNumberListResponse::real_time_payments_transfers
@@ -25,6 +28,7 @@ module Increase
25
28
 
26
29
  def initialize: (
27
30
  ach_transfers: Increase::Models::RoutingNumberListResponse::ach_transfers,
31
+ fednow_transfers: Increase::Models::RoutingNumberListResponse::fednow_transfers,
28
32
  name: String,
29
33
  real_time_payments_transfers: Increase::Models::RoutingNumberListResponse::real_time_payments_transfers,
30
34
  routing_number: String,
@@ -34,6 +38,7 @@ module Increase
34
38
 
35
39
  def to_hash: -> {
36
40
  ach_transfers: Increase::Models::RoutingNumberListResponse::ach_transfers,
41
+ fednow_transfers: Increase::Models::RoutingNumberListResponse::fednow_transfers,
37
42
  name: String,
38
43
  real_time_payments_transfers: Increase::Models::RoutingNumberListResponse::real_time_payments_transfers,
39
44
  routing_number: String,
@@ -55,6 +60,20 @@ module Increase
55
60
  def self?.values: -> ::Array[Increase::Models::RoutingNumberListResponse::ach_transfers]
56
61
  end
57
62
 
63
+ type fednow_transfers = :supported | :not_supported
64
+
65
+ module FednowTransfers
66
+ extend Increase::Internal::Type::Enum
67
+
68
+ # The routing number can receive this transfer type.
69
+ SUPPORTED: :supported
70
+
71
+ # The routing number cannot receive this transfer type.
72
+ NOT_SUPPORTED: :not_supported
73
+
74
+ def self?.values: -> ::Array[Increase::Models::RoutingNumberListResponse::fednow_transfers]
75
+ end
76
+
58
77
  type real_time_payments_transfers = :supported | :not_supported
59
78
 
60
79
  module RealTimePaymentsTransfers
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.80.0
4
+ version: 1.82.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-09-17 00:00:00.000000000 Z
11
+ date: 2025-09-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool