increase 1.247.0 → 1.248.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_beneficial_owner.rb +6 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/entity_beneficial_owner.rbi +5 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6783e9a6f55ff019ac7b6755ba9a795a701bdf750fce5f97dbed1a789ca34729
|
|
4
|
+
data.tar.gz: c02031f12b1b61a6ce93cf5416375305a09fc226d043a99fa5e956cdd9eab4a5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6b8b109b775737c5b611af4858ac99587a3cabc79dede5b9d6e3ea8b32b524f4a86dea140dc3b194da22af336a70931ed77166680acee461e6e0550c0512c9c0
|
|
7
|
+
data.tar.gz: 3539a0bb219cd966af084ab729aab69046bd0780dec1646f9ea217e8e4314f107940dca1932da117d691ccf62db53a89d1e69ba8460e4458d52f188b9ca5af7b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.248.0 (2026-03-12)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.247.0...v1.248.0](https://github.com/Increase/increase-ruby/compare/v1.247.0...v1.248.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([a898f55](https://github.com/Increase/increase-ruby/commit/a898f559f4c56bb1067639c81c41010234cd4351))
|
|
10
|
+
|
|
3
11
|
## 1.247.0 (2026-03-12)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.246.0...v1.247.0](https://github.com/Increase/increase-ruby/compare/v1.246.0...v1.247.0)
|
data/README.md
CHANGED
|
@@ -46,6 +46,12 @@ module Increase
|
|
|
46
46
|
# Some parameter documentations has been truncated, see
|
|
47
47
|
# {Increase::Models::EntityBeneficialOwner} for more details.
|
|
48
48
|
#
|
|
49
|
+
# Beneficial owners are the individuals who control or own 25% or more of a
|
|
50
|
+
# `corporation` entity. Beneficial owners are always people, and never
|
|
51
|
+
# organizations. Generally, you will need to submit between 1 and 5 beneficial
|
|
52
|
+
# owners for every `corporation` entity. You should update and archive beneficial
|
|
53
|
+
# owners for a corporation entity as their details change.
|
|
54
|
+
#
|
|
49
55
|
# @param id [String] The identifier of this beneficial owner.
|
|
50
56
|
#
|
|
51
57
|
# @param company_title [String, nil] This person's role or title within the entity.
|
data/lib/increase/version.rb
CHANGED
|
@@ -43,6 +43,11 @@ module Increase
|
|
|
43
43
|
sig { returns(Increase::EntityBeneficialOwner::Type::TaggedSymbol) }
|
|
44
44
|
attr_accessor :type
|
|
45
45
|
|
|
46
|
+
# Beneficial owners are the individuals who control or own 25% or more of a
|
|
47
|
+
# `corporation` entity. Beneficial owners are always people, and never
|
|
48
|
+
# organizations. Generally, you will need to submit between 1 and 5 beneficial
|
|
49
|
+
# owners for every `corporation` entity. You should update and archive beneficial
|
|
50
|
+
# owners for a corporation entity as their details change.
|
|
46
51
|
sig do
|
|
47
52
|
params(
|
|
48
53
|
id: String,
|