increase 1.145.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: d6fa8606c813951f66b916736d7905e577c36ee284e2fe47a16712a03ccfd9e2
4
- data.tar.gz: 020b75cc07043929d4e0b3fd58acaa6a5fa1d7ce565b0eaecb552000da76fdf8
3
+ metadata.gz: be74f0ce9c9d4850d5675d0c3e74c9875e0545fba3b5ac7613d52dcabac9b33f
4
+ data.tar.gz: 3a87b352fbc040f034de41f9d911c048f3b7601c28e4b7e4976d86bb7b6a5ca4
5
5
  SHA512:
6
- metadata.gz: f9a7d2418ca9089d0cfd956d3a83d979a8eee57c52c16be0d79673818495cb73b7546d1357c5a6a5bd9c36c118d30b68c645cf8affee60006ca7108272093ecc
7
- data.tar.gz: 2263fd584202211b1e022be8f410b21193d8f7faa297d80d2d40f04a44573969c6357c72fc0cfb94acfec00eb9f3cea9a2bef3b2619d91c3cd695cee92ad6087
6
+ metadata.gz: 5dd7548227ac22aa03da39c2a6945c9c013609e864a3d5516dbcd419c020a4350930b016b668535085436626467325904051e0d6aa6774db8c9ae76824ba22df
7
+ data.tar.gz: d43ee8429cec1c76986f5e315f7918a8a885a8a39d2702f90e16f319fc0bd63a9b403741697615f7a734ea8388fa97e90738e27efec8a58f7d1039c2f5622673
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
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
+
11
+ ## 1.146.0 (2025-11-21)
12
+
13
+ Full Changelog: [v1.145.0...v1.146.0](https://github.com/Increase/increase-ruby/compare/v1.145.0...v1.146.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([36d98ac](https://github.com/Increase/increase-ruby/commit/36d98ac3cab20bfeac3e8d36297779bb75d1c155))
18
+
3
19
  ## 1.145.0 (2025-11-20)
4
20
 
5
21
  Full Changelog: [v1.144.0...v1.145.0](https://github.com/Increase/increase-ruby/compare/v1.144.0...v1.145.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.145.0"
18
+ gem "increase", "~> 1.147.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -589,6 +589,13 @@ module Increase
589
589
  # @return [String, nil]
590
590
  required :name, String, nil?: true
591
591
 
592
+ # @!attribute phone
593
+ # The phone number to be used in case of delivery issues at the check's mailing
594
+ # address. Only used for FedEx overnight shipping.
595
+ #
596
+ # @return [String, nil]
597
+ required :phone, String, nil?: true
598
+
592
599
  # @!attribute postal_code
593
600
  # The postal code of the check's destination.
594
601
  #
@@ -601,7 +608,11 @@ module Increase
601
608
  # @return [String, nil]
602
609
  required :state, String, nil?: true
603
610
 
604
- # @!method initialize(city:, line1:, line2:, name:, postal_code:, state:)
611
+ # @!method initialize(city:, line1:, line2:, name:, phone:, postal_code:, state:)
612
+ # Some parameter documentations has been truncated, see
613
+ # {Increase::Models::CheckTransfer::PhysicalCheck::MailingAddress} for more
614
+ # details.
615
+ #
605
616
  # Details for where Increase will mail the check.
606
617
  #
607
618
  # @param city [String, nil] The city of the check's destination.
@@ -612,6 +623,8 @@ module Increase
612
623
  #
613
624
  # @param name [String, nil] The name component of the check's mailing address.
614
625
  #
626
+ # @param phone [String, nil] The phone number to be used in case of delivery issues at the check's mailing ad
627
+ #
615
628
  # @param postal_code [String, nil] The postal code of the check's destination.
616
629
  #
617
630
  # @param state [String, nil] The state of the check's destination.
@@ -262,7 +262,15 @@ module Increase
262
262
  # @return [String, nil]
263
263
  optional :name, String
264
264
 
265
- # @!method initialize(city:, line1:, postal_code:, state:, line2: nil, name: nil)
265
+ # @!attribute phone
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
+ #
270
+ # @return [String, nil]
271
+ optional :phone, String
272
+
273
+ # @!method initialize(city:, line1:, postal_code:, state:, line2: nil, name: nil, phone: nil)
266
274
  # Some parameter documentations has been truncated, see
267
275
  # {Increase::Models::CheckTransferCreateParams::PhysicalCheck::MailingAddress} for
268
276
  # more details.
@@ -280,6 +288,8 @@ module Increase
280
288
  # @param line2 [String] The second line of the address component of the check's destination address.
281
289
  #
282
290
  # @param name [String] The name component of the check's destination address. Defaults to the provided
291
+ #
292
+ # @param phone [String] The phone number to associate with the check's destination address. Only used if
283
293
  end
284
294
 
285
295
  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.145.0"
4
+ VERSION = "1.147.0"
5
5
  end
@@ -961,6 +961,11 @@ module Increase
961
961
  sig { returns(T.nilable(String)) }
962
962
  attr_accessor :name
963
963
 
964
+ # The phone number to be used in case of delivery issues at the check's mailing
965
+ # address. Only used for FedEx overnight shipping.
966
+ sig { returns(T.nilable(String)) }
967
+ attr_accessor :phone
968
+
964
969
  # The postal code of the check's destination.
965
970
  sig { returns(T.nilable(String)) }
966
971
  attr_accessor :postal_code
@@ -976,6 +981,7 @@ module Increase
976
981
  line1: T.nilable(String),
977
982
  line2: T.nilable(String),
978
983
  name: T.nilable(String),
984
+ phone: T.nilable(String),
979
985
  postal_code: T.nilable(String),
980
986
  state: T.nilable(String)
981
987
  ).returns(T.attached_class)
@@ -989,6 +995,9 @@ module Increase
989
995
  line2:,
990
996
  # The name component of the check's mailing address.
991
997
  name:,
998
+ # The phone number to be used in case of delivery issues at the check's mailing
999
+ # address. Only used for FedEx overnight shipping.
1000
+ phone:,
992
1001
  # The postal code of the check's destination.
993
1002
  postal_code:,
994
1003
  # The state of the check's destination.
@@ -1003,6 +1012,7 @@ module Increase
1003
1012
  line1: T.nilable(String),
1004
1013
  line2: T.nilable(String),
1005
1014
  name: T.nilable(String),
1015
+ phone: T.nilable(String),
1006
1016
  postal_code: T.nilable(String),
1007
1017
  state: T.nilable(String)
1008
1018
  }
