increase 1.256.0 → 1.257.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.rb +5 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/entity.rbi +6 -3
- 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: 4b4d6b2fc83727cfe5579a8c720a8e60d117dae117ca41a4926ad21b85ebb1aa
|
|
4
|
+
data.tar.gz: 7552bf5b94ef626edcf2318f4f8ed88762a8c2f4c90466637231402291686732
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b5b8238076bd445e42aeff71747342dd2aaebc5a4080188dd3deca612cccf20f8accab14b4ad63433d09f8aed8e0318eb6f8b8de421bb5d698460599b283147
|
|
7
|
+
data.tar.gz: 9fa78ea094efeb63d4dab046ffcca97f93919401c2d69c9f9274d063fac32081b8407f6e29833ee2d1f4682654f05fc5071d1b9b1f1d75069306cadd8a484cc7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.257.0 (2026-03-16)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.256.0...v1.257.0](https://github.com/Increase/increase-ruby/compare/v1.256.0...v1.257.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([12de5d2](https://github.com/Increase/increase-ruby/commit/12de5d2f8c42641a9ed33e406715876089cebd9b))
|
|
10
|
+
|
|
3
11
|
## 1.256.0 (2026-03-16)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.255.0...v1.256.0](https://github.com/Increase/increase-ruby/compare/v1.255.0...v1.256.0)
|
data/README.md
CHANGED
|
@@ -122,7 +122,8 @@ module Increase
|
|
|
122
122
|
required :type, enum: -> { Increase::Entity::Type }
|
|
123
123
|
|
|
124
124
|
# @!attribute validation
|
|
125
|
-
# The validation results for the entity.
|
|
125
|
+
# The validation results for the entity. Learn more about
|
|
126
|
+
# [validations](/documentation/entity-validation).
|
|
126
127
|
#
|
|
127
128
|
# @return [Increase::Models::Entity::Validation, nil]
|
|
128
129
|
required :validation, -> { Increase::Entity::Validation }, nil?: true
|
|
@@ -169,7 +170,7 @@ module Increase
|
|
|
169
170
|
#
|
|
170
171
|
# @param type [Symbol, Increase::Models::Entity::Type] A constant representing the object's type. For this resource it will always be `
|
|
171
172
|
#
|
|
172
|
-
# @param validation [Increase::Models::Entity::Validation, nil] The validation results for the entity.
|
|
173
|
+
# @param validation [Increase::Models::Entity::Validation, nil] The validation results for the entity. Learn more about [validations](/documenta
|
|
173
174
|
|
|
174
175
|
# @see Increase::Models::Entity#corporation
|
|
175
176
|
class Corporation < Increase::Internal::Type::BaseModel
|
|
@@ -1615,7 +1616,8 @@ module Increase
|
|
|
1615
1616
|
# Some parameter documentations has been truncated, see
|
|
1616
1617
|
# {Increase::Models::Entity::Validation} for more details.
|
|
1617
1618
|
#
|
|
1618
|
-
# The validation results for the entity.
|
|
1619
|
+
# The validation results for the entity. Learn more about
|
|
1620
|
+
# [validations](/documentation/entity-validation).
|
|
1619
1621
|
#
|
|
1620
1622
|
# @param issues [Array<Increase::Models::Entity::Validation::Issue>] The list of issues that need to be addressed.
|
|
1621
1623
|
#
|
data/lib/increase/version.rb
CHANGED
|
@@ -131,7 +131,8 @@ module Increase
|
|
|
131
131
|
sig { returns(Increase::Entity::Type::TaggedSymbol) }
|
|
132
132
|
attr_accessor :type
|
|
133
133
|
|
|
134
|
-
# The validation results for the entity.
|
|
134
|
+
# The validation results for the entity. Learn more about
|
|
135
|
+
# [validations](/documentation/entity-validation).
|
|
135
136
|
sig { returns(T.nilable(Increase::Entity::Validation)) }
|
|
136
137
|
attr_reader :validation
|
|
137
138
|
|
|
@@ -217,7 +218,8 @@ module Increase
|
|
|
217
218
|
# A constant representing the object's type. For this resource it will always be
|
|
218
219
|
# `entity`.
|
|
219
220
|
type:,
|
|
220
|
-
# The validation results for the entity.
|
|
221
|
+
# The validation results for the entity. Learn more about
|
|
222
|
+
# [validations](/documentation/entity-validation).
|
|
221
223
|
validation:
|
|
222
224
|
)
|
|
223
225
|
end
|
|
@@ -2750,7 +2752,8 @@ module Increase
|
|
|
2750
2752
|
sig { returns(Increase::Entity::Validation::Status::TaggedSymbol) }
|
|
2751
2753
|
attr_accessor :status
|
|
2752
2754
|
|
|
2753
|
-
# The validation results for the entity.
|
|
2755
|
+
# The validation results for the entity. Learn more about
|
|
2756
|
+
# [validations](/documentation/entity-validation).
|
|
2754
2757
|
sig do
|
|
2755
2758
|
params(
|
|
2756
2759
|
issues: T::Array[Increase::Entity::Validation::Issue::OrHash],
|