diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0510f41f..8358f5fe 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.447.0" + ".": "0.448.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index b2955447..5a0f7c11 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 236 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-732196e2e3b5f785aafd5a7035f8683adc6060fe483a24787e3b6085f99d1cfe.yml -openapi_spec_hash: c929ecc168017a4a2d8343384a0a33f8 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1bab7be736382985590e568f2b01d1a195c0228b8f2c6599d73335510113e41a.yml +openapi_spec_hash: 222819fc58fce5959c13e13b507239bc config_hash: 25d7d7aa4882db6189b4b53e8e249e80 diff --git a/CHANGELOG.md b/CHANGELOG.md index b4676647..018de95b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.448.0 (2026-03-18) + +Full Changelog: [v0.447.0...v0.448.0](https://github.com/Increase/increase-python/compare/v0.447.0...v0.448.0) + +### Features + +* **api:** api update ([2b5c32d](https://github.com/Increase/increase-python/commit/2b5c32d208f4c85488a006df23dfa2090a7faec3)) + ## 0.447.0 (2026-03-18) Full Changelog: [v0.446.0...v0.447.0](https://github.com/Increase/increase-python/compare/v0.446.0...v0.447.0) diff --git a/pyproject.toml b/pyproject.toml index 942366eb..125b6cf5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.447.0" +version = "0.448.0" description = "The official Python library for the increase API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/increase/_version.py b/src/increase/_version.py index 9c33aa9d..b8ffcaa5 100644 --- a/src/increase/_version.py +++ b/src/increase/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "increase" -__version__ = "0.447.0" # x-release-please-version +__version__ = "0.448.0" # x-release-please-version diff --git a/src/increase/types/card_push_transfer.py b/src/increase/types/card_push_transfer.py index 4740484f..b63ca9c4 100644 --- a/src/increase/types/card_push_transfer.py +++ b/src/increase/types/card_push_transfer.py @@ -191,6 +191,29 @@ class Decline(BaseModel): "stop_payment_order", "revocation_of_authorization_order", "revocation_of_all_authorizations_order", + "unable_to_locate_record", + "file_is_temporarily_unavailable", + "incorrect_pin", + "allowable_number_of_pin_entry_tries_exceeded", + "unable_to_locate_previous_message", + "data_inconsistent_with_original_message", + "pin_error_found", + "cannot_verify_pin", + "verification_data_failed", + "surcharge_amount_not_supported_by_debit_network_issuer", + "cash_service_not_available", + "cashback_request_exceeds_issuer_limit", + "transaction_amount_exceeds_pre_authorized_approval_amount", + "invalid_biller_information", + "pin_change_request_declined", + "unsafe_pin", + "transaction_does_not_qualify_for_visa_pin", + "offline_declined", + "unable_to_go_online", + "valid_account_but_amount_not_supported", + "invalid_use_of_merchant_category_code_correct_and_reattempt", + "forward_to_issuer", + "card_authentication_failed", ] """The reason why the transfer was declined. @@ -270,6 +293,46 @@ class Decline(BaseModel): authorization for this transaction. - `revocation_of_all_authorizations_order` - An order has been placed to revoke all authorizations for this cardholder. + - `unable_to_locate_record` - The record associated with the transaction could + not be located. + - `file_is_temporarily_unavailable` - The file needed for the transaction is + temporarily unavailable. + - `incorrect_pin` - The PIN entered for the transaction is incorrect. + - `allowable_number_of_pin_entry_tries_exceeded` - The allowable number of PIN + entry tries has been exceeded. + - `unable_to_locate_previous_message` - The previous message associated with the + transaction could not be located. + - `data_inconsistent_with_original_message` - The data in the transaction is + inconsistent with the original message. + - `pin_error_found` - An error was found with the PIN associated with the + transaction. + - `cannot_verify_pin` - The PIN associated with the transaction could not be + verified. + - `verification_data_failed` - The verification data associated with the + transaction has failed. + - `surcharge_amount_not_supported_by_debit_network_issuer` - The surcharge + amount is not supported by the debit network issuer. + - `cash_service_not_available` - Cash service is not available for this + transaction. + - `cashback_request_exceeds_issuer_limit` - The cashback request exceeds the + issuer limit. + - `transaction_amount_exceeds_pre_authorized_approval_amount` - The transaction + amount exceeds the pre-authorized approval amount. + - `invalid_biller_information` - The biller information provided is invalid. + - `pin_change_request_declined` - The PIN change request has been declined. + - `unsafe_pin` - The PIN provided is considered unsafe. + - `transaction_does_not_qualify_for_visa_pin` - The transaction does not qualify + for Visa PIN processing. + - `offline_declined` - The transaction was declined offline. + - `unable_to_go_online` - The terminal was unable to go online to process the + transaction. + - `valid_account_but_amount_not_supported` - The account is valid but the + transaction amount is not supported. + - `invalid_use_of_merchant_category_code_correct_and_reattempt` - The merchant + category code was used incorrectly; correct it and reattempt the transaction. + - `forward_to_issuer` - The transaction should be forwarded to the issuer for + processing. + - `card_authentication_failed` - The card authentication process has failed. """ diff --git a/src/increase/types/card_validation.py b/src/increase/types/card_validation.py index 5d18b9b5..10278c3e 100644 --- a/src/increase/types/card_validation.py +++ b/src/increase/types/card_validation.py @@ -201,6 +201,29 @@ class Decline(BaseModel): "stop_payment_order", "revocation_of_authorization_order", "revocation_of_all_authorizations_order", + "unable_to_locate_record", + "file_is_temporarily_unavailable", + "incorrect_pin", + "allowable_number_of_pin_entry_tries_exceeded", + "unable_to_locate_previous_message", + "data_inconsistent_with_original_message", + "pin_error_found", + "cannot_verify_pin", + "verification_data_failed", + "surcharge_amount_not_supported_by_debit_network_issuer", + "cash_service_not_available", + "cashback_request_exceeds_issuer_limit", + "transaction_amount_exceeds_pre_authorized_approval_amount", + "invalid_biller_information", + "pin_change_request_declined", + "unsafe_pin", + "transaction_does_not_qualify_for_visa_pin", + "offline_declined", + "unable_to_go_online", + "valid_account_but_amount_not_supported", + "invalid_use_of_merchant_category_code_correct_and_reattempt", + "forward_to_issuer", + "card_authentication_failed", ] """The reason why the validation was declined. @@ -280,6 +303,46 @@ class Decline(BaseModel): authorization for this transaction. - `revocation_of_all_authorizations_order` - An order has been placed to revoke all authorizations for this cardholder. + - `unable_to_locate_record` - The record associated with the transaction could + not be located. + - `file_is_temporarily_unavailable` - The file needed for the transaction is + temporarily unavailable. + - `incorrect_pin` - The PIN entered for the transaction is incorrect. + - `allowable_number_of_pin_entry_tries_exceeded` - The allowable number of PIN + entry tries has been exceeded. + - `unable_to_locate_previous_message` - The previous message associated with the + transaction could not be located. + - `data_inconsistent_with_original_message` - The data in the transaction is + inconsistent with the original message. + - `pin_error_found` - An error was found with the PIN associated with the + transaction. + - `cannot_verify_pin` - The PIN associated with the transaction could not be + verified. + - `verification_data_failed` - The verification data associated with the + transaction has failed. + - `surcharge_amount_not_supported_by_debit_network_issuer` - The surcharge + amount is not supported by the debit network issuer. + - `cash_service_not_available` - Cash service is not available for this + transaction. + - `cashback_request_exceeds_issuer_limit` - The cashback request exceeds the + issuer limit. + - `transaction_amount_exceeds_pre_authorized_approval_amount` - The transaction + amount exceeds the pre-authorized approval amount. + - `invalid_biller_information` - The biller information provided is invalid. + - `pin_change_request_declined` - The PIN change request has been declined. + - `unsafe_pin` - The PIN provided is considered unsafe. + - `transaction_does_not_qualify_for_visa_pin` - The transaction does not qualify + for Visa PIN processing. + - `offline_declined` - The transaction was declined offline. + - `unable_to_go_online` - The terminal was unable to go online to process the + transaction. + - `valid_account_but_amount_not_supported` - The account is valid but the + transaction amount is not supported. + - `invalid_use_of_merchant_category_code_correct_and_reattempt` - The merchant + category code was used incorrectly; correct it and reattempt the transaction. + - `forward_to_issuer` - The transaction should be forwarded to the issuer for + processing. + - `card_authentication_failed` - The card authentication process has failed. """ diff --git a/src/increase/types/simulations/card_token_create_params.py b/src/increase/types/simulations/card_token_create_params.py index 3184796f..a496bd01 100644 --- a/src/increase/types/simulations/card_token_create_params.py +++ b/src/increase/types/simulations/card_token_create_params.py @@ -102,6 +102,29 @@ class OutcomeDecline(TypedDict, total=False): "stop_payment_order", "revocation_of_authorization_order", "revocation_of_all_authorizations_order", + "unable_to_locate_record", + "file_is_temporarily_unavailable", + "incorrect_pin", + "allowable_number_of_pin_entry_tries_exceeded", + "unable_to_locate_previous_message", + "data_inconsistent_with_original_message", + "pin_error_found", + "cannot_verify_pin", + "verification_data_failed", + "surcharge_amount_not_supported_by_debit_network_issuer", + "cash_service_not_available", + "cashback_request_exceeds_issuer_limit", + "transaction_amount_exceeds_pre_authorized_approval_amount", + "invalid_biller_information", + "pin_change_request_declined", + "unsafe_pin", + "transaction_does_not_qualify_for_visa_pin", + "offline_declined", + "unable_to_go_online", + "valid_account_but_amount_not_supported", + "invalid_use_of_merchant_category_code_correct_and_reattempt", + "forward_to_issuer", + "card_authentication_failed", ] """The reason for the decline. @@ -181,6 +204,46 @@ class OutcomeDecline(TypedDict, total=False): authorization for this transaction. - `revocation_of_all_authorizations_order` - An order has been placed to revoke all authorizations for this cardholder. + - `unable_to_locate_record` - The record associated with the transaction could + not be located. + - `file_is_temporarily_unavailable` - The file needed for the transaction is + temporarily unavailable. + - `incorrect_pin` - The PIN entered for the transaction is incorrect. + - `allowable_number_of_pin_entry_tries_exceeded` - The allowable number of PIN + entry tries has been exceeded. + - `unable_to_locate_previous_message` - The previous message associated with the + transaction could not be located. + - `data_inconsistent_with_original_message` - The data in the transaction is + inconsistent with the original message. + - `pin_error_found` - An error was found with the PIN associated with the + transaction. + - `cannot_verify_pin` - The PIN associated with the transaction could not be + verified. + - `verification_data_failed` - The verification data associated with the + transaction has failed. + - `surcharge_amount_not_supported_by_debit_network_issuer` - The surcharge + amount is not supported by the debit network issuer. + - `cash_service_not_available` - Cash service is not available for this + transaction. + - `cashback_request_exceeds_issuer_limit` - The cashback request exceeds the + issuer limit. + - `transaction_amount_exceeds_pre_authorized_approval_amount` - The transaction + amount exceeds the pre-authorized approval amount. + - `invalid_biller_information` - The biller information provided is invalid. + - `pin_change_request_declined` - The PIN change request has been declined. + - `unsafe_pin` - The PIN provided is considered unsafe. + - `transaction_does_not_qualify_for_visa_pin` - The transaction does not qualify + for Visa PIN processing. + - `offline_declined` - The transaction was declined offline. + - `unable_to_go_online` - The terminal was unable to go online to process the + transaction. + - `valid_account_but_amount_not_supported` - The account is valid but the + transaction amount is not supported. + - `invalid_use_of_merchant_category_code_correct_and_reattempt` - The merchant + category code was used incorrectly; correct it and reattempt the transaction. + - `forward_to_issuer` - The transaction should be forwarded to the issuer for + processing. + - `card_authentication_failed` - The card authentication process has failed. """