diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a7a2a76c..7f4bb0b5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.177.0" + ".": "0.177.1" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index bc10f2d3..9478903e 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 201 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-5ea7ed56030d4b00596b425a2efee0459583f4e0e283daad7ebb63a0cd76d29f.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-9f22ab139c225a56bc829befa825a81eb1f2bc1af4b1a934b6f8888d4e422a58.yml diff --git a/CHANGELOG.md b/CHANGELOG.md index cd601bff..0efdd4ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 0.177.1 (2025-01-20) + +Full Changelog: [v0.177.0...v0.177.1](https://github.com/Increase/increase-python/compare/v0.177.0...v0.177.1) + +### Bug Fixes + +* **tests:** make test_get_platform less flaky ([#915](https://github.com/Increase/increase-python/issues/915)) ([190d629](https://github.com/Increase/increase-python/commit/190d6297f458a6ef4087e0b2637f0b8755e0dd05)) + + +### Chores + +* **internal:** bump pyright dependency ([#912](https://github.com/Increase/increase-python/issues/912)) ([b855922](https://github.com/Increase/increase-python/commit/b85592231974a4b1de78c1169d7eaada609c6720)) + + +### Documentation + +* **raw responses:** fix duplicate `the` ([#914](https://github.com/Increase/increase-python/issues/914)) ([e0d35cb](https://github.com/Increase/increase-python/commit/e0d35cbc3cc25d522e4a33fa1a9aac79d48e9c07)) + ## 0.177.0 (2025-01-14) Full Changelog: [v0.176.2...v0.177.0](https://github.com/Increase/increase-python/compare/v0.176.2...v0.177.0) diff --git a/pyproject.toml b/pyproject.toml index dba00c82..2dc07ac5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.177.0" +version = "0.177.1" description = "The official Python library for the increase API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/requirements-dev.lock b/requirements-dev.lock index 4b5cb16b..06d5e5ce 100644 --- a/requirements-dev.lock +++ b/requirements-dev.lock @@ -68,7 +68,7 @@ pydantic-core==2.27.1 # via pydantic pygments==2.18.0 # via rich -pyright==1.1.391 +pyright==1.1.392.post0 pytest==8.3.3 # via pytest-asyncio pytest-asyncio==0.24.0 diff --git a/src/increase/_response.py b/src/increase/_response.py index 2f83cff6..cfff4003 100644 --- a/src/increase/_response.py +++ b/src/increase/_response.py @@ -210,7 +210,13 @@ def _parse(self, *, to: type[_T] | None = None) -> R | _T: raise ValueError(f"Subclasses of httpx.Response cannot be passed to `cast_to`") return cast(R, response) - if inspect.isclass(origin) and not issubclass(origin, BaseModel) and issubclass(origin, pydantic.BaseModel): + if ( + inspect.isclass( + origin # pyright: ignore[reportUnknownArgumentType] + ) + and not issubclass(origin, BaseModel) + and issubclass(origin, pydantic.BaseModel) + ): raise TypeError("Pydantic models must subclass our base model type, e.g. `from increase import BaseModel`") if ( diff --git a/src/increase/_version.py b/src/increase/_version.py index 8122fa96..fed4d4bc 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.177.0" # x-release-please-version +__version__ = "0.177.1" # x-release-please-version diff --git a/src/increase/resources/account_numbers.py b/src/increase/resources/account_numbers.py index 60942c44..7aefb3a1 100644 --- a/src/increase/resources/account_numbers.py +++ b/src/increase/resources/account_numbers.py @@ -35,7 +35,7 @@ class AccountNumbersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> AccountNumbersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -294,7 +294,7 @@ class AsyncAccountNumbersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncAccountNumbersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/account_statements.py b/src/increase/resources/account_statements.py index bcac68cc..72a0bed6 100644 --- a/src/increase/resources/account_statements.py +++ b/src/increase/resources/account_statements.py @@ -26,7 +26,7 @@ class AccountStatementsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> AccountStatementsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -138,7 +138,7 @@ class AsyncAccountStatementsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncAccountStatementsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/account_transfers.py b/src/increase/resources/account_transfers.py index 31087746..9ed099d3 100644 --- a/src/increase/resources/account_transfers.py +++ b/src/increase/resources/account_transfers.py @@ -29,7 +29,7 @@ class AccountTransfersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> AccountTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -299,7 +299,7 @@ class AsyncAccountTransfersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncAccountTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/accounts.py b/src/increase/resources/accounts.py index a5f3a10d..5f083c93 100644 --- a/src/increase/resources/accounts.py +++ b/src/increase/resources/accounts.py @@ -39,7 +39,7 @@ class AccountsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> AccountsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -362,7 +362,7 @@ class AsyncAccountsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncAccountsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/ach_prenotifications.py b/src/increase/resources/ach_prenotifications.py index 9c117231..89237765 100644 --- a/src/increase/resources/ach_prenotifications.py +++ b/src/increase/resources/ach_prenotifications.py @@ -33,7 +33,7 @@ class ACHPrenotificationsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> ACHPrenotificationsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -259,7 +259,7 @@ class AsyncACHPrenotificationsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncACHPrenotificationsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/ach_transfers.py b/src/increase/resources/ach_transfers.py index 5c38a169..671cc110 100644 --- a/src/increase/resources/ach_transfers.py +++ b/src/increase/resources/ach_transfers.py @@ -31,7 +31,7 @@ class ACHTransfersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> ACHTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -395,7 +395,7 @@ class AsyncACHTransfersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncACHTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/bookkeeping_accounts.py b/src/increase/resources/bookkeeping_accounts.py index 0594eab9..84449844 100644 --- a/src/increase/resources/bookkeeping_accounts.py +++ b/src/increase/resources/bookkeeping_accounts.py @@ -39,7 +39,7 @@ class BookkeepingAccountsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> BookkeepingAccountsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -270,7 +270,7 @@ class AsyncBookkeepingAccountsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncBookkeepingAccountsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/bookkeeping_entries.py b/src/increase/resources/bookkeeping_entries.py index dbeb8d91..5a8fe0ba 100644 --- a/src/increase/resources/bookkeeping_entries.py +++ b/src/increase/resources/bookkeeping_entries.py @@ -26,7 +26,7 @@ class BookkeepingEntriesResource(SyncAPIResource): @cached_property def with_raw_response(self) -> BookkeepingEntriesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -136,7 +136,7 @@ class AsyncBookkeepingEntriesResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncBookkeepingEntriesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/bookkeeping_entry_sets.py b/src/increase/resources/bookkeeping_entry_sets.py index 57fb95b4..ef134c2f 100644 --- a/src/increase/resources/bookkeeping_entry_sets.py +++ b/src/increase/resources/bookkeeping_entry_sets.py @@ -32,7 +32,7 @@ class BookkeepingEntrySetsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> BookkeepingEntrySetsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -204,7 +204,7 @@ class AsyncBookkeepingEntrySetsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncBookkeepingEntrySetsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/card_disputes.py b/src/increase/resources/card_disputes.py index 61aef4cf..db762d7c 100644 --- a/src/increase/resources/card_disputes.py +++ b/src/increase/resources/card_disputes.py @@ -29,7 +29,7 @@ class CardDisputesResource(SyncAPIResource): @cached_property def with_raw_response(self) -> CardDisputesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -202,7 +202,7 @@ class AsyncCardDisputesResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncCardDisputesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/card_payments.py b/src/increase/resources/card_payments.py index ff26923d..6ba08b13 100644 --- a/src/increase/resources/card_payments.py +++ b/src/increase/resources/card_payments.py @@ -26,7 +26,7 @@ class CardPaymentsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> CardPaymentsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -140,7 +140,7 @@ class AsyncCardPaymentsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncCardPaymentsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/card_purchase_supplements.py b/src/increase/resources/card_purchase_supplements.py index 0a9743c7..7b926776 100644 --- a/src/increase/resources/card_purchase_supplements.py +++ b/src/increase/resources/card_purchase_supplements.py @@ -26,7 +26,7 @@ class CardPurchaseSupplementsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> CardPurchaseSupplementsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -139,7 +139,7 @@ class AsyncCardPurchaseSupplementsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncCardPurchaseSupplementsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/cards.py b/src/increase/resources/cards.py index 517a66c7..ae584b34 100644 --- a/src/increase/resources/cards.py +++ b/src/increase/resources/cards.py @@ -32,7 +32,7 @@ class CardsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> CardsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -325,7 +325,7 @@ class AsyncCardsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncCardsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/check_deposits.py b/src/increase/resources/check_deposits.py index d91e4b11..5c50117b 100644 --- a/src/increase/resources/check_deposits.py +++ b/src/increase/resources/check_deposits.py @@ -29,7 +29,7 @@ class CheckDepositsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> CheckDepositsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -208,7 +208,7 @@ class AsyncCheckDepositsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncCheckDepositsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/check_transfers.py b/src/increase/resources/check_transfers.py index 8c8d463c..09e22e1b 100644 --- a/src/increase/resources/check_transfers.py +++ b/src/increase/resources/check_transfers.py @@ -35,7 +35,7 @@ class CheckTransfersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> CheckTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -366,7 +366,7 @@ class AsyncCheckTransfersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncCheckTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/declined_transactions.py b/src/increase/resources/declined_transactions.py index e4eb2d1e..7ef7c640 100644 --- a/src/increase/resources/declined_transactions.py +++ b/src/increase/resources/declined_transactions.py @@ -26,7 +26,7 @@ class DeclinedTransactionsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> DeclinedTransactionsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -144,7 +144,7 @@ class AsyncDeclinedTransactionsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncDeclinedTransactionsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/digital_card_profiles.py b/src/increase/resources/digital_card_profiles.py index 6a42346d..0499e7d6 100644 --- a/src/increase/resources/digital_card_profiles.py +++ b/src/increase/resources/digital_card_profiles.py @@ -33,7 +33,7 @@ class DigitalCardProfilesResource(SyncAPIResource): @cached_property def with_raw_response(self) -> DigitalCardProfilesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -355,7 +355,7 @@ class AsyncDigitalCardProfilesResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncDigitalCardProfilesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/digital_wallet_tokens.py b/src/increase/resources/digital_wallet_tokens.py index d541453b..37eec5d7 100644 --- a/src/increase/resources/digital_wallet_tokens.py +++ b/src/increase/resources/digital_wallet_tokens.py @@ -26,7 +26,7 @@ class DigitalWalletTokensResource(SyncAPIResource): @cached_property def with_raw_response(self) -> DigitalWalletTokensResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -138,7 +138,7 @@ class AsyncDigitalWalletTokensResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncDigitalWalletTokensResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/documents.py b/src/increase/resources/documents.py index 99a81fbc..7e5e31ae 100644 --- a/src/increase/resources/documents.py +++ b/src/increase/resources/documents.py @@ -26,7 +26,7 @@ class DocumentsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> DocumentsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -138,7 +138,7 @@ class AsyncDocumentsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncDocumentsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/entities.py b/src/increase/resources/entities.py index f03b090b..a6c94203 100644 --- a/src/increase/resources/entities.py +++ b/src/increase/resources/entities.py @@ -42,7 +42,7 @@ class EntitiesResource(SyncAPIResource): @cached_property def with_raw_response(self) -> EntitiesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -600,7 +600,7 @@ class AsyncEntitiesResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncEntitiesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/event_subscriptions.py b/src/increase/resources/event_subscriptions.py index 1ae9bc63..e1c62f5d 100644 --- a/src/increase/resources/event_subscriptions.py +++ b/src/increase/resources/event_subscriptions.py @@ -35,7 +35,7 @@ class EventSubscriptionsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> EventSubscriptionsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -490,7 +490,7 @@ class AsyncEventSubscriptionsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncEventSubscriptionsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/events.py b/src/increase/resources/events.py index 85691c87..3640ca31 100644 --- a/src/increase/resources/events.py +++ b/src/increase/resources/events.py @@ -26,7 +26,7 @@ class EventsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> EventsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -138,7 +138,7 @@ class AsyncEventsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncEventsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/exports.py b/src/increase/resources/exports.py index 7504246a..3f02e7dd 100644 --- a/src/increase/resources/exports.py +++ b/src/increase/resources/exports.py @@ -31,7 +31,7 @@ class ExportsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> ExportsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -240,7 +240,7 @@ class AsyncExportsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncExportsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/external_accounts.py b/src/increase/resources/external_accounts.py index 387a3d3f..9d8a53a1 100644 --- a/src/increase/resources/external_accounts.py +++ b/src/increase/resources/external_accounts.py @@ -35,7 +35,7 @@ class ExternalAccountsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> ExternalAccountsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -301,7 +301,7 @@ class AsyncExternalAccountsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncExternalAccountsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/files.py b/src/increase/resources/files.py index 58077f63..b9bfe8da 100644 --- a/src/increase/resources/files.py +++ b/src/increase/resources/files.py @@ -34,7 +34,7 @@ class FilesResource(SyncAPIResource): @cached_property def with_raw_response(self) -> FilesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -254,7 +254,7 @@ class AsyncFilesResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncFilesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/groups.py b/src/increase/resources/groups.py index 98b9ab8d..188e9256 100644 --- a/src/increase/resources/groups.py +++ b/src/increase/resources/groups.py @@ -23,7 +23,7 @@ class GroupsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> GroupsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -63,7 +63,7 @@ class AsyncGroupsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncGroupsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/inbound_ach_transfers.py b/src/increase/resources/inbound_ach_transfers.py index 070a8567..f31e91c5 100644 --- a/src/increase/resources/inbound_ach_transfers.py +++ b/src/increase/resources/inbound_ach_transfers.py @@ -36,7 +36,7 @@ class InboundACHTransfersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> InboundACHTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -393,7 +393,7 @@ class AsyncInboundACHTransfersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncInboundACHTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/inbound_check_deposits.py b/src/increase/resources/inbound_check_deposits.py index 364d705d..eff6a3cd 100644 --- a/src/increase/resources/inbound_check_deposits.py +++ b/src/increase/resources/inbound_check_deposits.py @@ -31,7 +31,7 @@ class InboundCheckDepositsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> InboundCheckDepositsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -254,7 +254,7 @@ class AsyncInboundCheckDepositsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncInboundCheckDepositsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/inbound_mail_items.py b/src/increase/resources/inbound_mail_items.py index 95ee1ea6..041ef09f 100644 --- a/src/increase/resources/inbound_mail_items.py +++ b/src/increase/resources/inbound_mail_items.py @@ -26,7 +26,7 @@ class InboundMailItemsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> InboundMailItemsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -138,7 +138,7 @@ class AsyncInboundMailItemsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncInboundMailItemsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/inbound_real_time_payments_transfers.py b/src/increase/resources/inbound_real_time_payments_transfers.py index 19a15d55..599bbd63 100755 --- a/src/increase/resources/inbound_real_time_payments_transfers.py +++ b/src/increase/resources/inbound_real_time_payments_transfers.py @@ -26,7 +26,7 @@ class InboundRealTimePaymentsTransfersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> InboundRealTimePaymentsTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -144,7 +144,7 @@ class AsyncInboundRealTimePaymentsTransfersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncInboundRealTimePaymentsTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/inbound_wire_drawdown_requests.py b/src/increase/resources/inbound_wire_drawdown_requests.py index 01b8e672..d510d8da 100644 --- a/src/increase/resources/inbound_wire_drawdown_requests.py +++ b/src/increase/resources/inbound_wire_drawdown_requests.py @@ -26,7 +26,7 @@ class InboundWireDrawdownRequestsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> InboundWireDrawdownRequestsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -132,7 +132,7 @@ class AsyncInboundWireDrawdownRequestsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncInboundWireDrawdownRequestsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/inbound_wire_transfers.py b/src/increase/resources/inbound_wire_transfers.py index 7e1d920f..f0b7f519 100644 --- a/src/increase/resources/inbound_wire_transfers.py +++ b/src/increase/resources/inbound_wire_transfers.py @@ -28,7 +28,7 @@ class InboundWireTransfersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> InboundWireTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -154,7 +154,7 @@ class AsyncInboundWireTransfersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncInboundWireTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/intrafi_account_enrollments.py b/src/increase/resources/intrafi_account_enrollments.py index b07a8e2a..77bdf1e6 100644 --- a/src/increase/resources/intrafi_account_enrollments.py +++ b/src/increase/resources/intrafi_account_enrollments.py @@ -29,7 +29,7 @@ class IntrafiAccountEnrollmentsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> IntrafiAccountEnrollmentsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -242,7 +242,7 @@ class AsyncIntrafiAccountEnrollmentsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncIntrafiAccountEnrollmentsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/intrafi_balances.py b/src/increase/resources/intrafi_balances.py index abf5d5df..cc9c517d 100644 --- a/src/increase/resources/intrafi_balances.py +++ b/src/increase/resources/intrafi_balances.py @@ -23,7 +23,7 @@ class IntrafiBalancesResource(SyncAPIResource): @cached_property def with_raw_response(self) -> IntrafiBalancesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -79,7 +79,7 @@ class AsyncIntrafiBalancesResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncIntrafiBalancesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/intrafi_exclusions.py b/src/increase/resources/intrafi_exclusions.py index 5adc284f..092b3f9d 100644 --- a/src/increase/resources/intrafi_exclusions.py +++ b/src/increase/resources/intrafi_exclusions.py @@ -29,7 +29,7 @@ class IntrafiExclusionsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> IntrafiExclusionsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -242,7 +242,7 @@ class AsyncIntrafiExclusionsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncIntrafiExclusionsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/lockboxes.py b/src/increase/resources/lockboxes.py index 6ade3c08..5fa0167a 100644 --- a/src/increase/resources/lockboxes.py +++ b/src/increase/resources/lockboxes.py @@ -31,7 +31,7 @@ class LockboxesResource(SyncAPIResource): @cached_property def with_raw_response(self) -> LockboxesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -266,7 +266,7 @@ class AsyncLockboxesResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncLockboxesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/oauth_applications.py b/src/increase/resources/oauth_applications.py index f12c01d6..264bffaa 100644 --- a/src/increase/resources/oauth_applications.py +++ b/src/increase/resources/oauth_applications.py @@ -26,7 +26,7 @@ class OAuthApplicationsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> OAuthApplicationsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -136,7 +136,7 @@ class AsyncOAuthApplicationsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncOAuthApplicationsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/oauth_connections.py b/src/increase/resources/oauth_connections.py index 70c780fb..cd789dd9 100644 --- a/src/increase/resources/oauth_connections.py +++ b/src/increase/resources/oauth_connections.py @@ -26,7 +26,7 @@ class OAuthConnectionsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> OAuthConnectionsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -139,7 +139,7 @@ class AsyncOAuthConnectionsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncOAuthConnectionsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/oauth_tokens.py b/src/increase/resources/oauth_tokens.py index 02522c85..cc257c9f 100644 --- a/src/increase/resources/oauth_tokens.py +++ b/src/increase/resources/oauth_tokens.py @@ -30,7 +30,7 @@ class OAuthTokensResource(SyncAPIResource): @cached_property def with_raw_response(self) -> OAuthTokensResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -122,7 +122,7 @@ class AsyncOAuthTokensResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncOAuthTokensResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/pending_transactions.py b/src/increase/resources/pending_transactions.py index 8d9e1bf4..e15e4a66 100644 --- a/src/increase/resources/pending_transactions.py +++ b/src/increase/resources/pending_transactions.py @@ -26,7 +26,7 @@ class PendingTransactionsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> PendingTransactionsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -146,7 +146,7 @@ class AsyncPendingTransactionsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncPendingTransactionsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/physical_card_profiles.py b/src/increase/resources/physical_card_profiles.py index 8cf6d5bc..73102dfa 100644 --- a/src/increase/resources/physical_card_profiles.py +++ b/src/increase/resources/physical_card_profiles.py @@ -33,7 +33,7 @@ class PhysicalCardProfilesResource(SyncAPIResource): @cached_property def with_raw_response(self) -> PhysicalCardProfilesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -320,7 +320,7 @@ class AsyncPhysicalCardProfilesResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncPhysicalCardProfilesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/physical_cards.py b/src/increase/resources/physical_cards.py index 48b6cb36..1084a1e0 100644 --- a/src/increase/resources/physical_cards.py +++ b/src/increase/resources/physical_cards.py @@ -31,7 +31,7 @@ class PhysicalCardsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> PhysicalCardsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -257,7 +257,7 @@ class AsyncPhysicalCardsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncPhysicalCardsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/programs.py b/src/increase/resources/programs.py index 34df3450..96ce2e3b 100644 --- a/src/increase/resources/programs.py +++ b/src/increase/resources/programs.py @@ -26,7 +26,7 @@ class ProgramsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> ProgramsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -130,7 +130,7 @@ class AsyncProgramsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncProgramsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/proof_of_authorization_request_submissions.py b/src/increase/resources/proof_of_authorization_request_submissions.py index 91cc71c3..a8a8747e 100644 --- a/src/increase/resources/proof_of_authorization_request_submissions.py +++ b/src/increase/resources/proof_of_authorization_request_submissions.py @@ -35,7 +35,7 @@ class ProofOfAuthorizationRequestSubmissionsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> ProofOfAuthorizationRequestSubmissionsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -238,7 +238,7 @@ class AsyncProofOfAuthorizationRequestSubmissionsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncProofOfAuthorizationRequestSubmissionsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/proof_of_authorization_requests.py b/src/increase/resources/proof_of_authorization_requests.py index a5ea06c5..8255e6f9 100644 --- a/src/increase/resources/proof_of_authorization_requests.py +++ b/src/increase/resources/proof_of_authorization_requests.py @@ -26,7 +26,7 @@ class ProofOfAuthorizationRequestsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> ProofOfAuthorizationRequestsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -134,7 +134,7 @@ class AsyncProofOfAuthorizationRequestsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncProofOfAuthorizationRequestsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/real_time_decisions.py b/src/increase/resources/real_time_decisions.py index 69dd7d9b..f2a919cc 100644 --- a/src/increase/resources/real_time_decisions.py +++ b/src/increase/resources/real_time_decisions.py @@ -28,7 +28,7 @@ class RealTimeDecisionsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> RealTimeDecisionsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -162,7 +162,7 @@ class AsyncRealTimeDecisionsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncRealTimeDecisionsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/real_time_payments_request_for_payments.py b/src/increase/resources/real_time_payments_request_for_payments.py index f15d1233..15bcc183 100644 --- a/src/increase/resources/real_time_payments_request_for_payments.py +++ b/src/increase/resources/real_time_payments_request_for_payments.py @@ -35,7 +35,7 @@ class RealTimePaymentsRequestForPaymentsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> RealTimePaymentsRequestForPaymentsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -227,7 +227,7 @@ class AsyncRealTimePaymentsRequestForPaymentsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncRealTimePaymentsRequestForPaymentsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/real_time_payments_transfers.py b/src/increase/resources/real_time_payments_transfers.py index 54fc6202..0a2b701c 100644 --- a/src/increase/resources/real_time_payments_transfers.py +++ b/src/increase/resources/real_time_payments_transfers.py @@ -29,7 +29,7 @@ class RealTimePaymentsTransfersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> RealTimePaymentsTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -246,7 +246,7 @@ class AsyncRealTimePaymentsTransfersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncRealTimePaymentsTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/routing_numbers.py b/src/increase/resources/routing_numbers.py index 90dc005e..a9689c3e 100644 --- a/src/increase/resources/routing_numbers.py +++ b/src/increase/resources/routing_numbers.py @@ -26,7 +26,7 @@ class RoutingNumbersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> RoutingNumbersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -102,7 +102,7 @@ class AsyncRoutingNumbersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncRoutingNumbersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/account_statements.py b/src/increase/resources/simulations/account_statements.py index d4eeefd0..14164674 100644 --- a/src/increase/resources/simulations/account_statements.py +++ b/src/increase/resources/simulations/account_statements.py @@ -28,7 +28,7 @@ class AccountStatementsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> AccountStatementsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -93,7 +93,7 @@ class AsyncAccountStatementsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncAccountStatementsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/account_transfers.py b/src/increase/resources/simulations/account_transfers.py index e7794449..82bbcf02 100644 --- a/src/increase/resources/simulations/account_transfers.py +++ b/src/increase/resources/simulations/account_transfers.py @@ -23,7 +23,7 @@ class AccountTransfersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> AccountTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -91,7 +91,7 @@ class AsyncAccountTransfersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncAccountTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/ach_transfers.py b/src/increase/resources/simulations/ach_transfers.py index 0c7ce1bb..e1443a6e 100644 --- a/src/increase/resources/simulations/ach_transfers.py +++ b/src/increase/resources/simulations/ach_transfers.py @@ -30,7 +30,7 @@ class ACHTransfersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> ACHTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -571,7 +571,7 @@ class AsyncACHTransfersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncACHTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/card_authorization_expirations.py b/src/increase/resources/simulations/card_authorization_expirations.py index 9965d113..08ae22ba 100644 --- a/src/increase/resources/simulations/card_authorization_expirations.py +++ b/src/increase/resources/simulations/card_authorization_expirations.py @@ -28,7 +28,7 @@ class CardAuthorizationExpirationsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> CardAuthorizationExpirationsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -93,7 +93,7 @@ class AsyncCardAuthorizationExpirationsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncCardAuthorizationExpirationsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/card_authorizations.py b/src/increase/resources/simulations/card_authorizations.py index 6c647fb0..a1f07895 100644 --- a/src/increase/resources/simulations/card_authorizations.py +++ b/src/increase/resources/simulations/card_authorizations.py @@ -30,7 +30,7 @@ class CardAuthorizationsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> CardAuthorizationsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -214,7 +214,7 @@ class AsyncCardAuthorizationsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncCardAuthorizationsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/card_disputes.py b/src/increase/resources/simulations/card_disputes.py index 2adbb400..67c5d923 100644 --- a/src/increase/resources/simulations/card_disputes.py +++ b/src/increase/resources/simulations/card_disputes.py @@ -30,7 +30,7 @@ class CardDisputesResource(SyncAPIResource): @cached_property def with_raw_response(self) -> CardDisputesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -119,7 +119,7 @@ class AsyncCardDisputesResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncCardDisputesResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/card_fuel_confirmations.py b/src/increase/resources/simulations/card_fuel_confirmations.py index de345f21..7400048d 100644 --- a/src/increase/resources/simulations/card_fuel_confirmations.py +++ b/src/increase/resources/simulations/card_fuel_confirmations.py @@ -28,7 +28,7 @@ class CardFuelConfirmationsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> CardFuelConfirmationsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -103,7 +103,7 @@ class AsyncCardFuelConfirmationsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncCardFuelConfirmationsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/card_increments.py b/src/increase/resources/simulations/card_increments.py index 3fcb7c4d..9e8d77e1 100644 --- a/src/increase/resources/simulations/card_increments.py +++ b/src/increase/resources/simulations/card_increments.py @@ -28,7 +28,7 @@ class CardIncrementsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> CardIncrementsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -108,7 +108,7 @@ class AsyncCardIncrementsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncCardIncrementsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/card_refunds.py b/src/increase/resources/simulations/card_refunds.py index 774c8efa..b2fb2379 100644 --- a/src/increase/resources/simulations/card_refunds.py +++ b/src/increase/resources/simulations/card_refunds.py @@ -28,7 +28,7 @@ class CardRefundsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> CardRefundsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -93,7 +93,7 @@ class AsyncCardRefundsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncCardRefundsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/card_reversals.py b/src/increase/resources/simulations/card_reversals.py index 2e05d8cd..d1b070b9 100644 --- a/src/increase/resources/simulations/card_reversals.py +++ b/src/increase/resources/simulations/card_reversals.py @@ -28,7 +28,7 @@ class CardReversalsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> CardReversalsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -104,7 +104,7 @@ class AsyncCardReversalsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncCardReversalsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/card_settlements.py b/src/increase/resources/simulations/card_settlements.py index d1717800..c3919d12 100644 --- a/src/increase/resources/simulations/card_settlements.py +++ b/src/increase/resources/simulations/card_settlements.py @@ -28,7 +28,7 @@ class CardSettlementsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> CardSettlementsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -110,7 +110,7 @@ class AsyncCardSettlementsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncCardSettlementsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/check_deposits.py b/src/increase/resources/simulations/check_deposits.py index 5b35fb58..8b03a9fd 100644 --- a/src/increase/resources/simulations/check_deposits.py +++ b/src/increase/resources/simulations/check_deposits.py @@ -23,7 +23,7 @@ class CheckDepositsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> CheckDepositsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -175,7 +175,7 @@ class AsyncCheckDepositsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncCheckDepositsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/check_transfers.py b/src/increase/resources/simulations/check_transfers.py index af2d8abd..8d947b84 100644 --- a/src/increase/resources/simulations/check_transfers.py +++ b/src/increase/resources/simulations/check_transfers.py @@ -23,7 +23,7 @@ class CheckTransfersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> CheckTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -89,7 +89,7 @@ class AsyncCheckTransfersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncCheckTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/digital_wallet_token_requests.py b/src/increase/resources/simulations/digital_wallet_token_requests.py index 784af050..a72cf408 100644 --- a/src/increase/resources/simulations/digital_wallet_token_requests.py +++ b/src/increase/resources/simulations/digital_wallet_token_requests.py @@ -28,7 +28,7 @@ class DigitalWalletTokenRequestsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> DigitalWalletTokenRequestsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -93,7 +93,7 @@ class AsyncDigitalWalletTokenRequestsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncDigitalWalletTokenRequestsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/documents.py b/src/increase/resources/simulations/documents.py index 92892167..63c6f9f2 100644 --- a/src/increase/resources/simulations/documents.py +++ b/src/increase/resources/simulations/documents.py @@ -28,7 +28,7 @@ class DocumentsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> DocumentsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -90,7 +90,7 @@ class AsyncDocumentsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncDocumentsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/inbound_ach_transfers.py b/src/increase/resources/simulations/inbound_ach_transfers.py index 73d5a6cc..f8be7d2c 100644 --- a/src/increase/resources/simulations/inbound_ach_transfers.py +++ b/src/increase/resources/simulations/inbound_ach_transfers.py @@ -32,7 +32,7 @@ class InboundACHTransfersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> InboundACHTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -187,7 +187,7 @@ class AsyncInboundACHTransfersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncInboundACHTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/inbound_check_deposits.py b/src/increase/resources/simulations/inbound_check_deposits.py index 0a6a09f6..4c124dad 100644 --- a/src/increase/resources/simulations/inbound_check_deposits.py +++ b/src/increase/resources/simulations/inbound_check_deposits.py @@ -28,7 +28,7 @@ class InboundCheckDepositsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> InboundCheckDepositsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -109,7 +109,7 @@ class AsyncInboundCheckDepositsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncInboundCheckDepositsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/inbound_funds_holds.py b/src/increase/resources/simulations/inbound_funds_holds.py index 08e2dff4..7a1a9be3 100644 --- a/src/increase/resources/simulations/inbound_funds_holds.py +++ b/src/increase/resources/simulations/inbound_funds_holds.py @@ -23,7 +23,7 @@ class InboundFundsHoldsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> InboundFundsHoldsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -89,7 +89,7 @@ class AsyncInboundFundsHoldsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncInboundFundsHoldsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/inbound_mail_items.py b/src/increase/resources/simulations/inbound_mail_items.py index 8e628985..b74b359d 100755 --- a/src/increase/resources/simulations/inbound_mail_items.py +++ b/src/increase/resources/simulations/inbound_mail_items.py @@ -28,7 +28,7 @@ class InboundMailItemsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> InboundMailItemsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -105,7 +105,7 @@ class AsyncInboundMailItemsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncInboundMailItemsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/inbound_real_time_payments_transfers.py b/src/increase/resources/simulations/inbound_real_time_payments_transfers.py index fd4ddf63..f3adb448 100644 --- a/src/increase/resources/simulations/inbound_real_time_payments_transfers.py +++ b/src/increase/resources/simulations/inbound_real_time_payments_transfers.py @@ -28,7 +28,7 @@ class InboundRealTimePaymentsTransfersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> InboundRealTimePaymentsTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -122,7 +122,7 @@ class AsyncInboundRealTimePaymentsTransfersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncInboundRealTimePaymentsTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/inbound_wire_drawdown_requests.py b/src/increase/resources/simulations/inbound_wire_drawdown_requests.py index e5c47f29..f6e89b68 100644 --- a/src/increase/resources/simulations/inbound_wire_drawdown_requests.py +++ b/src/increase/resources/simulations/inbound_wire_drawdown_requests.py @@ -28,7 +28,7 @@ class InboundWireDrawdownRequestsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> InboundWireDrawdownRequestsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -178,7 +178,7 @@ class AsyncInboundWireDrawdownRequestsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncInboundWireDrawdownRequestsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/inbound_wire_transfers.py b/src/increase/resources/simulations/inbound_wire_transfers.py index 522e7927..e4f3b466 100644 --- a/src/increase/resources/simulations/inbound_wire_transfers.py +++ b/src/increase/resources/simulations/inbound_wire_transfers.py @@ -28,7 +28,7 @@ class InboundWireTransfersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> InboundWireTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -174,7 +174,7 @@ class AsyncInboundWireTransfersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncInboundWireTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/interest_payments.py b/src/increase/resources/simulations/interest_payments.py index e4f4d795..fde1548d 100644 --- a/src/increase/resources/simulations/interest_payments.py +++ b/src/increase/resources/simulations/interest_payments.py @@ -31,7 +31,7 @@ class InterestPaymentsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> InterestPaymentsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -112,7 +112,7 @@ class AsyncInterestPaymentsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncInterestPaymentsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/physical_cards.py b/src/increase/resources/simulations/physical_cards.py index 8fea4042..baf6d1c3 100644 --- a/src/increase/resources/simulations/physical_cards.py +++ b/src/increase/resources/simulations/physical_cards.py @@ -30,7 +30,7 @@ class PhysicalCardsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> PhysicalCardsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -114,7 +114,7 @@ class AsyncPhysicalCardsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncPhysicalCardsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/programs.py b/src/increase/resources/simulations/programs.py index 924f76cd..4358abc1 100644 --- a/src/increase/resources/simulations/programs.py +++ b/src/increase/resources/simulations/programs.py @@ -28,7 +28,7 @@ class ProgramsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> ProgramsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -94,7 +94,7 @@ class AsyncProgramsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncProgramsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/real_time_payments_transfers.py b/src/increase/resources/simulations/real_time_payments_transfers.py index 29cba52b..3f812f40 100644 --- a/src/increase/resources/simulations/real_time_payments_transfers.py +++ b/src/increase/resources/simulations/real_time_payments_transfers.py @@ -28,7 +28,7 @@ class RealTimePaymentsTransfersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> RealTimePaymentsTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -103,7 +103,7 @@ class AsyncRealTimePaymentsTransfersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncRealTimePaymentsTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/simulations.py b/src/increase/resources/simulations/simulations.py index 7896297e..878a9c5e 100644 --- a/src/increase/resources/simulations/simulations.py +++ b/src/increase/resources/simulations/simulations.py @@ -336,7 +336,7 @@ def documents(self) -> DocumentsResource: @cached_property def with_raw_response(self) -> SimulationsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -465,7 +465,7 @@ def documents(self) -> AsyncDocumentsResource: @cached_property def with_raw_response(self) -> AsyncSimulationsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/simulations/wire_transfers.py b/src/increase/resources/simulations/wire_transfers.py index 4a3fa356..3bada269 100644 --- a/src/increase/resources/simulations/wire_transfers.py +++ b/src/increase/resources/simulations/wire_transfers.py @@ -23,7 +23,7 @@ class WireTransfersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> WireTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -133,7 +133,7 @@ class AsyncWireTransfersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncWireTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/supplemental_documents.py b/src/increase/resources/supplemental_documents.py index 514ac236..b0f7ddc3 100644 --- a/src/increase/resources/supplemental_documents.py +++ b/src/increase/resources/supplemental_documents.py @@ -29,7 +29,7 @@ class SupplementalDocumentsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> SupplementalDocumentsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -159,7 +159,7 @@ class AsyncSupplementalDocumentsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncSupplementalDocumentsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/transactions.py b/src/increase/resources/transactions.py index 39c32b1f..d9d6a50d 100644 --- a/src/increase/resources/transactions.py +++ b/src/increase/resources/transactions.py @@ -26,7 +26,7 @@ class TransactionsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> TransactionsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -143,7 +143,7 @@ class AsyncTransactionsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncTransactionsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/wire_drawdown_requests.py b/src/increase/resources/wire_drawdown_requests.py index cc951fa4..9a958b3f 100644 --- a/src/increase/resources/wire_drawdown_requests.py +++ b/src/increase/resources/wire_drawdown_requests.py @@ -31,7 +31,7 @@ class WireDrawdownRequestsResource(SyncAPIResource): @cached_property def with_raw_response(self) -> WireDrawdownRequestsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -257,7 +257,7 @@ class AsyncWireDrawdownRequestsResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncWireDrawdownRequestsResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/src/increase/resources/wire_transfers.py b/src/increase/resources/wire_transfers.py index 34a675b1..84be7433 100644 --- a/src/increase/resources/wire_transfers.py +++ b/src/increase/resources/wire_transfers.py @@ -29,7 +29,7 @@ class WireTransfersResource(SyncAPIResource): @cached_property def with_raw_response(self) -> WireTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers @@ -346,7 +346,7 @@ class AsyncWireTransfersResource(AsyncAPIResource): @cached_property def with_raw_response(self) -> AsyncWireTransfersResourceWithRawResponse: """ - This property can be used as a prefix for any HTTP method call to return the + This property can be used as a prefix for any HTTP method call to return the raw response object instead of the parsed content. For more information, see https://www.github.com/Increase/increase-python#accessing-raw-response-data-eg-headers diff --git a/tests/test_client.py b/tests/test_client.py index 690c87fb..d4228a6a 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -6,6 +6,7 @@ import os import sys import json +import time import asyncio import inspect import subprocess @@ -1739,10 +1740,20 @@ async def test_main() -> None: [sys.executable, "-c", test_code], text=True, ) as process: - try: - process.wait(2) - if process.returncode: - raise AssertionError("calling get_platform using asyncify resulted in a non-zero exit code") - except subprocess.TimeoutExpired as e: - process.kill() - raise AssertionError("calling get_platform using asyncify resulted in a hung process") from e + timeout = 10 # seconds + + start_time = time.monotonic() + while True: + return_code = process.poll() + if return_code is not None: + if return_code != 0: + raise AssertionError("calling get_platform using asyncify resulted in a non-zero exit code") + + # success + break + + if time.monotonic() - start_time > timeout: + process.kill() + raise AssertionError("calling get_platform using asyncify resulted in a hung process") + + time.sleep(0.1)