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.26.0"
".": "1.27.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: 202
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-aca6b5e100fcf8da7f6fc67bfbf47543f197f1c3fed52d5f1147b7cbad515546.yml
openapi_spec_hash: 369011703600762a5a5d701b4e843f7b
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-66fad62aee38079ae7b0574a128763512b551d0b0f107a056bc981123d8e348d.yml
openapi_spec_hash: 299b75e8d2f36e6fe3d2df4c10d2557c
config_hash: a185e9a72778cc4658ea73fb3a7f1354
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.27.0 (2025-08-07)

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

### Features

* **api:** api update ([44729b9](https://github.com/Increase/increase-ruby/commit/44729b9363b7c96a58f9e5bf77ffdbd981dc7a3e))

## 1.26.0 (2025-08-06)

Full Changelog: [v1.25.0...v1.26.0](https://github.com/Increase/increase-ruby/compare/v1.25.0...v1.26.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.26.0)
increase (1.27.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.26.0"
gem "increase", "~> 1.27.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 @@ -114,6 +114,9 @@ module Direction
module Purpose
extend Increase::Internal::Type::Enum

# A file to be attached to a Card Dispute.
CARD_DISPUTE_ATTACHMENT = :card_dispute_attachment

# An image of the front of a check, used for check deposits.
CHECK_IMAGE_FRONT = :check_image_front

Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/file_create_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ class FileCreateParams < Increase::Internal::Type::BaseModel
module Purpose
extend Increase::Internal::Type::Enum

# A file to be attached to a Card Dispute.
CARD_DISPUTE_ATTACHMENT = :card_dispute_attachment

# An image of the front of a check, used for check deposits.
CHECK_IMAGE_FRONT = :check_image_front

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 @@ -116,6 +116,9 @@ class Purpose < Increase::Internal::Type::BaseModel
module In
extend Increase::Internal::Type::Enum

# A file to be attached to a Card Dispute.
CARD_DISPUTE_ATTACHMENT = :card_dispute_attachment

# An image of the front of a check, used for check deposits.
CHECK_IMAGE_FRONT = :check_image_front

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.26.0"
VERSION = "1.27.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 @@ -140,6 +140,10 @@ module Increase
TaggedSymbol = T.type_alias { T.all(Symbol, Increase::File::Purpose) }
OrSymbol = T.type_alias { T.any(Symbol, String) }

# A file to be attached to a Card Dispute.
CARD_DISPUTE_ATTACHMENT =
T.let(:card_dispute_attachment, Increase::File::Purpose::TaggedSymbol)

# An image of the front of a check, used for check deposits.
CHECK_IMAGE_FRONT =
T.let(:check_image_front, Increase::File::Purpose::TaggedSymbol)
Expand Down
7 changes: 7 additions & 0 deletions rbi/increase/models/file_create_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,13 @@ module Increase
T.type_alias { T.all(Symbol, Increase::FileCreateParams::Purpose) }
OrSymbol = T.type_alias { T.any(Symbol, String) }

# A file to be attached to a Card Dispute.
CARD_DISPUTE_ATTACHMENT =
T.let(
:card_dispute_attachment,
Increase::FileCreateParams::Purpose::TaggedSymbol
)

# An image of the front of a check, used for check deposits.
CHECK_IMAGE_FRONT =
T.let(
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 @@ -220,6 +220,13 @@ module Increase
end
OrSymbol = T.type_alias { T.any(Symbol, String) }

# A file to be attached to a Card Dispute.
CARD_DISPUTE_ATTACHMENT =
T.let(
:card_dispute_attachment,
Increase::FileListParams::Purpose::In::TaggedSymbol
)

# An image of the front of a check, used for check deposits.
CHECK_IMAGE_FRONT =
T.let(
Expand Down
6 changes: 5 additions & 1 deletion sig/increase/models/file.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ module Increase
end

type purpose =
:check_image_front
:card_dispute_attachment
| :check_image_front
| :check_image_back
| :processed_check_image_front
| :processed_check_image_back
Expand Down Expand Up @@ -103,6 +104,9 @@ module Increase
module Purpose
extend Increase::Internal::Type::Enum

# A file to be attached to a Card Dispute.
CARD_DISPUTE_ATTACHMENT: :card_dispute_attachment

# An image of the front of a check, used for check deposits.
CHECK_IMAGE_FRONT: :check_image_front

Expand Down
6 changes: 5 additions & 1 deletion sig/increase/models/file_create_params.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ module Increase
}

type purpose =
:check_image_front
:card_dispute_attachment
| :check_image_front
| :check_image_back
| :mailed_check_image
| :check_attachment
Expand All @@ -55,6 +56,9 @@ module Increase
module Purpose
extend Increase::Internal::Type::Enum

# A file to be attached to a Card Dispute.
CARD_DISPUTE_ATTACHMENT: :card_dispute_attachment

# An image of the front of a check, used for check deposits.
CHECK_IMAGE_FRONT: :check_image_front

Expand Down
6 changes: 5 additions & 1 deletion sig/increase/models/file_list_params.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ module Increase
}

type in_ =
:check_image_front
:card_dispute_attachment
| :check_image_front
| :check_image_back
| :processed_check_image_front
| :processed_check_image_back
Expand Down Expand Up @@ -142,6 +143,9 @@ module Increase
module In
extend Increase::Internal::Type::Enum

# A file to be attached to a Card Dispute.
CARD_DISPUTE_ATTACHMENT: :card_dispute_attachment

# An image of the front of a check, used for check deposits.
CHECK_IMAGE_FRONT: :check_image_front

Expand Down