increase 1.224.0 → 1.226.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 +16 -0
- data/README.md +1 -1
- data/lib/increase/models/entity.rb +9 -11
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/entity.rbi +17 -12
- data/sig/increase/models/entity.rbs +8 -8
- 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: 4c50e719a5ca4e92a9e8f7359f7384b64f67f0ef4d20b59a21ef01277c8f68ea
|
|
4
|
+
data.tar.gz: b90780f21b923f49a1a8c257bfab9f955ea36359626974f5faf8ef5c2be65516
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3fae4a94183a1d47c309c53b542c6a0e06d71afaafa61243c1c6d7c32abb49da5e914e2159e8d636cf3aa6c898c42d67034fd5d2c7cf9971d201e9da621baf85
|
|
7
|
+
data.tar.gz: d96ff098b229e62e1886492cd8d32e714222cdd0cddb5a184ed4d109e737ac49ff5004d94eb6b3f81c878d2f03793c2553500890d17a602454e5939b353d5ec1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.226.0 (2026-03-05)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.225.0...v1.226.0](https://github.com/Increase/increase-ruby/compare/v1.225.0...v1.226.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([e5cb2f5](https://github.com/Increase/increase-ruby/commit/e5cb2f59d4c4462b0254a1604fc2c3f89112683d))
|
|
10
|
+
|
|
11
|
+
## 1.225.0 (2026-03-04)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.224.0...v1.225.0](https://github.com/Increase/increase-ruby/compare/v1.224.0...v1.225.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([6dee90e](https://github.com/Increase/increase-ruby/commit/6dee90e1c29079f2eb8e7782301f32b9557832d9))
|
|
18
|
+
|
|
3
19
|
## 1.224.0 (2026-03-03)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.223.0...v1.224.0](https://github.com/Increase/increase-ruby/compare/v1.223.0...v1.224.0)
|
data/README.md
CHANGED
|
@@ -290,11 +290,11 @@ module Increase
|
|
|
290
290
|
end
|
|
291
291
|
|
|
292
292
|
class BeneficialOwner < Increase::Internal::Type::BaseModel
|
|
293
|
-
# @!attribute
|
|
293
|
+
# @!attribute id
|
|
294
294
|
# The identifier of this beneficial owner.
|
|
295
295
|
#
|
|
296
296
|
# @return [String]
|
|
297
|
-
required :
|
|
297
|
+
required :id, String
|
|
298
298
|
|
|
299
299
|
# @!attribute company_title
|
|
300
300
|
# This person's role or title within the entity.
|
|
@@ -308,20 +308,21 @@ module Increase
|
|
|
308
308
|
# @return [Increase::Models::Entity::Corporation::BeneficialOwner::Individual]
|
|
309
309
|
required :individual, -> { Increase::Entity::Corporation::BeneficialOwner::Individual }
|
|
310
310
|
|
|
311
|
-
# @!attribute
|
|
311
|
+
# @!attribute prongs
|
|
312
312
|
# Why this person is considered a beneficial owner of the entity.
|
|
313
313
|
#
|
|
314
|
-
# @return [Symbol, Increase::Models::Entity::Corporation::BeneficialOwner::Prong]
|
|
315
|
-
required :
|
|
314
|
+
# @return [Array<Symbol, Increase::Models::Entity::Corporation::BeneficialOwner::Prong>]
|
|
315
|
+
required :prongs,
|
|
316
|
+
-> { Increase::Internal::Type::ArrayOf[enum: Increase::Entity::Corporation::BeneficialOwner::Prong] }
|
|
316
317
|
|
|
317
|
-
# @!method initialize(
|
|
318
|
-
# @param
|
|
318
|
+
# @!method initialize(id:, company_title:, individual:, prongs:)
|
|
319
|
+
# @param id [String] The identifier of this beneficial owner.
|
|
319
320
|
#
|
|
320
321
|
# @param company_title [String, nil] This person's role or title within the entity.
|
|
321
322
|
#
|
|
322
323
|
# @param individual [Increase::Models::Entity::Corporation::BeneficialOwner::Individual] Personal details for the beneficial owner.
|
|
323
324
|
#
|
|
324
|
-
# @param
|
|
325
|
+
# @param prongs [Array<Symbol, Increase::Models::Entity::Corporation::BeneficialOwner::Prong>] Why this person is considered a beneficial owner of the entity.
|
|
325
326
|
|
|
326
327
|
# @see Increase::Models::Entity::Corporation::BeneficialOwner#individual
|
|
327
328
|
class Individual < Increase::Internal::Type::BaseModel
|
|
@@ -477,9 +478,6 @@ module Increase
|
|
|
477
478
|
end
|
|
478
479
|
end
|
|
479
480
|
|
|
480
|
-
# Why this person is considered a beneficial owner of the entity.
|
|
481
|
-
#
|
|
482
|
-
# @see Increase::Models::Entity::Corporation::BeneficialOwner#prong
|
|
483
481
|
module Prong
|
|
484
482
|
extend Increase::Internal::Type::Enum
|
|
485
483
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -423,7 +423,7 @@ module Increase
|
|
|
423
423
|
|
|
424
424
|
# The identifier of this beneficial owner.
|
|
425
425
|
sig { returns(String) }
|
|
426
|
-
attr_accessor :
|
|
426
|
+
attr_accessor :id
|
|
427
427
|
|
|
428
428
|
# This person's role or title within the entity.
|
|
429
429
|
sig { returns(T.nilable(String)) }
|
|
@@ -446,42 +446,48 @@ module Increase
|
|
|
446
446
|
# Why this person is considered a beneficial owner of the entity.
|
|
447
447
|
sig do
|
|
448
448
|
returns(
|
|
449
|
-
|
|
449
|
+
T::Array[
|
|
450
|
+
Increase::Entity::Corporation::BeneficialOwner::Prong::TaggedSymbol
|
|
451
|
+
]
|
|
450
452
|
)
|
|
451
453
|
end
|
|
452
|
-
attr_accessor :
|
|
454
|
+
attr_accessor :prongs
|
|
453
455
|
|
|
454
456
|
sig do
|
|
455
457
|
params(
|
|
456
|
-
|
|
458
|
+
id: String,
|
|
457
459
|
company_title: T.nilable(String),
|
|
458
460
|
individual:
|
|
459
461
|
Increase::Entity::Corporation::BeneficialOwner::Individual::OrHash,
|
|
460
|
-
|
|
461
|
-
|
|
462
|
+
prongs:
|
|
463
|
+
T::Array[
|
|
464
|
+
Increase::Entity::Corporation::BeneficialOwner::Prong::OrSymbol
|
|
465
|
+
]
|
|
462
466
|
).returns(T.attached_class)
|
|
463
467
|
end
|
|
464
468
|
def self.new(
|
|
465
469
|
# The identifier of this beneficial owner.
|
|
466
|
-
|
|
470
|
+
id:,
|
|
467
471
|
# This person's role or title within the entity.
|
|
468
472
|
company_title:,
|
|
469
473
|
# Personal details for the beneficial owner.
|
|
470
474
|
individual:,
|
|
471
475
|
# Why this person is considered a beneficial owner of the entity.
|
|
472
|
-
|
|
476
|
+
prongs:
|
|
473
477
|
)
|
|
474
478
|
end
|
|
475
479
|
|
|
476
480
|
sig do
|
|
477
481
|
override.returns(
|
|
478
482
|
{
|
|
479
|
-
|
|
483
|
+
id: String,
|
|
480
484
|
company_title: T.nilable(String),
|
|
481
485
|
individual:
|
|
482
486
|
Increase::Entity::Corporation::BeneficialOwner::Individual,
|
|
483
|
-
|
|
484
|
-
|
|
487
|
+
prongs:
|
|
488
|
+
T::Array[
|
|
489
|
+
Increase::Entity::Corporation::BeneficialOwner::Prong::TaggedSymbol
|
|
490
|
+
]
|
|
485
491
|
}
|
|
486
492
|
)
|
|
487
493
|
end
|
|
@@ -765,7 +771,6 @@ module Increase
|
|
|
765
771
|
end
|
|
766
772
|
end
|
|
767
773
|
|
|
768
|
-
# Why this person is considered a beneficial owner of the entity.
|
|
769
774
|
module Prong
|
|
770
775
|
extend Increase::Internal::Type::Enum
|
|
771
776
|
|
|
@@ -186,33 +186,33 @@ module Increase
|
|
|
186
186
|
|
|
187
187
|
type beneficial_owner =
|
|
188
188
|
{
|
|
189
|
-
|
|
189
|
+
id: String,
|
|
190
190
|
company_title: String?,
|
|
191
191
|
individual: Increase::Entity::Corporation::BeneficialOwner::Individual,
|
|
192
|
-
|
|
192
|
+
prongs: ::Array[Increase::Models::Entity::Corporation::BeneficialOwner::prong]
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
class BeneficialOwner < Increase::Internal::Type::BaseModel
|
|
196
|
-
attr_accessor
|
|
196
|
+
attr_accessor id: String
|
|
197
197
|
|
|
198
198
|
attr_accessor company_title: String?
|
|
199
199
|
|
|
200
200
|
attr_accessor individual: Increase::Entity::Corporation::BeneficialOwner::Individual
|
|
201
201
|
|
|
202
|
-
attr_accessor
|
|
202
|
+
attr_accessor prongs: ::Array[Increase::Models::Entity::Corporation::BeneficialOwner::prong]
|
|
203
203
|
|
|
204
204
|
def initialize: (
|
|
205
|
-
|
|
205
|
+
id: String,
|
|
206
206
|
company_title: String?,
|
|
207
207
|
individual: Increase::Entity::Corporation::BeneficialOwner::Individual,
|
|
208
|
-
|
|
208
|
+
prongs: ::Array[Increase::Models::Entity::Corporation::BeneficialOwner::prong]
|
|
209
209
|
) -> void
|
|
210
210
|
|
|
211
211
|
def to_hash: -> {
|
|
212
|
-
|
|
212
|
+
id: String,
|
|
213
213
|
company_title: String?,
|
|
214
214
|
individual: Increase::Entity::Corporation::BeneficialOwner::Individual,
|
|
215
|
-
|
|
215
|
+
prongs: ::Array[Increase::Models::Entity::Corporation::BeneficialOwner::prong]
|
|
216
216
|
}
|
|
217
217
|
|
|
218
218
|
type individual =
|
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.226.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-03-
|
|
11
|
+
date: 2026-03-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|