increase 1.345.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: 2edaaac94cde0869b22ad9f9f8f311bb4fbcdd1717cf93ae8974bc73bd13c0f0
4
- data.tar.gz: d0f5a59371e499324f49f056bb279e4463928e101815f68b0845f735c229f749
3
+ metadata.gz: 051e221b4b9e220039b220c35f88027ef1dea35644a4ff105b0d33187fe3f44b
4
+ data.tar.gz: 6cbf695fd5e1176392ad5741af4350e2b06b37e3aec412fd794b0d8306de4dd2
5
5
  SHA512:
6
- metadata.gz: 550f849f13a68301f41f486120ba6032ee3f29d1d01068b669a5734f3e49a98998a6a2abdf9df91695024d957324131cfb6506e4d6e04940482cdcd09281a2bd
7
- data.tar.gz: 89c31f20ba1b121aaa80ab7313a50dec061a5adac61dc08051ef8fe40a1be544806d52c1bafe76fb4d5d788c28907996f504d56f38d3453a5bd7f759539116a8
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.345.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
@@ -786,6 +786,13 @@ module Increase
786
786
  end
787
787
 
788
788
  class TrackingUpdate < Increase::Internal::Type::BaseModel
789
+ # @!attribute carrier_estimated_delivery_at
790
+ # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time when the
791
+ # carrier expects the check to be delivered.
792
+ #
793
+ # @return [Time, nil]
794
+ required :carrier_estimated_delivery_at, Time, nil?: true
795
+
789
796
  # @!attribute category
790
797
  # The type of tracking event.
791
798
  #
@@ -811,7 +818,11 @@ module Increase
811
818
  # @return [String]
812
819
  required :postal_code, String
813
820
 
814
- # @!method initialize(category:, country:, created_at:, postal_code:)
821
+ # @!method initialize(carrier_estimated_delivery_at:, category:, country:, created_at:, postal_code:)
822
+ # @param carrier_estimated_delivery_at [Time, nil]
823
+ # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time when the
824
+ # carrier expects the check to be delivered.
825
+ #
815
826
  # @param category [Symbol, Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::Category]
816
827
  # The type of tracking event.
817
828
  #
@@ -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
@@ -1426,25 +1426,25 @@ module Increase
1426
1426
  # @see Increase::Models::Entity::Trust#grantor
1427
1427
  class Grantor < Increase::Internal::Type::BaseModel
1428
1428
  # @!attribute address
1429
- # The person's address.
1429
+ # The grantor's address.
1430
1430
  #
1431
- # @return [Increase::Models::Entity::Trust::Grantor::Address]
1432
- required :address, -> { Increase::Entity::Trust::Grantor::Address }
1431
+ # @return [Increase::Models::Entity::Trust::Grantor::Address, nil]
1432
+ required :address, -> { Increase::Entity::Trust::Grantor::Address }, nil?: true
1433
1433
 
1434
1434
  # @!attribute date_of_birth
1435
- # The person's date of birth in YYYY-MM-DD format.
1435
+ # The grantor's date of birth in YYYY-MM-DD format.
1436
1436
  #
1437
- # @return [Date]
1438
- required :date_of_birth, Date
1437
+ # @return [Date, nil]
1438
+ required :date_of_birth, Date, nil?: true
1439
1439
 
1440
1440
  # @!attribute identification
1441
- # A means of verifying the person's identity.
1441
+ # A means of verifying the grantor's identity.
1442
1442
  #
1443
1443
  # @return [Increase::Models::Entity::Trust::Grantor::Identification, nil]
1444
1444
  required :identification, -> { Increase::Entity::Trust::Grantor::Identification }, nil?: true
1445
1445
 
1446
1446
  # @!attribute name
1447
- # The person's legal name.
1447
+ # The grantor's legal name.
1448
1448
  #
1449
1449
  # @return [String]
1450
1450
  required :name, String
@@ -1452,14 +1452,14 @@ module Increase
1452
1452
  # @!method initialize(address:, date_of_birth:, identification:, name:)
1453
1453
  # The grantor of the trust. Will be present if the `category` is `revocable`.
1454
1454
  #
1455
- # @param address [Increase::Models::Entity::Trust::Grantor::Address] The person's address.
1455
+ # @param address [Increase::Models::Entity::Trust::Grantor::Address, nil] The grantor's address.
1456
1456
  #
1457
- # @param date_of_birth [Date] The person's date of birth in YYYY-MM-DD format.
1457
+ # @param date_of_birth [Date, nil] The grantor's date of birth in YYYY-MM-DD format.
1458
1458
  #
1459
1459
  # @param identification [Increase::Models::Entity::Trust::Grantor::Identification, nil]
1460
- # A means of verifying the person's identity.
1460
+ # A means of verifying the grantor's identity.
1461
1461
  #
1462
- # @param name [String] The person's legal name.
1462
+ # @param name [String] The grantor's legal name.
1463
1463
 
1464
1464
  # @see Increase::Models::Entity::Trust::Grantor#address
1465
1465
  class Address < Increase::Internal::Type::BaseModel
@@ -1501,7 +1501,7 @@ module Increase
1501
1501
  required :zip, String, nil?: true
1502
1502
 
1503
1503
  # @!method initialize(city:, country:, line1:, line2:, state:, zip:)
1504
- # The person's address.
1504
+ # The grantor's address.
1505
1505
  #
1506
1506
  # @param city [String, nil] The city, district, town, or village of the address.
1507
1507
  #
@@ -1521,7 +1521,7 @@ module Increase
1521
1521
  # @see Increase::Models::Entity::Trust::Grantor#identification
1522
1522
  class Identification < Increase::Internal::Type::BaseModel
1523
1523
  # @!attribute method_
1524
- # A method that can be used to verify the individual's identity.
1524
+ # A method that can be used to verify the grantor's identity.
1525
1525
  #
1526
1526
  # @return [Symbol, Increase::Models::Entity::Trust::Grantor::Identification::Method]
1527
1527
  required :method_,
@@ -1530,22 +1530,22 @@ module Increase
1530
1530
 
1531
1531
  # @!attribute number_last4
1532
1532
  # The last 4 digits of the identification number that can be used to verify the
1533
- # individual's identity.
1533
+ # grantor's identity.
1534
1534
  #
1535
1535
  # @return [String]
1536
1536
  required :number_last4, String
1537
1537
 
1538
1538
  # @!method initialize(method_:, number_last4:)
1539
- # A means of verifying the person's identity.
1539
+ # A means of verifying the grantor's identity.
1540
1540
  #
1541
1541
  # @param method_ [Symbol, Increase::Models::Entity::Trust::Grantor::Identification::Method]
1542
- # A method that can be used to verify the individual's identity.
1542
+ # A method that can be used to verify the grantor's identity.
1543
1543
  #
1544
1544
  # @param number_last4 [String]
1545
1545
  # The last 4 digits of the identification number that can be used to verify the
1546
- # individual's identity.
1546
+ # grantor's identity.
1547
1547
 
1548
- # A method that can be used to verify the individual's identity.
1548
+ # A method that can be used to verify the grantor's identity.
1549
1549
  #
1550
1550
  # @see Increase::Models::Entity::Trust::Grantor::Identification#method_
1551
1551
  module Method
@@ -2287,14 +2287,14 @@ module Increase
2287
2287
  # @see Increase::Models::EntityCreateParams::Trust#grantor
2288
2288
  class Grantor < Increase::Internal::Type::BaseModel
2289
2289
  # @!attribute address
2290
- # The individual's physical address. Mail receiving locations like PO Boxes and
2291
- # PMB's are disallowed.
2290
+ # The grantor's physical address. Mail receiving locations like PO Boxes and PMB's
2291
+ # are disallowed.
2292
2292
  #
