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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ad61ffa708cc356497acc0d0a9cae7721245e62553ffd4df80f25fa966e75317
4
- data.tar.gz: ca76dd5b991285b0a21f821b77a90604c7039cbc9cc064b74d94581d035cd077
3
+ metadata.gz: 4b4d6b2fc83727cfe5579a8c720a8e60d117dae117ca41a4926ad21b85ebb1aa
4
+ data.tar.gz: 7552bf5b94ef626edcf2318f4f8ed88762a8c2f4c90466637231402291686732
5
5
  SHA512:
6
- metadata.gz: 27498b24a428c88e91771be7f1c0fb5b29b57411210b75a0b6f487578e6fe9cd2493fe1d77b26154b4ba3dbb0870bb0ed9eea631058bd0383ea43a0107ff1dde
7
- data.tar.gz: 76d960e6e27ad1208773e05bb88f88bd68a0b64858ad1d34c59be888ea86ca64a95165d51420ba03e756d54cbe3c0e7f660c171893c6cac9e8d76aaf9b03aeb7
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
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.256.0"
18
+ gem "increase", "~> 1.257.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -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
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.256.0"
4
+ VERSION = "1.257.0"
5
5
  end
@@ -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],
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.256.0
4
+ version: 1.257.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase