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.81.0"
".": "1.82.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: 213
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-61d42e1f44023df8161e3b35d6154011e638f78b3b232379396ea8980d6257b5.yml
openapi_spec_hash: 8831b733d617f5c7ee39db3cb62da20c
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-8d71e78a4afd7e1ce2436bf2428777d623f468bb3b6c37c36ed8ed3155fe6c77.yml
openapi_spec_hash: 3064d7c7468a53e4797ef16b648fd06d
config_hash: e1e8bc2138a13f290956ae6687f099cd
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.82.0 (2025-09-19)

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

### Features

* **api:** api update ([624dfb0](https://github.com/Increase/increase-ruby/commit/624dfb082089270ae2431cda1b51e544366cf73c))

## 1.81.0 (2025-09-18)

Full Changelog: [v1.80.0...v1.81.0](https://github.com/Increase/increase-ruby/compare/v1.80.0...v1.81.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.81.0)
increase (1.82.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.81.0"
gem "increase", "~> 1.82.0"
```

<!-- x-release-please-end -->
Expand Down
26 changes: 8 additions & 18 deletions lib/increase/models/real_time_decision_action_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -187,15 +187,10 @@ class Approval < Increase::Internal::Type::BaseModel
# @!attribute cardholder_address_verification_result
# Your decisions on whether or not each provided address component is a match.
# Your response here is evaluated against the customer's provided `postal_code`
# and `line1`, and an appropriate network response is generated. For example, if
# you would like to approve all transactions for a given card, you can submit
# `match` for both `postal_code` and `line1` and Increase will generate an
# approval with an Address Verification System (AVS) code that will match all of
# the available address information, or will report that no check was performed if
# no address information is available. If you do not provide a response, the
# address verification result will be calculated by Increase using the available
# address information available on the card. If none is available, Increase will
# report that no check was performed.
# and `line1`, and an appropriate network response is generated. For more
# information, see our
# [Address Verification System Codes and Overrides](https://increase.com/documentation/address-verification-system-codes-and-overrides)
# guide.
#
# @return [Increase::Models::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult, nil]
optional :cardholder_address_verification_result,
Expand Down Expand Up @@ -232,15 +227,10 @@ class CardholderAddressVerificationResult < Increase::Internal::Type::BaseModel
# @!method initialize(line1:, postal_code:)
# Your decisions on whether or not each provided address component is a match.
# Your response here is evaluated against the customer's provided `postal_code`
# and `line1`, and an appropriate network response is generated. For example, if
# you would like to approve all transactions for a given card, you can submit
# `match` for both `postal_code` and `line1` and Increase will generate an
# approval with an Address Verification System (AVS) code that will match all of
# the available address information, or will report that no check was performed if
# no address information is available. If you do not provide a response, the
# address verification result will be calculated by Increase using the available
# address information available on the card. If none is available, Increase will
# report that no check was performed.
# and `line1`, and an appropriate network response is generated. For more
# information, see our
# [Address Verification System Codes and Overrides](https://increase.com/documentation/address-verification-system-codes-and-overrides)
# guide.
#
# @param line1 [Symbol, Increase::Models::RealTimeDecisionActionParams::CardAuthorization::Approval::CardholderAddressVerificationResult::Line1] Your decision on the address line of the provided address.
#
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.81.0"
VERSION = "1.82.0"
end
39 changes: 12 additions & 27 deletions rbi/increase/models/real_time_decision_action_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -477,15 +477,10 @@ module Increase

# Your decisions on whether or not each provided address component is a match.
# Your response here is evaluated against the customer's provided `postal_code`
# and `line1`, and an appropriate network response is generated. For example, if
# you would like to approve all transactions for a given card, you can submit
# `match` for both `postal_code` and `line1` and Increase will generate an
# approval with an Address Verification System (AVS) code that will match all of
# the available address information, or will report that no check was performed if
# no address information is available. If you do not provide a response, the
# address verification result will be calculated by Increase using the available
# address information available on the card. If none is available, Increase will
# report that no check was performed.
# and `line1`, and an appropriate network response is generated. For more
# information, see our
# [Address Verification System Codes and Overrides](https://increase.com/documentation/address-verification-system-codes-and-overrides)
# guide.
sig do
returns(
T.nilable(
Expand Down Expand Up @@ -516,15 +511,10 @@ module Increase
def self.new(
# Your decisions on whether or not each provided address component is a match.
# Your response here is evaluated against the customer's provided `postal_code`
# and `line1`, and an appropriate network response is generated. For example, if
# you would like to approve all transactions for a given card, you can submit
# `match` for both `postal_code` and `line1` and Increase will generate an
# approval with an Address Verification System (AVS) code that will match all of
# the available address information, or will report that no check was performed if
# no address information is available. If you do not provide a response, the
# address verification result will be calculated by Increase using the available
# address information available on the card. If none is available, Increase will
# report that no check was performed.
# and `line1`, and an appropriate network response is generated. For more
# information, see our
# [Address Verification System Codes and Overrides](https://increase.com/documentation/address-verification-system-codes-and-overrides)
# guide.
cardholder_address_verification_result: nil
)
end
Expand Down Expand Up @@ -567,15 +557,10 @@ module Increase

# Your decisions on whether or not each provided address component is a match.
# Your response here is evaluated against the customer's provided `postal_code`
# and `line1`, and an appropriate network response is generated. For example, if
# you would like to approve all transactions for a given card, you can submit
# `match` for both `postal_code` and `line1` and Increase will generate an
# approval with an Address Verification System (AVS) code that will match all of
# the available address information, or will report that no check was performed if
# no address information is available. If you do not provide a response, the
# address verification result will be calculated by Increase using the available
# address information available on the card. If none is available, Increase will
# report that no check was performed.
# and `line1`, and an appropriate network response is generated. For more
# information, see our
# [Address Verification System Codes and Overrides](https://increase.com/documentation/address-verification-system-codes-and-overrides)
# guide.
sig do
params(
line1:
Expand Down