increase 1.223.0 → 1.225.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 -8
- data/lib/increase/models/entity_create_params.rb +3 -0
- data/lib/increase/models/entity_update_params.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/entity.rbi +20 -8
- data/rbi/increase/models/entity_create_params.rbi +7 -0
- data/rbi/increase/models/entity_update_params.rbi +7 -0
- data/sig/increase/models/entity.rbs +8 -5
- data/sig/increase/models/entity_create_params.rbs +4 -1
- data/sig/increase/models/entity_update_params.rbs +4 -1
- 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: 36b624805b732701e95446df452ce747b986cbbc1d17e39a72fd761f3eca8e0d
|
|
4
|
+
data.tar.gz: 5cf44a18da37a2d4b8b24ff016c2f985400a68c4b0b40c77be30f83e42531097
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b9de1280160c8e28ff0e8b4d62444ae799ea9a1732fc216aff1eeeae1eae1dce3ab3b49d17d0e5345523e5b4b33450502f4dd7f69ea165fbdb87abf530d46a0
|
|
7
|
+
data.tar.gz: d5f817f370f177a708c6f094a4abe67be6470838d34f56be113a12b499c9a0a4b76eddddbdda538e72f1fc9081b738e743c20c70b8d9d4ff4e545d3088850a8b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.225.0 (2026-03-04)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.224.0...v1.225.0](https://github.com/Increase/increase-ruby/compare/v1.224.0...v1.225.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([6dee90e](https://github.com/Increase/increase-ruby/commit/6dee90e1c29079f2eb8e7782301f32b9557832d9))
|
|
10
|
+
|
|
11
|
+
## 1.224.0 (2026-03-03)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.223.0...v1.224.0](https://github.com/Increase/increase-ruby/compare/v1.223.0...v1.224.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([ee63ebd](https://github.com/Increase/increase-ruby/commit/ee63ebd311ef9797f1c3531c1f5b8d6dc959ff7a))
|
|
18
|
+
|
|
3
19
|
## 1.223.0 (2026-03-03)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.222.0...v1.223.0](https://github.com/Increase/increase-ruby/compare/v1.222.0...v1.223.0)
|
data/README.md
CHANGED
|
@@ -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(beneficial_owner_id:, company_title:, individual:,
|
|
318
|
+
# @!method initialize(beneficial_owner_id:, company_title:, individual:, prongs:)
|
|
318
319
|
# @param beneficial_owner_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
|
|
|
@@ -1107,6 +1105,9 @@ module Increase
|
|
|
1107
1105
|
# Persona. See https://withpersona.com for more information.
|
|
1108
1106
|
PERSONA = :persona
|
|
1109
1107
|
|
|
1108
|
+
# Taktile. See https://taktile.com for more information.
|
|
1109
|
+
TAKTILE = :taktile
|
|
1110
|
+
|
|
1110
1111
|
# @!method self.values
|
|
1111
1112
|
# @return [Array<Symbol>]
|
|
1112
1113
|
end
|
|
@@ -1594,6 +1594,9 @@ module Increase
|
|
|
1594
1594
|
# Persona. See https://withpersona.com for more information.
|
|
1595
1595
|
PERSONA = :persona
|
|
1596
1596
|
|
|
1597
|
+
# Taktile. See https://taktile.com for more information.
|
|
1598
|
+
TAKTILE = :taktile
|
|
1599
|
+
|
|
1597
1600
|
# @!method self.values
|
|
1598
1601
|
# @return [Array<Symbol>]
|
|
1599
1602
|
end
|
|
@@ -432,6 +432,9 @@ module Increase
|
|
|
432
432
|
# Persona. See https://withpersona.com for more information.
|
|
433
433
|
PERSONA = :persona
|
|
434
434
|
|
|
435
|
+
# Taktile. See https://taktile.com for more information.
|
|
436
|
+
TAKTILE = :taktile
|
|
437
|
+
|
|
435
438
|
# @!method self.values
|
|
436
439
|
# @return [Array<Symbol>]
|
|
437
440
|
end
|
data/lib/increase/version.rb
CHANGED
|
@@ -446,10 +446,12 @@ 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(
|
|
@@ -457,8 +459,10 @@ module Increase
|
|
|
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(
|
|
@@ -469,7 +473,7 @@ module Increase
|
|
|
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
|
|
|
@@ -480,8 +484,10 @@ module Increase
|
|
|
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
|
|
|
@@ -1872,6 +1877,13 @@ module Increase
|
|
|
1872
1877
|
Increase::Entity::ThirdPartyVerification::Vendor::TaggedSymbol
|
|
1873
1878
|
)
|
|
1874
1879
|
|
|
1880
|
+
# Taktile. See https://taktile.com for more information.
|
|
1881
|
+
TAKTILE =
|
|
1882
|
+
T.let(
|
|
1883
|
+
:taktile,
|
|
1884
|
+
Increase::Entity::ThirdPartyVerification::Vendor::TaggedSymbol
|
|
1885
|
+
)
|
|
1886
|
+
|
|
1875
1887
|
sig do
|
|
1876
1888
|
override.returns(
|
|
1877
1889
|
T::Array[
|
|
@@ -2948,6 +2948,13 @@ module Increase
|
|
|
2948
2948
|
Increase::EntityCreateParams::ThirdPartyVerification::Vendor::TaggedSymbol
|
|
2949
2949
|
)
|
|
2950
2950
|
|
|
2951
|
+
# Taktile. See https://taktile.com for more information.
|
|
2952
|
+
TAKTILE =
|
|
2953
|
+
T.let(
|
|
2954
|
+
:taktile,
|
|
2955
|
+
Increase::EntityCreateParams::ThirdPartyVerification::Vendor::TaggedSymbol
|
|
2956
|
+
)
|
|
2957
|
+
|
|
2951
2958
|
sig do
|
|
2952
2959
|
override.returns(
|
|
2953
2960
|
T::Array[
|
|
@@ -803,6 +803,13 @@ module Increase
|
|
|
803
803
|
Increase::EntityUpdateParams::ThirdPartyVerification::Vendor::TaggedSymbol
|
|
804
804
|
)
|
|
805
805
|
|
|
806
|
+
# Taktile. See https://taktile.com for more information.
|
|
807
|
+
TAKTILE =
|
|
808
|
+
T.let(
|
|
809
|
+
:taktile,
|
|
810
|
+
Increase::EntityUpdateParams::ThirdPartyVerification::Vendor::TaggedSymbol
|
|
811
|
+
)
|
|
812
|
+
|
|
806
813
|
sig do
|
|
807
814
|
override.returns(
|
|
808
815
|
T::Array[
|
|
@@ -189,7 +189,7 @@ module Increase
|
|
|
189
189
|
beneficial_owner_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
|
|
@@ -199,20 +199,20 @@ module Increase
|
|
|
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
|
beneficial_owner_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
|
beneficial_owner_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 =
|
|
@@ -848,7 +848,7 @@ module Increase
|
|
|
848
848
|
vendor: Increase::Models::Entity::ThirdPartyVerification::vendor
|
|
849
849
|
}
|
|
850
850
|
|
|
851
|
-
type vendor = :alloy | :middesk | :oscilar | :persona
|
|
851
|
+
type vendor = :alloy | :middesk | :oscilar | :persona | :taktile
|
|
852
852
|
|
|
853
853
|
module Vendor
|
|
854
854
|
extend Increase::Internal::Type::Enum
|
|
@@ -865,6 +865,9 @@ module Increase
|
|
|
865
865
|
# Persona. See https://withpersona.com for more information.
|
|
866
866
|
PERSONA: :persona
|
|
867
867
|
|
|
868
|
+
# Taktile. See https://taktile.com for more information.
|
|
869
|
+
TAKTILE: :taktile
|
|
870
|
+
|
|
868
871
|
def self?.values: -> ::Array[Increase::Models::Entity::ThirdPartyVerification::vendor]
|
|
869
872
|
end
|
|
870
873
|
end
|
|
@@ -1301,7 +1301,7 @@ module Increase
|
|
|
1301
1301
|
vendor: Increase::Models::EntityCreateParams::ThirdPartyVerification::vendor
|
|
1302
1302
|
}
|
|
1303
1303
|
|
|
1304
|
-
type vendor = :alloy | :middesk | :oscilar | :persona
|
|
1304
|
+
type vendor = :alloy | :middesk | :oscilar | :persona | :taktile
|
|
1305
1305
|
|
|
1306
1306
|
module Vendor
|
|
1307
1307
|
extend Increase::Internal::Type::Enum
|
|
@@ -1318,6 +1318,9 @@ module Increase
|
|
|
1318
1318
|
# Persona. See https://withpersona.com for more information.
|
|
1319
1319
|
PERSONA: :persona
|
|
1320
1320
|
|
|
1321
|
+
# Taktile. See https://taktile.com for more information.
|
|
1322
|
+
TAKTILE: :taktile
|
|
1323
|
+
|
|
1321
1324
|
def self?.values: -> ::Array[Increase::Models::EntityCreateParams::ThirdPartyVerification::vendor]
|
|
1322
1325
|
end
|
|
1323
1326
|
end
|
|
@@ -367,7 +367,7 @@ module Increase
|
|
|
367
367
|
vendor: Increase::Models::EntityUpdateParams::ThirdPartyVerification::vendor
|
|
368
368
|
}
|
|
369
369
|
|
|
370
|
-
type vendor = :alloy | :middesk | :oscilar | :persona
|
|
370
|
+
type vendor = :alloy | :middesk | :oscilar | :persona | :taktile
|
|
371
371
|
|
|
372
372
|
module Vendor
|
|
373
373
|
extend Increase::Internal::Type::Enum
|
|
@@ -384,6 +384,9 @@ module Increase
|
|
|
384
384
|
# Persona. See https://withpersona.com for more information.
|
|
385
385
|
PERSONA: :persona
|
|
386
386
|
|
|
387
|
+
# Taktile. See https://taktile.com for more information.
|
|
388
|
+
TAKTILE: :taktile
|
|
389
|
+
|
|
387
390
|
def self?.values: -> ::Array[Increase::Models::EntityUpdateParams::ThirdPartyVerification::vendor]
|
|
388
391
|
end
|
|
389
392
|
end
|
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.225.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-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|