increase 1.315.0 → 1.317.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: c03adcb8dbf4753eaf33997e2862fd0f489fbeb001d2d70de29378324219bd09
4
- data.tar.gz: 950a751ec59c876e963fdcc46741327b4827ac0bcc69b44865da8d4c307acfe3
3
+ metadata.gz: 550b0824fd1e380024087c6dc9cf5fa8786570e44fffb20e52b2eb62b203fcd2
4
+ data.tar.gz: e3438b4e9da7f86c41061ec8f0efc4f5334062a76a61bf7c511784cebfe2a5d5
5
5
  SHA512:
6
- metadata.gz: 672091dd5ec8af809c3d75a89a4b1913ccdee6ef41f725ce3ab1ac53908927b5e82d05b9c0824082c0dea9b28f87039719037e3473e76399305540b09b49b0a8
7
- data.tar.gz: acdba94d7b038db32c284b2cb964636f2a1f0b0a99160183070d16c98ae4cfe08c92d971f55261aff9724b64e7360eeb7978e1a0bd343397be4ccf75fec660e8
6
+ metadata.gz: 41d25c27580b14901e1c46307f0ad69e4387c51e83acee430d6ec8d53d647d37a65c00bf8df04a510ad4644ae4a7dfd91bf6d703a97e30b0fcae147fce9b9f6e
7
+ data.tar.gz: 7c544e9b74d443851ed3b5f8ed639856f501e365d50259b40687f5035d570bdc1d3686c0b283515b8fbc8e6664c6716262c6879d6fc59c75b678619729a0aa84
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.317.0 (2026-05-01)
4
+
5
+ Full Changelog: [v1.316.0...v1.317.0](https://github.com/Increase/increase-ruby/compare/v1.316.0...v1.317.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([b473aa4](https://github.com/Increase/increase-ruby/commit/b473aa449e5ed41375358362e0e26020c75381d8))
10
+
11
+ ## 1.316.0 (2026-05-01)
12
+
13
+ Full Changelog: [v1.315.0...v1.316.0](https://github.com/Increase/increase-ruby/compare/v1.315.0...v1.316.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([b91698c](https://github.com/Increase/increase-ruby/commit/b91698c046321f14db5c10e5c8f6944cd4872d19))
18
+
3
19
  ## 1.315.0 (2026-05-01)
4
20
 
5
21
  Full Changelog: [v1.314.0...v1.315.0](https://github.com/Increase/increase-ruby/compare/v1.314.0...v1.315.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.315.0"
18
+ gem "increase", "~> 1.317.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
@@ -7,8 +7,8 @@ module Increase
7
7
  # Some parameter documentations has been truncated, see
8
8
  # {Increase::Models::Simulations::InboundMailItemCreateParams} for more details.
9
9
  #
10
- # Simulates an inbound mail item to your account, as if someone had mailed a
11
- # physical check to one of your account's Lockboxes.
10
+ # Simulates an Inbound Mail Item to one of your Lockbox Addresses or Lockbox
11
+ # Recipients, as if someone had mailed a physical check.
12
12
  #
13
13
  # @overload create(amount:, contents_file_id: nil, lockbox_address_id: nil, lockbox_recipient_id: nil, request_options: {})
14
14
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.315.0"
4
+ VERSION = "1.317.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
@@ -4,8 +4,8 @@ module Increase
4
4
  module Resources
5
5
  class Simulations
6
6
  class InboundMailItems
7
- # Simulates an inbound mail item to your account, as if someone had mailed a
8
- # physical check to one of your account's Lockboxes.
7
+ # Simulates an Inbound Mail Item to one of your Lockbox Addresses or Lockbox
8
+ # Recipients, as if someone had mailed a physical check.
9
9
  sig do
10
10
  params(
11
11
  amount: Integer,
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.315.0
4
+ version: 1.317.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase