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 +4 -4
- data/README.md +1 -1
- data/lib/increase/models/check_transfer.rb +2 -2
- data/lib/increase/models/check_transfer_create_params.rb +2 -2
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/check_transfer.rbi +2 -2
- data/rbi/increase/models/check_transfer_create_params.rbi +2 -2
- data/sig/increase/models/check_transfer.rbs +2 -2
- data/sig/increase/models/check_transfer_create_params.rbs +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 051e221b4b9e220039b220c35f88027ef1dea35644a4ff105b0d33187fe3f44b
|
|
4
|
+
data.tar.gz: 6cbf695fd5e1176392ad5741af4350e2b06b37e3aec412fd794b0d8306de4dd2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 14c0e1b06b59397c0fbf4c4a87cc9ccdde2e2f238c30b730f6e8641f27fb798d2220b7e856a216362489390f69070ff6048f8b88a1a0d488b067f6f01e0519ad
|
|
7
|
+
data.tar.gz: d16ce855d08e1a2bc873c5f55200f344e11964ee0de1623af6bc00cb5940130401f4a74a4f72c0fef7e72de059b4ac597d38c77b80e08c18dc219c4f77bae820
|
data/README.md
CHANGED
|
@@ -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
|
data/lib/increase/version.rb
CHANGED
|
@@ -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.
|
|
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-
|
|
11
|
+
date: 2026-07-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|