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.109.1"
".": "1.110.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-33f2c95401f5925e452440863f26a701b345a2da75b2b3f9b3eb33936adef476.yml
openapi_spec_hash: 3a0f2ac488d1d8e875bd118940c81152
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-d7cf5ee0996fbe47611e26c72b8bd36151ce065c410488583977102f1812b84d.yml
openapi_spec_hash: 8c0f2a172afc0eb0f9fae50250c89216
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.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)

### Features

* **api:** api update ([02c6564](https://github.com/Increase/increase-ruby/commit/02c65647901fd5f8951d68e6f6202e56f589e3bb))

## 1.109.1 (2025-10-15)

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

<!-- x-release-please-end -->
Expand Down
12 changes: 1 addition & 11 deletions lib/increase/models/real_time_decision.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1580,14 +1580,6 @@ class DigitalWalletToken < Increase::Internal::Type::BaseModel
# @return [String]
required :card_id, String

# @!attribute card_profile_id
# The identifier of the Card Profile that was set via the real time decision. This
# will be null until the real time decision is responded to or if the real time
# decision did not set a card profile.
#
# @return [String, nil]
required :card_profile_id, String, nil?: true

# @!attribute decision
# Whether or not the provisioning request was approved. This will be null until
# the real time decision is responded to.
Expand All @@ -1607,16 +1599,14 @@ class DigitalWalletToken < Increase::Internal::Type::BaseModel
# @return [Symbol, Increase::Models::RealTimeDecision::DigitalWalletToken::DigitalWallet]
required :digital_wallet, enum: -> { Increase::RealTimeDecision::DigitalWalletToken::DigitalWallet }

# @!method initialize(card_id:, card_profile_id:, decision:, device:, digital_wallet:)
# @!method initialize(card_id:, decision:, device:, digital_wallet:)
# Some parameter documentations has been truncated, see
# {Increase::Models::RealTimeDecision::DigitalWalletToken} for more details.
#
# Fields related to a digital wallet token provisioning attempt.
#
# @param card_id [String] The identifier of the Card that is being tokenized.
#
# @param card_profile_id [String, nil] The identifier of the Card Profile that was set via the real time decision. This
#
# @param decision [Symbol, Increase::Models::RealTimeDecision::DigitalWalletToken::Decision, nil] Whether or not the provisioning request was approved. This will be null until th
#
# @param device [Increase::Models::RealTimeDecision::DigitalWalletToken::Device] Device that is being used to provision the digital wallet token.
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.109.1"
VERSION = "1.110.0"
end
12 changes: 0 additions & 12 deletions rbi/increase/models/real_time_decision.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -3002,12 +3002,6 @@ module Increase
sig { returns(String) }
attr_accessor :card_id

# The identifier of the Card Profile that was set via the real time decision. This
# will be null until the real time decision is responded to or if the real time
# decision did not set a card profile.
sig { returns(T.nilable(String)) }
attr_accessor :card_profile_id

# Whether or not the provisioning request was approved. This will be null until
# the real time decision is responded to.
sig do
Expand Down Expand Up @@ -3043,7 +3037,6 @@ module Increase
sig do
params(
card_id: String,
card_profile_id: T.nilable(String),
decision:
T.nilable(
Increase::RealTimeDecision::DigitalWalletToken::Decision::OrSymbol
Expand All @@ -3057,10 +3050,6 @@ module Increase
def self.new(
# The identifier of the Card that is being tokenized.
card_id:,
# The identifier of the Card Profile that was set via the real time decision. This
# will be null until the real time decision is responded to or if the real time
# decision did not set a card profile.
card_profile_id:,
# Whether or not the provisioning request was approved. This will be null until
# the real time decision is responded to.
decision:,
Expand All @@ -3075,7 +3064,6 @@ module Increase
override.returns(
{
card_id: String,
card_profile_id: T.nilable(String),
decision:
T.nilable(
Increase::RealTimeDecision::DigitalWalletToken::Decision::TaggedSymbol
Expand Down
5 changes: 0 additions & 5 deletions sig/increase/models/real_time_decision.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -1095,7 +1095,6 @@ module Increase
type digital_wallet_token =
{
card_id: String,
card_profile_id: String?,
decision: Increase::Models::RealTimeDecision::DigitalWalletToken::decision?,
device: Increase::RealTimeDecision::DigitalWalletToken::Device,
digital_wallet: Increase::Models::RealTimeDecision::DigitalWalletToken::digital_wallet
Expand All @@ -1104,8 +1103,6 @@ module Increase
class DigitalWalletToken < Increase::Internal::Type::BaseModel
attr_accessor card_id: String

attr_accessor card_profile_id: String?

attr_accessor decision: Increase::Models::RealTimeDecision::DigitalWalletToken::decision?

attr_accessor device: Increase::RealTimeDecision::DigitalWalletToken::Device
Expand All @@ -1114,15 +1111,13 @@ module Increase

def initialize: (
card_id: String,
card_profile_id: String?,
decision: Increase::Models::RealTimeDecision::DigitalWalletToken::decision?,
device: Increase::RealTimeDecision::DigitalWalletToken::Device,
digital_wallet: Increase::Models::RealTimeDecision::DigitalWalletToken::digital_wallet
) -> void

def to_hash: -> {
card_id: String,
card_profile_id: String?,
decision: Increase::Models::RealTimeDecision::DigitalWalletToken::decision?,
device: Increase::RealTimeDecision::DigitalWalletToken::Device,
digital_wallet: Increase::Models::RealTimeDecision::DigitalWalletToken::digital_wallet
Expand Down