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.83.0"
".": "1.84.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: 214
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6241d4f5ad4269845e96fe2c674d19f586894ca27456095fee5a70dede9ea19c.yml
openapi_spec_hash: 81e8f749b8ca89085b599b2c346a773d
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-d0d6147287983a83fc0ad164f706c3cdc48a13e223fd601aa954bbf0bbc402ed.yml
openapi_spec_hash: a3ccd1aa9bc5d03e6660b535d25401b1
config_hash: 8dadd60eab7ab858cf06c6a8633ed9f3
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.84.0 (2025-09-19)

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

### Features

* **api:** api update ([600d7b0](https://github.com/Increase/increase-ruby/commit/600d7b07ab75fe2ea739860fb6af3749b3268164))

## 1.83.0 (2025-09-19)

Full Changelog: [v1.82.0...v1.83.0](https://github.com/Increase/increase-ruby/compare/v1.82.0...v1.83.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.83.0)
increase (1.84.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.83.0"
gem "increase", "~> 1.84.0"
```

<!-- x-release-please-end -->
Expand Down
6 changes: 5 additions & 1 deletion lib/increase/models/card_details.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ class CardDetailsAPI < Increase::Internal::Type::BaseModel
# Some parameter documentations has been truncated, see
# {Increase::Models::CardDetailsAPI} for more details.
#
# An object containing the sensitive details (card number, CVC, etc) for a Card.
# An object containing the sensitive details (card number, CVC, PIN, etc) for a
# Card. These details are not included in the Card object. If you'd prefer to
# never access these details directly, you can use the
# [embedded iframe](/documentation/embedded-card-component) to display the
# information to your users.
#
# @param card_id [String] The identifier for the Card for which sensitive details have been returned.
#
Expand Down
2 changes: 1 addition & 1 deletion lib/increase/resources/card_details.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Increase
module Resources
class CardDetails
# Update a Card's Details
# Update a Card's PIN
#
# @overload update(card_id, pin:, request_options: {})
#
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.83.0"
VERSION = "1.84.0"
end
6 changes: 5 additions & 1 deletion rbi/increase/models/card_details.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ module Increase
sig { returns(String) }
attr_accessor :verification_code

# An object containing the sensitive details (card number, CVC, etc) for a Card.
# An object containing the sensitive details (card number, CVC, PIN, etc) for a
# Card. These details are not included in the Card object. If you'd prefer to
# never access these details directly, you can use the
# [embedded iframe](/documentation/embedded-card-component) to display the
# information to your users.
sig do
params(
card_id: String,
Expand Down
2 changes: 1 addition & 1 deletion rbi/increase/resources/card_details.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Increase
module Resources
class CardDetails
# Update a Card's Details
# Update a Card's PIN
sig do
params(
card_id: String,
Expand Down