From d6802c71fc0898c31caf880d8a02674152b11490 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 26 Sep 2025 04:13:15 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 +- src/increase/types/transaction.py | 587 ++++++++++++++++++ src/increase/types/transaction_list_params.py | 1 + 3 files changed, 590 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 2923d8298..a9120ac7b 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 214 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-3e092c1a52f33e962b8415bfa24a244fdb66783aa093e027501124cb8658881b.yml -openapi_spec_hash: 677f23c2d65201b72074b3effb7d9ad4 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-749004bde06df3642fccde727f8e872c02795128db180789d1377c3168bd71ba.yml +openapi_spec_hash: 9058f9b3951c7608de5b67d8d5c87ffd config_hash: a143293c5450ae8f52acad08f3102575 diff --git a/src/increase/types/transaction.py b/src/increase/types/transaction.py index b73ff8d1f..6b461818f 100644 --- a/src/increase/types/transaction.py +++ b/src/increase/types/transaction.py @@ -18,6 +18,23 @@ "SourceCardDisputeFinancial", "SourceCardDisputeFinancialVisa", "SourceCardDisputeLoss", + "SourceCardFinancial", + "SourceCardFinancialAdditionalAmounts", + "SourceCardFinancialAdditionalAmountsClinic", + "SourceCardFinancialAdditionalAmountsDental", + "SourceCardFinancialAdditionalAmountsPrescription", + "SourceCardFinancialAdditionalAmountsSurcharge", + "SourceCardFinancialAdditionalAmountsTotalCumulative", + "SourceCardFinancialAdditionalAmountsTotalHealthcare", + "SourceCardFinancialAdditionalAmountsTransit", + "SourceCardFinancialAdditionalAmountsUnknown", + "SourceCardFinancialAdditionalAmountsVision", + "SourceCardFinancialNetworkDetails", + "SourceCardFinancialNetworkDetailsVisa", + "SourceCardFinancialNetworkIdentifiers", + "SourceCardFinancialVerification", + "SourceCardFinancialVerificationCardVerificationCode", + "SourceCardFinancialVerificationCardholderAddress", "SourceCardPushTransferAcceptance", "SourceCardRefund", "SourceCardRefundCashback", @@ -473,6 +490,565 @@ class SourceCardDisputeLoss(BaseModel): """ +class SourceCardFinancialAdditionalAmountsClinic(BaseModel): + amount: int + """The amount in minor units of the `currency` field. + + The amount is positive if it is added to the amount (such as an ATM surcharge + fee) and negative if it is subtracted from the amount (such as a discount). + """ + + currency: str + """ + The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the additional + amount's currency. + """ + + +class SourceCardFinancialAdditionalAmountsDental(BaseModel): + amount: int + """The amount in minor units of the `currency` field. + + The amount is positive if it is added to the amount (such as an ATM surcharge + fee) and negative if it is subtracted from the amount (such as a discount). + """ + + currency: str + """ + The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the additional + amount's currency. + """ + + +class SourceCardFinancialAdditionalAmountsPrescription(BaseModel): + amount: int + """The amount in minor units of the `currency` field. + + The amount is positive if it is added to the amount (such as an ATM surcharge + fee) and negative if it is subtracted from the amount (such as a discount). + """ + + currency: str + """ + The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the additional + amount's currency. + """ + + +class SourceCardFinancialAdditionalAmountsSurcharge(BaseModel): + amount: int + """The amount in minor units of the `currency` field. + + The amount is positive if it is added to the amount (such as an ATM surcharge + fee) and negative if it is subtracted from the amount (such as a discount). + """ + + currency: str + """ + The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the additional + amount's currency. + """ + + +class SourceCardFinancialAdditionalAmountsTotalCumulative(BaseModel): + amount: int + """The amount in minor units of the `currency` field. + + The amount is positive if it is added to the amount (such as an ATM surcharge + fee) and negative if it is subtracted from the amount (such as a discount). + """ + + currency: str + """ + The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the additional + amount's currency. + """ + + +class SourceCardFinancialAdditionalAmountsTotalHealthcare(BaseModel): + amount: int + """The amount in minor units of the `currency` field. + + The amount is positive if it is added to the amount (such as an ATM surcharge + fee) and negative if it is subtracted from the amount (such as a discount). + """ + + currency: str + """ + The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the additional + amount's currency. + """ + + +class SourceCardFinancialAdditionalAmountsTransit(BaseModel): + amount: int + """The amount in minor units of the `currency` field. + + The amount is positive if it is added to the amount (such as an ATM surcharge + fee) and negative if it is subtracted from the amount (such as a discount). + """ + + currency: str + """ + The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the additional + amount's currency. + """ + + +class SourceCardFinancialAdditionalAmountsUnknown(BaseModel): + amount: int + """The amount in minor units of the `currency` field. + + The amount is positive if it is added to the amount (such as an ATM surcharge + fee) and negative if it is subtracted from the amount (such as a discount). + """ + + currency: str + """ + The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the additional + amount's currency. + """ + + +class SourceCardFinancialAdditionalAmountsVision(BaseModel): + amount: int + """The amount in minor units of the `currency` field. + + The amount is positive if it is added to the amount (such as an ATM surcharge + fee) and negative if it is subtracted from the amount (such as a discount). + """ + + currency: str + """ + The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the additional + amount's currency. + """ + + +class SourceCardFinancialAdditionalAmounts(BaseModel): + clinic: Optional[SourceCardFinancialAdditionalAmountsClinic] = None + """The part of this transaction amount that was for clinic-related services.""" + + dental: Optional[SourceCardFinancialAdditionalAmountsDental] = None + """The part of this transaction amount that was for dental-related services.""" + + prescription: Optional[SourceCardFinancialAdditionalAmountsPrescription] = None + """The part of this transaction amount that was for healthcare prescriptions.""" + + surcharge: Optional[SourceCardFinancialAdditionalAmountsSurcharge] = None + """The surcharge amount charged for this transaction by the merchant.""" + + total_cumulative: Optional[SourceCardFinancialAdditionalAmountsTotalCumulative] = None + """ + The total amount of a series of incremental authorizations, optionally provided. + """ + + total_healthcare: Optional[SourceCardFinancialAdditionalAmountsTotalHealthcare] = None + """The total amount of healthcare-related additional amounts.""" + + transit: Optional[SourceCardFinancialAdditionalAmountsTransit] = None + """The part of this transaction amount that was for transit-related services.""" + + unknown: Optional[SourceCardFinancialAdditionalAmountsUnknown] = None + """An unknown additional amount.""" + + vision: Optional[SourceCardFinancialAdditionalAmountsVision] = None + """The part of this transaction amount that was for vision-related services.""" + + +class SourceCardFinancialNetworkDetailsVisa(BaseModel): + electronic_commerce_indicator: Optional[ + Literal[ + "mail_phone_order", + "recurring", + "installment", + "unknown_mail_phone_order", + "secure_electronic_commerce", + "non_authenticated_security_transaction_at_3ds_capable_merchant", + "non_authenticated_security_transaction", + "non_secure_transaction", + ] + ] = None + """ + For electronic commerce transactions, this identifies the level of security used + in obtaining the customer's payment credential. For mail or telephone order + transactions, identifies the type of mail or telephone order. + + - `mail_phone_order` - Single transaction of a mail/phone order: Use to indicate + that the transaction is a mail/phone order purchase, not a recurring + transaction or installment payment. For domestic transactions in the US + region, this value may also indicate one bill payment transaction in the + card-present or card-absent environments. + - `recurring` - Recurring transaction: Payment indicator used to indicate a + recurring transaction that originates from an acquirer in the US region. + - `installment` - Installment payment: Payment indicator used to indicate one + purchase of goods or services that is billed to the account in multiple + charges over a period of time agreed upon by the cardholder and merchant from + transactions that originate from an acquirer in the US region. + - `unknown_mail_phone_order` - Unknown classification: other mail order: Use to + indicate that the type of mail/telephone order is unknown. + - `secure_electronic_commerce` - Secure electronic commerce transaction: Use to + indicate that the electronic commerce transaction has been authenticated using + e.g., 3-D Secure + - `non_authenticated_security_transaction_at_3ds_capable_merchant` - + Non-authenticated security transaction at a 3-D Secure-capable merchant, and + merchant attempted to authenticate the cardholder using 3-D Secure: Use to + identify an electronic commerce transaction where the merchant attempted to + authenticate the cardholder using 3-D Secure, but was unable to complete the + authentication because the issuer or cardholder does not participate in the + 3-D Secure program. + - `non_authenticated_security_transaction` - Non-authenticated security + transaction: Use to identify an electronic commerce transaction that uses data + encryption for security however , cardholder authentication is not performed + using 3-D Secure. + - `non_secure_transaction` - Non-secure transaction: Use to identify an + electronic commerce transaction that has no data protection. + """ + + point_of_service_entry_mode: Optional[ + Literal[ + "unknown", + "manual", + "magnetic_stripe_no_cvv", + "optical_code", + "integrated_circuit_card", + "contactless", + "credential_on_file", + "magnetic_stripe", + "contactless_magnetic_stripe", + "integrated_circuit_card_no_cvv", + ] + ] = None + """ + The method used to enter the cardholder's primary account number and card + expiration date. + + - `unknown` - Unknown + - `manual` - Manual key entry + - `magnetic_stripe_no_cvv` - Magnetic stripe read, without card verification + value + - `optical_code` - Optical code + - `integrated_circuit_card` - Contact chip card + - `contactless` - Contactless read of chip card + - `credential_on_file` - Transaction initiated using a credential that has + previously been stored on file + - `magnetic_stripe` - Magnetic stripe read + - `contactless_magnetic_stripe` - Contactless read of magnetic stripe data + - `integrated_circuit_card_no_cvv` - Contact chip card, without card + verification value + """ + + stand_in_processing_reason: Optional[ + Literal[ + "issuer_error", + "invalid_physical_card", + "invalid_cardholder_authentication_verification_value", + "internal_visa_error", + "merchant_transaction_advisory_service_authentication_required", + "payment_fraud_disruption_acquirer_block", + "other", + ] + ] = None + """Only present when `actioner: network`. + + Describes why a card authorization was approved or declined by Visa through + stand-in processing. + + - `issuer_error` - Increase failed to process the authorization in a timely + manner. + - `invalid_physical_card` - The physical card read had an invalid CVV, dCVV, or + authorization request cryptogram. + - `invalid_cardholder_authentication_verification_value` - The 3DS cardholder + authentication verification value was invalid. + - `internal_visa_error` - An internal Visa error occurred. Visa uses this reason + code for certain expected occurrences as well, such as Application Transaction + Counter (ATC) replays. + - `merchant_transaction_advisory_service_authentication_required` - The merchant + has enabled Visa's Transaction Advisory Service and requires further + authentication to perform the transaction. In practice this is often utilized + at fuel pumps to tell the cardholder to see the cashier. + - `payment_fraud_disruption_acquirer_block` - The transaction was blocked by + Visa's Payment Fraud Disruption service due to fraudulent Acquirer behavior, + such as card testing. + - `other` - An unspecific reason for stand-in processing. + """ + + +class SourceCardFinancialNetworkDetails(BaseModel): + category: Literal["visa"] + """The payment network used to process this card authorization. + + - `visa` - Visa + """ + + visa: Optional[SourceCardFinancialNetworkDetailsVisa] = None + """Fields specific to the `visa` network.""" + + +class SourceCardFinancialNetworkIdentifiers(BaseModel): + retrieval_reference_number: Optional[str] = None + """A life-cycle identifier used across e.g., an authorization and a reversal. + + Expected to be unique per acquirer within a window of time. For some card + networks the retrieval reference number includes the trace counter. + """ + + trace_number: Optional[str] = None + """A counter used to verify an individual authorization. + + Expected to be unique per acquirer within a window of time. + """ + + transaction_id: Optional[str] = None + """ + A globally unique transaction identifier provided by the card network, used + across multiple life-cycle requests. + """ + + +class SourceCardFinancialVerificationCardVerificationCode(BaseModel): + result: Literal["not_checked", "match", "no_match"] + """The result of verifying the Card Verification Code. + + - `not_checked` - No card verification code was provided in the authorization + request. + - `match` - The card verification code matched the one on file. + - `no_match` - The card verification code did not match the one on file. + """ + + +class SourceCardFinancialVerificationCardholderAddress(BaseModel): + actual_line1: Optional[str] = None + """Line 1 of the address on file for the cardholder.""" + + actual_postal_code: Optional[str] = None + """The postal code of the address on file for the cardholder.""" + + provided_line1: Optional[str] = None + """ + The cardholder address line 1 provided for verification in the authorization + request. + """ + + provided_postal_code: Optional[str] = None + """The postal code provided for verification in the authorization request.""" + + result: Literal[ + "not_checked", + "postal_code_match_address_no_match", + "postal_code_no_match_address_match", + "match", + "no_match", + "postal_code_match_address_not_checked", + ] + """The address verification result returned to the card network. + + - `not_checked` - No address information was provided in the authorization + request. + - `postal_code_match_address_no_match` - Postal code matches, but the street + address does not match or was not provided. + - `postal_code_no_match_address_match` - Postal code does not match, but the + street address matches or was not provided. + - `match` - Postal code and street address match. + - `no_match` - Postal code and street address do not match. + - `postal_code_match_address_not_checked` - Postal code matches, but the street + address was not verified. (deprecated) + """ + + +class SourceCardFinancialVerification(BaseModel): + card_verification_code: SourceCardFinancialVerificationCardVerificationCode + """ + Fields related to verification of the Card Verification Code, a 3-digit code on + the back of the card. + """ + + cardholder_address: SourceCardFinancialVerificationCardholderAddress + """ + Cardholder address provided in the authorization request and the address on file + we verified it against. + """ + + +class SourceCardFinancial(BaseModel): + id: str + """The Card Financial identifier.""" + + actioner: Literal["user", "increase", "network"] + """ + Whether this financial was approved by Increase, the card network through + stand-in processing, or the user through a real-time decision. + + - `user` - This object was actioned by the user through a real-time decision. + - `increase` - This object was actioned by Increase without user intervention. + - `network` - This object was actioned by the network, through stand-in + processing. + """ + + additional_amounts: SourceCardFinancialAdditionalAmounts + """ + Additional amounts associated with the card authorization, such as ATM + surcharges fees. These are usually a subset of the `amount` field and are used + to provide more detailed information about the transaction. + """ + + amount: int + """The pending amount in the minor unit of the transaction's currency. + + For dollars, for example, this is cents. + """ + + card_payment_id: str + """The ID of the Card Payment this transaction belongs to.""" + + currency: Literal["CAD", "CHF", "EUR", "GBP", "JPY", "USD"] + """ + The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the + transaction's currency. + + - `CAD` - Canadian Dollar (CAD) + - `CHF` - Swiss Franc (CHF) + - `EUR` - Euro (EUR) + - `GBP` - British Pound (GBP) + - `JPY` - Japanese Yen (JPY) + - `USD` - US Dollar (USD) + """ + + digital_wallet_token_id: Optional[str] = None + """ + If the authorization was made via a Digital Wallet Token (such as an Apple Pay + purchase), the identifier of the token that was used. + """ + + direction: Literal["settlement", "refund"] + """ + The direction describes the direction the funds will move, either from the + cardholder to the merchant or from the merchant to the cardholder. + + - `settlement` - A regular card authorization where funds are debited from the + cardholder. + - `refund` - A refund card authorization, sometimes referred to as a credit + voucher authorization, where funds are credited to the cardholder. + """ + + merchant_acceptor_id: str + """ + The merchant identifier (commonly abbreviated as MID) of the merchant the card + is transacting with. + """ + + merchant_category_code: str + """ + The Merchant Category Code (commonly abbreviated as MCC) of the merchant the + card is transacting with. + """ + + merchant_city: Optional[str] = None + """The city the merchant resides in.""" + + merchant_country: str + """The country the merchant resides in.""" + + merchant_descriptor: str + """The merchant descriptor of the merchant the card is transacting with.""" + + merchant_postal_code: Optional[str] = None + """The merchant's postal code. + + For US merchants this is either a 5-digit or 9-digit ZIP code, where the first 5 + and last 4 are separated by a dash. + """ + + merchant_state: Optional[str] = None + """The state the merchant resides in.""" + + network_details: SourceCardFinancialNetworkDetails + """Fields specific to the `network`.""" + + network_identifiers: SourceCardFinancialNetworkIdentifiers + """Network-specific identifiers for a specific request or transaction.""" + + network_risk_score: Optional[int] = None + """The risk score generated by the card network. + + For Visa this is the Visa Advanced Authorization risk score, from 0 to 99, where + 99 is the riskiest. + """ + + physical_card_id: Optional[str] = None + """ + If the authorization was made in-person with a physical card, the Physical Card + that was used. + """ + + presentment_amount: int + """The pending amount in the minor unit of the transaction's presentment currency.""" + + presentment_currency: str + """ + The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the + transaction's presentment currency. + """ + + processing_category: Literal[ + "account_funding", + "automatic_fuel_dispenser", + "bill_payment", + "original_credit", + "purchase", + "quasi_cash", + "refund", + "cash_disbursement", + "unknown", + ] + """ + The processing category describes the intent behind the financial, such as + whether it was used for bill payments or an automatic fuel dispenser. + + - `account_funding` - Account funding transactions are transactions used to + e.g., fund an account or transfer funds between accounts. + - `automatic_fuel_dispenser` - Automatic fuel dispenser authorizations occur + when a card is used at a gas pump, prior to the actual transaction amount + being known. They are followed by an advice message that updates the amount of + the pending transaction. + - `bill_payment` - A transaction used to pay a bill. + - `original_credit` - Original credit transactions are used to send money to a + cardholder. + - `purchase` - A regular purchase. + - `quasi_cash` - Quasi-cash transactions represent purchases of items which may + be convertible to cash. + - `refund` - A refund card authorization, sometimes referred to as a credit + voucher authorization, where funds are credited to the cardholder. + - `cash_disbursement` - Cash disbursement transactions are used to withdraw cash + from an ATM or a point of sale. + - `unknown` - The processing category is unknown. + """ + + real_time_decision_id: Optional[str] = None + """ + The identifier of the Real-Time Decision sent to approve or decline this + transaction. + """ + + terminal_id: Optional[str] = None + """ + The terminal identifier (commonly abbreviated as TID) of the terminal the card + is transacting with. + """ + + transaction_id: str + """The identifier of the Transaction associated with this Transaction.""" + + type: Literal["card_financial"] + """A constant representing the object's type. + + For this resource it will always be `card_financial`. + """ + + verification: SourceCardFinancialVerification + """Fields related to verification of cardholder-provided values.""" + + class SourceCardPushTransferAcceptance(BaseModel): amount: int """The transfer amount in USD cents.""" @@ -2401,6 +2977,14 @@ class Source(BaseModel): equal to `card_dispute_loss`. Contains the details of a lost Card Dispute. """ + card_financial: Optional[SourceCardFinancial] = None + """A Card Financial object. + + This field will be present in the JSON response if and only if `category` is + equal to `card_financial`. Card Financials are temporary holds placed on a + customers funds with the intent to later clear a transaction. + """ + card_push_transfer_acceptance: Optional[SourceCardPushTransferAcceptance] = None """A Card Push Transfer Acceptance object. @@ -2456,6 +3040,7 @@ class Source(BaseModel): "card_dispute_loss", "card_refund", "card_settlement", + "card_financial", "card_revenue_payment", "check_deposit_acceptance", "check_deposit_return", @@ -2506,6 +3091,8 @@ class Source(BaseModel): - `card_refund` - Card Refund: details will be under the `card_refund` object. - `card_settlement` - Card Settlement: details will be under the `card_settlement` object. + - `card_financial` - Card Financial: details will be under the `card_financial` + object. - `card_revenue_payment` - Card Revenue Payment: details will be under the `card_revenue_payment` object. - `check_deposit_acceptance` - Check Deposit Acceptance: details will be under diff --git a/src/increase/types/transaction_list_params.py b/src/increase/types/transaction_list_params.py index 7339df2bc..4af4a7d26 100644 --- a/src/increase/types/transaction_list_params.py +++ b/src/increase/types/transaction_list_params.py @@ -50,6 +50,7 @@ class TransactionListParams(TypedDict, total=False): "card_dispute_loss", "card_refund", "card_settlement", + "card_financial", "card_revenue_payment", "check_deposit_acceptance", "check_deposit_return", From 25568b09ab1207cacfc057b22fe52b156957540c Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 26 Sep 2025 04:14:41 +0000 Subject: [PATCH 2/2] release: 0.341.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 189 ++++++++++++++++++++++++++++++++++ pyproject.toml | 2 +- src/increase/_version.py | 2 +- 4 files changed, 192 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 045a06e9d..7951156ff 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.340.0" + ".": "0.341.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index e52a3d2d0..32f1bffa2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,194 @@ # Changelog +## 0.341.0 (2025-09-26) + +Full Changelog: [v0.340.0...v0.341.0](https://github.com/Increase/increase-python/compare/v0.340.0...v0.341.0) + +### Features + +* **api:** api update ([d6802c7](https://github.com/Increase/increase-python/commit/d6802c71fc0898c31caf880d8a02674152b11490)) +* **api:** api update ([e68ef93](https://github.com/Increase/increase-python/commit/e68ef9326f25b1070d807dae14aafecc8e2a8a10)) +* **api:** api update ([fd96631](https://github.com/Increase/increase-python/commit/fd966312d8b8fdd6aaf37fcb8707e6717c3993e4)) +* **api:** api update ([ec017f0](https://github.com/Increase/increase-python/commit/ec017f0db9b573506d08972cf5f013a89d03f16f)) +* **api:** api update ([c8c8c8e](https://github.com/Increase/increase-python/commit/c8c8c8e5b0a1bc26b26211a4b2ce696de283fc21)) +* **api:** api update ([08b5525](https://github.com/Increase/increase-python/commit/08b5525071291ba208394d70ed63cf8f42434bff)) +* **api:** api update ([a054b62](https://github.com/Increase/increase-python/commit/a054b62562074aebf17af5f3cc59b343c1893a72)) +* **api:** api update ([146bfd5](https://github.com/Increase/increase-python/commit/146bfd59248d90ba88c53a16f0268c939042b703)) +* **api:** api update ([23dc8e1](https://github.com/Increase/increase-python/commit/23dc8e1816bb9386ac13e1c4148a2f9e2287639a)) +* **api:** api update ([1a81f44](https://github.com/Increase/increase-python/commit/1a81f44a573f7fa3aa91e4373e36fe343d49d1fc)) +* **api:** api update ([afddac7](https://github.com/Increase/increase-python/commit/afddac7e20235a8a1923c4df617a1d9e0576f399)) +* **api:** api update ([6ea77b1](https://github.com/Increase/increase-python/commit/6ea77b10eca5a2ea163a8eba7f7845f7ab280982)) +* **api:** api update ([a9aa75f](https://github.com/Increase/increase-python/commit/a9aa75fd5c150ea7ca2a8e8971cdf8c0ce1ee62e)) +* **api:** api update ([f1688b8](https://github.com/Increase/increase-python/commit/f1688b81bca211a510f3ad250ed67cf6418a3793)) +* **api:** api update ([0beca77](https://github.com/Increase/increase-python/commit/0beca777ddb7b26c8e90cc2c6aed80665d7b0a46)) +* **api:** api update ([3d0c490](https://github.com/Increase/increase-python/commit/3d0c4900d25969e25f8bb4cfa2990ea438cb41fd)) +* **api:** api update ([205403b](https://github.com/Increase/increase-python/commit/205403b97bfba54bacd0cdc89763aeb9bcf9a253)) +* **api:** api update ([479ffd9](https://github.com/Increase/increase-python/commit/479ffd97b7a9001422490e99f8e0e705cfad9abb)) +* **api:** api update ([292797f](https://github.com/Increase/increase-python/commit/292797fbd73129e67e154d953b06b2b4ecb60e97)) +* **api:** api update ([bdcd05e](https://github.com/Increase/increase-python/commit/bdcd05e085bafdb5b2b7da21cf1b56d4cba735ec)) +* **api:** api update ([f0f29f3](https://github.com/Increase/increase-python/commit/f0f29f37e87871f71b9ec6bd93281717506642e2)) +* **api:** api update ([8105166](https://github.com/Increase/increase-python/commit/81051668e987861ffd7db8211b1f5d8c6ad80c96)) +* **api:** api update ([04e7686](https://github.com/Increase/increase-python/commit/04e7686cc57529002d5a82b227883f902dab118f)) +* **api:** api update ([000f5c1](https://github.com/Increase/increase-python/commit/000f5c10cd65512c29995564e6adafd9b94164b3)) +* **api:** api update ([ec80c99](https://github.com/Increase/increase-python/commit/ec80c99a0261362b9b99abe4481a6c6cb62e2eaf)) +* **api:** api update ([08e6afc](https://github.com/Increase/increase-python/commit/08e6afc6b3c5a7d3da3673a750d70b6f426a77f0)) +* **api:** api update ([516acdc](https://github.com/Increase/increase-python/commit/516acdc776d5ffef160d6ab06315bcde819b78be)) +* **api:** api update ([4ed578d](https://github.com/Increase/increase-python/commit/4ed578d8a9ca240d66d59be8465e724afa645605)) +* **api:** api update ([5af68ac](https://github.com/Increase/increase-python/commit/5af68ace07eb2f1d6a8444efd1dd7d4a9e2b5e0e)) +* **api:** api update ([090d443](https://github.com/Increase/increase-python/commit/090d44376c5c6e693e4e581d926ebe39c0e1e4cd)) +* **api:** api update ([ee36215](https://github.com/Increase/increase-python/commit/ee362152f895a7d7783edd688bd64a54ae11761f)) +* **api:** api update ([ac8de7f](https://github.com/Increase/increase-python/commit/ac8de7f3ec7b5c8a0fb34b7cf9e6fbbeadba7f8a)) +* **api:** api update ([e837022](https://github.com/Increase/increase-python/commit/e83702201ce668b73d71c9f8f8c11ae5b5b308d1)) +* **api:** api update ([1d61d66](https://github.com/Increase/increase-python/commit/1d61d663989db8d36c3b125430200403ced6f42b)) +* **api:** api update ([dfbca7f](https://github.com/Increase/increase-python/commit/dfbca7fab053b88553f9afb352b9bd5d77c9d7c8)) +* **api:** api update ([2f83a92](https://github.com/Increase/increase-python/commit/2f83a927bca02375d7773216519955626f88e44e)) +* **api:** api update ([cc3cf18](https://github.com/Increase/increase-python/commit/cc3cf18629fcd47fee08261673ba84e8a1b38dba)) +* **api:** api update ([75f7558](https://github.com/Increase/increase-python/commit/75f7558587b4011b63185712884fbc3d33335eca)) +* **api:** api update ([66c7a8d](https://github.com/Increase/increase-python/commit/66c7a8d2b797051c91402f90fa62758340f607e5)) +* **api:** api update ([c6a92e8](https://github.com/Increase/increase-python/commit/c6a92e8b6c1bea83643ca67ef85b5445762036a2)) +* **api:** api update ([0534c07](https://github.com/Increase/increase-python/commit/0534c07bbe42983c94a0e907fd321382493eb77b)) +* **api:** api update ([6507848](https://github.com/Increase/increase-python/commit/6507848609b2000a5773654a1f0e336978677733)) +* **api:** api update ([6d06655](https://github.com/Increase/increase-python/commit/6d066552d0b7bbdc34a49f72baec1d67780b51ce)) +* **api:** api update ([98e7739](https://github.com/Increase/increase-python/commit/98e77397448f7d565bd6c702003c493cfc627d66)) +* **api:** api update ([1c3762b](https://github.com/Increase/increase-python/commit/1c3762b38fdea9d74f7146338392bb8e780ea1a4)) +* **api:** api update ([77fbce2](https://github.com/Increase/increase-python/commit/77fbce220291165e4205d09670fc748cdb24b5a1)) +* **api:** api update ([aaf0b3b](https://github.com/Increase/increase-python/commit/aaf0b3bb3bc6c166d8d21c5041ef715542b453f3)) +* **api:** api update ([d6cb4f1](https://github.com/Increase/increase-python/commit/d6cb4f106cbb5d3e062ffff02dbb8688e399167c)) +* **api:** api update ([2c11ee0](https://github.com/Increase/increase-python/commit/2c11ee04237d3d167710f1cc2636cda0744f503a)) +* **api:** api update ([ab9146a](https://github.com/Increase/increase-python/commit/ab9146ae6c84877fccc67992d1beeb54154fd1b6)) +* **api:** api update ([acb2925](https://github.com/Increase/increase-python/commit/acb2925e2a1cb614c85a3e67c2d9d981cd1315b2)) +* **api:** api update ([3491ae9](https://github.com/Increase/increase-python/commit/3491ae9cd66385341afedfff1e3698c4f38a28a5)) +* **api:** api update ([5d97363](https://github.com/Increase/increase-python/commit/5d9736390fa75df3d4c8a6157526f67267ba09ed)) +* **api:** api update ([dfdc4a6](https://github.com/Increase/increase-python/commit/dfdc4a68fa8df4594a96dd9fa113cea70447e235)) +* **api:** api update ([a4f7ec1](https://github.com/Increase/increase-python/commit/a4f7ec1655c459b9eba842c6fcc7324b0fbd8dc4)) +* **api:** api update ([229e9e8](https://github.com/Increase/increase-python/commit/229e9e897b0c230c29a7814fded32612dbdac9a8)) +* **api:** api update ([b804139](https://github.com/Increase/increase-python/commit/b80413997ce48025a2c590c78f7092e0ef0dbd49)) +* **api:** api update ([b882f04](https://github.com/Increase/increase-python/commit/b882f04273d38819b2b68a2fce46e05c8f465004)) +* **api:** api update ([0f800ee](https://github.com/Increase/increase-python/commit/0f800eeb7e6f14ab92fbd68d206e1a797dc69158)) +* **api:** api update ([b428787](https://github.com/Increase/increase-python/commit/b4287873f5e8097f6e3fb2d6bd98c0c5dcdb29f4)) +* **api:** api update ([12e78a3](https://github.com/Increase/increase-python/commit/12e78a3bfdab23e3a6e63ac96731653dfde6c8bd)) +* **api:** api update ([d976188](https://github.com/Increase/increase-python/commit/d9761882f566f6381c0deee440b0ba68a66287e6)) +* **api:** api update ([df84755](https://github.com/Increase/increase-python/commit/df84755c086b93aa63f05a5248fad4a3220926dc)) +* **api:** api update ([9e5d523](https://github.com/Increase/increase-python/commit/9e5d5230f1b9b457205ce2bee814cd42caa53194)) +* **api:** api update ([048926c](https://github.com/Increase/increase-python/commit/048926c8d1c225b6c8e2b7ba519bad05e333833c)) +* **api:** api update ([6f29755](https://github.com/Increase/increase-python/commit/6f2975557307360ea2380897716bb6763129c689)) +* **api:** api update ([ef1b5b0](https://github.com/Increase/increase-python/commit/ef1b5b09c3b2d026c9493712f793efff787ef66e)) +* **api:** api update ([4f5df10](https://github.com/Increase/increase-python/commit/4f5df102e89a16778ecd6ce037f3f461d11e7f55)) +* **api:** api update ([6278ad0](https://github.com/Increase/increase-python/commit/6278ad099c0b58752a3b40626318801c6ba9d3fc)) +* **api:** api update ([6717530](https://github.com/Increase/increase-python/commit/67175307f260a4bfe51d95658c231fbcd9370dd3)) +* **api:** api update ([78ed372](https://github.com/Increase/increase-python/commit/78ed3725230a495633c921c592e52212e9391aa6)) +* **api:** api update ([7cbd2ab](https://github.com/Increase/increase-python/commit/7cbd2abff0bc1be8572bfdfc20ff753d84e6494d)) +* **api:** api update ([8413042](https://github.com/Increase/increase-python/commit/8413042f9f5bd182f18f63631123e6e9af9a5713)) +* **api:** api update ([ed279da](https://github.com/Increase/increase-python/commit/ed279daa7539104f15096b76842b7fb66d8934dd)) +* **api:** api update ([9d0ec2e](https://github.com/Increase/increase-python/commit/9d0ec2eeb6df4aa37d6cd49b4fb2bb1a8ecc7ada)) +* **api:** api update ([6248e2f](https://github.com/Increase/increase-python/commit/6248e2f8c44b070ceadea5b840eaf34517bacae2)) +* **api:** api update ([04f167f](https://github.com/Increase/increase-python/commit/04f167fe6734538703843121e9301f5208b61163)) +* **api:** api update ([60b61d9](https://github.com/Increase/increase-python/commit/60b61d97e38d43608367a6a5db51edfd94650a1c)) +* **api:** api update ([d9821d8](https://github.com/Increase/increase-python/commit/d9821d8f1b29f4881d93e3b25f79b574384647a3)) +* **api:** api update ([c00de17](https://github.com/Increase/increase-python/commit/c00de1718050fce565a28e3c4cc97fa90f2524de)) +* **api:** api update ([444f1d0](https://github.com/Increase/increase-python/commit/444f1d096a2f2d7dac3cc87c7d83e2c80623d126)) +* **api:** api update ([7ecc8fa](https://github.com/Increase/increase-python/commit/7ecc8fac50fa9161d67a4508cf34eed170556c38)) +* **api:** api update ([88989a2](https://github.com/Increase/increase-python/commit/88989a2e1bb7442de5edc3c972239600d0a32897)) +* **api:** api update ([c758555](https://github.com/Increase/increase-python/commit/c758555a1682f83995d000e344abbb7f3129a731)) +* **api:** api update ([d10291e](https://github.com/Increase/increase-python/commit/d10291e23fa95e10680440ca303ca2122cc1f9ab)) +* **api:** api update ([db261a5](https://github.com/Increase/increase-python/commit/db261a51e746a8e81b0833948774e60dffcca148)) +* **api:** api update ([ec820f8](https://github.com/Increase/increase-python/commit/ec820f81a0a82a3e5d4369a51db4b03d584537ca)) +* **api:** api update ([b2410b5](https://github.com/Increase/increase-python/commit/b2410b547766a9312ecedf9917210d9175f6f3ac)) +* **api:** api update ([c072997](https://github.com/Increase/increase-python/commit/c0729970051006a38443d95f37fbdc66732d0542)) +* **api:** api update ([51ac230](https://github.com/Increase/increase-python/commit/51ac23056dbd9d7ca1139bcd86fa536dfccfbc8a)) +* **api:** api update ([c5390a9](https://github.com/Increase/increase-python/commit/c5390a93fae4d8687d664c968f24d3935f17e51b)) +* **api:** api update ([8807558](https://github.com/Increase/increase-python/commit/88075583ea519d6216aeb3a8d5291d4420638be1)) +* **api:** api update ([f8b147b](https://github.com/Increase/increase-python/commit/f8b147b535ff25a2edc7d4a46ed5c7f2118ef143)) +* **api:** api update ([978e1c9](https://github.com/Increase/increase-python/commit/978e1c9128fd0aeb865cabc940ea64aa08c31b55)) +* **api:** api update ([26784a9](https://github.com/Increase/increase-python/commit/26784a9f1381ef95d4c858535b0a55290df84538)) +* **api:** api update ([f274c81](https://github.com/Increase/increase-python/commit/f274c81a1c14bbd86f6136f59a45eced9e578c53)) +* **api:** api update ([b824675](https://github.com/Increase/increase-python/commit/b824675203de12a0e80c22e32134f2d1d32f4e27)) +* **api:** api update ([02aa81f](https://github.com/Increase/increase-python/commit/02aa81f8ed6e4b804fac6174ec7122cc0dca176f)) +* **api:** api update ([7582717](https://github.com/Increase/increase-python/commit/7582717d8f1bc59e467b5fecf35ce00f10368ad0)) +* **api:** api update ([bbea840](https://github.com/Increase/increase-python/commit/bbea840b801f7b574102fd1b074dfb620ff1d229)) +* **api:** api update ([5405f73](https://github.com/Increase/increase-python/commit/5405f73cd4172d2ef8b2870559420f1a7bda96eb)) +* **api:** api update ([22e82e9](https://github.com/Increase/increase-python/commit/22e82e96a74b6b9d15c33507bde787f99b3cbc4a)) +* **api:** api update ([d5b922a](https://github.com/Increase/increase-python/commit/d5b922a617f0e8dea8974cb4699a61803601500f)) +* **api:** api update ([10f7797](https://github.com/Increase/increase-python/commit/10f7797d90043851e97f4960dd09982f7f91cac5)) +* **api:** api update ([df01f06](https://github.com/Increase/increase-python/commit/df01f06c927e229c923c84b8a5bfe9c75de499b6)) +* **api:** api update ([adf140c](https://github.com/Increase/increase-python/commit/adf140c1dbd316e874d158737a4f9db3b59651c1)) +* **api:** api update ([d02c663](https://github.com/Increase/increase-python/commit/d02c66324a7c888fc4a7cae3ca24f524b256e673)) +* **api:** api update ([33333b6](https://github.com/Increase/increase-python/commit/33333b6aec70d31131e3ddb17960c0714a02be6a)) +* **api:** api update ([37a8edd](https://github.com/Increase/increase-python/commit/37a8edd22b0c907b0ab050467927617d4d2aa8a1)) +* **api:** api update ([8f1e7fe](https://github.com/Increase/increase-python/commit/8f1e7fe3987ad6e4dc35a887843772ca3c161432)) +* **api:** api update ([bb3079c](https://github.com/Increase/increase-python/commit/bb3079cd5a56207e7ccd3bc2b1a01fdae2627401)) +* **api:** api update ([f614599](https://github.com/Increase/increase-python/commit/f614599e07aa604678a3924f3deb5a78f1aa419b)) +* **api:** api update ([179d26e](https://github.com/Increase/increase-python/commit/179d26eb8e0b04e802ce6fb84f05553ae054af95)) +* **api:** api update ([75abcef](https://github.com/Increase/increase-python/commit/75abcefdb2cea12bcaa6259c6fde8bca97feaa7e)) +* **api:** api update ([d7f1905](https://github.com/Increase/increase-python/commit/d7f19055e62aa131d196e82a47354ef140882494)) +* **api:** api update ([43031d4](https://github.com/Increase/increase-python/commit/43031d4d22eff33833e826a042b54983ca7470e7)) +* **api:** api update ([e732d44](https://github.com/Increase/increase-python/commit/e732d44ba83c99bdab147ba2a8f807eadc9b8c7e)) +* **api:** api update ([1708ca7](https://github.com/Increase/increase-python/commit/1708ca71a2034881d2c422a8f80f6c4da175b3b9)) +* **api:** api update ([512f61d](https://github.com/Increase/increase-python/commit/512f61d77e0a9916f72c216f6758f021b658bbd2)) +* **api:** api update ([1560e52](https://github.com/Increase/increase-python/commit/1560e52c0ea35282e968c307ff8dd715f22c6ae4)) +* **api:** api update ([3c9a6a9](https://github.com/Increase/increase-python/commit/3c9a6a9dfcf2cfe20c39051c4a24071faa30e24a)) +* **api:** api update ([f5bca15](https://github.com/Increase/increase-python/commit/f5bca15568de3711c6235e9274d7b00618baf195)) +* **api:** api update ([975c0c2](https://github.com/Increase/increase-python/commit/975c0c2af05f92250bf0f6cac4d1d892eaf2d55d)) +* **api:** api update ([aaf2623](https://github.com/Increase/increase-python/commit/aaf2623e788517a404bfac35c1a9a9792ae3a0ef)) +* clean up environment call outs ([cb68274](https://github.com/Increase/increase-python/commit/cb68274522dabcedf5be653ce4cd895cd9b9a3c7)) +* **client:** add follow_redirects request option ([c0b6e86](https://github.com/Increase/increase-python/commit/c0b6e8616c22f989970cf4607608b0e4f59907f7)) +* **client:** add support for aiohttp ([6dd18c1](https://github.com/Increase/increase-python/commit/6dd18c11197456faa735b67d0655b62f1266dbae)) +* **client:** support file upload requests ([5ecb681](https://github.com/Increase/increase-python/commit/5ecb6810b0bcd6e0b0388904e958c60a2f69c35c)) +* improve future compat with pydantic v3 ([5af68e8](https://github.com/Increase/increase-python/commit/5af68e8495c44e3cc61d8634af603b29365c6cac)) +* **types:** replace List[str] with SequenceNotStr in params ([bf10e8f](https://github.com/Increase/increase-python/commit/bf10e8f7ebc3dde580bee2432473073371f3880b)) + + +### Bug Fixes + +* avoid newer type syntax ([1457d3b](https://github.com/Increase/increase-python/commit/1457d3bb89735088db612dbc00b6009211607f1f)) +* **ci:** correct conditional ([28c9dc0](https://github.com/Increase/increase-python/commit/28c9dc04c1e4516682a03e990c1a704261b27591)) +* **ci:** release-doctor — report correct token name ([dc45dbf](https://github.com/Increase/increase-python/commit/dc45dbf9870be390cd6a1a866d9aa32e59e8c73f)) +* **client:** correctly parse binary response | stream ([2ac11f8](https://github.com/Increase/increase-python/commit/2ac11f81f517b667b9975bc91df935fc96432df7)) +* **client:** don't send Content-Type header on GET requests ([731394d](https://github.com/Increase/increase-python/commit/731394d019f1f74927a84c6b2f7eea6982d58298)) +* **parsing:** correctly handle nested discriminated unions ([0f700bb](https://github.com/Increase/increase-python/commit/0f700bb58a7930069fe6724a47f206b5005c6326)) +* **parsing:** ignore empty metadata ([c91aaa2](https://github.com/Increase/increase-python/commit/c91aaa279dc41a26845efd7e18c0fc1573afa4f8)) +* **parsing:** parse extra field types ([836ce3d](https://github.com/Increase/increase-python/commit/836ce3da1dbe6bca3015af61b6dab0e8b70afc16)) +* **tests:** fix: tests which call HTTP endpoints directly with the example parameters ([984264a](https://github.com/Increase/increase-python/commit/984264ad1a7c9160051bbba48419bef2a7a45296)) + + +### Chores + +* **ci:** change upload type ([f1c5367](https://github.com/Increase/increase-python/commit/f1c53677f025eb7cba3ab3a5165b489c3ad39e90)) +* **ci:** enable for pull requests ([ab47873](https://github.com/Increase/increase-python/commit/ab4787356614eaf483753912dc4d97be12b44b1d)) +* **ci:** fix installation instructions ([30e0dfa](https://github.com/Increase/increase-python/commit/30e0dfa78866d39e0ca0e1b15b65217235b938bf)) +* **ci:** only run for pushes and fork pull requests ([56e55e6](https://github.com/Increase/increase-python/commit/56e55e67980fd3c3f835edd39d9650b1fac94e3a)) +* **ci:** upload sdks to package manager ([27973af](https://github.com/Increase/increase-python/commit/27973af442da610debde73f77fb1fcea8f6f3644)) +* do not install brew dependencies in ./scripts/bootstrap by default ([9b413f2](https://github.com/Increase/increase-python/commit/9b413f2986e90fb86fd2b2f9765bed4a5a747b41)) +* **docs:** grammar improvements ([5ea0f46](https://github.com/Increase/increase-python/commit/5ea0f465649b3c4738073ba051d7a4d7ed510d7f)) +* **docs:** remove reference to rye shell ([b2731fa](https://github.com/Increase/increase-python/commit/b2731fa374b2938741daf9c10b6c0f0d8cc2dbf8)) +* fix idempotency ([f374872](https://github.com/Increase/increase-python/commit/f3748723a0384bb7272af9fee0a898c2f7a81c24)) +* improve example values ([b5aaa39](https://github.com/Increase/increase-python/commit/b5aaa395e852a74a299cd94e470816c5220bd52d)) +* **internal:** add Sequence related utils ([ebb5fa8](https://github.com/Increase/increase-python/commit/ebb5fa8b9e90b00546f1cd27125b4375e1809aeb)) +* **internal:** bump pinned h11 dep ([b13b4ee](https://github.com/Increase/increase-python/commit/b13b4ee5496a9583bedc18e47973eb9637772fe0)) +* **internal:** change ci workflow machines ([b5e985b](https://github.com/Increase/increase-python/commit/b5e985b0ee6c8208a45683abe5b8007b35b68e19)) +* **internal:** fix ruff target version ([2237bff](https://github.com/Increase/increase-python/commit/2237bff8ff520a79bccce34049a331629895742e)) +* **internal:** move mypy configurations to `pyproject.toml` file ([ffab64b](https://github.com/Increase/increase-python/commit/ffab64ba665f37dc7b912a554c73adad01556d7d)) +* **internal:** update comment in script ([2357024](https://github.com/Increase/increase-python/commit/2357024cfd654b42ebf7bcb9246ba015721867a2)) +* **internal:** update conftest.py ([e123648](https://github.com/Increase/increase-python/commit/e123648bf779cb7827f00f02498767527284ab11)) +* **internal:** update pydantic dependency ([b1ba208](https://github.com/Increase/increase-python/commit/b1ba2084104d6f804464d419a4748fea52924c95)) +* **internal:** update pyright exclude list ([11107c7](https://github.com/Increase/increase-python/commit/11107c7d51911c5e59db346c9990456d4395df95)) +* **package:** mark python 3.13 as supported ([4d73966](https://github.com/Increase/increase-python/commit/4d7396646ab7fbb7333e9c18fb6fc4c996f859fd)) +* **project:** add settings file for vscode ([34bd64f](https://github.com/Increase/increase-python/commit/34bd64fdfba2ec4a18142067850f5906124eafd6)) +* **readme:** fix version rendering on pypi ([999f172](https://github.com/Increase/increase-python/commit/999f1721796e137986d375e4341ca5020aa147a3)) +* **readme:** update badges ([704385e](https://github.com/Increase/increase-python/commit/704385e1ee3cc0cf774abe1a893cac6d4d606f65)) +* **tests:** add tests for httpx client instantiation & proxies ([c021210](https://github.com/Increase/increase-python/commit/c0212102edb6286ac4563a65c3c7ebbe60284499)) +* **tests:** run tests in parallel ([eae7dc0](https://github.com/Increase/increase-python/commit/eae7dc070a27c1ffdf497273cd0c290cc7d895ab)) +* **tests:** simplify `get_platform` test ([6b3c3f3](https://github.com/Increase/increase-python/commit/6b3c3f3c0ae5c156ae64c1901e266547600d119a)) +* **tests:** skip some failing tests on the latest python versions ([71b229b](https://github.com/Increase/increase-python/commit/71b229bd2e0c1b761a3f620542cea93c7170fc83)) +* **types:** change optional parameter type from NotGiven to Omit ([1b39545](https://github.com/Increase/increase-python/commit/1b39545b660e636eeca611565f8168e981849da0)) +* update @stainless-api/prism-cli to v5.15.0 ([34234ee](https://github.com/Increase/increase-python/commit/34234eee308e5101a965b8075f44a8597e5325cc)) +* update github action ([d708ab1](https://github.com/Increase/increase-python/commit/d708ab19978e98b3e71d112d8443080b56e6f939)) + + +### Documentation + +* **client:** fix httpx.Timeout documentation reference ([ff27788](https://github.com/Increase/increase-python/commit/ff27788e085dbd98eff4635080ec5acbd5c3cdfe)) + ## 0.340.0 (2025-09-24) Full Changelog: [v0.339.0...v0.340.0](https://github.com/Increase/increase-python/compare/v0.339.0...v0.340.0) diff --git a/pyproject.toml b/pyproject.toml index 5073f4777..010887a97 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.340.0" +version = "0.341.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 29d0ec0b0..d5fad0193 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.340.0" # x-release-please-version +__version__ = "0.341.0" # x-release-please-version