increase 1.316.0 → 1.318.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: 9ae3fff4c40fda1dfee72d0bbc1a6df80174449cae4ab97f231c5aa27d38d528
4
- data.tar.gz: ac086117f6bd711074bc8d85d93b677e43c57bf8f21683e01c8c3cc65fd91fbc
3
+ metadata.gz: aa36bc52d91423935358dfac9cea766fd97efd20738f17513951fe8aed2923b3
4
+ data.tar.gz: ae3e66967f635d77a4fd211597ffe082b69e99510a3c80500f9e433a69f17dea
5
5
  SHA512:
6
- metadata.gz: 4cb2d76e3a0bee7753b902e4d531d7757d647aa05ae1f1ad27c6b7daf6676aa57c8259c76dfe7df5afb35dd6ba4d9dac2224a090edf923f71e54193f94efcf1d
7
- data.tar.gz: b636a2b983ea2991156b9a148c64db57901529cc1f273eebe5ee5f5581c4ec35a1fc85d771244de1911def903e08efb9d9080dc34737d94a17096409424f74b4
6
+ metadata.gz: 8afbee5b7c8c4b4188992d5195dd6369877b4d8db00a1c88f9a5069d8bc843e546623f543522b1aec48bfb2dd60d94d333cc1df71157bafe6300057c797e49fe
7
+ data.tar.gz: 79ef4cfcfe143212a3890fed3d7c6ea3fdc3f601ed2d810db84cb1e21898628ae4456e63c894e62981997385fc47324f08d84cc0f246e6276eee5f4f4a47e8cc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.318.0 (2026-05-01)
4
+
5
+ Full Changelog: [v1.317.0...v1.318.0](https://github.com/Increase/increase-ruby/compare/v1.317.0...v1.318.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([4f824e2](https://github.com/Increase/increase-ruby/commit/4f824e26437497d7de233c79c612297a64dfc72f))
10
+
11
+ ## 1.317.0 (2026-05-01)
12
+
13
+ Full Changelog: [v1.316.0...v1.317.0](https://github.com/Increase/increase-ruby/compare/v1.316.0...v1.317.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([b473aa4](https://github.com/Increase/increase-ruby/commit/b473aa449e5ed41375358362e0e26020c75381d8))
18
+
3
19
  ## 1.316.0 (2026-05-01)
4
20
 
5
21
  Full Changelog: [v1.315.0...v1.316.0](https://github.com/Increase/increase-ruby/compare/v1.315.0...v1.316.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.316.0"
18
+ gem "increase", "~> 1.318.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -244,11 +244,9 @@ module Increase
244
244
  # @see Increase::Models::ACHTransferCreateParams::Addenda#freeform
245
245
  class Freeform < Increase::Internal::Type::BaseModel
246
246
  # @!attribute entries
247
- # Each entry represents an addendum sent with the transfer. In general, you should
248
- # send at most one addendum–most ACH recipients cannot access beyond the first 80
249
- # characters sent. Please reach out to
250
- # [support@increase.com](mailto:support@increase.com) to send 2 or more addenda to
251
- # a recipient expecting a specific addendum format.
247
+ # Each entry represents an addendum sent with the transfer. Sending more than one
248
+ # addendum is only supported for transfers with `standard_entry_class_code` of
249
+ # `corporate_trade_exchange` (CTX).
252
250
  #
253
251
  # @return [Array<Increase::Models::ACHTransferCreateParams::Addenda::Freeform::Entry>]
254
252
  required :entries,
@@ -261,7 +259,7 @@ module Increase
261
259
  # Unstructured `payment_related_information` passed through with the transfer.
262
260
  # Required if and only if `category` is `freeform`.
263
261
  #
264
- # @param entries [Array<Increase::Models::ACHTransferCreateParams::Addenda::Freeform::Entry>] Each entry represents an addendum sent with the transfer. In general, you should
262
+ # @param entries [Array<Increase::Models::ACHTransferCreateParams::Addenda::Freeform::Entry>] Each entry represents an addendum sent with the transfer. Sending more than one
265
263
 
266
264
  class Entry < Increase::Internal::Type::BaseModel
267
265
  # @!attribute payment_related_information
@@ -8,8 +8,9 @@ module Increase
8
8
  #
9
9
  # You can use this API to confirm if a routing number is valid, such as when a
10
10
  # user is providing you with bank account details. Since routing numbers uniquely
11
- # identify a bank, this will always return 0 or 1 entry. In Sandbox, the only
12
- # valid routing number for this method is 110000000.
11
+ # identify a bank, this will always return 0 or 1 entry. In Sandbox, only a few
12
+ # [routing numbers are valid](/documentation/sandbox-routing-numbers#sandbox-routing-numbers).
13
+ # `110000000` is an example of a Sandbox routing number.
13
14
  #
14
15
  # @overload list(routing_number:, cursor: nil, limit: nil, request_options: {})
15
16
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.316.0"
4
+ VERSION = "1.318.0"
5
5
  end
@@ -473,11 +473,9 @@ module Increase
473
473
  )
474
474
  end
475
475
 
476
- # Each entry represents an addendum sent with the transfer. In general, you should
477
- # send at most one addendum–most ACH recipients cannot access beyond the first 80
478
- # characters sent. Please reach out to
479
- # [support@increase.com](mailto:support@increase.com) to send 2 or more addenda to
480
- # a recipient expecting a specific addendum format.
476
+ # Each entry represents an addendum sent with the transfer. Sending more than one
477
+ # addendum is only supported for transfers with `standard_entry_class_code` of
478
+ # `corporate_trade_exchange` (CTX).
481
479
  sig do
482
480
  returns(
483
481
  T::Array[
@@ -498,11 +496,9 @@ module Increase
498
496
  ).returns(T.attached_class)
499
497
  end
500
498
  def self.new(
501
- # Each entry represents an addendum sent with the transfer. In general, you should
502
- # send at most one addendum–most ACH recipients cannot access beyond the first 80
503
- # characters sent. Please reach out to
504
- # [support@increase.com](mailto:support@increase.com) to send 2 or more addenda to
505
- # a recipient expecting a specific addendum format.
499
+ # Each entry represents an addendum sent with the transfer. Sending more than one
500
+ # addendum is only supported for transfers with `standard_entry_class_code` of
501
+ # `corporate_trade_exchange` (CTX).
506
502
  entries:
507
503
  )
508
504
  end
@@ -5,8 +5,9 @@ module Increase
5
5
  class RoutingNumbers
6
6
  # You can use this API to confirm if a routing number is valid, such as when a
7
7
  # user is providing you with bank account details. Since routing numbers uniquely
8
- # identify a bank, this will always return 0 or 1 entry. In Sandbox, the only
9
- # valid routing number for this method is 110000000.
8
+ # identify a bank, this will always return 0 or 1 entry. In Sandbox, only a few
9
+ # [routing numbers are valid](/documentation/sandbox-routing-numbers#sandbox-routing-numbers).
10
+ # `110000000` is an example of a Sandbox routing number.
10
11
  sig do
11
12
  params(
12
13
  routing_number: String,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.316.0
4
+ version: 1.318.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase