increase 1.190.0 → 1.191.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: 7bd834fc48e899fee75f59b54bdc4082f4f1f9be0b89607eed8efa1eb58d957c
4
- data.tar.gz: 79a61d911c1eab08e86b2264f2f1cb5369b1ffb429acb7f32f92b96cdc167f6d
3
+ metadata.gz: eba2f2c911b9ab325a93dcc63dbca06b29ca17dae8e3cea33acd4b303c703bf0
4
+ data.tar.gz: 11840ab06f792953888f9a23d7f2d61fb9cce27700c0c70febba74a6b1faf946
5
5
  SHA512:
6
- metadata.gz: 9140791cd7ec2d7a9b262cbd55caf13294f2529a7d5ae965e06c2d4445dde2eb0fd44f79fb463c40c587b13e0c7add28356f955131f5f00cb455e7d6c3ebe6c9
7
- data.tar.gz: 82ec0f394f2e62bb993300c9769388f1d696362d262f1713f8312e3015a188ee89296da959cc56eb5cf61fb14cacc92658e7bab9e8d86d1ee53cd6e10f386caa
6
+ metadata.gz: 67561fb4d8c355d7c5ac4d2f09de55cc5258f7e6dc27ae4b3930b8253abec5ffe00966c9c20adc28a1942ec50e37576f2f83e44121071f410a89f0e668c60b9f
7
+ data.tar.gz: f46378b01ab65c11e26385b3fff4f09a3177431d2cf27d0bc89c217caa89ad1d1345c9d37a380394661cdf9c203bc875329b99fbd4ddd9d11a03592e06144311
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.191.0 (2026-01-30)
4
+
5
+ Full Changelog: [v1.190.0...v1.191.0](https://github.com/Increase/increase-ruby/compare/v1.190.0...v1.191.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([45b7378](https://github.com/Increase/increase-ruby/commit/45b7378628733d8461b9cb85b76e005823c2d03c))
10
+
3
11
  ## 1.190.0 (2026-01-30)
4
12
 
5
13
  Full Changelog: [v1.189.0...v1.190.0](https://github.com/Increase/increase-ruby/compare/v1.189.0...v1.190.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.190.0"
18
+ gem "increase", "~> 1.191.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -113,6 +113,9 @@ module Increase
113
113
  # The exclusion has been removed from the IntraFi network.
114
114
  ARCHIVED = :archived
115
115
 
116
+ # The exclusion wasn't eligible to be added to the IntraFi network.
117
+ INELIGIBLE = :ineligible
118
+
116
119
  # @!method self.values
117
120
  # @return [Array<Symbol>]
118
121
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.190.0"
4
+ VERSION = "1.191.0"
5
5
  end
@@ -139,6 +139,10 @@ module Increase
139
139
  ARCHIVED =
140
140
  T.let(:archived, Increase::IntrafiExclusion::Status::TaggedSymbol)
141
141
 
142
+ # The exclusion wasn't eligible to be added to the IntraFi network.
143
+ INELIGIBLE =
144
+ T.let(:ineligible, Increase::IntrafiExclusion::Status::TaggedSymbol)
145
+
142
146
  sig do
143
147
  override.returns(
144
148
  T::Array[Increase::IntrafiExclusion::Status::TaggedSymbol]
@@ -61,7 +61,7 @@ module Increase
61
61
  type: Increase::Models::IntrafiExclusion::type_
62
62
  }
63
63
 
64
- type status = :pending | :completed | :archived
64
+ type status = :pending | :completed | :archived | :ineligible
65
65
 
66
66
  module Status
67
67
  extend Increase::Internal::Type::Enum
@@ -75,6 +75,9 @@ module Increase
75
75
  # The exclusion has been removed from the IntraFi network.
76
76
  ARCHIVED: :archived
77
77
 
78
+ # The exclusion wasn't eligible to be added to the IntraFi network.
79
+ INELIGIBLE: :ineligible
80
+
78
81
  def self?.values: -> ::Array[Increase::Models::IntrafiExclusion::status]
79
82
  end
80
83
 
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.190.0
4
+ version: 1.191.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase