increase 1.288.0 → 1.290.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: 011b538550ff07f3f3d4c6c24a53cfa3eea6f81dd5016fdc059e90179102e7f4
4
- data.tar.gz: a34895560589a1593d61a89f6f0bb2854c007f7f2285b0c975b6219537519fda
3
+ metadata.gz: f7fff7d2a653221f521036af39abd21ec6bfc8f56be2422e21cfa2ab56c9045e
4
+ data.tar.gz: 10ff07fb3bda8c1c138da395e69da210245aa9de5db703e5227a9f1dd445b0d1
5
5
  SHA512:
6
- metadata.gz: 6ea5aa0f9294e6924d3d6b8944a7756bc8671641e2405f62d450c296f4f77b82bb5afe7446246605064ef6d90250ad5bc665567045af54b05d6a5a8c25c8f0cc
7
- data.tar.gz: bf83b07e8cfc87913e977530cad16ca40bd140f94ac737d5616d8a2a35e33f78043d50759aa57defc54c8bf844fc368ab3a4ecd4d730af6c999c22cb9440e376
6
+ metadata.gz: ec0ce92a291c36ee358b6c2cabb09438b61bb1bca39baf28ec9a5030cc2a1c86b5b92a045efee538508afdcac28bf55fa51d5043069ec4e8411829116e62166d
7
+ data.tar.gz: c379b2eda1183913471152eb5ca61f36aaca954ad0fba209452bf3b9e94763404c976ac42646e1b0e6a716c98e65e358d51d55cb9b2b726335c9451c4842abbe
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.290.0 (2026-04-11)
4
+
5
+ Full Changelog: [v1.289.0...v1.290.0](https://github.com/Increase/increase-ruby/compare/v1.289.0...v1.290.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([8946493](https://github.com/Increase/increase-ruby/commit/89464937f203db3e01835590524a71cdd8c1897f))
10
+
11
+ ## 1.289.0 (2026-04-11)
12
+
13
+ Full Changelog: [v1.288.0...v1.289.0](https://github.com/Increase/increase-ruby/compare/v1.288.0...v1.289.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([f60a660](https://github.com/Increase/increase-ruby/commit/f60a6605944da289e1142cdc51be2dbfb5acefc2))
18
+
3
19
  ## 1.288.0 (2026-04-10)
4
20
 
5
21
  Full Changelog: [v1.287.0...v1.288.0](https://github.com/Increase/increase-ruby/compare/v1.287.0...v1.288.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.288.0"
18
+ gem "increase", "~> 1.290.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -334,13 +334,28 @@ module Increase
334
334
  # @return [Increase::Models::EntityUpdateParams::NaturalPerson::Address, nil]
335
335
  optional :address, -> { Increase::EntityUpdateParams::NaturalPerson::Address }
336
336
 
337
+ # @!attribute confirmed_no_us_tax_id
338
+ # The identification method for an individual can only be a passport, driver's
339
+ # license, or other document if you've confirmed the individual does not have a US
340
+ # tax id (either a Social Security Number or Individual Taxpayer Identification
341
+ # Number).
342
+ #
343
+ # @return [Boolean, nil]
344
+ optional :confirmed_no_us_tax_id, Increase::Internal::Type::Boolean
345
+
346
+ # @!attribute identification
347
+ # A means of verifying the person's identity.
348
+ #
349
+ # @return [Increase::Models::EntityUpdateParams::NaturalPerson::Identification, nil]
350
+ optional :identification, -> { Increase::EntityUpdateParams::NaturalPerson::Identification }
351
+
337
352
  # @!attribute name
338
353
  # The legal name of the natural person.
339
354
  #
340
355
  # @return [String, nil]
341
356
  optional :name, String
342
357
 
343
- # @!method initialize(address: nil, name: nil)
358
+ # @!method initialize(address: nil, confirmed_no_us_tax_id: nil, identification: nil, name: nil)
344
359
  # Some parameter documentations has been truncated, see
345
360
  # {Increase::Models::EntityUpdateParams::NaturalPerson} for more details.
346
361
  #
@@ -349,6 +364,10 @@ module Increase
349
364
  #
350
365
  # @param address [Increase::Models::EntityUpdateParams::NaturalPerson::Address] The entity's physical address. Mail receiving locations like PO Boxes and PMB's
351
366
  #
367
+ # @param confirmed_no_us_tax_id [Boolean] The identification method for an individual can only be a passport, driver's lic
368
+ #
369
+ # @param identification [Increase::Models::EntityUpdateParams::NaturalPerson::Identification] A means of verifying the person's identity.
370
+ #
352
371
  # @param name [String] The legal name of the natural person.
353
372
 
354
373
  # @see Increase::Models::EntityUpdateParams::NaturalPerson#address
@@ -409,6 +428,216 @@ module Increase
409
428
  #
410
429
  # @param zip [String] The ZIP or postal code of the address. Required in certain countries.
411
430
  end
431
+
432
+ # @see Increase::Models::EntityUpdateParams::NaturalPerson#identification
433
+ class Identification < Increase::Internal::Type::BaseModel
434
+ # @!attribute method_
435
+ # A method that can be used to verify the individual's identity.
436
+ #
437
+ # @return [Symbol, Increase::Models::EntityUpdateParams::NaturalPerson::Identification::Method]
438
+ required :method_,
439
+ enum: -> { Increase::EntityUpdateParams::NaturalPerson::Identification::Method },
440
+ api_name: :method
441
+
442
+ # @!attribute number
443
+ # An identification number that can be used to verify the individual's identity,
444
+ # such as a social security number.
445
+ #
446
+ # @return [String]
447
+ required :number, String
448
+
449
+ # @!attribute drivers_license
450
+ # Information about the United States driver's license used for identification.
451
+ # Required if `method` is equal to `drivers_license`.
452
+ #
453
+ # @return [Increase::Models::EntityUpdateParams::NaturalPerson::Identification::DriversLicense, nil]
454
+ optional :drivers_license,
455
+ -> { Increase::EntityUpdateParams::NaturalPerson::Identification::DriversLicense }
456
+
457
+ # @!attribute other
458
+ # Information about the identification document provided. Required if `method` is
459
+ # equal to `other`.
460
+ #
461
+ # @return [Increase::Models::EntityUpdateParams::NaturalPerson::Identification::Other, nil]
462
+ optional :other, -> { Increase::EntityUpdateParams::NaturalPerson::Identification::Other }
463
+
464
+ # @!attribute passport
465
+ # Information about the passport used for identification. Required if `method` is
466
+ # equal to `passport`.
467
+ #
468
+ # @return [Increase::Models::EntityUpdateParams::NaturalPerson::Identification::Passport, nil]
469
+ optional :passport, -> { Increase::EntityUpdateParams::NaturalPerson::Identification::Passport }
470
+
471
+ # @!method initialize(method_:, number:, drivers_license: nil, other: nil, passport: nil)
472
+ # Some parameter documentations has been truncated, see
473
+ # {Increase::Models::EntityUpdateParams::NaturalPerson::Identification} for more
474
+ # details.
475
+ #
476
+ # A means of verifying the person's identity.
477
+ #
478
+ # @param method_ [Symbol, Increase::Models::EntityUpdateParams::NaturalPerson::Identification::Method] A method that can be used to verify the individual's identity.
479
+ #
480
+ # @param number [String] An identification number that can be used to verify the individual's identity, s
481
+ #
482
+ # @param drivers_license [Increase::Models::EntityUpdateParams::NaturalPerson::Identification::DriversLicense] Information about the United States driver's license used for identification. Re
483
+ #
484
+ # @param other [Increase::Models::EntityUpdateParams::NaturalPerson::Identification::Other] Information about the identification document provided. Required if `method` is
485
+ #
486
+ # @param passport [Increase::Models::EntityUpdateParams::NaturalPerson::Identification::Passport] Information about the passport used for identification. Required if `method` is
487
+
488
+ # A method that can be used to verify the individual's identity.
489
+ #
490
+ # @see Increase::Models::EntityUpdateParams::NaturalPerson::Identification#method_
491
+ module Method
492
+ extend Increase::Internal::Type::Enum
493
+
494
+ # A social security number.
495
+ SOCIAL_SECURITY_NUMBER = :social_security_number
496
+
497
+ # An individual taxpayer identification number (ITIN).
498
+ INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER = :individual_taxpayer_identification_number
499
+
500
+ # A passport number.
501
+ PASSPORT = :passport
502
+
503
+ # A driver's license number.
504
+ DRIVERS_LICENSE = :drivers_license
505
+
506
+ # Another identifying document.
507
+ OTHER = :other
508
+
509
+ # @!method self.values
510
+ # @return [Array<Symbol>]
511
+ end
512
+
513
+ # @see Increase::Models::EntityUpdateParams::NaturalPerson::Identification#drivers_license
514
+ class DriversLicense < Increase::Internal::Type::BaseModel
515
+ # @!attribute expiration_date
516
+ # The driver's license's expiration date in YYYY-MM-DD format.
517
+ #
518
+ # @return [Date]
519
+ required :expiration_date, Date
520
+
521
+ # @!attribute file_id
522
+ # The identifier of the File containing the front of the driver's license.
523
+ #
524
+ # @return [String]
525
+ required :file_id, String
526
+
527
+ # @!attribute state
528
+ # The state that issued the provided driver's license.
529
+ #
530
+ # @return [String]
531
+ required :state, String
532
+
533
+ # @!attribute back_file_id
534
+ # The identifier of the File containing the back of the driver's license.
535
+ #
536
+ # @return [String, nil]
537
+ optional :back_file_id, String
538
+
539
+ # @!method initialize(expiration_date:, file_id:, state:, back_file_id: nil)
540
+ # Information about the United States driver's license used for identification.
541
+ # Required if `method` is equal to `drivers_license`.
542
+ #
543
+ # @param expiration_date [Date] The driver's license's expiration date in YYYY-MM-DD format.
544
+ #
545
+ # @param file_id [String] The identifier of the File containing the front of the driver's license.
546
+ #
547
+ # @param state [String] The state that issued the provided driver's license.
548
+ #
549
+ # @param back_file_id [String] The identifier of the File containing the back of the driver's license.
550
+ end
551
+
552
+ # @see Increase::Models::EntityUpdateParams::NaturalPerson::Identification#other
553
+ class Other < Increase::Internal::Type::BaseModel
554
+ # @!attribute country
555
+ # The two-character ISO 3166-1 code representing the country that issued the
556
+ # document (e.g., `US`).
557
+ #
558
+ # @return [String]
559
+ required :country, String
560
+
561
+ # @!attribute description
562
+ # A description of the document submitted.
563
+ #
564
+ # @return [String]
565
+ required :description, String
566
+
567
+ # @!attribute file_id
568
+ # The identifier of the File containing the front of the document.
569
+ #
570
+ # @return [String]
571
+ required :file_id, String
572
+
573
+ # @!attribute back_file_id
574
+ # The identifier of the File containing the back of the document. Not every
575
+ # document has a reverse side.
576
+ #
577
+ # @return [String, nil]
578
+ optional :back_file_id, String
579
+
580
+ # @!attribute expiration_date
581
+ # The document's expiration date in YYYY-MM-DD format.
582
+ #
583
+ # @return [Date, nil]
584
+ optional :expiration_date, Date
585
+
586
+ # @!method initialize(country:, description:, file_id:, back_file_id: nil, expiration_date: nil)
587
+ # Some parameter documentations has been truncated, see
588
+ # {Increase::Models::EntityUpdateParams::NaturalPerson::Identification::Other} for
589
+ # more details.
590
+ #
591
+ # Information about the identification document provided. Required if `method` is
592
+ # equal to `other`.
593
+ #
594
+ # @param country [String] The two-character ISO 3166-1 code representing the country that issued the docum
595
+ #
596
+ # @param description [String] A description of the document submitted.
597
+ #
598
+ # @param file_id [String] The identifier of the File containing the front of the document.
599
+ #
600
+ # @param back_file_id [String] The identifier of the File containing the back of the document. Not every docume
601
+ #
602
+ # @param expiration_date [Date] The document's expiration date in YYYY-MM-DD format.
603
+ end
604
+
605
+ # @see Increase::Models::EntityUpdateParams::NaturalPerson::Identification#passport
606
+ class Passport < Increase::Internal::Type::BaseModel
607
+ # @!attribute country
608
+ # The two-character ISO 3166-1 code representing the country that issued the
609
+ # document (e.g., `US`).
610
+ #
611
+ # @return [String]
612
+ required :country, String
613
+
614
+ # @!attribute expiration_date
615
+ # The passport's expiration date in YYYY-MM-DD format.
616
+ #
617
+ # @return [Date]
618
+ required :expiration_date, Date
619
+
620
+ # @!attribute file_id
621
+ # The identifier of the File containing the passport.
622
+ #
623
+ # @return [String]
624
+ required :file_id, String
625
+
626
+ # @!method initialize(country:, expiration_date:, file_id:)
627
+ # Some parameter documentations has been truncated, see
628
+ # {Increase::Models::EntityUpdateParams::NaturalPerson::Identification::Passport}
629
+ # for more details.
630
+ #
631
+ # Information about the passport used for identification. Required if `method` is
632
+ # equal to `passport`.
633
+ #
634
+ # @param country [String] The two-character ISO 3166-1 code representing the country that issued the docum
635
+ #
636
+ # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format.
637
+ #
638
+ # @param file_id [String] The identifier of the File containing the passport.
639
+ end
640
+ end
412
641
  end
413
642
 
414
643
  class RiskRating < Increase::Internal::Type::BaseModel
@@ -34,13 +34,6 @@ module Increase
34
34
  # @return [Increase::Models::ExportCreateParams::AccountVerificationLetter, nil]
35
35
  optional :account_verification_letter, -> { Increase::ExportCreateParams::AccountVerificationLetter }
36
36
 
37
- # @!attribute balance_csv
38
- # Options for the created export. Required if `category` is equal to
39
- # `balance_csv`.
40
- #
41
- # @return [Increase::Models::ExportCreateParams::BalanceCsv, nil]
42
- optional :balance_csv, -> { Increase::ExportCreateParams::BalanceCsv }
43
-
44
37
  # @!attribute bookkeeping_account_balance_csv
45
38
  # Options for the created export. Required if `category` is equal to
46
39
  # `bookkeeping_account_balance_csv`.
@@ -89,7 +82,7 @@ module Increase
89
82
  # @return [Increase::Models::ExportCreateParams::VoidedCheck, nil]
90
83
  optional :voided_check, -> { Increase::ExportCreateParams::VoidedCheck }
91
84
 
92
- # @!method initialize(category:, account_statement_bai2: nil, account_statement_ofx: nil, account_verification_letter: nil, balance_csv: nil, bookkeeping_account_balance_csv: nil, daily_account_balance_csv: nil, entity_csv: nil, funding_instructions: nil, transaction_csv: nil, vendor_csv: nil, voided_check: nil, request_options: {})
85
+ # @!method initialize(category:, account_statement_bai2: nil, account_statement_ofx: nil, account_verification_letter: nil, bookkeeping_account_balance_csv: nil, daily_account_balance_csv: nil, entity_csv: nil, funding_instructions: nil, transaction_csv: nil, vendor_csv: nil, voided_check: nil, request_options: {})
93
86
  # Some parameter documentations has been truncated, see
94
87
  # {Increase::Models::ExportCreateParams} for more details.
95
88
  #
@@ -101,8 +94,6 @@ module Increase
101
94
  #
102
95
  # @param account_verification_letter [Increase::Models::ExportCreateParams::AccountVerificationLetter] Options for the created export. Required if `category` is equal to `account_veri
103
96
  #
104
- # @param balance_csv [Increase::Models::ExportCreateParams::BalanceCsv] Options for the created export. Required if `category` is equal to `balance_csv`
105
- #
106
97
  # @param bookkeeping_account_balance_csv [Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv] Options for the created export. Required if `category` is equal to
107
98
  # `bookkeeping\_
108
99
  #
@@ -266,73 +257,6 @@ module Increase
266
257
  # @param balance_date [Date] The date of the balance to include in the letter. Defaults to the current date.
267
258
  end
268
259
 
269
- class BalanceCsv < Increase::Internal::Type::BaseModel
270
- # @!attribute account_id
271
- # Filter exported Balances to the specified Account.
272
- #
273
- # @return [String, nil]
274
- optional :account_id, String
275
-
276
- # @!attribute created_at
277
- # Filter results by time range on the `created_at` attribute.
278
- #
279
- # @return [Increase::Models::ExportCreateParams::BalanceCsv::CreatedAt, nil]
280
- optional :created_at, -> { Increase::ExportCreateParams::BalanceCsv::CreatedAt }
281
-
282
- # @!method initialize(account_id: nil, created_at: nil)
283
- # Options for the created export. Required if `category` is equal to
284
- # `balance_csv`.
285
- #
286
- # @param account_id [String] Filter exported Balances to the specified Account.
287
- #
288
- # @param created_at [Increase::Models::ExportCreateParams::BalanceCsv::CreatedAt] Filter results by time range on the `created_at` attribute.
289
-
290
- # @see Increase::Models::ExportCreateParams::BalanceCsv#created_at
291
- class CreatedAt < Increase::Internal::Type::BaseModel
292
- # @!attribute after
293
- # Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
294
- # timestamp.
295
- #
296
- # @return [Time, nil]
297
- optional :after, Time
298
-
299
- # @!attribute before
300
- # Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
301
- # timestamp.
302
- #
303
- # @return [Time, nil]
304
- optional :before, Time
305
-
306
- # @!attribute on_or_after
307
- # Return results on or after this
308
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
309
- #
310
- # @return [Time, nil]
311
- optional :on_or_after, Time
312
-
313
- # @!attribute on_or_before
314
- # Return results on or before this
315
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
316
- #
317
- # @return [Time, nil]
318
- optional :on_or_before, Time
319
-
320
- # @!method initialize(after: nil, before: nil, on_or_after: nil, on_or_before: nil)
321
- # Some parameter documentations has been truncated, see
322
- # {Increase::Models::ExportCreateParams::BalanceCsv::CreatedAt} for more details.
323
- #
324
- # Filter results by time range on the `created_at` attribute.
325
- #
326
- # @param after [Time] Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) tim
327
- #
328
- # @param before [Time] Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) ti
329
- #
330
- # @param on_or_after [Time] Return results on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_860
331
- #
332
- # @param on_or_before [Time] Return results on or before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_86
333
- end
334
- end
335
-
336
260
  class BookkeepingAccountBalanceCsv < Increase::Internal::Type::BaseModel
337
261
  # @!attribute bookkeeping_account_id
338
262
  # Filter exported Bookkeeping Account Balances to the specified Bookkeeping
@@ -8,7 +8,7 @@ module Increase
8
8
  #
9
9
  # Create an Export
10
10
  #
11
- # @overload create(category:, account_statement_bai2: nil, account_statement_ofx: nil, account_verification_letter: nil, balance_csv: nil, bookkeeping_account_balance_csv: nil, daily_account_balance_csv: nil, entity_csv: nil, funding_instructions: nil, transaction_csv: nil, vendor_csv: nil, voided_check: nil, request_options: {})
11
+ # @overload create(category:, account_statement_bai2: nil, account_statement_ofx: nil, account_verification_letter: nil, bookkeeping_account_balance_csv: nil, daily_account_balance_csv: nil, entity_csv: nil, funding_instructions: nil, transaction_csv: nil, vendor_csv: nil, voided_check: nil, request_options: {})
12
12
  #
13
13
  # @param category [Symbol, Increase::Models::ExportCreateParams::Category] The type of Export to create.
14
14
  #
@@ -18,8 +18,6 @@ module Increase
18
18
  #
19
19
  # @param account_verification_letter [Increase::Models::ExportCreateParams::AccountVerificationLetter] Options for the created export. Required if `category` is equal to `account_veri
20
20
  #
21
- # @param balance_csv [Increase::Models::ExportCreateParams::BalanceCsv] Options for the created export. Required if `category` is equal to `balance_csv`
22
- #
23
21
  # @param bookkeeping_account_balance_csv [Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv] Options for the created export. Required if `category` is equal to
24
22
  # `bookkeeping\_
25
23
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.288.0"
4
+ VERSION = "1.290.0"
5
5
  end