increase 1.314.0 → 1.316.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: e55aa79f2953937e96e59bbdd7a12c4548824872f68ad8d4f9411b742701c87b
4
- data.tar.gz: 90877136d3ea16e22707d2797d2d8053b6a2b7f5e1a412641ac4506cca8b7635
3
+ metadata.gz: 9ae3fff4c40fda1dfee72d0bbc1a6df80174449cae4ab97f231c5aa27d38d528
4
+ data.tar.gz: ac086117f6bd711074bc8d85d93b677e43c57bf8f21683e01c8c3cc65fd91fbc
5
5
  SHA512:
6
- metadata.gz: 9f05af3d4f8ab65b5bc1e6c62f5b5d4ff99fc7f7659af5eceb8275b33bd91d84c01248cab3ccb72758e8860dd3fb3096425f58bfbb497e72221f24c38111bbb0
7
- data.tar.gz: 44787bf6fa5d1db649dc2a417a6e60a56b8d9b634b15b66642071bbd66712cb8bd433eb13846937c82cf4672a45465fc1c06ed7d2630db795355b5989c5f0208
6
+ metadata.gz: 4cb2d76e3a0bee7753b902e4d531d7757d647aa05ae1f1ad27c6b7daf6676aa57c8259c76dfe7df5afb35dd6ba4d9dac2224a090edf923f71e54193f94efcf1d
7
+ data.tar.gz: b636a2b983ea2991156b9a148c64db57901529cc1f273eebe5ee5f5581c4ec35a1fc85d771244de1911def903e08efb9d9080dc34737d94a17096409424f74b4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.316.0 (2026-05-01)
4
+
5
+ Full Changelog: [v1.315.0...v1.316.0](https://github.com/Increase/increase-ruby/compare/v1.315.0...v1.316.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([b91698c](https://github.com/Increase/increase-ruby/commit/b91698c046321f14db5c10e5c8f6944cd4872d19))
10
+
11
+ ## 1.315.0 (2026-05-01)
12
+
13
+ Full Changelog: [v1.314.0...v1.315.0](https://github.com/Increase/increase-ruby/compare/v1.314.0...v1.315.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([ac72e13](https://github.com/Increase/increase-ruby/commit/ac72e13ab8e75c6d4a114eb5c0561a3be7f48b6c))
18
+
3
19
  ## 1.314.0 (2026-05-01)
4
20
 
5
21
  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
@@ -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.314.0"
18
+ gem "increase", "~> 1.316.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -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 to set the validation on.
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 to the new managed compliance validation.
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 new managed compliance validation.
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 to set the validation on.
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 to the new managed compliance validation.
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 new managed compliance validation.
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 category of the issue.
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 category of the issue.
47
+ # @param category [Symbol, Increase::Models::Simulations::EntityValidationParams::Issue::Category] The type of issue.
48
48
 
49
- # The category of the issue.
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 new managed compliance validation.
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 to set the validation on.
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 to the new managed compliance validation.
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 new managed compliance validation.
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
  #
@@ -7,8 +7,8 @@ module Increase
7
7
  # Some parameter documentations has been truncated, see
8
8
  # {Increase::Models::Simulations::InboundMailItemCreateParams} for more details.
9
9
  #
10
- # Simulates an inbound mail item to your account, as if someone had mailed a
11
- # physical check to one of your account's Lockboxes.
10
+ # Simulates an Inbound Mail Item to one of your Lockbox Addresses or Lockbox
11
+ # Recipients, as if someone had mailed a physical check.
12
12
  #
13
13
  # @overload create(amount:, contents_file_id: nil, lockbox_address_id: nil, lockbox_recipient_id: nil, request_options: {})
14
14
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.314.0"
4
+ VERSION = "1.316.0"
5
5
  end
@@ -15,11 +15,11 @@ module Increase
15
15
  )
16
16
  end
17
17
 
18
- # The identifier of the Entity to set the validation on.
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 to the new managed compliance validation.
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 new managed compliance validation.
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 to set the validation on.
51
+ # The identifier of the Entity whose validation status to update.
52
52
  entity_id:,
53
- # The issues to attach to the new managed compliance validation.
53
+ # The validation issues to attach. Only allowed when `status` is `invalid`.
54
54
  issues:,
55
- # The status to set on the new managed compliance validation.
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 category of the issue.
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 category of the issue.
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 category of the issue.
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 new managed compliance validation.
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 to set the validation on.
25
+ # The identifier of the Entity whose validation status to update.
26
26
  entity_id,
27
- # The issues to attach to the new managed compliance validation.
27
+ # The validation issues to attach. Only allowed when `status` is `invalid`.
28
28
  issues:,
29
- # The status to set on the new managed compliance validation.
29
+ # The validation status to set on the Entity.
30
30
  status:,
31
31
  request_options: {}
32
32
  )
@@ -4,8 +4,8 @@ module Increase
4
4
  module Resources
5
5
  class Simulations
6
6
  class InboundMailItems
7
- # Simulates an inbound mail item to your account, as if someone had mailed a
8
- # physical check to one of your account's Lockboxes.
7
+ # Simulates an Inbound Mail Item to one of your Lockbox Addresses or Lockbox
8
+ # Recipients, as if someone had mailed a physical check.
9
9
  sig do
10
10
  params(
11
11
  amount: Integer,
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.314.0
4
+ version: 1.316.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase