increase 1.314.0 → 1.315.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/simulations/entity_validation_params.rb +10 -10
- data/lib/increase/resources/simulations/entities.rb +3 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/simulations/entity_validation_params.rbi +10 -10
- data/rbi/increase/resources/simulations/entities.rbi +3 -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: c03adcb8dbf4753eaf33997e2862fd0f489fbeb001d2d70de29378324219bd09
|
|
4
|
+
data.tar.gz: 950a751ec59c876e963fdcc46741327b4827ac0bcc69b44865da8d4c307acfe3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 672091dd5ec8af809c3d75a89a4b1913ccdee6ef41f725ce3ab1ac53908927b5e82d05b9c0824082c0dea9b28f87039719037e3473e76399305540b09b49b0a8
|
|
7
|
+
data.tar.gz: acdba94d7b038db32c284b2cb964636f2a1f0b0a99160183070d16c98ae4cfe08c92d971f55261aff9724b64e7360eeb7978e1a0bd343397be4ccf75fec660e8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.315.0 (2026-05-01)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.314.0...v1.315.0](https://github.com/Increase/increase-ruby/compare/v1.314.0...v1.315.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([ac72e13](https://github.com/Increase/increase-ruby/commit/ac72e13ab8e75c6d4a114eb5c0561a3be7f48b6c))
|
|
10
|
+
|
|
3
11
|
## 1.314.0 (2026-05-01)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.313.0...v1.314.0](https://github.com/Increase/increase-ruby/compare/v1.313.0...v1.314.0)
|
data/README.md
CHANGED
|
@@ -9,44 +9,44 @@ module Increase
|
|
|
9
9
|
include Increase::Internal::Type::RequestParameters
|
|
10
10
|
|
|
11
11
|
# @!attribute entity_id
|
|
12
|
-
# The identifier of the Entity
|
|
12
|
+
# The identifier of the Entity whose validation status to update.
|
|
13
13
|
#
|
|
14
14
|
# @return [String]
|
|
15
15
|
required :entity_id, String
|
|
16
16
|
|
|
17
17
|
# @!attribute issues
|
|
18
|
-
# The issues to attach
|
|
18
|
+
# The validation issues to attach. Only allowed when `status` is `invalid`.
|
|
19
19
|
#
|
|
20
20
|
# @return [Array<Increase::Models::Simulations::EntityValidationParams::Issue>]
|
|
21
21
|
required :issues,
|
|
22
22
|
-> { Increase::Internal::Type::ArrayOf[Increase::Simulations::EntityValidationParams::Issue] }
|
|
23
23
|
|
|
24
24
|
# @!attribute status
|
|
25
|
-
# The status to set on the
|
|
25
|
+
# The validation status to set on the Entity.
|
|
26
26
|
#
|
|
27
27
|
# @return [Symbol, Increase::Models::Simulations::EntityValidationParams::Status]
|
|
28
28
|
required :status, enum: -> { Increase::Simulations::EntityValidationParams::Status }
|
|
29
29
|
|
|
30
30
|
# @!method initialize(entity_id:, issues:, status:, request_options: {})
|
|
31
|
-
# @param entity_id [String] The identifier of the Entity
|
|
31
|
+
# @param entity_id [String] The identifier of the Entity whose validation status to update.
|
|
32
32
|
#
|
|
33
|
-
# @param issues [Array<Increase::Models::Simulations::EntityValidationParams::Issue>] The issues to attach
|
|
33
|
+
# @param issues [Array<Increase::Models::Simulations::EntityValidationParams::Issue>] The validation issues to attach. Only allowed when `status` is `invalid`.
|
|
34
34
|
#
|
|
35
|
-
# @param status [Symbol, Increase::Models::Simulations::EntityValidationParams::Status] The status to set on the
|
|
35
|
+
# @param status [Symbol, Increase::Models::Simulations::EntityValidationParams::Status] The validation status to set on the Entity.
|
|
36
36
|
#
|
|
37
37
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
|
38
38
|
|
|
39
39
|
class Issue < Increase::Internal::Type::BaseModel
|
|
40
40
|
# @!attribute category
|
|
41
|
-
# The
|
|
41
|
+
# The type of issue.
|
|
42
42
|
#
|
|
43
43
|
# @return [Symbol, Increase::Models::Simulations::EntityValidationParams::Issue::Category]
|
|
44
44
|
required :category, enum: -> { Increase::Simulations::EntityValidationParams::Issue::Category }
|
|
45
45
|
|
|
46
46
|
# @!method initialize(category:)
|
|
47
|
-
# @param category [Symbol, Increase::Models::Simulations::EntityValidationParams::Issue::Category] The
|
|
47
|
+
# @param category [Symbol, Increase::Models::Simulations::EntityValidationParams::Issue::Category] The type of issue.
|
|
48
48
|
|
|
49
|
-
# The
|
|
49
|
+
# The type of issue.
|
|
50
50
|
#
|
|
51
51
|
# @see Increase::Models::Simulations::EntityValidationParams::Issue#category
|
|
52
52
|
module Category
|
|
@@ -69,7 +69,7 @@ module Increase
|
|
|
69
69
|
end
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
-
# The status to set on the
|
|
72
|
+
# The validation status to set on the Entity.
|
|
73
73
|
module Status
|
|
74
74
|
extend Increase::Internal::Type::Enum
|
|
75
75
|
|
|
@@ -12,11 +12,11 @@ module Increase
|
|
|
12
12
|
#
|
|
13
13
|
# @overload validation(entity_id, issues:, status:, request_options: {})
|
|
14
14
|
#
|
|
15
|
-
# @param entity_id [String] The identifier of the Entity
|
|
15
|
+
# @param entity_id [String] The identifier of the Entity whose validation status to update.
|
|
16
16
|
#
|
|
17
|
-
# @param issues [Array<Increase::Models::Simulations::EntityValidationParams::Issue>] The issues to attach
|
|
17
|
+
# @param issues [Array<Increase::Models::Simulations::EntityValidationParams::Issue>] The validation issues to attach. Only allowed when `status` is `invalid`.
|
|
18
18
|
#
|
|
19
|
-
# @param status [Symbol, Increase::Models::Simulations::EntityValidationParams::Status] The status to set on the
|
|
19
|
+
# @param status [Symbol, Increase::Models::Simulations::EntityValidationParams::Status] The validation status to set on the Entity.
|
|
20
20
|
#
|
|
21
21
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
|
|
22
22
|
#
|
data/lib/increase/version.rb
CHANGED
|
@@ -15,11 +15,11 @@ module Increase
|
|
|
15
15
|
)
|
|
16
16
|
end
|
|
17
17
|
|
|
18
|
-
# The identifier of the Entity
|
|
18
|
+
# The identifier of the Entity whose validation status to update.
|
|
19
19
|
sig { returns(String) }
|
|
20
20
|
attr_accessor :entity_id
|
|
21
21
|
|
|
22
|
-
# The issues to attach
|
|
22
|
+
# The validation issues to attach. Only allowed when `status` is `invalid`.
|
|
23
23
|
sig do
|
|
24
24
|
returns(
|
|
25
25
|
T::Array[Increase::Simulations::EntityValidationParams::Issue]
|
|
@@ -27,7 +27,7 @@ module Increase
|
|
|
27
27
|
end
|
|
28
28
|
attr_accessor :issues
|
|
29
29
|
|
|
30
|
-
# The status to set on the
|
|
30
|
+
# The validation status to set on the Entity.
|
|
31
31
|
sig do
|
|
32
32
|
returns(
|
|
33
33
|
Increase::Simulations::EntityValidationParams::Status::OrSymbol
|
|
@@ -48,11 +48,11 @@ module Increase
|
|
|
48
48
|
).returns(T.attached_class)
|
|
49
49
|
end
|
|
50
50
|
def self.new(
|
|
51
|
-
# The identifier of the Entity
|
|
51
|
+
# The identifier of the Entity whose validation status to update.
|
|
52
52
|
entity_id:,
|
|
53
|
-
# The issues to attach
|
|
53
|
+
# The validation issues to attach. Only allowed when `status` is `invalid`.
|
|
54
54
|
issues:,
|
|
55
|
-
# The status to set on the
|
|
55
|
+
# The validation status to set on the Entity.
|
|
56
56
|
status:,
|
|
57
57
|
request_options: {}
|
|
58
58
|
)
|
|
@@ -82,7 +82,7 @@ module Increase
|
|
|
82
82
|
)
|
|
83
83
|
end
|
|
84
84
|
|
|
85
|
-
# The
|
|
85
|
+
# The type of issue.
|
|
86
86
|
sig do
|
|
87
87
|
returns(
|
|
88
88
|
Increase::Simulations::EntityValidationParams::Issue::Category::OrSymbol
|
|
@@ -97,7 +97,7 @@ module Increase
|
|
|
97
97
|
).returns(T.attached_class)
|
|
98
98
|
end
|
|
99
99
|
def self.new(
|
|
100
|
-
# The
|
|
100
|
+
# The type of issue.
|
|
101
101
|
category:
|
|
102
102
|
)
|
|
103
103
|
end
|
|
@@ -113,7 +113,7 @@ module Increase
|
|
|
113
113
|
def to_hash
|
|
114
114
|
end
|
|
115
115
|
|
|
116
|
-
# The
|
|
116
|
+
# The type of issue.
|
|
117
117
|
module Category
|
|
118
118
|
extend Increase::Internal::Type::Enum
|
|
119
119
|
|
|
@@ -166,7 +166,7 @@ module Increase
|
|
|
166
166
|
end
|
|
167
167
|
end
|
|
168
168
|
|
|
169
|
-
# The status to set on the
|
|
169
|
+
# The validation status to set on the Entity.
|
|
170
170
|
module Status
|
|
171
171
|
extend Increase::Internal::Type::Enum
|
|
172
172
|
|
|
@@ -22,11 +22,11 @@ module Increase
|
|
|
22
22
|
).returns(Increase::Entity)
|
|
23
23
|
end
|
|
24
24
|
def validation(
|
|
25
|
-
# The identifier of the Entity
|
|
25
|
+
# The identifier of the Entity whose validation status to update.
|
|
26
26
|
entity_id,
|
|
27
|
-
# The issues to attach
|
|
27
|
+
# The validation issues to attach. Only allowed when `status` is `invalid`.
|
|
28
28
|
issues:,
|
|
29
|
-
# The status to set on the
|
|
29
|
+
# The validation status to set on the Entity.
|
|
30
30
|
status:,
|
|
31
31
|
request_options: {}
|
|
32
32
|
)
|