increase 1.151.0 → 1.152.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: acb1fec6de870e0a54adc307845a4de25046ef5bb5f25ecb024b7a61e23b1036
4
- data.tar.gz: 71d80220336df77cbfbef809e4b63f7be53e05bce254151dc3f43b8db01ef98b
3
+ metadata.gz: '03381acd9acc7e285c9acca341f3feb95dc658b52dc2e529a46bb8c9a222a7ac'
4
+ data.tar.gz: bfb2cbbb5e8690c5fe673d668bb0ce47afed58c5f15a36af2c4768314b96726d
5
5
  SHA512:
6
- metadata.gz: 894f6a1f6311526047c49b31e0a47169133199951058d065cf13a3dc9a22d9c7b889a87c1fd3fa14d6ad7e6bcf71c8b334195703115c1bbabf6622037737370d
7
- data.tar.gz: 0ebdad7d065458d7395cb78fa2d1558d7f7b75c4f32b1f57f10d85f7f6d81ac5e121b31f5ddf44205cc05dffe280f0170c05ab7cea0f28ba608ad1c300d4eb0d
6
+ metadata.gz: aeba11bb01aa68e61dd7d9ede0d08f3d89d26a9238bcf66a6e6a916e7cc86f591434415fc0f2093d038c5953bffdd5cfab35f951a0657b6f34c341ccde87da8b
7
+ data.tar.gz: f75a52c874d2dc002c73aaf006d7cc8b043a908ad55238793fd23311d4f164e2369007e764692d9ab6e173b77f7eeca6f030aaa52c9715e12456c17f52cf69a5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.152.0 (2025-12-01)
4
+
5
+ Full Changelog: [v1.151.0...v1.152.0](https://github.com/Increase/increase-ruby/compare/v1.151.0...v1.152.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([1649f50](https://github.com/Increase/increase-ruby/commit/1649f50e5899a93e8a7cf2f262c15e6faae3cd13))
10
+
3
11
  ## 1.151.0 (2025-11-26)
4
12
 
5
13
  Full Changelog: [v1.150.0...v1.151.0](https://github.com/Increase/increase-ruby/compare/v1.150.0...v1.151.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.151.0"
18
+ gem "increase", "~> 1.152.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -273,9 +273,9 @@ module Increase
273
273
  optional :name, String
274
274
 
275
275
  # @!attribute phone
276
- # The phone number to associate with the check's destination address. Only used if
277
- # shipping method is `fedex_overnight`. Will be supplied to FedEx as the contact
278
- # phone number for the recipient to be used in case of delivery issues.
276
+ # The phone number to associate with the check's destination address. The number
277
+ # is only used when `shipping_method` is `fedex_overnight` and will be supplied to
278
+ # FedEx to be used in case of delivery issues.
279
279
  #
280
280
  # @return [String, nil]
281
281
  optional :phone, String
@@ -299,7 +299,7 @@ module Increase
299
299
  #
300
300
  # @param name [String] The name component of the check's destination address. Defaults to the provided
301
301
  #
302
- # @param phone [String] The phone number to associate with the check's destination address. Only used if
302
+ # @param phone [String] The phone number to associate with the check's destination address. The number i
303
303
  end
304
304
 
305
305
  class Payer < Increase::Internal::Type::BaseModel
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.151.0"
4
+ VERSION = "1.152.0"
5
5
  end
@@ -510,9 +510,9 @@ module Increase
510
510
  sig { params(name: String).void }
511
511
  attr_writer :name
512
512
 
513
- # The phone number to associate with the check's destination address. Only used if
514
- # shipping method is `fedex_overnight`. Will be supplied to FedEx as the contact
515
- # phone number for the recipient to be used in case of delivery issues.
513
+ # The phone number to associate with the check's destination address. The number
514
+ # is only used when `shipping_method` is `fedex_overnight` and will be supplied to
515
+ # FedEx to be used in case of delivery issues.
516
516
  sig { returns(T.nilable(String)) }
517
517
  attr_reader :phone
518
518
 
@@ -545,9 +545,9 @@ module Increase
545
545
  # The name component of the check's destination address. Defaults to the provided
546
546
  # `recipient_name` parameter if `name` is not provided.
547
547
  name: nil,
548
- # The phone number to associate with the check's destination address. Only used if
549
- # shipping method is `fedex_overnight`. Will be supplied to FedEx as the contact
550
- # phone number for the recipient to be used in case of delivery issues.
548
+ # The phone number to associate with the check's destination address. The number
549
+ # is only used when `shipping_method` is `fedex_overnight` and will be supplied to
550
+ # FedEx to be used in case of delivery issues.
551
551
  phone: nil
552
552
  )
553
553
  end
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.151.0
4
+ version: 1.152.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-26 00:00:00.000000000 Z
11
+ date: 2025-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool