increase 1.146.0 → 1.147.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be74f0ce9c9d4850d5675d0c3e74c9875e0545fba3b5ac7613d52dcabac9b33f
|
|
4
|
+
data.tar.gz: 3a87b352fbc040f034de41f9d911c048f3b7601c28e4b7e4976d86bb7b6a5ca4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5dd7548227ac22aa03da39c2a6945c9c013609e864a3d5516dbcd419c020a4350930b016b668535085436626467325904051e0d6aa6774db8c9ae76824ba22df
|
|
7
|
+
data.tar.gz: d43ee8429cec1c76986f5e315f7918a8a885a8a39d2702f90e16f319fc0bd63a9b403741697615f7a734ea8388fa97e90738e27efec8a58f7d1039c2f5622673
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.147.0 (2025-11-21)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.146.0...v1.147.0](https://github.com/Increase/increase-ruby/compare/v1.146.0...v1.147.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([0a711f3](https://github.com/Increase/increase-ruby/commit/0a711f397e3751e296444459f1a2fe1720ffd1a5))
|
|
10
|
+
|
|
3
11
|
## 1.146.0 (2025-11-21)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.145.0...v1.146.0](https://github.com/Increase/increase-ruby/compare/v1.145.0...v1.146.0)
|
data/README.md
CHANGED
|
@@ -263,9 +263,9 @@ module Increase
|
|
|
263
263
|
optional :name, String
|
|
264
264
|
|
|
265
265
|
# @!attribute phone
|
|
266
|
-
# The phone number to associate with the check's destination address.
|
|
267
|
-
# supplied to FedEx as the contact
|
|
268
|
-
# case of delivery issues.
|
|
266
|
+
# The phone number to associate with the check's destination address. Only used if
|
|
267
|
+
# shipping method is `fedex_overnight`. Will be supplied to FedEx as the contact
|
|
268
|
+
# phone number for the recipient to be used in case of delivery issues.
|
|
269
269
|
#
|
|
270
270
|
# @return [String, nil]
|
|
271
271
|
optional :phone, String
|
|
@@ -289,7 +289,7 @@ module Increase
|
|
|
289
289
|
#
|
|
290
290
|
# @param name [String] The name component of the check's destination address. Defaults to the provided
|
|
291
291
|
#
|
|
292
|
-
# @param phone [String] The phone number to associate with the check's destination address.
|
|
292
|
+
# @param phone [String] The phone number to associate with the check's destination address. Only used if
|
|
293
293
|
end
|
|
294
294
|
|
|
295
295
|
class Payer < Increase::Internal::Type::BaseModel
|
data/lib/increase/version.rb
CHANGED
|
@@ -495,9 +495,9 @@ module Increase
|
|
|
495
495
|
sig { params(name: String).void }
|
|
496
496
|
attr_writer :name
|
|
497
497
|
|
|
498
|
-
# The phone number to associate with the check's destination address.
|
|
499
|
-
# supplied to FedEx as the contact
|
|
500
|
-
# case of delivery issues.
|
|
498
|
+
# The phone number to associate with the check's destination address. Only used if
|
|
499
|
+
# shipping method is `fedex_overnight`. Will be supplied to FedEx as the contact
|
|
500
|
+
# phone number for the recipient to be used in case of delivery issues.
|
|
501
501
|
sig { returns(T.nilable(String)) }
|
|
502
502
|
attr_reader :phone
|
|
503
503
|
|
|
@@ -530,9 +530,9 @@ module Increase
|
|
|
530
530
|
# The name component of the check's destination address. Defaults to the provided
|
|
531
531
|
# `recipient_name` parameter if `name` is not provided.
|
|
532
532
|
name: nil,
|
|
533
|
-
# The phone number to associate with the check's destination address.
|
|
534
|
-
# supplied to FedEx as the contact
|
|
535
|
-
# case of delivery issues.
|
|
533
|
+
# The phone number to associate with the check's destination address. Only used if
|
|
534
|
+
# shipping method is `fedex_overnight`. Will be supplied to FedEx as the contact
|
|
535
|
+
# phone number for the recipient to be used in case of delivery issues.
|
|
536
536
|
phone: nil
|
|
537
537
|
)
|
|
538
538
|
end
|