increase 1.330.0 → 1.331.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/increase/models/entity_create_params.rb +7 -4
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/entity_create_params.rbi +12 -6
- 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: f30cfade1d167d8752eed6d9b15272510290060fd04d1ff948016ad20ea77a7d
|
|
4
|
+
data.tar.gz: d2460c646b88dd12eec9dcd1a6eb7b52fb3041e394dee2481738c03ff00abf83
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 72f90a0aae3a50e048dd4d750eafec7a5ff14a84557f1cab6c2441b6000581bda24e885553233f271ad56008ece309894b17f100fdf1a6a3e984331d7adcd39b
|
|
7
|
+
data.tar.gz: 639df41715cab35a626926d7add02cbb6fea991b38f341a7d64aa194c6959d38a5f66e18e74893ebd162f22ec72e6287a58b4ab2ec2a233fd0e3287fe10c5eca
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.331.0 (2026-05-18)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.330.0...v1.331.0](https://github.com/Increase/increase-ruby/compare/v1.330.0...v1.331.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([3686790](https://github.com/Increase/increase-ruby/commit/3686790b70dbac809f3700f2dd04a713d98c83b6))
|
|
10
|
+
|
|
3
11
|
## 1.330.0 (2026-05-17)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.329.0...v1.330.0](https://github.com/Increase/increase-ruby/compare/v1.329.0...v1.330.0)
|
data/README.md
CHANGED
|
@@ -146,9 +146,12 @@ module Increase
|
|
|
146
146
|
required :address, -> { Increase::EntityCreateParams::Corporation::Address }
|
|
147
147
|
|
|
148
148
|
# @!attribute beneficial_owners
|
|
149
|
-
# The identifying details of
|
|
150
|
-
#
|
|
151
|
-
#
|
|
149
|
+
# The identifying details of one control person (`control`), like the CEO, CFO, or
|
|
150
|
+
# other executive, plus each person who owns 25% or more of the business
|
|
151
|
+
# (`ownership`). At least one control person is required, and frequently, the
|
|
152
|
+
# `control` person is also `ownership`. In some cases, there are no individuals
|
|
153
|
+
# who own 25% or more of the business. In that case, you should submit a single
|
|
154
|
+
# `control` person.
|
|
152
155
|
#
|
|
153
156
|
# @return [Array<Increase::Models::EntityCreateParams::Corporation::BeneficialOwner>]
|
|
154
157
|
required :beneficial_owners,
|
|
@@ -215,7 +218,7 @@ module Increase
|
|
|
215
218
|
#
|
|
216
219
|
# @param address [Increase::Models::EntityCreateParams::Corporation::Address] The entity's physical address. Mail receiving locations like PO Boxes and PMB's
|
|
217
220
|
#
|
|
218
|
-
# @param beneficial_owners [Array<Increase::Models::EntityCreateParams::Corporation::BeneficialOwner>] The identifying details of
|
|
221
|
+
# @param beneficial_owners [Array<Increase::Models::EntityCreateParams::Corporation::BeneficialOwner>] The identifying details of one control person (`control`), like the CEO, CFO, or
|
|
219
222
|
#
|
|
220
223
|
# @param legal_identifier [Increase::Models::EntityCreateParams::Corporation::LegalIdentifier] The legal identifier of the corporation. This is usually the Employer Identifica
|
|
221
224
|
#
|
data/lib/increase/version.rb
CHANGED
|
@@ -296,9 +296,12 @@ module Increase
|
|
|
296
296
|
end
|
|
297
297
|
attr_writer :address
|
|
298
298
|
|
|
299
|
-
# The identifying details of
|
|
300
|
-
#
|
|
301
|
-
#
|
|
299
|
+
# The identifying details of one control person (`control`), like the CEO, CFO, or
|
|
300
|
+
# other executive, plus each person who owns 25% or more of the business
|
|
301
|
+
# (`ownership`). At least one control person is required, and frequently, the
|
|
302
|
+
# `control` person is also `ownership`. In some cases, there are no individuals
|
|
303
|
+
# who own 25% or more of the business. In that case, you should submit a single
|
|
304
|
+
# `control` person.
|
|
302
305
|
sig do
|
|
303
306
|
returns(
|
|
304
307
|
T::Array[Increase::EntityCreateParams::Corporation::BeneficialOwner]
|
|
@@ -403,9 +406,12 @@ module Increase
|
|
|
403
406
|
# The entity's physical address. Mail receiving locations like PO Boxes and PMB's
|
|
404
407
|
# are disallowed.
|
|
405
408
|
address:,
|
|
406
|
-
# The identifying details of
|
|
407
|
-
#
|
|
408
|
-
#
|
|
409
|
+
# The identifying details of one control person (`control`), like the CEO, CFO, or
|
|
410
|
+
# other executive, plus each person who owns 25% or more of the business
|
|
411
|
+
# (`ownership`). At least one control person is required, and frequently, the
|
|
412
|
+
# `control` person is also `ownership`. In some cases, there are no individuals
|
|
413
|
+
# who own 25% or more of the business. In that case, you should submit a single
|
|
414
|
+
# `control` person.
|
|
409
415
|
beneficial_owners:,
|
|
410
416
|
# The legal identifier of the corporation. This is usually the Employer
|
|
411
417
|
# Identification Number (EIN).
|
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.
|
|
4
|
+
version: 1.331.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-05-
|
|
11
|
+
date: 2026-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|