Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.190.0"
".": "1.191.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GIT
PATH
remote: .
specs:
increase (1.190.0)
increase (1.191.0)
cgi
connection_pool

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
<!-- x-release-please-start-version -->

```ruby
gem "increase", "~> 1.190.0"
gem "increase", "~> 1.191.0"
```

<!-- x-release-please-end -->
Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/intrafi_exclusion.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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<Symbol>]
end
Expand Down
2 changes: 1 addition & 1 deletion lib/increase/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Increase
VERSION = "1.190.0"
VERSION = "1.191.0"
end
4 changes: 4 additions & 0 deletions rbi/increase/models/intrafi_exclusion.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
5 changes: 4 additions & 1 deletion sig/increase/models/intrafi_exclusion.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down