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.110.0"
".": "1.111.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: 220
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-d7cf5ee0996fbe47611e26c72b8bd36151ce065c410488583977102f1812b84d.yml
openapi_spec_hash: 8c0f2a172afc0eb0f9fae50250c89216
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-b4cda5505a0662dcbad16dabc86715b5353a90685fa9047384e60156f898f3b8.yml
openapi_spec_hash: 0c831296b6f59e535c73162e0e18c175
config_hash: f0b80170c2ea09811aeae3f1e94bc422
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.111.0 (2025-10-22)

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

### Features

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

## 1.110.0 (2025-10-16)

Full Changelog: [v1.109.1...v1.110.0](https://github.com/Increase/increase-ruby/compare/v1.109.1...v1.110.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.110.0)
increase (1.111.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.110.0"
gem "increase", "~> 1.111.0"
```

<!-- x-release-please-end -->
Expand Down
11 changes: 10 additions & 1 deletion lib/increase/models/card_payment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8163,6 +8163,13 @@ class State < Increase::Internal::Type::BaseModel
# @return [Integer]
required :incremented_amount, Integer

# @!attribute refund_authorized_amount
# The total refund authorized amount in the minor unit of the transaction's
# currency. For dollars, for example, this is cents.
#
# @return [Integer]
required :refund_authorized_amount, Integer

# @!attribute refunded_amount
# The total refunded amount in the minor unit of the transaction's currency. For
# dollars, for example, this is cents.
Expand All @@ -8184,7 +8191,7 @@ class State < Increase::Internal::Type::BaseModel
# @return [Integer]
required :settled_amount, Integer

# @!method initialize(authorized_amount:, fuel_confirmed_amount:, incremented_amount:, refunded_amount:, reversed_amount:, settled_amount:)
# @!method initialize(authorized_amount:, fuel_confirmed_amount:, incremented_amount:, refund_authorized_amount:, refunded_amount:, reversed_amount:, settled_amount:)
# Some parameter documentations has been truncated, see
# {Increase::Models::CardPayment::State} for more details.
#
Expand All @@ -8196,6 +8203,8 @@ class State < Increase::Internal::Type::BaseModel
#
# @param incremented_amount [Integer] The total incrementally updated authorized amount in the minor unit of the trans
#
# @param refund_authorized_amount [Integer] The total refund authorized amount in the minor unit of the transaction's curren
#
# @param refunded_amount [Integer] The total refunded amount in the minor unit of the transaction's currency. For d
#
# @param reversed_amount [Integer] The total reversed amount in the minor unit of the transaction's currency. For d
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.110.0"
VERSION = "1.111.0"
end
10 changes: 10 additions & 0 deletions rbi/increase/models/card_payment.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -15078,6 +15078,11 @@ module Increase
sig { returns(Integer) }
attr_accessor :incremented_amount

# The total refund authorized amount in the minor unit of the transaction's
# currency. For dollars, for example, this is cents.
sig { returns(Integer) }
attr_accessor :refund_authorized_amount

# The total refunded amount in the minor unit of the transaction's currency. For
# dollars, for example, this is cents.
sig { returns(Integer) }
Expand All @@ -15099,6 +15104,7 @@ module Increase
authorized_amount: Integer,
fuel_confirmed_amount: Integer,
incremented_amount: Integer,
refund_authorized_amount: Integer,
refunded_amount: Integer,
reversed_amount: Integer,
settled_amount: Integer
Expand All @@ -15114,6 +15120,9 @@ module Increase
# The total incrementally updated authorized amount in the minor unit of the
# transaction's currency. For dollars, for example, this is cents.
incremented_amount:,
# The total refund authorized amount in the minor unit of the transaction's
# currency. For dollars, for example, this is cents.
refund_authorized_amount:,
# The total refunded amount in the minor unit of the transaction's currency. For
# dollars, for example, this is cents.
refunded_amount:,
Expand All @@ -15132,6 +15141,7 @@ module Increase
authorized_amount: Integer,
fuel_confirmed_amount: Integer,
incremented_amount: Integer,
refund_authorized_amount: Integer,
refunded_amount: Integer,
reversed_amount: Integer,
settled_amount: Integer
Expand Down
5 changes: 5 additions & 0 deletions sig/increase/models/card_payment.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -5758,6 +5758,7 @@ module Increase
authorized_amount: Integer,
fuel_confirmed_amount: Integer,
incremented_amount: Integer,
refund_authorized_amount: Integer,
refunded_amount: Integer,
reversed_amount: Integer,
settled_amount: Integer
Expand All @@ -5770,6 +5771,8 @@ module Increase

attr_accessor incremented_amount: Integer

attr_accessor refund_authorized_amount: Integer

attr_accessor refunded_amount: Integer

attr_accessor reversed_amount: Integer
Expand All @@ -5780,6 +5783,7 @@ module Increase
authorized_amount: Integer,
fuel_confirmed_amount: Integer,
incremented_amount: Integer,
refund_authorized_amount: Integer,
refunded_amount: Integer,
reversed_amount: Integer,
settled_amount: Integer
Expand All @@ -5789,6 +5793,7 @@ module Increase
authorized_amount: Integer,
fuel_confirmed_amount: Integer,
incremented_amount: Integer,
refund_authorized_amount: Integer,
refunded_amount: Integer,
reversed_amount: Integer,
settled_amount: Integer
Expand Down