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 @@
{
".": "0.1.0-alpha.19"
".": "0.1.0-alpha.20"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 195
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-242cd2c71436a98908280d032939d4eeb3f68721fbcd414d8dcd9280db02558a.yml
openapi_spec_hash: 2511217927c87d37b9e5eaac8bd80a8b
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-3da8c6b718b8b17a54f7c99f1288484fb822cea0439cb3ebac7740d251bed960.yml
openapi_spec_hash: 3a21d60d1574ae11f5a682dfa3d603b3
config_hash: 1619155422217276e2489ae10ce63a25
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.1.0-alpha.20 (2025-05-08)

Full Changelog: [v0.1.0-alpha.19...v0.1.0-alpha.20](https://github.com/Increase/increase-ruby/compare/v0.1.0-alpha.19...v0.1.0-alpha.20)

### Features

* **api:** api update ([11d10fa](https://github.com/Increase/increase-ruby/commit/11d10fadaf87159363f61318935bc5f2f303dcfa))


### Documentation

* remove or fix invalid readme examples ([a396397](https://github.com/Increase/increase-ruby/commit/a3963973a51da3cca92b1bf2bfc18402bb2bd78f))

## 0.1.0-alpha.19 (2025-05-07)

Full Changelog: [v0.1.0-alpha.18...v0.1.0-alpha.19](https://github.com/Increase/increase-ruby/compare/v0.1.0-alpha.18...v0.1.0-alpha.19)
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 (0.1.0.pre.alpha.19)
increase (0.1.0.pre.alpha.20)
connection_pool

GEM
Expand Down
4 changes: 2 additions & 2 deletions 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", "~> 0.1.0.pre.alpha.19"
gem "increase", "~> 0.1.0.pre.alpha.20"
```

<!-- x-release-please-end -->
Expand Down Expand Up @@ -96,7 +96,7 @@ When the library is unable to connect to the API, or if the API returns a non-su

```ruby
begin
account = increase.accounts.create
account = increase.accounts.create(name: "New Account!")
rescue Increase::Errors::APIError => e
puts(e.status) # 400
end
Expand Down
46 changes: 23 additions & 23 deletions lib/increase/models/check_deposit.rb
Original file line number Diff line number Diff line change
Expand Up @@ -497,25 +497,25 @@ module ReturnReason
# The check doesn't allow ACH conversion.
ACH_CONVERSION_NOT_SUPPORTED = :ach_conversion_not_supported

# The account is closed.
# The account is closed. (Check21 return code `D`)
CLOSED_ACCOUNT = :closed_account

# The check has already been deposited.
# The check has already been deposited. (Check21 return code `Y`)
DUPLICATE_SUBMISSION = :duplicate_submission

# Insufficient funds
# Insufficient funds (Check21 return code `A`)
INSUFFICIENT_FUNDS = :insufficient_funds

# No account was found matching the check details.
# No account was found matching the check details. (Check21 return code `E`)
NO_ACCOUNT = :no_account

# The check was not authorized.
# The check was not authorized. (Check21 return code `Q`)
NOT_AUTHORIZED = :not_authorized

# The check is too old.
# The check is too old. (Check21 return code `G`)
STALE_DATED = :stale_dated

# The payment has been stopped by the account holder.
# The payment has been stopped by the account holder. (Check21 return code `C`)
STOP_PAYMENT = :stop_payment

# The reason for the return is unknown.
Expand All @@ -524,52 +524,52 @@ module ReturnReason
# The image doesn't match the details submitted.
UNMATCHED_DETAILS = :unmatched_details

# The image could not be read.
# The image could not be read. (Check21 return code `U`)
UNREADABLE_IMAGE = :unreadable_image

# The check endorsement was irregular.
# The check endorsement was irregular. (Check21 return code `J`)
ENDORSEMENT_IRREGULAR = :endorsement_irregular

# The check present was either altered or fake.
# The check present was either altered or fake. (Check21 return code `N`)
ALTERED_OR_FICTITIOUS_ITEM = :altered_or_fictitious_item

# The account this check is drawn on is frozen.
# The account this check is drawn on is frozen. (Check21 return code `F`)
FROZEN_OR_BLOCKED_ACCOUNT = :frozen_or_blocked_account

# The check is post dated.
# The check is post dated. (Check21 return code `H`)
POST_DATED = :post_dated

# The endorsement was missing.
# The endorsement was missing. (Check21 return code `I`)
ENDORSEMENT_MISSING = :endorsement_missing

# The check signature was missing.
# The check signature was missing. (Check21 return code `K`)
SIGNATURE_MISSING = :signature_missing

# The bank suspects a stop payment will be placed.
# The bank suspects a stop payment will be placed. (Check21 return code `T`)
STOP_PAYMENT_SUSPECT = :stop_payment_suspect

# The bank cannot read the image.
# The bank cannot read the image. (Check21 return code `U`)
UNUSABLE_IMAGE = :unusable_image

# The check image fails the bank's security check.
# The check image fails the bank's security check. (Check21 return code `V`)
IMAGE_FAILS_SECURITY_CHECK = :image_fails_security_check

# The bank cannot determine the amount.
# The bank cannot determine the amount. (Check21 return code `W`)
CANNOT_DETERMINE_AMOUNT = :cannot_determine_amount

# The signature is inconsistent with prior signatures.
# The signature is inconsistent with prior signatures. (Check21 return code `L`)
SIGNATURE_IRREGULAR = :signature_irregular

# The check is a non-cash item and cannot be drawn against the account.
# The check is a non-cash item and cannot be drawn against the account. (Check21 return code `M`)
NON_CASH_ITEM = :non_cash_item

# The bank is unable to process this check.
# The bank is unable to process this check. (Check21 return code `O`)
UNABLE_TO_PROCESS = :unable_to_process

# The check exceeds the bank or customer's limit.
# The check exceeds the bank or customer's limit. (Check21 return code `P`)
ITEM_EXCEEDS_DOLLAR_LIMIT = :item_exceeds_dollar_limit

# The bank sold this account and no longer services this customer.
# The bank sold this account and no longer services this customer. (Check21 return code `R`)
BRANCH_OR_ACCOUNT_SOLD = :branch_or_account_sold

# @!method self.values
Expand Down
46 changes: 23 additions & 23 deletions lib/increase/models/transaction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4282,25 +4282,25 @@ module ReturnReason
# The check doesn't allow ACH conversion.
ACH_CONVERSION_NOT_SUPPORTED = :ach_conversion_not_supported

# The account is closed.
# The account is closed. (Check21 return code `D`)
CLOSED_ACCOUNT = :closed_account

# The check has already been deposited.
# The check has already been deposited. (Check21 return code `Y`)
DUPLICATE_SUBMISSION = :duplicate_submission

# Insufficient funds
# Insufficient funds (Check21 return code `A`)
INSUFFICIENT_FUNDS = :insufficient_funds

# No account was found matching the check details.
# No account was found matching the check details. (Check21 return code `E`)
NO_ACCOUNT = :no_account

# The check was not authorized.
# The check was not authorized. (Check21 return code `Q`)
NOT_AUTHORIZED = :not_authorized

# The check is too old.
# The check is too old. (Check21 return code `G`)
STALE_DATED = :stale_dated

# The payment has been stopped by the account holder.
# The payment has been stopped by the account holder. (Check21 return code `C`)
STOP_PAYMENT = :stop_payment

# The reason for the return is unknown.
Expand All @@ -4309,52 +4309,52 @@ module ReturnReason
# The image doesn't match the details submitted.
UNMATCHED_DETAILS = :unmatched_details

# The image could not be read.
# The image could not be read. (Check21 return code `U`)
UNREADABLE_IMAGE = :unreadable_image

# The check endorsement was irregular.
# The check endorsement was irregular. (Check21 return code `J`)
ENDORSEMENT_IRREGULAR = :endorsement_irregular

# The check present was either altered or fake.
# The check present was either altered or fake. (Check21 return code `N`)
ALTERED_OR_FICTITIOUS_ITEM = :altered_or_fictitious_item

# The account this check is drawn on is frozen.
# The account this check is drawn on is frozen. (Check21 return code `F`)
FROZEN_OR_BLOCKED_ACCOUNT = :frozen_or_blocked_account

# The check is post dated.
# The check is post dated. (Check21 return code `H`)
POST_DATED = :post_dated

# The endorsement was missing.
# The endorsement was missing. (Check21 return code `I`)
ENDORSEMENT_MISSING = :endorsement_missing

# The check signature was missing.
# The check signature was missing. (Check21 return code `K`)
SIGNATURE_MISSING = :signature_missing

# The bank suspects a stop payment will be placed.
# The bank suspects a stop payment will be placed. (Check21 return code `T`)
STOP_PAYMENT_SUSPECT = :stop_payment_suspect

# The bank cannot read the image.
# The bank cannot read the image. (Check21 return code `U`)
UNUSABLE_IMAGE = :unusable_image

# The check image fails the bank's security check.
# The check image fails the bank's security check. (Check21 return code `V`)
IMAGE_FAILS_SECURITY_CHECK = :image_fails_security_check

# The bank cannot determine the amount.
# The bank cannot determine the amount. (Check21 return code `W`)
CANNOT_DETERMINE_AMOUNT = :cannot_determine_amount

# The signature is inconsistent with prior signatures.
# The signature is inconsistent with prior signatures. (Check21 return code `L`)
SIGNATURE_IRREGULAR = :signature_irregular

# The check is a non-cash item and cannot be drawn against the account.
# The check is a non-cash item and cannot be drawn against the account. (Check21 return code `M`)
NON_CASH_ITEM = :non_cash_item

# The bank is unable to process this check.
# The bank is unable to process this check. (Check21 return code `O`)
UNABLE_TO_PROCESS = :unable_to_process

# The check exceeds the bank or customer's limit.
# The check exceeds the bank or customer's limit. (Check21 return code `P`)
ITEM_EXCEEDS_DOLLAR_LIMIT = :item_exceeds_dollar_limit

# The bank sold this account and no longer services this customer.
# The bank sold this account and no longer services this customer. (Check21 return code `R`)
BRANCH_OR_ACCOUNT_SOLD = :branch_or_account_sold

# @!method self.values
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 = "0.1.0.pre.alpha.19"
VERSION = "0.1.0.pre.alpha.20"
end
Loading
Loading