2293
2293
  # @return [Increase::Models::EntityCreateParams::Trust::Grantor::Address]
2294
2294
  required :address, -> { Increase::EntityCreateParams::Trust::Grantor::Address }
2295
2295
 
2296
2296
  # @!attribute date_of_birth
2297
- # The person's date of birth in YYYY-MM-DD format.
2297
+ # The grantor's date of birth in YYYY-MM-DD format.
2298
2298
  #
2299
2299
  # @return [Date]
2300
2300
  required :date_of_birth, Date
@@ -2306,7 +2306,7 @@ module Increase
2306
2306
  required :identification, -> { Increase::EntityCreateParams::Trust::Grantor::Identification }
2307
2307
 
2308
2308
  # @!attribute name
2309
- # The person's legal name.
2309
+ # The grantor's legal name.
2310
2310
  #
2311
2311
  # @return [String]
2312
2312
  required :name, String
@@ -2324,15 +2324,15 @@ module Increase
2324
2324
  # The grantor of the trust. Required if `category` is equal to `revocable`.
2325
2325
  #
2326
2326
  # @param address [Increase::Models::EntityCreateParams::Trust::Grantor::Address]
2327
- # The individual's physical address. Mail receiving locations like PO Boxes and
2328
- # PMB's are disallowed.
2327
+ # The grantor's physical address. Mail receiving locations like PO Boxes and PMB's
2328
+ # are disallowed.
2329
2329
  #
2330
- # @param date_of_birth [Date] The person's date of birth in YYYY-MM-DD format.
2330
+ # @param date_of_birth [Date] The grantor's date of birth in YYYY-MM-DD format.
2331
2331
  #
2332
2332
  # @param identification [Increase::Models::EntityCreateParams::Trust::Grantor::Identification]
2333
2333
  # A means of verifying the person's identity.
2334
2334
  #
2335
- # @param name [String] The person's legal name.
2335
+ # @param name [String] The grantor's legal name.
2336
2336
  #
2337
2337
  # @param confirmed_no_us_tax_id [Boolean]
2338
2338
  # The identification method for an individual can only be a passport, driver's
@@ -2380,8 +2380,8 @@ module Increase
2380
2380
  optional :zip, String
2381
2381
 
2382
2382
  # @!method initialize(city:, country:, line1:, line2: nil, state: nil, zip: nil)
2383
- # The individual's physical address. Mail receiving locations like PO Boxes and
2384
- # PMB's are disallowed.
2383
+ # The grantor's physical address. Mail receiving locations like PO Boxes and PMB's
2384
+ # are disallowed.
2385
2385
  #
2386
2386
  # @param city [String] The city, district, town, or village of the address.
2387
2387
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.345.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,
@@ -1215,6 +1215,11 @@ module Increase
1215
1215
  )
1216
1216
  end
1217
1217
 
1218
+ # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time when the
1219
+ # carrier expects the check to be delivered.
1220
+ sig { returns(T.nilable(Time)) }
1221
+ attr_accessor :carrier_estimated_delivery_at
1222
+
1218
1223
  # The type of tracking event.
1219
1224
  sig do