@@ -495,6 +495,15 @@ 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. 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
+ sig { returns(T.nilable(String)) }
502
+ attr_reader :phone
503
+
504
+ sig { params(phone: String).void }
505
+ attr_writer :phone
506
+
498
507
  # Details for where Increase will mail the check.
499
508
  sig do
500
509
  params(
@@ -503,7 +512,8 @@ module Increase
503
512
  postal_code: String,
504
513
  state: String,
505
514
  line2: String,
506
- name: String
515
+ name: String,
516
+ phone: String
507
517
  ).returns(T.attached_class)
508
518
  end
509
519
  def self.new(
@@ -519,7 +529,11 @@ module Increase
519
529
  line2: nil,
520
530
  # The name component of the check's destination address. Defaults to the provided
521
531
  # `recipient_name` parameter if `name` is not provided.
522
- name: nil
532
+ name: nil,
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
+ phone: nil
523
537
  )
524
538
  end
525
539
 
@@ -531,7 +545,8 @@ module Increase
531
545
  postal_code: String,
532
546
  state: String,
533
547
  line2: String,
534
- name: String
548
+ name: String,
549
+ phone: String
535
550
  }
536
551
  )
537
552
  end
@@ -368,6 +368,7 @@ module Increase
368
368
  :line1 => String?,
369
369
  :line2 => String?,
370
370
  name: String?,
371
+ phone: String?,
371
372
  postal_code: String?,
372
373
  state: String?
373
374
  }
@@ -381,6 +382,8 @@ module Increase
381
382
 
382
383
  attr_accessor name: String?
383
384
 
385
+ attr_accessor phone: String?
386
+
384
387
  attr_accessor postal_code: String?
385
388
 
386
389
  attr_accessor state: String?
@@ -390,6 +393,7 @@ module Increase
390
393
  line1: String?,
391
394
  line2: String?,
392
395
  name: String?,
396
+ phone: String?,
393
397
  postal_code: String?,
394
398
  state: String?
395
399
  ) -> void
@@ -399,6 +403,7 @@ module Increase
399
403
  :line1 => String?,
400
404
  :line2 => String?,
401
405
  name: String?,
406
+ phone: String?,
402
407
  postal_code: String?,
403
408
  state: String?
404
409
  }
@@ -194,7 +194,8 @@ module Increase
194
194
  postal_code: String,
195
195
  state: String,
196
196
  :line2 => String,
197
- name: String
197
+ name: String,
198
+ phone: String
198
199
  }
199
200
 
200
201
  class MailingAddress < Increase::Internal::Type::BaseModel
@@ -214,13 +215,18 @@ module Increase
214
215
 
215
216
  def name=: (String) -> String
216
217
 
218
+ attr_reader phone: String?
219
+
220
+ def phone=: (String) -> String
221
+
217
222
  def initialize: (
218
223
  city: String,
219
224
  line1: String,
220
225
  postal_code: String,
221
226
  state: String,
222
227
  ?line2: String,
223
- ?name: String
228
+ ?name: String,
229
+ ?phone: String
224
230
  ) -> void
225
231
 
226
232
  def to_hash: -> {
@@ -229,7 +235,8 @@ module Increase
229
235
  postal_code: String,
230
236
  state: String,
231
237
  :line2 => String,
232
- name: String
238
+ name: String,
239
+ phone: String
233
240
  }
234
241
  end
235
242
 
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.145.0
4
+ version: 1.147.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-20 00:00:00.000000000 Z
11
+ date: 2025-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool