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.5.3"
".": "1.6.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: 201
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a027ea8bf72e85055306ceaf380c0311b8ed5e6e83962de0ccf48f62c85403fc.yml
openapi_spec_hash: 4e35ead65a06ac0783945b2b213ce83c
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-930514b98f2a5e85e56fe454b7a1f2e16e1f0a4a4e2804b31acc3da98526f2ed.yml
openapi_spec_hash: 8e35630e1ad9cfb1ac15ad87701f806f
config_hash: 97774f946585cecb19181a1817870d0b
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.6.0 (2025-07-01)

Full Changelog: [v1.5.3...v1.6.0](https://github.com/Increase/increase-ruby/compare/v1.5.3...v1.6.0)

### Features

* **api:** api update ([f558750](https://github.com/Increase/increase-ruby/commit/f55875048421a837a8cd9cff86e163cbb6501c7a))

## 1.5.3 (2025-06-30)

Full Changelog: [v1.5.2...v1.5.3](https://github.com/Increase/increase-ruby/compare/v1.5.2...v1.5.3)
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.5.3)
increase (1.6.0)
connection_pool

GEM
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.5.3"
gem "increase", "~> 1.6.0"
```

<!-- x-release-please-end -->
Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/file.rb
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,9 @@ module Purpose
# Funding instructions.
FUNDING_INSTRUCTIONS = :funding_instructions

# A Hold Harmless Letter.
HOLD_HARMLESS_LETTER = :hold_harmless_letter

# @!method self.values
# @return [Array<Symbol>]
end
Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/file_list_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,9 @@ module In
# Funding instructions.
FUNDING_INSTRUCTIONS = :funding_instructions

# A Hold Harmless Letter.
HOLD_HARMLESS_LETTER = :hold_harmless_letter

# @!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.5.3"
VERSION = "1.6.0"
end
4 changes: 4 additions & 0 deletions rbi/increase/models/file.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,10 @@ module Increase
FUNDING_INSTRUCTIONS =
T.let(:funding_instructions, Increase::File::Purpose::TaggedSymbol)

# A Hold Harmless Letter.
HOLD_HARMLESS_LETTER =
T.let(:hold_harmless_letter, Increase::File::Purpose::TaggedSymbol)

sig do
override.returns(T::Array[Increase::File::Purpose::TaggedSymbol])
end
Expand Down
7 changes: 7 additions & 0 deletions rbi/increase/models/file_list_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,13 @@ module Increase
Increase::FileListParams::Purpose::In::TaggedSymbol
)

# A Hold Harmless Letter.
HOLD_HARMLESS_LETTER =
T.let(
:hold_harmless_letter,
Increase::FileListParams::Purpose::In::TaggedSymbol
)

sig do
override.returns(
T::Array[Increase::FileListParams::Purpose::In::TaggedSymbol]
Expand Down
4 changes: 4 additions & 0 deletions sig/increase/models/file.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ module Increase
| :proof_of_authorization_request_submission
| :account_verification_letter
| :funding_instructions
| :hold_harmless_letter

module Purpose
extend Increase::Internal::Type::Enum
Expand Down Expand Up @@ -183,6 +184,9 @@ module Increase
# Funding instructions.
FUNDING_INSTRUCTIONS: :funding_instructions

# A Hold Harmless Letter.
HOLD_HARMLESS_LETTER: :hold_harmless_letter

def self?.values: -> ::Array[Increase::Models::File::purpose]
end

Expand Down
4 changes: 4 additions & 0 deletions sig/increase/models/file_list_params.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ module Increase
| :proof_of_authorization_request_submission
| :account_verification_letter
| :funding_instructions
| :hold_harmless_letter

module In
extend Increase::Internal::Type::Enum
Expand Down Expand Up @@ -222,6 +223,9 @@ module Increase
# Funding instructions.
FUNDING_INSTRUCTIONS: :funding_instructions

# A Hold Harmless Letter.
HOLD_HARMLESS_LETTER: :hold_harmless_letter

def self?.values: -> ::Array[Increase::Models::FileListParams::Purpose::in_]
end
end
Expand Down