1220
1225
  returns(
@@ -1238,6 +1243,7 @@ module Increase
1238
1243
 
1239
1244
  sig do
1240
1245
  params(
1246
+ carrier_estimated_delivery_at: T.nilable(Time),
1241
1247
  category:
1242
1248
  Increase::CheckTransfer::PhysicalCheck::TrackingUpdate::Category::OrSymbol,
1243
1249
  country: String,
@@ -1246,6 +1252,9 @@ module Increase
1246
1252
  ).returns(T.attached_class)
1247
1253
  end
1248
1254
  def self.new(
1255
+ # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time when the
1256
+ # carrier expects the check to be delivered.
1257
+ carrier_estimated_delivery_at:,
1249
1258
  # The type of tracking event.
1250
1259
  category:,
1251
1260
  # The ISO 3166-1 alpha-2 country code for the country where the event took place.
@@ -1261,6 +1270,7 @@ module Increase
1261
1270
  sig do
1262
1271
  override.returns(
1263
1272
  {
1273
+ carrier_estimated_delivery_at: T.nilable(Time),
1264
1274
  category:
1265
1275
  Increase::CheckTransfer::PhysicalCheck::TrackingUpdate::Category::TaggedSymbol,
1266
1276
  country: String,
@@ -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,
@@ -2367,22 +2367,23 @@ module Increase
2367
2367
  )
2368
2368
  end
2369
2369
 
2370
- # The person's address.
2371
- sig { returns(Increase::Entity::Trust::Grantor::Address) }
2370
+ # The grantor's address.
2371
+ sig { returns(T.nilable(Increase::Entity::Trust::Grantor::Address)) }
2372
2372
  attr_reader :address
2373
2373
 
2374
2374
  sig do
2375
2375
  params(
2376
- address: Increase::Entity::Trust::Grantor::Address::OrHash
2376
+ address:
2377
+ T.nilable(Increase::Entity::Trust::Grantor::Address::OrHash)
2377
2378
  ).void
2378
2379
  end
2379
2380
  attr_writer :address
2380
2381
 
2381
- # The person's date of birth in YYYY-MM-DD format.
2382
- sig { returns(Date) }
2382
+ # The grantor's date of birth in YYYY-MM-DD format.
2383
+ sig { returns(T.nilable(Date)) }
2383
2384
  attr_accessor :date_of_birth
2384
2385
 
2385
- # A means of verifying the person's identity.
2386
+ # A means of verifying the grantor's identity.
2386
2387
  sig do
2387
2388
  returns(T.nilable(Increase::Entity::Trust::Grantor::Identification))
2388
2389
  end
@@ -2398,15 +2399,16 @@ module Increase
2398
2399
  end
2399
2400
  attr_writer :identification
2400
2401
 
2401
- # The person's legal name.
2402
+ # The grantor's legal name.
2402
2403
  sig { returns(String) }
2403
2404
  attr_accessor :name
2404
2405
 
2405
2406
  # The grantor of the trust. Will be present if the `category` is `revocable`.
2406
2407
  sig do
2407
2408
  params(
2408
- address: Increase::Entity::Trust::Grantor::Address::OrHash,
2409
- date_of_birth: Date,
2409
+ address:
2410
+ T.nilable(Increase::Entity::Trust::Grantor::Address::OrHash),
2411
+ date_of_birth: T.nilable(Date),
2410
2412
  identification:
2411
2413
  T.nilable(
2412
2414
  Increase::Entity::Trust::Grantor::Identification::OrHash
@@ -2415,13 +2417,13 @@ module Increase
2415
2417
  ).returns(T.attached_class)
2416
2418
  end
2417
2419
  def self.new(
2418
- # The person's address.
2420
+ # The grantor's address.
2419
2421
  address:,
2420
- # The person's date of birth in YYYY-MM-DD format.
2422
+ # The grantor's date of birth in YYYY-MM-DD format.
2421
2423
  date_of_birth:,
2422
- # A means of verifying the person's identity.
2424
+ # A means of verifying the grantor's identity.
2423
2425
  identification:,
2424
- # The person's legal name.
2426
+ # The grantor's legal name.
2425
2427
  name:
2426
2428
  )
2427
2429
  end
@@ -2429,8 +2431,8 @@ module Increase
2429
2431
  sig do
2430
2432
  override.returns(
2431
2433
  {
2432
- address: Increase::Entity::Trust::Grantor::Address,
2433
- date_of_birth: Date,
2434
+ address: T.nilable(Increase::Entity::Trust::Grantor::Address),
2435
+ date_of_birth: T.nilable(Date),
2434
2436
  identification:
2435
2437
  T.nilable(Increase::Entity::Trust::Grantor::Identification),
2436
2438
  name: String
@@ -2474,7 +2476,7 @@ module Increase
2474
2476
  sig { returns(T.nilable(String)) }
2475
2477
  attr_accessor :zip
2476
2478
 
2477
- # The person's address.
2479
+ # The grantor's address.
2478
2480
  sig do
2479
2481
  params(
2480
2482
  city: T.nilable(String),
@@ -2527,7 +2529,7 @@ module Increase
2527
2529
  )
2528
2530
  end
2529
2531
 
2530
- # A method that can be used to verify the individual's identity.
2532
+ # A method that can be used to verify the grantor's identity.
2531
2533
  sig do
2532
2534
  returns(
2533
2535
  Increase::Entity::Trust::Grantor::Identification::Method::TaggedSymbol
@@ -2536,11 +2538,11 @@ module Increase
2536
2538
  attr_accessor :method_
2537
2539
 
2538
2540
  # The last 4 digits of the identification number that can be used to verify the
2539
- # individual's identity.
2541
+ # grantor's identity.
2540
2542
  sig { returns(String) }
2541
2543
  attr_accessor :number_last4
2542
2544
 
2543
- # A means of verifying the person's identity.
2545
+ # A means of verifying the grantor's identity.
2544
2546
  sig do
2545
2547
  params(
2546
2548
  method_:
@@ -2549,10 +2551,10 @@ module Increase
2549
2551
  ).returns(T.attached_class)
2550
2552
  end
2551
2553
  def self.new(
2552
- # A method that can be used to verify the individual's identity.
2554
+ # A method that can be used to verify the grantor's identity.
2553
2555
  method_:,
2554
2556
  # The last 4 digits of the identification number that can be used to verify the
2555
- # individual's identity.
2557
+ # grantor's identity.
2556
2558
  number_last4:
2557
2559
  )
2558
2560
  end
@@ -2569,7 +2571,7 @@ module Increase
2569
2571
  def to_hash
2570
2572
  end
2571
2573
 
2572
- # A method that can be used to verify the individual's identity.
2574
+ # A method that can be used to verify the grantor's identity.
2573
2575
  module Method
2574
2576
  extend Increase::Internal::Type::Enum
2575
2577
 
@@ -4093,8 +4093,8 @@ module Increase
4093
4093
  )
4094
4094
  end
4095
4095
 
4096
- # The individual's physical address. Mail receiving locations like PO Boxes and
4097
- # PMB's are disallowed.
4096
+ # The grantor's physical address. Mail receiving locations like PO Boxes and PMB's
4097
+ # are disallowed.
4098
4098
  sig { returns(Increase::EntityCreateParams::Trust::Grantor::Address) }
4099
4099
  attr_reader :address
4100
4100
 
@@ -4106,7 +4106,7 @@ module Increase
4106
4106
  end
4107
4107
  attr_writer :address
4108
4108
 
4109
- # The person's date of birth in YYYY-MM-DD format.
4109
+ # The grantor's date of birth in YYYY-MM-DD format.
4110
4110
  sig { returns(Date) }
4111
4111
  attr_accessor :date_of_birth
4112
4112
 
@@ -4126,7 +4126,7 @@ module Increase
4126
4126
  end
4127
4127
  attr_writer :identification
4128
4128
 
4129
- # The person's legal name.
4129
+ # The grantor's legal name.
4130
4130
  sig { returns(String) }
4131
4131
  attr_accessor :name
4132
4132
 
@@ -4153,14 +4153,14 @@ module Increase
4153
4153
  ).returns(T.attached_class)
4154
4154
  end
4155
4155
  def self.new(
4156
- # The individual's physical address. Mail receiving locations like PO Boxes and
4157
- # PMB's are disallowed.
4156
+ # The grantor's physical address. Mail receiving locations like PO Boxes and PMB's
4157
+ # are disallowed.
4158
4158
  address:,
4159
- # The person's date of birth in YYYY-MM-DD format.
4159
+ # The grantor's date of birth in YYYY-MM-DD format.
4160
4160
  date_of_birth:,
4161
4161
  # A means of verifying the person's identity.
4162
4162
  identification:,
4163
- # The person's legal name.
4163
+ # The grantor's legal name.
4164
4164
  name:,
4165
4165
  # The identification method for an individual can only be a passport, driver's
4166
4166
  # license, or other document if you've confirmed the individual does not have a US
@@ -4228,8 +4228,8 @@ module Increase
4228
4228
  sig { params(zip: String).void }
4229
4229
  attr_writer :zip
4230
4230
 
4231
- # The individual's physical address. Mail receiving locations like PO Boxes and
4232
- # PMB's are disallowed.
4231
+ # The grantor's physical address. Mail receiving locations like PO Boxes and PMB's
4232
+ # are disallowed.
4233
4233
  sig do
4234
4234
  params(
4235
4235
  city: String,
@@ -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]
@@ -491,6 +491,7 @@ module Increase
491
491
 
492
492
  type tracking_update =
493
493
  {
494
+ carrier_estimated_delivery_at: Time?,
494
495
  category: Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::category,
495
496
  country: String,
496
497
  created_at: Time,
@@ -498,6 +499,8 @@ module Increase
498
499
  }
499
500
 
500
501
  class TrackingUpdate < Increase::Internal::Type::BaseModel
502
+ attr_accessor carrier_estimated_delivery_at: Time?
503
+
501
504
  attr_accessor category: Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::category
502
505
 
503
506
  attr_accessor country: String
@@ -507,6 +510,7 @@ module Increase
507
510
  attr_accessor postal_code: String
508
511
 
509
512
  def initialize: (
513
+ carrier_estimated_delivery_at: Time?,
510
514
  category: Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::category,
511
515
  country: String,
512
516
  created_at: Time,
@@ -514,6 +518,7 @@ module Increase
514
518
  ) -> void
515
519
 
516
520
  def to_hash: -> {
521
+ carrier_estimated_delivery_at: Time?,
517
522
  category: Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::category,
518
523
  country: String,
519
524
  created_at: Time,
@@ -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]
@@ -1076,31 +1076,31 @@ module Increase
1076
1076
 
1077
1077
  type grantor =
1078
1078
  {
1079
- address: Increase::Entity::Trust::Grantor::Address,
1080
- date_of_birth: Date,
1079
+ address: Increase::Entity::Trust::Grantor::Address?,
1080
+ date_of_birth: Date?,
1081
1081
  identification: Increase::Entity::Trust::Grantor::Identification?,
1082
1082
  name: String
1083
1083
  }
1084
1084
 
1085
1085
  class Grantor < Increase::Internal::Type::BaseModel
1086
- attr_accessor address: Increase::Entity::Trust::Grantor::Address
1086
+ attr_accessor address: Increase::Entity::Trust::Grantor::Address?
1087
1087
 
1088
- attr_accessor date_of_birth: Date
1088
+ attr_accessor date_of_birth: Date?
1089
1089
 
1090
1090
  attr_accessor identification: Increase::Entity::Trust::Grantor::Identification?
1091
1091
 
1092
1092
  attr_accessor name: String
1093
1093
 
1094
1094
  def initialize: (
1095
- address: Increase::Entity::Trust::Grantor::Address,
1096
- date_of_birth: Date,
1095
+ address: Increase::Entity::Trust::Grantor::Address?,
1096
+ date_of_birth: Date?,
1097
1097
  identification: Increase::Entity::Trust::Grantor::Identification?,
1098
1098
  name: String
1099
1099
  ) -> void
1100
1100
 
1101
1101
  def to_hash: -> {
1102
- address: Increase::Entity::Trust::Grantor::Address,
1103
- date_of_birth: Date,
1102
+ address: Increase::Entity::Trust::Grantor::Address?,
1103
+ date_of_birth: Date?,
1104
1104
  identification: Increase::Entity::Trust::Grantor::Identification?,
1105
1105
  name: String
1106
1106
  }
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.345.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