diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 60c29914..09d2c486 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.190.0" + ".": "1.191.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 0cc36c41..c516d75f 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 232 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-cfc57f9c5bccf2918dfb5fc56fb6b6fd1eadd851f037b6873ba4e2442d5c8126.yml -openapi_spec_hash: 7e54b69798d6a1487474ed229a83c6fc +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-8152ea97ddd6f87a1bc6102d458a3fd3711ca468f6a62cd3be0f6e464376b3e6.yml +openapi_spec_hash: 03c6b4e530600d03fab9344887dc4639 config_hash: 27e44ed36b9c5617b580ead7231a594a diff --git a/CHANGELOG.md b/CHANGELOG.md index ecc32a51..44311d4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.191.0 (2026-01-30) + +Full Changelog: [v1.190.0...v1.191.0](https://github.com/Increase/increase-ruby/compare/v1.190.0...v1.191.0) + +### Features + +* **api:** api update ([45b7378](https://github.com/Increase/increase-ruby/commit/45b7378628733d8461b9cb85b76e005823c2d03c)) + ## 1.190.0 (2026-01-30) Full Changelog: [v1.189.0...v1.190.0](https://github.com/Increase/increase-ruby/compare/v1.189.0...v1.190.0) diff --git a/Gemfile.lock b/Gemfile.lock index 50211a74..70ee013a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - increase (1.190.0) + increase (1.191.0) cgi connection_pool diff --git a/README.md b/README.md index 8f8b7518..9fb2179d 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application ```ruby -gem "increase", "~> 1.190.0" +gem "increase", "~> 1.191.0" ``` diff --git a/lib/increase/models/intrafi_exclusion.rb b/lib/increase/models/intrafi_exclusion.rb index 70cfd255..64497783 100644 --- a/lib/increase/models/intrafi_exclusion.rb +++ b/lib/increase/models/intrafi_exclusion.rb @@ -113,6 +113,9 @@ module Status # The exclusion has been removed from the IntraFi network. ARCHIVED = :archived + # The exclusion wasn't eligible to be added to the IntraFi network. + INELIGIBLE = :ineligible + # @!method self.values # @return [Array] end diff --git a/lib/increase/version.rb b/lib/increase/version.rb index d4a595fe..e2c2f576 100644 --- a/lib/increase/version.rb +++ b/lib/increase/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Increase - VERSION = "1.190.0" + VERSION = "1.191.0" end diff --git a/rbi/increase/models/intrafi_exclusion.rbi b/rbi/increase/models/intrafi_exclusion.rbi index 1498696a..de5ad8f8 100644 --- a/rbi/increase/models/intrafi_exclusion.rbi +++ b/rbi/increase/models/intrafi_exclusion.rbi @@ -139,6 +139,10 @@ module Increase ARCHIVED = T.let(:archived, Increase::IntrafiExclusion::Status::TaggedSymbol) + # The exclusion wasn't eligible to be added to the IntraFi network. + INELIGIBLE = + T.let(:ineligible, Increase::IntrafiExclusion::Status::TaggedSymbol) + sig do override.returns( T::Array[Increase::IntrafiExclusion::Status::TaggedSymbol] diff --git a/sig/increase/models/intrafi_exclusion.rbs b/sig/increase/models/intrafi_exclusion.rbs index c463c650..85b298c3 100644 --- a/sig/increase/models/intrafi_exclusion.rbs +++ b/sig/increase/models/intrafi_exclusion.rbs @@ -61,7 +61,7 @@ module Increase type: Increase::Models::IntrafiExclusion::type_ } - type status = :pending | :completed | :archived + type status = :pending | :completed | :archived | :ineligible module Status extend Increase::Internal::Type::Enum @@ -75,6 +75,9 @@ module Increase # The exclusion has been removed from the IntraFi network. ARCHIVED: :archived + # The exclusion wasn't eligible to be added to the IntraFi network. + INELIGIBLE: :ineligible + def self?.values: -> ::Array[Increase::Models::IntrafiExclusion::status] end