increase 1.346.0 → 1.346.1

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: 66984e6af96b870b6d1830162758f528a2aa013deb571be6d75f132bb4a9206d
4
- data.tar.gz: cf8176c80d7114a2f75ffe85260ac16836da42c554c6ffc5aa0060b2286f29fc
3
+ metadata.gz: 051e221b4b9e220039b220c35f88027ef1dea35644a4ff105b0d33187fe3f44b
4
+ data.tar.gz: 6cbf695fd5e1176392ad5741af4350e2b06b37e3aec412fd794b0d8306de4dd2
5
5
  SHA512:
6
- metadata.gz: e845b2fd4b016b2d4d5138d4bb94826daf664105096bca3465e5672c3acf40e7f5c7e8398d917a268c2f2ed9f6604412840577d3167960a147754396a0ae3aac
7
- data.tar.gz: 80d3e23ab765033234c4a6e63d285cfe524c9e66f0fb00fa754528171279104c7785bf3b6642884c121aa55ddaa52c482217986f253bf4e1d4fbf4878b67e7e1
6
+ metadata.gz: 14c0e1b06b59397c0fbf4c4a87cc9ccdde2e2f238c30b730f6e8641f27fb798d2220b7e856a216362489390f69070ff6048f8b88a1a0d488b067f6f01e0519ad
7
+ data.tar.gz: d16ce855d08e1a2bc873c5f55200f344e11964ee0de1623af6bc00cb5940130401f4a74a4f72c0fef7e72de059b4ac597d38c77b80e08c18dc219c4f77bae820
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.346.0"
18
+ gem "increase", "~> 1.346.1"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -753,10 +753,10 @@ module Increase
753
753
  module ShippingMethod
754
754
  extend Increase::Internal::Type::Enum
755
755
 
756
- # USPS First Class
756
+ # Ship the checks via USPS First Class, which supports a maximum of 1000 pages (checks and attachments combined).
757
757
  USPS_FIRST_CLASS = :usps_first_class
758
758
 
759
- # FedEx Overnight
759
+ # Ship the checks via FedEx Overnight, which supports a maximum of 50 pages (checks and attachments combined).
760
760
  FEDEX_OVERNIGHT = :fedex_overnight
761
761
 
762
762
  # @!method self.values
@@ -433,10 +433,10 @@ module Increase
433
433
  module ShippingMethod
434
434
  extend Increase::Internal::Type::Enum
435
435
 
436
- # USPS First Class
436
+ # Ship the checks via USPS First Class, which supports a maximum of 1000 pages (checks and attachments combined).
437
437
  USPS_FIRST_CLASS = :usps_first_class
438
438
 
439
- # FedEx Overnight
439
+ # Ship the checks via FedEx Overnight, which supports a maximum of 50 pages (checks and attachments combined).
440
440
  FEDEX_OVERNIGHT = :fedex_overnight
441
441
 
442
442
  # @!method self.values
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.346.0"
4
+ VERSION = "1.346.1"
5
5
  end
@@ -1140,14 +1140,14 @@ module Increase
1140
1140
  end
1141
1141
  OrSymbol = T.type_alias { T.any(Symbol, String) }
1142
1142
 
1143
- # USPS First Class
1143
+ # Ship the checks via USPS First Class, which supports a maximum of 1000 pages (checks and attachments combined).
1144
1144
  USPS_FIRST_CLASS =
1145
1145
  T.let(
1146
1146
  :usps_first_class,
1147
1147
  Increase::CheckTransfer::PhysicalCheck::ShippingMethod::TaggedSymbol
1148
1148
  )
1149
1149
 
1150
- # FedEx Overnight
1150
+ # Ship the checks via FedEx Overnight, which supports a maximum of 50 pages (checks and attachments combined).
1151
1151
  FEDEX_OVERNIGHT =
1152
1152
  T.let(
1153
1153
  :fedex_overnight,
@@ -718,14 +718,14 @@ module Increase
718
718
  end
719
719
  OrSymbol = T.type_alias { T.any(Symbol, String) }
720
720
 
721
- # USPS First Class
721
+ # Ship the checks via USPS First Class, which supports a maximum of 1000 pages (checks and attachments combined).
722
722
  USPS_FIRST_CLASS =
723
723
  T.let(
724
724
  :usps_first_class,
725
725
  Increase::CheckTransferCreateParams::PhysicalCheck::ShippingMethod::TaggedSymbol
726
726
  )
727
727
 
728
- # FedEx Overnight
728
+ # Ship the checks via FedEx Overnight, which supports a maximum of 50 pages (checks and attachments combined).
729
729
  FEDEX_OVERNIGHT =
730
730
  T.let(
731
731
  :fedex_overnight,
@@ -468,10 +468,10 @@ module Increase
468
468
  module ShippingMethod
469
469
  extend Increase::Internal::Type::Enum
470
470
 
471
- # USPS First Class
471
+ # Ship the checks via USPS First Class, which supports a maximum of 1000 pages (checks and attachments combined).
472
472
  USPS_FIRST_CLASS: :usps_first_class
473
473
 
474
- # FedEx Overnight
474
+ # Ship the checks via FedEx Overnight, which supports a maximum of 50 pages (checks and attachments combined).
475
475
  FEDEX_OVERNIGHT: :fedex_overnight
476
476
 
477
477
  def self?.values: -> ::Array[Increase::Models::CheckTransfer::PhysicalCheck::shipping_method]
@@ -318,10 +318,10 @@ module Increase
318
318
  module ShippingMethod
319
319
  extend Increase::Internal::Type::Enum
320
320
 
321
- # USPS First Class
321
+ # Ship the checks via USPS First Class, which supports a maximum of 1000 pages (checks and attachments combined).
322
322
  USPS_FIRST_CLASS: :usps_first_class
323
323
 
324
- # FedEx Overnight
324
+ # Ship the checks via FedEx Overnight, which supports a maximum of 50 pages (checks and attachments combined).
325
325
  FEDEX_OVERNIGHT: :fedex_overnight
326
326
 
327
327
  def self?.values: -> ::Array[Increase::Models::CheckTransferCreateParams::PhysicalCheck::shipping_method]
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.346.0
4
+ version: 1.346.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-07-17 00:00:00.000000000 Z
11
+ date: 2026-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi