diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml new file mode 100644 index 0000000..141ddef --- /dev/null +++ b/.github/workflows/publish-pypi.yml @@ -0,0 +1,28 @@ +# This workflow is triggered when a GitHub release is created. +# It can also be run manually to re-publish to PyPI in case it failed for some reason. +# You can run this workflow by navigating to https://www.github.com/onlyfansapi/onlyfansapi-python/actions/workflows/publish-pypi.yml +name: Publish PyPI +on: + workflow_dispatch: + + release: + types: [published] + +jobs: + publish: + name: publish + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + + - name: Install uv + uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5.4.2 + with: + version: '0.9.13' + + - name: Publish to PyPI + run: | + bash ./bin/publish-pypi + env: + PYPI_TOKEN: ${{ secrets.ONLY_FANS_API_PYPI_TOKEN || secrets.PYPI_TOKEN }} diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml new file mode 100644 index 0000000..6cfe8e3 --- /dev/null +++ b/.github/workflows/release-doctor.yml @@ -0,0 +1,21 @@ +name: Release Doctor +on: + pull_request: + branches: + - main + workflow_dispatch: + +jobs: + release_doctor: + name: release doctor + runs-on: ubuntu-latest + if: github.repository == 'onlyfansapi/onlyfansapi-python' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next') + + steps: + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + + - name: Check release environment + run: | + bash ./bin/check-release-environment + env: + PYPI_TOKEN: ${{ secrets.ONLY_FANS_API_PYPI_TOKEN || secrets.PYPI_TOKEN }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000..3d2ac0b --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "0.1.0" +} \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index c35d451..ad09e23 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 266 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/onlyfansapi/onlyfansapi-98f99bf644a3e5855dea42d567d86cc2d9150c1b96ee37dae3641b3af774a33e.yml -openapi_spec_hash: df45bde0a256fd87ddf78b3775a0e050 -config_hash: b35617df571c3e46d2e845c5e293f1c5 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/onlyfansapi/onlyfansapi-db07c6b53db2576d9205de576b179c9aaf9929c8342d14ebd5aebd7fe9079caf.yml +openapi_spec_hash: 6c2d47cd85674ece07dc37e471a36ac9 +config_hash: daf28359a88850c2eaa3b208a6161584 diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..52a6e85 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,24 @@ +# Changelog + +## 0.1.0 (2026-05-25) + +Full Changelog: [v0.0.1...v0.1.0](https://github.com/onlyfansapi/onlyfansapi-python/compare/v0.0.1...v0.1.0) + +### Features + +* **api:** api update ([50a05bc](https://github.com/onlyfansapi/onlyfansapi-python/commit/50a05bcd1240c6e820bcb0a767a59627b248688c)) +* **api:** api update ([9b54e04](https://github.com/onlyfansapi/onlyfansapi-python/commit/9b54e044fa55cca5b44f1b96e8a7ee5e4db9b9c6)) +* **api:** api update ([a20ca16](https://github.com/onlyfansapi/onlyfansapi-python/commit/a20ca163d3626a0f7178cfa02cfaaae8f95cb5be)) +* **api:** api update ([fa6bdab](https://github.com/onlyfansapi/onlyfansapi-python/commit/fa6bdab2010fa0ea76700ce6193f94e0d4031dfb)) +* **api:** api update ([021fb01](https://github.com/onlyfansapi/onlyfansapi-python/commit/021fb012bce3d73c215d1d649cd8da19ba2995a8)) +* **api:** api update ([8b2d179](https://github.com/onlyfansapi/onlyfansapi-python/commit/8b2d1792bf92ae8bf29e1702fa6cec6f6a5c13df)) +* **api:** manual updates ([9888463](https://github.com/onlyfansapi/onlyfansapi-python/commit/9888463ada2f150f454f4bfcf3b54ffcf11d9c66)) +* **api:** manual updates ([e89ce9e](https://github.com/onlyfansapi/onlyfansapi-python/commit/e89ce9e100c86ed428393e95944ca1f1d509987d)) + + +### Chores + +* configure new SDK language ([00a0e40](https://github.com/onlyfansapi/onlyfansapi-python/commit/00a0e40489a729497ed9e4e62848c6170f924c12)) +* update SDK settings ([f4ac898](https://github.com/onlyfansapi/onlyfansapi-python/commit/f4ac8986c8157deafb12e73f916ad025b55056d2)) +* update SDK settings ([cb81ed3](https://github.com/onlyfansapi/onlyfansapi-python/commit/cb81ed341dcb3bdf019b471c4253a13fbf9a9bd5)) +* update SDK settings ([d2fc95e](https://github.com/onlyfansapi/onlyfansapi-python/commit/d2fc95e2887b0d1224f80cd918054ac2c3fb7288)) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4a47d4a..a6b9f0e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -62,7 +62,7 @@ If you’d like to use the repository from source, you can either install from g To install via git: ```sh -$ pip install git+ssh://git@github.com/stainless-sdks/onlyfansapi-python.git +$ pip install git+ssh://git@github.com/onlyfansapi/onlyfansapi-python.git ``` Alternatively, you can build from source and install the wheel file: @@ -113,7 +113,7 @@ the changes aren't made through the automated pipeline, you may want to make rel ### Publish with a GitHub workflow -You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/stainless-sdks/onlyfansapi-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up. +You can release to package managers by using [the `Publish PyPI` GitHub action](https://www.github.com/onlyfansapi/onlyfansapi-python/actions/workflows/publish-pypi.yml). This requires a setup organization or repository secret to be set up. ### Publish manually diff --git a/README.md b/README.md index 60805e8..b8e59d5 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Only Fans API Python API library -[![PyPI version](https://img.shields.io/pypi/v/onlyfansapi.svg?label=pypi%20(stable))](https://pypi.org/project/onlyfansapi/) +[![PyPI version](https://img.shields.io/pypi/v/onlyfans.svg?label=pypi%20(stable))](https://pypi.org/project/onlyfans/) The Only Fans API Python library provides convenient access to the Only Fans API REST API from any Python 3.9+ application. The library includes type definitions for all request params and response fields, @@ -16,13 +16,10 @@ The REST API documentation can be found on [docs.onlyfansapi.com](https://docs.o ## Installation ```sh -# install from this staging repo -pip install git+ssh://git@github.com/stainless-sdks/onlyfansapi-python.git +# install from PyPI +pip install onlyfans ``` -> [!NOTE] -> Once this package is [published to PyPI](https://www.stainless.com/docs/guides/publish), this will become: `pip install onlyfansapi` - ## Usage The full API of this library can be found in [api.md](api.md). @@ -75,8 +72,8 @@ By default, the async client uses `httpx` for HTTP requests. However, for improv You can enable this by installing `aiohttp`: ```sh -# install from this staging repo -pip install 'onlyfansapi[aiohttp] @ git+ssh://git@github.com/stainless-sdks/onlyfansapi-python.git' +# install from PyPI +pip install onlyfans[aiohttp] ``` Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`: @@ -280,9 +277,9 @@ whoami = response.parse() # get the object that `whoami.retrieve()` would have print(whoami.api_key) ``` -These methods return an [`APIResponse`](https://github.com/stainless-sdks/onlyfansapi-python/tree/main/src/onlyfansapi/_response.py) object. +These methods return an [`APIResponse`](https://github.com/onlyfansapi/onlyfansapi-python/tree/main/src/onlyfansapi/_response.py) object. -The async client returns an [`AsyncAPIResponse`](https://github.com/stainless-sdks/onlyfansapi-python/tree/main/src/onlyfansapi/_response.py) with the same structure, the only difference being `await`able methods for reading the response content. +The async client returns an [`AsyncAPIResponse`](https://github.com/onlyfansapi/onlyfansapi-python/tree/main/src/onlyfansapi/_response.py) with the same structure, the only difference being `await`able methods for reading the response content. #### `.with_streaming_response` @@ -386,7 +383,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience. -We are keen for your feedback; please open an [issue](https://www.github.com/stainless-sdks/onlyfansapi-python/issues) with questions, bugs, or suggestions. +We are keen for your feedback; please open an [issue](https://www.github.com/onlyfansapi/onlyfansapi-python/issues) with questions, bugs, or suggestions. ### Determining the installed version diff --git a/bin/check-release-environment b/bin/check-release-environment new file mode 100644 index 0000000..b845b0f --- /dev/null +++ b/bin/check-release-environment @@ -0,0 +1,21 @@ +#!/usr/bin/env bash + +errors=() + +if [ -z "${PYPI_TOKEN}" ]; then + errors+=("The PYPI_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets.") +fi + +lenErrors=${#errors[@]} + +if [[ lenErrors -gt 0 ]]; then + echo -e "Found the following errors in the release environment:\n" + + for error in "${errors[@]}"; do + echo -e "- $error\n" + done + + exit 1 +fi + +echo "The environment is ready to push releases!" diff --git a/pyproject.toml b/pyproject.toml index 902c2fa..5831204 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] -name = "onlyfansapi" -version = "0.0.1" +name = "onlyfans" +version = "0.1.0" description = "The official Python library for the OnlyFansAPI API" dynamic = ["readme"] license = "Apache-2.0" @@ -37,8 +37,8 @@ classifiers = [ ] [project.urls] -Homepage = "https://github.com/stainless-sdks/onlyfansapi-python" -Repository = "https://github.com/stainless-sdks/onlyfansapi-python" +Homepage = "https://github.com/onlyfansapi/onlyfansapi-python" +Repository = "https://github.com/onlyfansapi/onlyfansapi-python" [project.optional-dependencies] aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.9"] @@ -112,7 +112,7 @@ path = "README.md" [[tool.hatch.metadata.hooks.fancy-pypi-readme.substitutions]] # replace relative links with absolute links pattern = '\[(.+?)\]\(((?!https?://)\S+?)\)' -replacement = '[\1](https://github.com/stainless-sdks/onlyfansapi-python/tree/main/\g<2>)' +replacement = '[\1](https://github.com/onlyfansapi/onlyfansapi-python/tree/main/\g<2>)' [tool.pytest.ini_options] testpaths = ["tests"] diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 0000000..996f382 --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,66 @@ +{ + "packages": { + ".": {} + }, + "$schema": "https://raw.githubusercontent.com/stainless-api/release-please/main/schemas/config.json", + "include-v-in-tag": true, + "include-component-in-tag": false, + "versioning": "prerelease", + "prerelease": true, + "bump-minor-pre-major": true, + "bump-patch-for-minor-pre-major": false, + "pull-request-header": "Automated Release PR", + "pull-request-title-pattern": "release: ${version}", + "changelog-sections": [ + { + "type": "feat", + "section": "Features" + }, + { + "type": "fix", + "section": "Bug Fixes" + }, + { + "type": "perf", + "section": "Performance Improvements" + }, + { + "type": "revert", + "section": "Reverts" + }, + { + "type": "chore", + "section": "Chores" + }, + { + "type": "docs", + "section": "Documentation" + }, + { + "type": "style", + "section": "Styles" + }, + { + "type": "refactor", + "section": "Refactors" + }, + { + "type": "test", + "section": "Tests", + "hidden": true + }, + { + "type": "build", + "section": "Build System" + }, + { + "type": "ci", + "section": "Continuous Integration", + "hidden": true + } + ], + "release-type": "python", + "extra-files": [ + "src/onlyfansapi/_version.py" + ] +} \ No newline at end of file diff --git a/requirements-dev.lock b/requirements-dev.lock index e38594f..5712294 100644 --- a/requirements-dev.lock +++ b/requirements-dev.lock @@ -6,7 +6,7 @@ annotated-types==0.7.0 anyio==4.12.1 # via # httpx - # onlyfansapi + # onlyfans backports-asyncio-runner==1.2.0 ; python_full_version < '3.11' # via pytest-asyncio certifi==2026.1.4 @@ -17,7 +17,7 @@ colorama==0.4.6 ; sys_platform == 'win32' # via pytest dirty-equals==0.11 distro==1.9.0 - # via onlyfansapi + # via onlyfans exceptiongroup==1.3.1 ; python_full_version < '3.11' # via # anyio @@ -30,7 +30,7 @@ httpcore==1.0.9 # via httpx httpx==0.28.1 # via - # onlyfansapi + # onlyfans # respx idna==3.11 # via @@ -59,7 +59,7 @@ pathspec==1.0.3 pluggy==1.6.0 # via pytest pydantic==2.12.5 - # via onlyfansapi + # via onlyfans pydantic-core==2.41.5 # via pydantic pygments==2.19.2 @@ -86,7 +86,7 @@ ruff==0.14.13 six==1.17.0 ; python_full_version < '3.10' # via python-dateutil sniffio==1.3.1 - # via onlyfansapi + # via onlyfans time-machine==2.19.0 ; python_full_version < '3.10' time-machine==3.2.0 ; python_full_version >= '3.10' tomli==2.4.0 ; python_full_version < '3.11' @@ -98,7 +98,7 @@ typing-extensions==4.15.0 # anyio # exceptiongroup # mypy - # onlyfansapi + # onlyfans # pydantic # pydantic-core # pyright diff --git a/src/onlyfansapi/_files.py b/src/onlyfansapi/_files.py index 742c24c..d08ebf5 100644 --- a/src/onlyfansapi/_files.py +++ b/src/onlyfansapi/_files.py @@ -36,7 +36,7 @@ def assert_is_file_content(obj: object, *, key: str | None = None) -> None: if not is_file_content(obj): prefix = f"Expected entry at `{key}`" if key is not None else f"Expected file input `{obj!r}`" raise RuntimeError( - f"{prefix} to be bytes, an io.IOBase instance, PathLike or a tuple but received {type(obj)} instead. See https://github.com/stainless-sdks/onlyfansapi-python/tree/main#file-uploads" + f"{prefix} to be bytes, an io.IOBase instance, PathLike or a tuple but received {type(obj)} instead. See https://github.com/onlyfansapi/onlyfansapi-python/tree/main#file-uploads" ) from None diff --git a/src/onlyfansapi/_version.py b/src/onlyfansapi/_version.py index 80bec36..28b16a5 100644 --- a/src/onlyfansapi/_version.py +++ b/src/onlyfansapi/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "onlyfansapi" -__version__ = "0.0.1" +__version__ = "0.1.0" # x-release-please-version diff --git a/src/onlyfansapi/resources/accounts.py b/src/onlyfansapi/resources/accounts.py index 7f695f1..572120b 100644 --- a/src/onlyfansapi/resources/accounts.py +++ b/src/onlyfansapi/resources/accounts.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> AccountsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AccountsResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> AccountsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AccountsResourceWithStreamingResponse(self) @@ -139,7 +139,7 @@ def with_raw_response(self) -> AsyncAccountsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncAccountsResourceWithRawResponse(self) @@ -148,7 +148,7 @@ def with_streaming_response(self) -> AsyncAccountsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncAccountsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/analytics/analytics.py b/src/onlyfansapi/resources/analytics/analytics.py index e640d90..16330de 100644 --- a/src/onlyfansapi/resources/analytics/analytics.py +++ b/src/onlyfansapi/resources/analytics/analytics.py @@ -41,7 +41,7 @@ def with_raw_response(self) -> AnalyticsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AnalyticsResourceWithRawResponse(self) @@ -50,7 +50,7 @@ def with_streaming_response(self) -> AnalyticsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AnalyticsResourceWithStreamingResponse(self) @@ -72,7 +72,7 @@ def with_raw_response(self) -> AsyncAnalyticsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncAnalyticsResourceWithRawResponse(self) @@ -81,7 +81,7 @@ def with_streaming_response(self) -> AsyncAnalyticsResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncAnalyticsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/analytics/financial/financial.py b/src/onlyfansapi/resources/analytics/financial/financial.py index e71c2cf..79f6dd3 100644 --- a/src/onlyfansapi/resources/analytics/financial/financial.py +++ b/src/onlyfansapi/resources/analytics/financial/financial.py @@ -58,7 +58,7 @@ def with_raw_response(self) -> FinancialResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return FinancialResourceWithRawResponse(self) @@ -67,7 +67,7 @@ def with_streaming_response(self) -> FinancialResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return FinancialResourceWithStreamingResponse(self) @@ -147,7 +147,7 @@ def with_raw_response(self) -> AsyncFinancialResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncFinancialResourceWithRawResponse(self) @@ -156,7 +156,7 @@ def with_streaming_response(self) -> AsyncFinancialResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncFinancialResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/analytics/financial/profitability.py b/src/onlyfansapi/resources/analytics/financial/profitability.py index bf1ef1c..14e60ac 100644 --- a/src/onlyfansapi/resources/analytics/financial/profitability.py +++ b/src/onlyfansapi/resources/analytics/financial/profitability.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> ProfitabilityResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return ProfitabilityResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> ProfitabilityResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return ProfitabilityResourceWithStreamingResponse(self) @@ -152,7 +152,7 @@ def with_raw_response(self) -> AsyncProfitabilityResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncProfitabilityResourceWithRawResponse(self) @@ -161,7 +161,7 @@ def with_streaming_response(self) -> AsyncProfitabilityResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncProfitabilityResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/analytics/financial/transactions.py b/src/onlyfansapi/resources/analytics/financial/transactions.py index e9d0ad7..0ac9e28 100644 --- a/src/onlyfansapi/resources/analytics/financial/transactions.py +++ b/src/onlyfansapi/resources/analytics/financial/transactions.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> TransactionsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return TransactionsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> TransactionsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return TransactionsResourceWithStreamingResponse(self) @@ -150,7 +150,7 @@ def with_raw_response(self) -> AsyncTransactionsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncTransactionsResourceWithRawResponse(self) @@ -159,7 +159,7 @@ def with_streaming_response(self) -> AsyncTransactionsResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncTransactionsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/analytics/summary.py b/src/onlyfansapi/resources/analytics/summary.py index 1b64737..d18a77b 100644 --- a/src/onlyfansapi/resources/analytics/summary.py +++ b/src/onlyfansapi/resources/analytics/summary.py @@ -38,7 +38,7 @@ def with_raw_response(self) -> SummaryResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return SummaryResourceWithRawResponse(self) @@ -47,7 +47,7 @@ def with_streaming_response(self) -> SummaryResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return SummaryResourceWithStreamingResponse(self) @@ -206,7 +206,7 @@ def with_raw_response(self) -> AsyncSummaryResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncSummaryResourceWithRawResponse(self) @@ -215,7 +215,7 @@ def with_streaming_response(self) -> AsyncSummaryResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncSummaryResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/authenticate.py b/src/onlyfansapi/resources/authenticate.py index 2caddf4..aae1920 100644 --- a/src/onlyfansapi/resources/authenticate.py +++ b/src/onlyfansapi/resources/authenticate.py @@ -35,7 +35,7 @@ def with_raw_response(self) -> AuthenticateResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AuthenticateResourceWithRawResponse(self) @@ -44,7 +44,7 @@ def with_streaming_response(self) -> AuthenticateResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AuthenticateResourceWithStreamingResponse(self) @@ -310,7 +310,7 @@ def with_raw_response(self) -> AsyncAuthenticateResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncAuthenticateResourceWithRawResponse(self) @@ -319,7 +319,7 @@ def with_streaming_response(self) -> AsyncAuthenticateResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncAuthenticateResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/banking/banking.py b/src/onlyfansapi/resources/banking/banking.py index e0a8e11..3e591f6 100644 --- a/src/onlyfansapi/resources/banking/banking.py +++ b/src/onlyfansapi/resources/banking/banking.py @@ -47,7 +47,7 @@ def with_raw_response(self) -> BankingResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return BankingResourceWithRawResponse(self) @@ -56,7 +56,7 @@ def with_streaming_response(self) -> BankingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return BankingResourceWithStreamingResponse(self) @@ -148,7 +148,7 @@ def with_raw_response(self) -> AsyncBankingResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncBankingResourceWithRawResponse(self) @@ -157,7 +157,7 @@ def with_streaming_response(self) -> AsyncBankingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncBankingResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/banking/details.py b/src/onlyfansapi/resources/banking/details.py index 0d6e264..0ab5e50 100644 --- a/src/onlyfansapi/resources/banking/details.py +++ b/src/onlyfansapi/resources/banking/details.py @@ -37,7 +37,7 @@ def with_raw_response(self) -> DetailsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return DetailsResourceWithRawResponse(self) @@ -46,7 +46,7 @@ def with_streaming_response(self) -> DetailsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return DetailsResourceWithStreamingResponse(self) @@ -237,7 +237,7 @@ def with_raw_response(self) -> AsyncDetailsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncDetailsResourceWithRawResponse(self) @@ -246,7 +246,7 @@ def with_streaming_response(self) -> AsyncDetailsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncDetailsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/bundles.py b/src/onlyfansapi/resources/bundles.py index 52b6b31..86fcd98 100644 --- a/src/onlyfansapi/resources/bundles.py +++ b/src/onlyfansapi/resources/bundles.py @@ -32,7 +32,7 @@ def with_raw_response(self) -> BundlesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return BundlesResourceWithRawResponse(self) @@ -41,7 +41,7 @@ def with_streaming_response(self) -> BundlesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return BundlesResourceWithStreamingResponse(self) @@ -171,7 +171,7 @@ def with_raw_response(self) -> AsyncBundlesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncBundlesResourceWithRawResponse(self) @@ -180,7 +180,7 @@ def with_streaming_response(self) -> AsyncBundlesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncBundlesResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/chargebacks.py b/src/onlyfansapi/resources/chargebacks.py index 2d58f29..54262d1 100644 --- a/src/onlyfansapi/resources/chargebacks.py +++ b/src/onlyfansapi/resources/chargebacks.py @@ -32,7 +32,7 @@ def with_raw_response(self) -> ChargebacksResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return ChargebacksResourceWithRawResponse(self) @@ -41,7 +41,7 @@ def with_streaming_response(self) -> ChargebacksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return ChargebacksResourceWithStreamingResponse(self) @@ -212,7 +212,7 @@ def with_raw_response(self) -> AsyncChargebacksResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncChargebacksResourceWithRawResponse(self) @@ -221,7 +221,7 @@ def with_streaming_response(self) -> AsyncChargebacksResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncChargebacksResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/chats/chats.py b/src/onlyfansapi/resources/chats/chats.py index 582feec..2e50426 100644 --- a/src/onlyfansapi/resources/chats/chats.py +++ b/src/onlyfansapi/resources/chats/chats.py @@ -63,7 +63,7 @@ def with_raw_response(self) -> ChatsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return ChatsResourceWithRawResponse(self) @@ -72,7 +72,7 @@ def with_streaming_response(self) -> ChatsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return ChatsResourceWithStreamingResponse(self) @@ -475,7 +475,7 @@ def with_raw_response(self) -> AsyncChatsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncChatsResourceWithRawResponse(self) @@ -484,7 +484,7 @@ def with_streaming_response(self) -> AsyncChatsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncChatsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/chats/mark_all_as_read.py b/src/onlyfansapi/resources/chats/mark_all_as_read.py index 9d35fea..02965f8 100644 --- a/src/onlyfansapi/resources/chats/mark_all_as_read.py +++ b/src/onlyfansapi/resources/chats/mark_all_as_read.py @@ -27,7 +27,7 @@ def with_raw_response(self) -> MarkAllAsReadResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return MarkAllAsReadResourceWithRawResponse(self) @@ -36,7 +36,7 @@ def with_streaming_response(self) -> MarkAllAsReadResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return MarkAllAsReadResourceWithStreamingResponse(self) @@ -81,7 +81,7 @@ def with_raw_response(self) -> AsyncMarkAllAsReadResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncMarkAllAsReadResourceWithRawResponse(self) @@ -90,7 +90,7 @@ def with_streaming_response(self) -> AsyncMarkAllAsReadResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncMarkAllAsReadResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/chats/messages.py b/src/onlyfansapi/resources/chats/messages.py index a439560..b03a0f9 100644 --- a/src/onlyfansapi/resources/chats/messages.py +++ b/src/onlyfansapi/resources/chats/messages.py @@ -39,7 +39,7 @@ def with_raw_response(self) -> MessagesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return MessagesResourceWithRawResponse(self) @@ -48,7 +48,7 @@ def with_streaming_response(self) -> MessagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return MessagesResourceWithStreamingResponse(self) @@ -534,7 +534,7 @@ def with_raw_response(self) -> AsyncMessagesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncMessagesResourceWithRawResponse(self) @@ -543,7 +543,7 @@ def with_streaming_response(self) -> AsyncMessagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncMessagesResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/client_sessions.py b/src/onlyfansapi/resources/client_sessions.py index 3808cd5..c1ea87e 100644 --- a/src/onlyfansapi/resources/client_sessions.py +++ b/src/onlyfansapi/resources/client_sessions.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> ClientSessionsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return ClientSessionsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> ClientSessionsResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return ClientSessionsResourceWithStreamingResponse(self) @@ -99,7 +99,7 @@ def with_raw_response(self) -> AsyncClientSessionsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncClientSessionsResourceWithRawResponse(self) @@ -108,7 +108,7 @@ def with_streaming_response(self) -> AsyncClientSessionsResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncClientSessionsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/data_exports.py b/src/onlyfansapi/resources/data_exports.py index caea634..2eaf7c0 100644 --- a/src/onlyfansapi/resources/data_exports.py +++ b/src/onlyfansapi/resources/data_exports.py @@ -38,7 +38,7 @@ def with_raw_response(self) -> DataExportsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return DataExportsResourceWithRawResponse(self) @@ -47,7 +47,7 @@ def with_streaming_response(self) -> DataExportsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return DataExportsResourceWithStreamingResponse(self) @@ -387,7 +387,7 @@ def with_raw_response(self) -> AsyncDataExportsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncDataExportsResourceWithRawResponse(self) @@ -396,7 +396,7 @@ def with_streaming_response(self) -> AsyncDataExportsResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncDataExportsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/engagement/engagement.py b/src/onlyfansapi/resources/engagement/engagement.py index d70fc69..ce22bec 100644 --- a/src/onlyfansapi/resources/engagement/engagement.py +++ b/src/onlyfansapi/resources/engagement/engagement.py @@ -27,7 +27,7 @@ def with_raw_response(self) -> EngagementResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return EngagementResourceWithRawResponse(self) @@ -36,7 +36,7 @@ def with_streaming_response(self) -> EngagementResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return EngagementResourceWithStreamingResponse(self) @@ -52,7 +52,7 @@ def with_raw_response(self) -> AsyncEngagementResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncEngagementResourceWithRawResponse(self) @@ -61,7 +61,7 @@ def with_streaming_response(self) -> AsyncEngagementResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncEngagementResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/engagement/messages/direct_messages.py b/src/onlyfansapi/resources/engagement/messages/direct_messages.py index 943af9a..1d1a086 100644 --- a/src/onlyfansapi/resources/engagement/messages/direct_messages.py +++ b/src/onlyfansapi/resources/engagement/messages/direct_messages.py @@ -29,7 +29,7 @@ def with_raw_response(self) -> DirectMessagesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return DirectMessagesResourceWithRawResponse(self) @@ -38,7 +38,7 @@ def with_streaming_response(self) -> DirectMessagesResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return DirectMessagesResourceWithStreamingResponse(self) @@ -166,7 +166,7 @@ def with_raw_response(self) -> AsyncDirectMessagesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncDirectMessagesResourceWithRawResponse(self) @@ -175,7 +175,7 @@ def with_streaming_response(self) -> AsyncDirectMessagesResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncDirectMessagesResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/engagement/messages/mass_messages.py b/src/onlyfansapi/resources/engagement/messages/mass_messages.py index c3fbcfb..8032437 100644 --- a/src/onlyfansapi/resources/engagement/messages/mass_messages.py +++ b/src/onlyfansapi/resources/engagement/messages/mass_messages.py @@ -29,7 +29,7 @@ def with_raw_response(self) -> MassMessagesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return MassMessagesResourceWithRawResponse(self) @@ -38,7 +38,7 @@ def with_streaming_response(self) -> MassMessagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return MassMessagesResourceWithStreamingResponse(self) @@ -162,7 +162,7 @@ def with_raw_response(self) -> AsyncMassMessagesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncMassMessagesResourceWithRawResponse(self) @@ -171,7 +171,7 @@ def with_streaming_response(self) -> AsyncMassMessagesResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncMassMessagesResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/engagement/messages/messages.py b/src/onlyfansapi/resources/engagement/messages/messages.py index bd0f3fd..d3cb2d0 100644 --- a/src/onlyfansapi/resources/engagement/messages/messages.py +++ b/src/onlyfansapi/resources/engagement/messages/messages.py @@ -53,7 +53,7 @@ def with_raw_response(self) -> MessagesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return MessagesResourceWithRawResponse(self) @@ -62,7 +62,7 @@ def with_streaming_response(self) -> MessagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return MessagesResourceWithStreamingResponse(self) @@ -198,7 +198,7 @@ def with_raw_response(self) -> AsyncMessagesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncMessagesResourceWithRawResponse(self) @@ -207,7 +207,7 @@ def with_streaming_response(self) -> AsyncMessagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncMessagesResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/fans/fans.py b/src/onlyfansapi/resources/fans/fans.py index 64e998a..906a873 100644 --- a/src/onlyfansapi/resources/fans/fans.py +++ b/src/onlyfansapi/resources/fans/fans.py @@ -72,7 +72,7 @@ def with_raw_response(self) -> FansResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return FansResourceWithRawResponse(self) @@ -81,7 +81,7 @@ def with_streaming_response(self) -> FansResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return FansResourceWithStreamingResponse(self) @@ -489,7 +489,7 @@ def with_raw_response(self) -> AsyncFansResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncFansResourceWithRawResponse(self) @@ -498,7 +498,7 @@ def with_streaming_response(self) -> AsyncFansResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncFansResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/fans/notes.py b/src/onlyfansapi/resources/fans/notes.py index ca7f822..59f25ac 100644 --- a/src/onlyfansapi/resources/fans/notes.py +++ b/src/onlyfansapi/resources/fans/notes.py @@ -32,7 +32,7 @@ def with_raw_response(self) -> NotesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return NotesResourceWithRawResponse(self) @@ -41,7 +41,7 @@ def with_streaming_response(self) -> NotesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return NotesResourceWithStreamingResponse(self) @@ -167,7 +167,7 @@ def with_raw_response(self) -> AsyncNotesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncNotesResourceWithRawResponse(self) @@ -176,7 +176,7 @@ def with_streaming_response(self) -> AsyncNotesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncNotesResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/fans/summary.py b/src/onlyfansapi/resources/fans/summary.py index 86dfb8e..8b39939 100644 --- a/src/onlyfansapi/resources/fans/summary.py +++ b/src/onlyfansapi/resources/fans/summary.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> SummaryResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return SummaryResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> SummaryResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return SummaryResourceWithStreamingResponse(self) @@ -137,7 +137,7 @@ def with_raw_response(self) -> AsyncSummaryResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncSummaryResourceWithRawResponse(self) @@ -146,7 +146,7 @@ def with_streaming_response(self) -> AsyncSummaryResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncSummaryResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/following.py b/src/onlyfansapi/resources/following.py index 6477ef0..d7294b1 100644 --- a/src/onlyfansapi/resources/following.py +++ b/src/onlyfansapi/resources/following.py @@ -34,7 +34,7 @@ def with_raw_response(self) -> FollowingResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return FollowingResourceWithRawResponse(self) @@ -43,7 +43,7 @@ def with_streaming_response(self) -> FollowingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return FollowingResourceWithStreamingResponse(self) @@ -229,7 +229,7 @@ def with_raw_response(self) -> AsyncFollowingResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncFollowingResourceWithRawResponse(self) @@ -238,7 +238,7 @@ def with_streaming_response(self) -> AsyncFollowingResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncFollowingResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/giphy.py b/src/onlyfansapi/resources/giphy.py index b19a1ff..ea24b2d 100644 --- a/src/onlyfansapi/resources/giphy.py +++ b/src/onlyfansapi/resources/giphy.py @@ -29,7 +29,7 @@ def with_raw_response(self) -> GiphyResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return GiphyResourceWithRawResponse(self) @@ -38,7 +38,7 @@ def with_streaming_response(self) -> GiphyResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return GiphyResourceWithStreamingResponse(self) @@ -156,7 +156,7 @@ def with_raw_response(self) -> AsyncGiphyResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncGiphyResourceWithRawResponse(self) @@ -165,7 +165,7 @@ def with_streaming_response(self) -> AsyncGiphyResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncGiphyResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/link_tags.py b/src/onlyfansapi/resources/link_tags.py index 6133098..75f22c8 100644 --- a/src/onlyfansapi/resources/link_tags.py +++ b/src/onlyfansapi/resources/link_tags.py @@ -32,7 +32,7 @@ def with_raw_response(self) -> LinkTagsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return LinkTagsResourceWithRawResponse(self) @@ -41,7 +41,7 @@ def with_streaming_response(self) -> LinkTagsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return LinkTagsResourceWithStreamingResponse(self) @@ -93,7 +93,7 @@ def with_raw_response(self) -> AsyncLinkTagsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncLinkTagsResourceWithRawResponse(self) @@ -102,7 +102,7 @@ def with_streaming_response(self) -> AsyncLinkTagsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncLinkTagsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/mass_messaging.py b/src/onlyfansapi/resources/mass_messaging.py index ed297dd..417fc52 100644 --- a/src/onlyfansapi/resources/mass_messaging.py +++ b/src/onlyfansapi/resources/mass_messaging.py @@ -35,7 +35,7 @@ def with_raw_response(self) -> MassMessagingResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return MassMessagingResourceWithRawResponse(self) @@ -44,7 +44,7 @@ def with_streaming_response(self) -> MassMessagingResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return MassMessagingResourceWithStreamingResponse(self) @@ -405,7 +405,7 @@ def with_raw_response(self) -> AsyncMassMessagingResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncMassMessagingResourceWithRawResponse(self) @@ -414,7 +414,7 @@ def with_streaming_response(self) -> AsyncMassMessagingResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncMassMessagingResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/me.py b/src/onlyfansapi/resources/me.py index f02842e..b95e93e 100644 --- a/src/onlyfansapi/resources/me.py +++ b/src/onlyfansapi/resources/me.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> MeResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return MeResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> MeResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return MeResourceWithStreamingResponse(self) @@ -153,7 +153,7 @@ def with_raw_response(self) -> AsyncMeResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncMeResourceWithRawResponse(self) @@ -162,7 +162,7 @@ def with_streaming_response(self) -> AsyncMeResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncMeResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/media/media.py b/src/onlyfansapi/resources/media/media.py index bd56944..cc9894e 100644 --- a/src/onlyfansapi/resources/media/media.py +++ b/src/onlyfansapi/resources/media/media.py @@ -57,7 +57,7 @@ def with_raw_response(self) -> MediaResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return MediaResourceWithRawResponse(self) @@ -66,7 +66,7 @@ def with_streaming_response(self) -> MediaResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return MediaResourceWithStreamingResponse(self) @@ -261,7 +261,7 @@ def with_raw_response(self) -> AsyncMediaResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncMediaResourceWithRawResponse(self) @@ -270,7 +270,7 @@ def with_streaming_response(self) -> AsyncMediaResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncMediaResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/media/uploads.py b/src/onlyfansapi/resources/media/uploads.py index 990c0cf..a2b6107 100644 --- a/src/onlyfansapi/resources/media/uploads.py +++ b/src/onlyfansapi/resources/media/uploads.py @@ -29,7 +29,7 @@ def with_raw_response(self) -> UploadsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return UploadsResourceWithRawResponse(self) @@ -38,7 +38,7 @@ def with_streaming_response(self) -> UploadsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return UploadsResourceWithStreamingResponse(self) @@ -100,7 +100,7 @@ def with_raw_response(self) -> AsyncUploadsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncUploadsResourceWithRawResponse(self) @@ -109,7 +109,7 @@ def with_streaming_response(self) -> AsyncUploadsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncUploadsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/media/vault/lists/lists.py b/src/onlyfansapi/resources/media/vault/lists/lists.py index 7b167a7..f326e94 100644 --- a/src/onlyfansapi/resources/media/vault/lists/lists.py +++ b/src/onlyfansapi/resources/media/vault/lists/lists.py @@ -44,7 +44,7 @@ def with_raw_response(self) -> ListsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return ListsResourceWithRawResponse(self) @@ -53,7 +53,7 @@ def with_streaming_response(self) -> ListsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return ListsResourceWithStreamingResponse(self) @@ -267,7 +267,7 @@ def with_raw_response(self) -> AsyncListsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncListsResourceWithRawResponse(self) @@ -276,7 +276,7 @@ def with_streaming_response(self) -> AsyncListsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncListsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/media/vault/lists/media.py b/src/onlyfansapi/resources/media/vault/lists/media.py index ec7880f..bed0990 100644 --- a/src/onlyfansapi/resources/media/vault/lists/media.py +++ b/src/onlyfansapi/resources/media/vault/lists/media.py @@ -29,7 +29,7 @@ def with_raw_response(self) -> MediaResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return MediaResourceWithRawResponse(self) @@ -38,7 +38,7 @@ def with_streaming_response(self) -> MediaResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return MediaResourceWithStreamingResponse(self) @@ -130,7 +130,7 @@ def with_raw_response(self) -> AsyncMediaResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncMediaResourceWithRawResponse(self) @@ -139,7 +139,7 @@ def with_streaming_response(self) -> AsyncMediaResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncMediaResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/media/vault/vault.py b/src/onlyfansapi/resources/media/vault/vault.py index 5ba2788..ef51854 100644 --- a/src/onlyfansapi/resources/media/vault/vault.py +++ b/src/onlyfansapi/resources/media/vault/vault.py @@ -57,7 +57,7 @@ def with_raw_response(self) -> VaultResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return VaultResourceWithRawResponse(self) @@ -66,7 +66,7 @@ def with_streaming_response(self) -> VaultResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return VaultResourceWithStreamingResponse(self) @@ -286,7 +286,7 @@ def with_raw_response(self) -> AsyncVaultResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncVaultResourceWithRawResponse(self) @@ -295,7 +295,7 @@ def with_streaming_response(self) -> AsyncVaultResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncVaultResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/messages.py b/src/onlyfansapi/resources/messages.py index 37c4ca8..414fe8d 100644 --- a/src/onlyfansapi/resources/messages.py +++ b/src/onlyfansapi/resources/messages.py @@ -28,7 +28,7 @@ def with_raw_response(self) -> MessagesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return MessagesResourceWithRawResponse(self) @@ -37,7 +37,7 @@ def with_streaming_response(self) -> MessagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return MessagesResourceWithStreamingResponse(self) @@ -105,7 +105,7 @@ def with_raw_response(self) -> AsyncMessagesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncMessagesResourceWithRawResponse(self) @@ -114,7 +114,7 @@ def with_streaming_response(self) -> AsyncMessagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncMessagesResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/notifications/notifications.py b/src/onlyfansapi/resources/notifications/notifications.py index cf0187d..848f1db 100644 --- a/src/onlyfansapi/resources/notifications/notifications.py +++ b/src/onlyfansapi/resources/notifications/notifications.py @@ -48,7 +48,7 @@ def with_raw_response(self) -> NotificationsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return NotificationsResourceWithRawResponse(self) @@ -57,7 +57,7 @@ def with_streaming_response(self) -> NotificationsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return NotificationsResourceWithStreamingResponse(self) @@ -253,7 +253,7 @@ def with_raw_response(self) -> AsyncNotificationsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncNotificationsResourceWithRawResponse(self) @@ -262,7 +262,7 @@ def with_streaming_response(self) -> AsyncNotificationsResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncNotificationsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/notifications/tabs_order.py b/src/onlyfansapi/resources/notifications/tabs_order.py index 40a058f..3369d50 100644 --- a/src/onlyfansapi/resources/notifications/tabs_order.py +++ b/src/onlyfansapi/resources/notifications/tabs_order.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> TabsOrderResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return TabsOrderResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> TabsOrderResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return TabsOrderResourceWithStreamingResponse(self) @@ -127,7 +127,7 @@ def with_raw_response(self) -> AsyncTabsOrderResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncTabsOrderResourceWithRawResponse(self) @@ -136,7 +136,7 @@ def with_streaming_response(self) -> AsyncTabsOrderResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncTabsOrderResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/payouts.py b/src/onlyfansapi/resources/payouts.py index d370f0e..9c64c7f 100644 --- a/src/onlyfansapi/resources/payouts.py +++ b/src/onlyfansapi/resources/payouts.py @@ -41,7 +41,7 @@ def with_raw_response(self) -> PayoutsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return PayoutsResourceWithRawResponse(self) @@ -50,7 +50,7 @@ def with_streaming_response(self) -> PayoutsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return PayoutsResourceWithStreamingResponse(self) @@ -310,7 +310,7 @@ def with_raw_response(self) -> AsyncPayoutsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncPayoutsResourceWithRawResponse(self) @@ -319,7 +319,7 @@ def with_streaming_response(self) -> AsyncPayoutsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncPayoutsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/posts/comments.py b/src/onlyfansapi/resources/posts/comments.py index 1f9ffd1..6ea6497 100644 --- a/src/onlyfansapi/resources/posts/comments.py +++ b/src/onlyfansapi/resources/posts/comments.py @@ -36,7 +36,7 @@ def with_raw_response(self) -> CommentsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return CommentsResourceWithRawResponse(self) @@ -45,7 +45,7 @@ def with_streaming_response(self) -> CommentsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return CommentsResourceWithStreamingResponse(self) @@ -369,7 +369,7 @@ def with_raw_response(self) -> AsyncCommentsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncCommentsResourceWithRawResponse(self) @@ -378,7 +378,7 @@ def with_streaming_response(self) -> AsyncCommentsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncCommentsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/posts/labels.py b/src/onlyfansapi/resources/posts/labels.py index 35587f3..88d95f1 100644 --- a/src/onlyfansapi/resources/posts/labels.py +++ b/src/onlyfansapi/resources/posts/labels.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> LabelsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return LabelsResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> LabelsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return LabelsResourceWithStreamingResponse(self) @@ -140,7 +140,7 @@ def with_raw_response(self) -> AsyncLabelsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncLabelsResourceWithRawResponse(self) @@ -149,7 +149,7 @@ def with_streaming_response(self) -> AsyncLabelsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncLabelsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/posts/posts.py b/src/onlyfansapi/resources/posts/posts.py index be6b5ac..5bf6dd3 100644 --- a/src/onlyfansapi/resources/posts/posts.py +++ b/src/onlyfansapi/resources/posts/posts.py @@ -72,7 +72,7 @@ def with_raw_response(self) -> PostsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return PostsResourceWithRawResponse(self) @@ -81,7 +81,7 @@ def with_streaming_response(self) -> PostsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return PostsResourceWithStreamingResponse(self) @@ -609,7 +609,7 @@ def with_raw_response(self) -> AsyncPostsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncPostsResourceWithRawResponse(self) @@ -618,7 +618,7 @@ def with_streaming_response(self) -> AsyncPostsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncPostsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/profiles.py b/src/onlyfansapi/resources/profiles.py index fbf140b..6c1167a 100644 --- a/src/onlyfansapi/resources/profiles.py +++ b/src/onlyfansapi/resources/profiles.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> ProfilesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return ProfilesResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> ProfilesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return ProfilesResourceWithStreamingResponse(self) @@ -92,7 +92,7 @@ def with_raw_response(self) -> AsyncProfilesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncProfilesResourceWithRawResponse(self) @@ -101,7 +101,7 @@ def with_streaming_response(self) -> AsyncProfilesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncProfilesResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/promotions.py b/src/onlyfansapi/resources/promotions.py index f4c540d..bffa20a 100644 --- a/src/onlyfansapi/resources/promotions.py +++ b/src/onlyfansapi/resources/promotions.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> PromotionsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return PromotionsResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> PromotionsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return PromotionsResourceWithStreamingResponse(self) @@ -242,7 +242,7 @@ def with_raw_response(self) -> AsyncPromotionsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncPromotionsResourceWithRawResponse(self) @@ -251,7 +251,7 @@ def with_streaming_response(self) -> AsyncPromotionsResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncPromotionsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/queue.py b/src/onlyfansapi/resources/queue.py index ab6d113..68a2fa7 100644 --- a/src/onlyfansapi/resources/queue.py +++ b/src/onlyfansapi/resources/queue.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> QueueResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return QueueResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> QueueResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return QueueResourceWithStreamingResponse(self) @@ -201,7 +201,7 @@ def with_raw_response(self) -> AsyncQueueResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncQueueResourceWithRawResponse(self) @@ -210,7 +210,7 @@ def with_streaming_response(self) -> AsyncQueueResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncQueueResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/release_forms.py b/src/onlyfansapi/resources/release_forms.py index 6dffb8a..42af3a5 100644 --- a/src/onlyfansapi/resources/release_forms.py +++ b/src/onlyfansapi/resources/release_forms.py @@ -39,7 +39,7 @@ def with_raw_response(self) -> ReleaseFormsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return ReleaseFormsResourceWithRawResponse(self) @@ -48,7 +48,7 @@ def with_streaming_response(self) -> ReleaseFormsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return ReleaseFormsResourceWithStreamingResponse(self) @@ -209,7 +209,7 @@ def with_raw_response(self) -> AsyncReleaseFormsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncReleaseFormsResourceWithRawResponse(self) @@ -218,7 +218,7 @@ def with_streaming_response(self) -> AsyncReleaseFormsResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncReleaseFormsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/saved_for_later/messages/messages.py b/src/onlyfansapi/resources/saved_for_later/messages/messages.py index 364961d..8c5f3a0 100644 --- a/src/onlyfansapi/resources/saved_for_later/messages/messages.py +++ b/src/onlyfansapi/resources/saved_for_later/messages/messages.py @@ -40,7 +40,7 @@ def with_raw_response(self) -> MessagesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return MessagesResourceWithRawResponse(self) @@ -49,7 +49,7 @@ def with_streaming_response(self) -> MessagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return MessagesResourceWithStreamingResponse(self) @@ -114,7 +114,7 @@ def with_raw_response(self) -> AsyncMessagesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncMessagesResourceWithRawResponse(self) @@ -123,7 +123,7 @@ def with_streaming_response(self) -> AsyncMessagesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncMessagesResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/saved_for_later/messages/settings.py b/src/onlyfansapi/resources/saved_for_later/messages/settings.py index ec96871..be77446 100644 --- a/src/onlyfansapi/resources/saved_for_later/messages/settings.py +++ b/src/onlyfansapi/resources/saved_for_later/messages/settings.py @@ -36,7 +36,7 @@ def with_raw_response(self) -> SettingsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return SettingsResourceWithRawResponse(self) @@ -45,7 +45,7 @@ def with_streaming_response(self) -> SettingsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return SettingsResourceWithStreamingResponse(self) @@ -167,7 +167,7 @@ def with_raw_response(self) -> AsyncSettingsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncSettingsResourceWithRawResponse(self) @@ -176,7 +176,7 @@ def with_streaming_response(self) -> AsyncSettingsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncSettingsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/saved_for_later/posts/posts.py b/src/onlyfansapi/resources/saved_for_later/posts/posts.py index 86b6072..254074b 100644 --- a/src/onlyfansapi/resources/saved_for_later/posts/posts.py +++ b/src/onlyfansapi/resources/saved_for_later/posts/posts.py @@ -40,7 +40,7 @@ def with_raw_response(self) -> PostsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return PostsResourceWithRawResponse(self) @@ -49,7 +49,7 @@ def with_streaming_response(self) -> PostsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return PostsResourceWithStreamingResponse(self) @@ -114,7 +114,7 @@ def with_raw_response(self) -> AsyncPostsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncPostsResourceWithRawResponse(self) @@ -123,7 +123,7 @@ def with_streaming_response(self) -> AsyncPostsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncPostsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/saved_for_later/posts/settings.py b/src/onlyfansapi/resources/saved_for_later/posts/settings.py index 93e86e5..055ef8f 100644 --- a/src/onlyfansapi/resources/saved_for_later/posts/settings.py +++ b/src/onlyfansapi/resources/saved_for_later/posts/settings.py @@ -36,7 +36,7 @@ def with_raw_response(self) -> SettingsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return SettingsResourceWithRawResponse(self) @@ -45,7 +45,7 @@ def with_streaming_response(self) -> SettingsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return SettingsResourceWithStreamingResponse(self) @@ -165,7 +165,7 @@ def with_raw_response(self) -> AsyncSettingsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncSettingsResourceWithRawResponse(self) @@ -174,7 +174,7 @@ def with_streaming_response(self) -> AsyncSettingsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncSettingsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/saved_for_later/saved_for_later.py b/src/onlyfansapi/resources/saved_for_later/saved_for_later.py index 8f3d973..22b327d 100644 --- a/src/onlyfansapi/resources/saved_for_later/saved_for_later.py +++ b/src/onlyfansapi/resources/saved_for_later/saved_for_later.py @@ -39,7 +39,7 @@ def with_raw_response(self) -> SavedForLaterResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return SavedForLaterResourceWithRawResponse(self) @@ -48,7 +48,7 @@ def with_streaming_response(self) -> SavedForLaterResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return SavedForLaterResourceWithStreamingResponse(self) @@ -68,7 +68,7 @@ def with_raw_response(self) -> AsyncSavedForLaterResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncSavedForLaterResourceWithRawResponse(self) @@ -77,7 +77,7 @@ def with_streaming_response(self) -> AsyncSavedForLaterResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncSavedForLaterResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/search.py b/src/onlyfansapi/resources/search.py index a588fb0..c505782 100644 --- a/src/onlyfansapi/resources/search.py +++ b/src/onlyfansapi/resources/search.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> SearchResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return SearchResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> SearchResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return SearchResourceWithStreamingResponse(self) @@ -151,7 +151,7 @@ def with_raw_response(self) -> AsyncSearchResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncSearchResourceWithRawResponse(self) @@ -160,7 +160,7 @@ def with_streaming_response(self) -> AsyncSearchResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncSearchResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/settings/blocked_countries.py b/src/onlyfansapi/resources/settings/blocked_countries.py index f11b25d..5edc2b0 100644 --- a/src/onlyfansapi/resources/settings/blocked_countries.py +++ b/src/onlyfansapi/resources/settings/blocked_countries.py @@ -29,7 +29,7 @@ def with_raw_response(self) -> BlockedCountriesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return BlockedCountriesResourceWithRawResponse(self) @@ -38,7 +38,7 @@ def with_streaming_response(self) -> BlockedCountriesResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return BlockedCountriesResourceWithStreamingResponse(self) @@ -130,7 +130,7 @@ def with_raw_response(self) -> AsyncBlockedCountriesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncBlockedCountriesResourceWithRawResponse(self) @@ -139,7 +139,7 @@ def with_streaming_response(self) -> AsyncBlockedCountriesResourceWithStreamingR """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncBlockedCountriesResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/settings/settings.py b/src/onlyfansapi/resources/settings/settings.py index b89791b..87e6a7c 100644 --- a/src/onlyfansapi/resources/settings/settings.py +++ b/src/onlyfansapi/resources/settings/settings.py @@ -73,7 +73,7 @@ def with_raw_response(self) -> SettingsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return SettingsResourceWithRawResponse(self) @@ -82,7 +82,7 @@ def with_streaming_response(self) -> SettingsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return SettingsResourceWithStreamingResponse(self) @@ -300,7 +300,7 @@ def with_raw_response(self) -> AsyncSettingsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncSettingsResourceWithRawResponse(self) @@ -309,7 +309,7 @@ def with_streaming_response(self) -> AsyncSettingsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncSettingsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/settings/social_media_buttons.py b/src/onlyfansapi/resources/settings/social_media_buttons.py index 01c46ac..839dfd3 100644 --- a/src/onlyfansapi/resources/settings/social_media_buttons.py +++ b/src/onlyfansapi/resources/settings/social_media_buttons.py @@ -38,7 +38,7 @@ def with_raw_response(self) -> SocialMediaButtonsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return SocialMediaButtonsResourceWithRawResponse(self) @@ -47,7 +47,7 @@ def with_streaming_response(self) -> SocialMediaButtonsResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return SocialMediaButtonsResourceWithStreamingResponse(self) @@ -284,7 +284,7 @@ def with_raw_response(self) -> AsyncSocialMediaButtonsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncSocialMediaButtonsResourceWithRawResponse(self) @@ -293,7 +293,7 @@ def with_streaming_response(self) -> AsyncSocialMediaButtonsResourceWithStreamin """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncSocialMediaButtonsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/settings/welcome_message.py b/src/onlyfansapi/resources/settings/welcome_message.py index da7d89e..a6ea8e8 100644 --- a/src/onlyfansapi/resources/settings/welcome_message.py +++ b/src/onlyfansapi/resources/settings/welcome_message.py @@ -32,7 +32,7 @@ def with_raw_response(self) -> WelcomeMessageResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return WelcomeMessageResourceWithRawResponse(self) @@ -41,7 +41,7 @@ def with_streaming_response(self) -> WelcomeMessageResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return WelcomeMessageResourceWithStreamingResponse(self) @@ -202,7 +202,7 @@ def with_raw_response(self) -> AsyncWelcomeMessageResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncWelcomeMessageResourceWithRawResponse(self) @@ -211,7 +211,7 @@ def with_streaming_response(self) -> AsyncWelcomeMessageResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncWelcomeMessageResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/shared_tracking_links/shared_tracking_links.py b/src/onlyfansapi/resources/shared_tracking_links/shared_tracking_links.py index d00ea68..f1ee947 100644 --- a/src/onlyfansapi/resources/shared_tracking_links/shared_tracking_links.py +++ b/src/onlyfansapi/resources/shared_tracking_links/shared_tracking_links.py @@ -50,7 +50,7 @@ def with_raw_response(self) -> SharedTrackingLinksResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return SharedTrackingLinksResourceWithRawResponse(self) @@ -59,7 +59,7 @@ def with_streaming_response(self) -> SharedTrackingLinksResourceWithStreamingRes """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return SharedTrackingLinksResourceWithStreamingResponse(self) @@ -179,7 +179,7 @@ def with_raw_response(self) -> AsyncSharedTrackingLinksResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncSharedTrackingLinksResourceWithRawResponse(self) @@ -188,7 +188,7 @@ def with_streaming_response(self) -> AsyncSharedTrackingLinksResourceWithStreami """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncSharedTrackingLinksResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/shared_tracking_links/tags.py b/src/onlyfansapi/resources/shared_tracking_links/tags.py index d03b7df..75d07f5 100644 --- a/src/onlyfansapi/resources/shared_tracking_links/tags.py +++ b/src/onlyfansapi/resources/shared_tracking_links/tags.py @@ -34,7 +34,7 @@ def with_raw_response(self) -> TagsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return TagsResourceWithRawResponse(self) @@ -43,7 +43,7 @@ def with_streaming_response(self) -> TagsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return TagsResourceWithStreamingResponse(self) @@ -187,7 +187,7 @@ def with_raw_response(self) -> AsyncTagsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncTagsResourceWithRawResponse(self) @@ -196,7 +196,7 @@ def with_streaming_response(self) -> AsyncTagsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncTagsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/shared_trial_links/shared_trial_links.py b/src/onlyfansapi/resources/shared_trial_links/shared_trial_links.py index 0d5b47a..fb81d01 100644 --- a/src/onlyfansapi/resources/shared_trial_links/shared_trial_links.py +++ b/src/onlyfansapi/resources/shared_trial_links/shared_trial_links.py @@ -52,7 +52,7 @@ def with_raw_response(self) -> SharedTrialLinksResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return SharedTrialLinksResourceWithRawResponse(self) @@ -61,7 +61,7 @@ def with_streaming_response(self) -> SharedTrialLinksResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return SharedTrialLinksResourceWithStreamingResponse(self) @@ -183,7 +183,7 @@ def with_raw_response(self) -> AsyncSharedTrialLinksResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncSharedTrialLinksResourceWithRawResponse(self) @@ -192,7 +192,7 @@ def with_streaming_response(self) -> AsyncSharedTrialLinksResourceWithStreamingR """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncSharedTrialLinksResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/shared_trial_links/tags.py b/src/onlyfansapi/resources/shared_trial_links/tags.py index 2e31dae..358a01b 100644 --- a/src/onlyfansapi/resources/shared_trial_links/tags.py +++ b/src/onlyfansapi/resources/shared_trial_links/tags.py @@ -35,7 +35,7 @@ def with_raw_response(self) -> TagsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return TagsResourceWithRawResponse(self) @@ -44,7 +44,7 @@ def with_streaming_response(self) -> TagsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return TagsResourceWithStreamingResponse(self) @@ -189,7 +189,7 @@ def with_raw_response(self) -> AsyncTagsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncTagsResourceWithRawResponse(self) @@ -198,7 +198,7 @@ def with_streaming_response(self) -> AsyncTagsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncTagsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/smart_link_postbacks.py b/src/onlyfansapi/resources/smart_link_postbacks.py index 928c30b..7c10116 100644 --- a/src/onlyfansapi/resources/smart_link_postbacks.py +++ b/src/onlyfansapi/resources/smart_link_postbacks.py @@ -37,7 +37,7 @@ def with_raw_response(self) -> SmartLinkPostbacksResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return SmartLinkPostbacksResourceWithRawResponse(self) @@ -46,7 +46,7 @@ def with_streaming_response(self) -> SmartLinkPostbacksResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return SmartLinkPostbacksResourceWithStreamingResponse(self) @@ -246,7 +246,7 @@ def with_raw_response(self) -> AsyncSmartLinkPostbacksResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncSmartLinkPostbacksResourceWithRawResponse(self) @@ -255,7 +255,7 @@ def with_streaming_response(self) -> AsyncSmartLinkPostbacksResourceWithStreamin """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncSmartLinkPostbacksResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/smart_links.py b/src/onlyfansapi/resources/smart_links.py index ffcdf5e..375f214 100644 --- a/src/onlyfansapi/resources/smart_links.py +++ b/src/onlyfansapi/resources/smart_links.py @@ -52,7 +52,7 @@ def with_raw_response(self) -> SmartLinksResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return SmartLinksResourceWithRawResponse(self) @@ -61,7 +61,7 @@ def with_streaming_response(self) -> SmartLinksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return SmartLinksResourceWithStreamingResponse(self) @@ -633,7 +633,7 @@ def with_raw_response(self) -> AsyncSmartLinksResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncSmartLinksResourceWithRawResponse(self) @@ -642,7 +642,7 @@ def with_streaming_response(self) -> AsyncSmartLinksResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncSmartLinksResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/statistics/reach.py b/src/onlyfansapi/resources/statistics/reach.py index 850a73d..4cb448b 100644 --- a/src/onlyfansapi/resources/statistics/reach.py +++ b/src/onlyfansapi/resources/statistics/reach.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> ReachResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return ReachResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> ReachResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return ReachResourceWithStreamingResponse(self) @@ -119,7 +119,7 @@ def with_raw_response(self) -> AsyncReachResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncReachResourceWithRawResponse(self) @@ -128,7 +128,7 @@ def with_streaming_response(self) -> AsyncReachResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncReachResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/statistics/statements.py b/src/onlyfansapi/resources/statistics/statements.py index dae72ce..5ee33ad 100644 --- a/src/onlyfansapi/resources/statistics/statements.py +++ b/src/onlyfansapi/resources/statistics/statements.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> StatementsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return StatementsResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> StatementsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return StatementsResourceWithStreamingResponse(self) @@ -104,7 +104,7 @@ def with_raw_response(self) -> AsyncStatementsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncStatementsResourceWithRawResponse(self) @@ -113,7 +113,7 @@ def with_streaming_response(self) -> AsyncStatementsResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncStatementsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/statistics/statistics.py b/src/onlyfansapi/resources/statistics/statistics.py index 07734c8..36c1e04 100644 --- a/src/onlyfansapi/resources/statistics/statistics.py +++ b/src/onlyfansapi/resources/statistics/statistics.py @@ -61,7 +61,7 @@ def with_raw_response(self) -> StatisticsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return StatisticsResourceWithRawResponse(self) @@ -70,7 +70,7 @@ def with_streaming_response(self) -> StatisticsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return StatisticsResourceWithStreamingResponse(self) @@ -249,7 +249,7 @@ def with_raw_response(self) -> AsyncStatisticsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncStatisticsResourceWithRawResponse(self) @@ -258,7 +258,7 @@ def with_streaming_response(self) -> AsyncStatisticsResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncStatisticsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/stored.py b/src/onlyfansapi/resources/stored.py index 7963e11..2ee1ada 100644 --- a/src/onlyfansapi/resources/stored.py +++ b/src/onlyfansapi/resources/stored.py @@ -36,7 +36,7 @@ def with_raw_response(self) -> StoredResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return StoredResourceWithRawResponse(self) @@ -45,7 +45,7 @@ def with_streaming_response(self) -> StoredResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return StoredResourceWithStreamingResponse(self) @@ -273,7 +273,7 @@ def with_raw_response(self) -> AsyncStoredResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncStoredResourceWithRawResponse(self) @@ -282,7 +282,7 @@ def with_streaming_response(self) -> AsyncStoredResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncStoredResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/stories/highlights.py b/src/onlyfansapi/resources/stories/highlights.py index 0f8a618..0d6141e 100644 --- a/src/onlyfansapi/resources/stories/highlights.py +++ b/src/onlyfansapi/resources/stories/highlights.py @@ -41,7 +41,7 @@ def with_raw_response(self) -> HighlightsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return HighlightsResourceWithRawResponse(self) @@ -50,7 +50,7 @@ def with_streaming_response(self) -> HighlightsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return HighlightsResourceWithStreamingResponse(self) @@ -379,7 +379,7 @@ def with_raw_response(self) -> AsyncHighlightsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncHighlightsResourceWithRawResponse(self) @@ -388,7 +388,7 @@ def with_streaming_response(self) -> AsyncHighlightsResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncHighlightsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/stories/stories.py b/src/onlyfansapi/resources/stories/stories.py index cb652b4..e0f472e 100644 --- a/src/onlyfansapi/resources/stories/stories.py +++ b/src/onlyfansapi/resources/stories/stories.py @@ -52,7 +52,7 @@ def with_raw_response(self) -> StoriesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return StoriesResourceWithRawResponse(self) @@ -61,7 +61,7 @@ def with_streaming_response(self) -> StoriesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return StoriesResourceWithStreamingResponse(self) @@ -387,7 +387,7 @@ def with_raw_response(self) -> AsyncStoriesResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncStoriesResourceWithRawResponse(self) @@ -396,7 +396,7 @@ def with_streaming_response(self) -> AsyncStoriesResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncStoriesResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/subscribers.py b/src/onlyfansapi/resources/subscribers.py index 00a1923..748ac77 100644 --- a/src/onlyfansapi/resources/subscribers.py +++ b/src/onlyfansapi/resources/subscribers.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> SubscribersResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return SubscribersResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> SubscribersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return SubscribersResourceWithStreamingResponse(self) @@ -106,7 +106,7 @@ def with_raw_response(self) -> AsyncSubscribersResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncSubscribersResourceWithRawResponse(self) @@ -115,7 +115,7 @@ def with_streaming_response(self) -> AsyncSubscribersResourceWithStreamingRespon """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncSubscribersResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/tracking_links/tags.py b/src/onlyfansapi/resources/tracking_links/tags.py index d3e72c0..4bd6bfd 100644 --- a/src/onlyfansapi/resources/tracking_links/tags.py +++ b/src/onlyfansapi/resources/tracking_links/tags.py @@ -32,7 +32,7 @@ def with_raw_response(self) -> TagsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return TagsResourceWithRawResponse(self) @@ -41,7 +41,7 @@ def with_streaming_response(self) -> TagsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return TagsResourceWithStreamingResponse(self) @@ -181,7 +181,7 @@ def with_raw_response(self) -> AsyncTagsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncTagsResourceWithRawResponse(self) @@ -190,7 +190,7 @@ def with_streaming_response(self) -> AsyncTagsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncTagsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/tracking_links/tracking_links.py b/src/onlyfansapi/resources/tracking_links/tracking_links.py index bd12395..0d65bfb 100644 --- a/src/onlyfansapi/resources/tracking_links/tracking_links.py +++ b/src/onlyfansapi/resources/tracking_links/tracking_links.py @@ -59,7 +59,7 @@ def with_raw_response(self) -> TrackingLinksResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return TrackingLinksResourceWithRawResponse(self) @@ -68,7 +68,7 @@ def with_streaming_response(self) -> TrackingLinksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return TrackingLinksResourceWithStreamingResponse(self) @@ -524,7 +524,7 @@ def with_raw_response(self) -> AsyncTrackingLinksResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncTrackingLinksResourceWithRawResponse(self) @@ -533,7 +533,7 @@ def with_streaming_response(self) -> AsyncTrackingLinksResourceWithStreamingResp """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncTrackingLinksResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/transactions.py b/src/onlyfansapi/resources/transactions.py index d02bd6b..a975402 100644 --- a/src/onlyfansapi/resources/transactions.py +++ b/src/onlyfansapi/resources/transactions.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> TransactionsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return TransactionsResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> TransactionsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return TransactionsResourceWithStreamingResponse(self) @@ -118,7 +118,7 @@ def with_raw_response(self) -> AsyncTransactionsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncTransactionsResourceWithRawResponse(self) @@ -127,7 +127,7 @@ def with_streaming_response(self) -> AsyncTransactionsResourceWithStreamingRespo """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncTransactionsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/trial_links/tags.py b/src/onlyfansapi/resources/trial_links/tags.py index 0d77bb7..0eba39c 100644 --- a/src/onlyfansapi/resources/trial_links/tags.py +++ b/src/onlyfansapi/resources/trial_links/tags.py @@ -32,7 +32,7 @@ def with_raw_response(self) -> TagsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return TagsResourceWithRawResponse(self) @@ -41,7 +41,7 @@ def with_streaming_response(self) -> TagsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return TagsResourceWithStreamingResponse(self) @@ -175,7 +175,7 @@ def with_raw_response(self) -> AsyncTagsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncTagsResourceWithRawResponse(self) @@ -184,7 +184,7 @@ def with_streaming_response(self) -> AsyncTagsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncTagsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/trial_links/trial_links.py b/src/onlyfansapi/resources/trial_links/trial_links.py index 1088b33..5554ee4 100644 --- a/src/onlyfansapi/resources/trial_links/trial_links.py +++ b/src/onlyfansapi/resources/trial_links/trial_links.py @@ -59,7 +59,7 @@ def with_raw_response(self) -> TrialLinksResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return TrialLinksResourceWithRawResponse(self) @@ -68,7 +68,7 @@ def with_streaming_response(self) -> TrialLinksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return TrialLinksResourceWithStreamingResponse(self) @@ -510,7 +510,7 @@ def with_raw_response(self) -> AsyncTrialLinksResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncTrialLinksResourceWithRawResponse(self) @@ -519,7 +519,7 @@ def with_streaming_response(self) -> AsyncTrialLinksResourceWithStreamingRespons """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncTrialLinksResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/user_lists/user_lists.py b/src/onlyfansapi/resources/user_lists/user_lists.py index e83685b..44b1169 100644 --- a/src/onlyfansapi/resources/user_lists/user_lists.py +++ b/src/onlyfansapi/resources/user_lists/user_lists.py @@ -46,7 +46,7 @@ def with_raw_response(self) -> UserListsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return UserListsResourceWithRawResponse(self) @@ -55,7 +55,7 @@ def with_streaming_response(self) -> UserListsResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return UserListsResourceWithStreamingResponse(self) @@ -279,7 +279,7 @@ def with_raw_response(self) -> AsyncUserListsResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncUserListsResourceWithRawResponse(self) @@ -288,7 +288,7 @@ def with_streaming_response(self) -> AsyncUserListsResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncUserListsResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/user_lists/users.py b/src/onlyfansapi/resources/user_lists/users.py index 269fe09..19dbe81 100644 --- a/src/onlyfansapi/resources/user_lists/users.py +++ b/src/onlyfansapi/resources/user_lists/users.py @@ -33,7 +33,7 @@ def with_raw_response(self) -> UsersResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return UsersResourceWithRawResponse(self) @@ -42,7 +42,7 @@ def with_streaming_response(self) -> UsersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return UsersResourceWithStreamingResponse(self) @@ -320,7 +320,7 @@ def with_raw_response(self) -> AsyncUsersResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncUsersResourceWithRawResponse(self) @@ -329,7 +329,7 @@ def with_streaming_response(self) -> AsyncUsersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncUsersResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/users/block.py b/src/onlyfansapi/resources/users/block.py index 52435fb..5b9090e 100644 --- a/src/onlyfansapi/resources/users/block.py +++ b/src/onlyfansapi/resources/users/block.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> BlockResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return BlockResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> BlockResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return BlockResourceWithStreamingResponse(self) @@ -125,7 +125,7 @@ def with_raw_response(self) -> AsyncBlockResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncBlockResourceWithRawResponse(self) @@ -134,7 +134,7 @@ def with_streaming_response(self) -> AsyncBlockResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncBlockResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/users/restrict.py b/src/onlyfansapi/resources/users/restrict.py index 2fdd5dd..aeaaf95 100644 --- a/src/onlyfansapi/resources/users/restrict.py +++ b/src/onlyfansapi/resources/users/restrict.py @@ -30,7 +30,7 @@ def with_raw_response(self) -> RestrictResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return RestrictResourceWithRawResponse(self) @@ -39,7 +39,7 @@ def with_streaming_response(self) -> RestrictResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return RestrictResourceWithStreamingResponse(self) @@ -128,7 +128,7 @@ def with_raw_response(self) -> AsyncRestrictResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncRestrictResourceWithRawResponse(self) @@ -137,7 +137,7 @@ def with_streaming_response(self) -> AsyncRestrictResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncRestrictResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/users/subscribe.py b/src/onlyfansapi/resources/users/subscribe.py index 08e2bca..eb399b8 100644 --- a/src/onlyfansapi/resources/users/subscribe.py +++ b/src/onlyfansapi/resources/users/subscribe.py @@ -31,7 +31,7 @@ def with_raw_response(self) -> SubscribeResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return SubscribeResourceWithRawResponse(self) @@ -40,7 +40,7 @@ def with_streaming_response(self) -> SubscribeResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return SubscribeResourceWithStreamingResponse(self) @@ -132,7 +132,7 @@ def with_raw_response(self) -> AsyncSubscribeResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncSubscribeResourceWithRawResponse(self) @@ -141,7 +141,7 @@ def with_streaming_response(self) -> AsyncSubscribeResourceWithStreamingResponse """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncSubscribeResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/users/users.py b/src/onlyfansapi/resources/users/users.py index b5ba87d..0343976 100644 --- a/src/onlyfansapi/resources/users/users.py +++ b/src/onlyfansapi/resources/users/users.py @@ -70,7 +70,7 @@ def with_raw_response(self) -> UsersResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return UsersResourceWithRawResponse(self) @@ -79,7 +79,7 @@ def with_streaming_response(self) -> UsersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return UsersResourceWithStreamingResponse(self) @@ -191,7 +191,7 @@ def with_raw_response(self) -> AsyncUsersResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncUsersResourceWithRawResponse(self) @@ -200,7 +200,7 @@ def with_streaming_response(self) -> AsyncUsersResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncUsersResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/webhooks.py b/src/onlyfansapi/resources/webhooks.py index 91b6435..fff7e94 100644 --- a/src/onlyfansapi/resources/webhooks.py +++ b/src/onlyfansapi/resources/webhooks.py @@ -35,7 +35,7 @@ def with_raw_response(self) -> WebhooksResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return WebhooksResourceWithRawResponse(self) @@ -44,7 +44,7 @@ def with_streaming_response(self) -> WebhooksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return WebhooksResourceWithStreamingResponse(self) @@ -280,7 +280,7 @@ def with_raw_response(self) -> AsyncWebhooksResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncWebhooksResourceWithRawResponse(self) @@ -289,7 +289,7 @@ def with_streaming_response(self) -> AsyncWebhooksResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncWebhooksResourceWithStreamingResponse(self) diff --git a/src/onlyfansapi/resources/whoami.py b/src/onlyfansapi/resources/whoami.py index b04525a..a5f7435 100644 --- a/src/onlyfansapi/resources/whoami.py +++ b/src/onlyfansapi/resources/whoami.py @@ -26,7 +26,7 @@ def with_raw_response(self) -> WhoamiResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return WhoamiResourceWithRawResponse(self) @@ -35,7 +35,7 @@ def with_streaming_response(self) -> WhoamiResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return WhoamiResourceWithStreamingResponse(self) @@ -66,7 +66,7 @@ def with_raw_response(self) -> AsyncWhoamiResourceWithRawResponse: 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/stainless-sdks/onlyfansapi-python#accessing-raw-response-data-eg-headers + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#accessing-raw-response-data-eg-headers """ return AsyncWhoamiResourceWithRawResponse(self) @@ -75,7 +75,7 @@ def with_streaming_response(self) -> AsyncWhoamiResourceWithStreamingResponse: """ An alternative to `.with_raw_response` that doesn't eagerly read the response body. - For more information, see https://www.github.com/stainless-sdks/onlyfansapi-python#with_streaming_response + For more information, see https://www.github.com/onlyfansapi/onlyfansapi-python#with_streaming_response """ return AsyncWhoamiResourceWithStreamingResponse(self) diff --git a/tests/api_resources/engagement/test_messages.py b/tests/api_resources/engagement/test_messages.py index 3ebd23f..a4e86aa 100644 --- a/tests/api_resources/engagement/test_messages.py +++ b/tests/api_resources/engagement/test_messages.py @@ -24,7 +24,7 @@ class TestMessages: @parametrize def test_method_get_message_buyers(self, client: OnlyFansAPI) -> None: message = client.engagement.messages.get_message_buyers( - message_id="amet", + message_id="voluptatem", account="acct_XXXXXXXXXXXXXXX", ) assert_matches_type(MessageGetMessageBuyersResponse, message, path=["response"]) @@ -33,7 +33,7 @@ def test_method_get_message_buyers(self, client: OnlyFansAPI) -> None: @parametrize def test_method_get_message_buyers_with_all_params(self, client: OnlyFansAPI) -> None: message = client.engagement.messages.get_message_buyers( - message_id="amet", + message_id="voluptatem", account="acct_XXXXXXXXXXXXXXX", limit=10, marker=0, @@ -47,7 +47,7 @@ def test_method_get_message_buyers_with_all_params(self, client: OnlyFansAPI) -> @parametrize def test_raw_response_get_message_buyers(self, client: OnlyFansAPI) -> None: response = client.engagement.messages.with_raw_response.get_message_buyers( - message_id="amet", + message_id="voluptatem", account="acct_XXXXXXXXXXXXXXX", ) @@ -60,7 +60,7 @@ def test_raw_response_get_message_buyers(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_get_message_buyers(self, client: OnlyFansAPI) -> None: with client.engagement.messages.with_streaming_response.get_message_buyers( - message_id="amet", + message_id="voluptatem", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -76,7 +76,7 @@ def test_streaming_response_get_message_buyers(self, client: OnlyFansAPI) -> Non def test_path_params_get_message_buyers(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.engagement.messages.with_raw_response.get_message_buyers( - message_id="amet", + message_id="voluptatem", account="", ) @@ -148,7 +148,7 @@ class TestAsyncMessages: @parametrize async def test_method_get_message_buyers(self, async_client: AsyncOnlyFansAPI) -> None: message = await async_client.engagement.messages.get_message_buyers( - message_id="amet", + message_id="voluptatem", account="acct_XXXXXXXXXXXXXXX", ) assert_matches_type(MessageGetMessageBuyersResponse, message, path=["response"]) @@ -157,7 +157,7 @@ async def test_method_get_message_buyers(self, async_client: AsyncOnlyFansAPI) - @parametrize async def test_method_get_message_buyers_with_all_params(self, async_client: AsyncOnlyFansAPI) -> None: message = await async_client.engagement.messages.get_message_buyers( - message_id="amet", + message_id="voluptatem", account="acct_XXXXXXXXXXXXXXX", limit=10, marker=0, @@ -171,7 +171,7 @@ async def test_method_get_message_buyers_with_all_params(self, async_client: Asy @parametrize async def test_raw_response_get_message_buyers(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.engagement.messages.with_raw_response.get_message_buyers( - message_id="amet", + message_id="voluptatem", account="acct_XXXXXXXXXXXXXXX", ) @@ -184,7 +184,7 @@ async def test_raw_response_get_message_buyers(self, async_client: AsyncOnlyFans @parametrize async def test_streaming_response_get_message_buyers(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.engagement.messages.with_streaming_response.get_message_buyers( - message_id="amet", + message_id="voluptatem", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -200,7 +200,7 @@ async def test_streaming_response_get_message_buyers(self, async_client: AsyncOn async def test_path_params_get_message_buyers(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.engagement.messages.with_raw_response.get_message_buyers( - message_id="amet", + message_id="voluptatem", account="", ) diff --git a/tests/api_resources/media/vault/lists/test_media.py b/tests/api_resources/media/vault/lists/test_media.py index ed043cf..de76d67 100644 --- a/tests/api_resources/media/vault/lists/test_media.py +++ b/tests/api_resources/media/vault/lists/test_media.py @@ -24,7 +24,7 @@ class TestMedia: @parametrize def test_method_add(self, client: OnlyFansAPI) -> None: media = client.media.vault.lists.media.add( - list_id="sapiente", + list_id="hic", account="acct_XXXXXXXXXXXXXXX", media_ids=["string"], ) @@ -34,7 +34,7 @@ def test_method_add(self, client: OnlyFansAPI) -> None: @parametrize def test_raw_response_add(self, client: OnlyFansAPI) -> None: response = client.media.vault.lists.media.with_raw_response.add( - list_id="sapiente", + list_id="hic", account="acct_XXXXXXXXXXXXXXX", media_ids=["string"], ) @@ -48,7 +48,7 @@ def test_raw_response_add(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_add(self, client: OnlyFansAPI) -> None: with client.media.vault.lists.media.with_streaming_response.add( - list_id="sapiente", + list_id="hic", account="acct_XXXXXXXXXXXXXXX", media_ids=["string"], ) as response: @@ -65,7 +65,7 @@ def test_streaming_response_add(self, client: OnlyFansAPI) -> None: def test_path_params_add(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.media.vault.lists.media.with_raw_response.add( - list_id="sapiente", + list_id="hic", account="", media_ids=["string"], ) @@ -81,7 +81,7 @@ def test_path_params_add(self, client: OnlyFansAPI) -> None: @parametrize def test_method_remove(self, client: OnlyFansAPI) -> None: media = client.media.vault.lists.media.remove( - list_id="sapiente", + list_id="hic", account="acct_XXXXXXXXXXXXXXX", media_ids=["string"], ) @@ -91,7 +91,7 @@ def test_method_remove(self, client: OnlyFansAPI) -> None: @parametrize def test_raw_response_remove(self, client: OnlyFansAPI) -> None: response = client.media.vault.lists.media.with_raw_response.remove( - list_id="sapiente", + list_id="hic", account="acct_XXXXXXXXXXXXXXX", media_ids=["string"], ) @@ -105,7 +105,7 @@ def test_raw_response_remove(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_remove(self, client: OnlyFansAPI) -> None: with client.media.vault.lists.media.with_streaming_response.remove( - list_id="sapiente", + list_id="hic", account="acct_XXXXXXXXXXXXXXX", media_ids=["string"], ) as response: @@ -122,7 +122,7 @@ def test_streaming_response_remove(self, client: OnlyFansAPI) -> None: def test_path_params_remove(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.media.vault.lists.media.with_raw_response.remove( - list_id="sapiente", + list_id="hic", account="", media_ids=["string"], ) @@ -144,7 +144,7 @@ class TestAsyncMedia: @parametrize async def test_method_add(self, async_client: AsyncOnlyFansAPI) -> None: media = await async_client.media.vault.lists.media.add( - list_id="sapiente", + list_id="hic", account="acct_XXXXXXXXXXXXXXX", media_ids=["string"], ) @@ -154,7 +154,7 @@ async def test_method_add(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_raw_response_add(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.media.vault.lists.media.with_raw_response.add( - list_id="sapiente", + list_id="hic", account="acct_XXXXXXXXXXXXXXX", media_ids=["string"], ) @@ -168,7 +168,7 @@ async def test_raw_response_add(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_streaming_response_add(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.media.vault.lists.media.with_streaming_response.add( - list_id="sapiente", + list_id="hic", account="acct_XXXXXXXXXXXXXXX", media_ids=["string"], ) as response: @@ -185,7 +185,7 @@ async def test_streaming_response_add(self, async_client: AsyncOnlyFansAPI) -> N async def test_path_params_add(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.media.vault.lists.media.with_raw_response.add( - list_id="sapiente", + list_id="hic", account="", media_ids=["string"], ) @@ -201,7 +201,7 @@ async def test_path_params_add(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_method_remove(self, async_client: AsyncOnlyFansAPI) -> None: media = await async_client.media.vault.lists.media.remove( - list_id="sapiente", + list_id="hic", account="acct_XXXXXXXXXXXXXXX", media_ids=["string"], ) @@ -211,7 +211,7 @@ async def test_method_remove(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_raw_response_remove(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.media.vault.lists.media.with_raw_response.remove( - list_id="sapiente", + list_id="hic", account="acct_XXXXXXXXXXXXXXX", media_ids=["string"], ) @@ -225,7 +225,7 @@ async def test_raw_response_remove(self, async_client: AsyncOnlyFansAPI) -> None @parametrize async def test_streaming_response_remove(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.media.vault.lists.media.with_streaming_response.remove( - list_id="sapiente", + list_id="hic", account="acct_XXXXXXXXXXXXXXX", media_ids=["string"], ) as response: @@ -242,7 +242,7 @@ async def test_streaming_response_remove(self, async_client: AsyncOnlyFansAPI) - async def test_path_params_remove(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.media.vault.lists.media.with_raw_response.remove( - list_id="sapiente", + list_id="hic", account="", media_ids=["string"], ) diff --git a/tests/api_resources/posts/test_comments.py b/tests/api_resources/posts/test_comments.py index c1a63ac..297ac0a 100644 --- a/tests/api_resources/posts/test_comments.py +++ b/tests/api_resources/posts/test_comments.py @@ -29,7 +29,7 @@ class TestComments: @parametrize def test_method_create(self, client: OnlyFansAPI) -> None: comment = client.posts.comments.create( - post_id="est", + post_id="dicta", account="acct_XXXXXXXXXXXXXXX", text="This is a comment.", ) @@ -39,7 +39,7 @@ def test_method_create(self, client: OnlyFansAPI) -> None: @parametrize def test_method_create_with_all_params(self, client: OnlyFansAPI) -> None: comment = client.posts.comments.create( - post_id="est", + post_id="dicta", account="acct_XXXXXXXXXXXXXXX", text="This is a comment.", answer_to=123, @@ -51,7 +51,7 @@ def test_method_create_with_all_params(self, client: OnlyFansAPI) -> None: @parametrize def test_raw_response_create(self, client: OnlyFansAPI) -> None: response = client.posts.comments.with_raw_response.create( - post_id="est", + post_id="dicta", account="acct_XXXXXXXXXXXXXXX", text="This is a comment.", ) @@ -65,7 +65,7 @@ def test_raw_response_create(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_create(self, client: OnlyFansAPI) -> None: with client.posts.comments.with_streaming_response.create( - post_id="est", + post_id="dicta", account="acct_XXXXXXXXXXXXXXX", text="This is a comment.", ) as response: @@ -82,7 +82,7 @@ def test_streaming_response_create(self, client: OnlyFansAPI) -> None: def test_path_params_create(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.posts.comments.with_raw_response.create( - post_id="est", + post_id="dicta", account="", text="This is a comment.", ) @@ -98,7 +98,7 @@ def test_path_params_create(self, client: OnlyFansAPI) -> None: @parametrize def test_method_list(self, client: OnlyFansAPI) -> None: comment = client.posts.comments.list( - post_id="est", + post_id="dicta", account="acct_XXXXXXXXXXXXXXX", ) assert_matches_type(CommentListResponse, comment, path=["response"]) @@ -107,7 +107,7 @@ def test_method_list(self, client: OnlyFansAPI) -> None: @parametrize def test_method_list_with_all_params(self, client: OnlyFansAPI) -> None: comment = client.posts.comments.list( - post_id="est", + post_id="dicta", account="acct_XXXXXXXXXXXXXXX", limit=10, offset=0, @@ -119,7 +119,7 @@ def test_method_list_with_all_params(self, client: OnlyFansAPI) -> None: @parametrize def test_raw_response_list(self, client: OnlyFansAPI) -> None: response = client.posts.comments.with_raw_response.list( - post_id="est", + post_id="dicta", account="acct_XXXXXXXXXXXXXXX", ) @@ -132,7 +132,7 @@ def test_raw_response_list(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_list(self, client: OnlyFansAPI) -> None: with client.posts.comments.with_streaming_response.list( - post_id="est", + post_id="dicta", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -148,7 +148,7 @@ def test_streaming_response_list(self, client: OnlyFansAPI) -> None: def test_path_params_list(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.posts.comments.with_raw_response.list( - post_id="est", + post_id="dicta", account="", ) @@ -418,7 +418,7 @@ class TestAsyncComments: @parametrize async def test_method_create(self, async_client: AsyncOnlyFansAPI) -> None: comment = await async_client.posts.comments.create( - post_id="est", + post_id="dicta", account="acct_XXXXXXXXXXXXXXX", text="This is a comment.", ) @@ -428,7 +428,7 @@ async def test_method_create(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_method_create_with_all_params(self, async_client: AsyncOnlyFansAPI) -> None: comment = await async_client.posts.comments.create( - post_id="est", + post_id="dicta", account="acct_XXXXXXXXXXXXXXX", text="This is a comment.", answer_to=123, @@ -440,7 +440,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncOnlyFansAP @parametrize async def test_raw_response_create(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.posts.comments.with_raw_response.create( - post_id="est", + post_id="dicta", account="acct_XXXXXXXXXXXXXXX", text="This is a comment.", ) @@ -454,7 +454,7 @@ async def test_raw_response_create(self, async_client: AsyncOnlyFansAPI) -> None @parametrize async def test_streaming_response_create(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.posts.comments.with_streaming_response.create( - post_id="est", + post_id="dicta", account="acct_XXXXXXXXXXXXXXX", text="This is a comment.", ) as response: @@ -471,7 +471,7 @@ async def test_streaming_response_create(self, async_client: AsyncOnlyFansAPI) - async def test_path_params_create(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.posts.comments.with_raw_response.create( - post_id="est", + post_id="dicta", account="", text="This is a comment.", ) @@ -487,7 +487,7 @@ async def test_path_params_create(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_method_list(self, async_client: AsyncOnlyFansAPI) -> None: comment = await async_client.posts.comments.list( - post_id="est", + post_id="dicta", account="acct_XXXXXXXXXXXXXXX", ) assert_matches_type(CommentListResponse, comment, path=["response"]) @@ -496,7 +496,7 @@ async def test_method_list(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_method_list_with_all_params(self, async_client: AsyncOnlyFansAPI) -> None: comment = await async_client.posts.comments.list( - post_id="est", + post_id="dicta", account="acct_XXXXXXXXXXXXXXX", limit=10, offset=0, @@ -508,7 +508,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncOnlyFansAPI) @parametrize async def test_raw_response_list(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.posts.comments.with_raw_response.list( - post_id="est", + post_id="dicta", account="acct_XXXXXXXXXXXXXXX", ) @@ -521,7 +521,7 @@ async def test_raw_response_list(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_streaming_response_list(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.posts.comments.with_streaming_response.list( - post_id="est", + post_id="dicta", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -537,7 +537,7 @@ async def test_streaming_response_list(self, async_client: AsyncOnlyFansAPI) -> async def test_path_params_list(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.posts.comments.with_raw_response.list( - post_id="est", + post_id="dicta", account="", ) diff --git a/tests/api_resources/saved_for_later/messages/test_settings.py b/tests/api_resources/saved_for_later/messages/test_settings.py index 7549791..aa735c9 100644 --- a/tests/api_resources/saved_for_later/messages/test_settings.py +++ b/tests/api_resources/saved_for_later/messages/test_settings.py @@ -110,7 +110,7 @@ def test_path_params_disable_automatic_messaging(self, client: OnlyFansAPI) -> N def test_method_enable_or_update_automatic_messaging(self, client: OnlyFansAPI) -> None: setting = client.saved_for_later.messages.settings.enable_or_update_automatic_messaging( account="acct_XXXXXXXXXXXXXXX", - period=12, + period=48, ) assert_matches_type(SettingEnableOrUpdateAutomaticMessagingResponse, setting, path=["response"]) @@ -119,7 +119,7 @@ def test_method_enable_or_update_automatic_messaging(self, client: OnlyFansAPI) def test_raw_response_enable_or_update_automatic_messaging(self, client: OnlyFansAPI) -> None: response = client.saved_for_later.messages.settings.with_raw_response.enable_or_update_automatic_messaging( account="acct_XXXXXXXXXXXXXXX", - period=12, + period=48, ) assert response.is_closed is True @@ -132,7 +132,7 @@ def test_raw_response_enable_or_update_automatic_messaging(self, client: OnlyFan def test_streaming_response_enable_or_update_automatic_messaging(self, client: OnlyFansAPI) -> None: with client.saved_for_later.messages.settings.with_streaming_response.enable_or_update_automatic_messaging( account="acct_XXXXXXXXXXXXXXX", - period=12, + period=48, ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -148,7 +148,7 @@ def test_path_params_enable_or_update_automatic_messaging(self, client: OnlyFans with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.saved_for_later.messages.settings.with_raw_response.enable_or_update_automatic_messaging( account="", - period=12, + period=48, ) @@ -246,7 +246,7 @@ async def test_path_params_disable_automatic_messaging(self, async_client: Async async def test_method_enable_or_update_automatic_messaging(self, async_client: AsyncOnlyFansAPI) -> None: setting = await async_client.saved_for_later.messages.settings.enable_or_update_automatic_messaging( account="acct_XXXXXXXXXXXXXXX", - period=12, + period=48, ) assert_matches_type(SettingEnableOrUpdateAutomaticMessagingResponse, setting, path=["response"]) @@ -256,7 +256,7 @@ async def test_raw_response_enable_or_update_automatic_messaging(self, async_cli response = ( await async_client.saved_for_later.messages.settings.with_raw_response.enable_or_update_automatic_messaging( account="acct_XXXXXXXXXXXXXXX", - period=12, + period=48, ) ) @@ -273,7 +273,7 @@ async def test_streaming_response_enable_or_update_automatic_messaging( async with ( async_client.saved_for_later.messages.settings.with_streaming_response.enable_or_update_automatic_messaging( account="acct_XXXXXXXXXXXXXXX", - period=12, + period=48, ) ) as response: assert not response.is_closed @@ -290,5 +290,5 @@ async def test_path_params_enable_or_update_automatic_messaging(self, async_clie with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.saved_for_later.messages.settings.with_raw_response.enable_or_update_automatic_messaging( account="", - period=12, + period=48, ) diff --git a/tests/api_resources/saved_for_later/posts/test_settings.py b/tests/api_resources/saved_for_later/posts/test_settings.py index 9c80483..b5f3d61 100644 --- a/tests/api_resources/saved_for_later/posts/test_settings.py +++ b/tests/api_resources/saved_for_later/posts/test_settings.py @@ -110,7 +110,7 @@ def test_path_params_disable_automatic_posting(self, client: OnlyFansAPI) -> Non def test_method_enable_or_update_automatic_posting(self, client: OnlyFansAPI) -> None: setting = client.saved_for_later.posts.settings.enable_or_update_automatic_posting( account="acct_XXXXXXXXXXXXXXX", - period=48, + period=24, ) assert_matches_type(SettingEnableOrUpdateAutomaticPostingResponse, setting, path=["response"]) @@ -119,7 +119,7 @@ def test_method_enable_or_update_automatic_posting(self, client: OnlyFansAPI) -> def test_raw_response_enable_or_update_automatic_posting(self, client: OnlyFansAPI) -> None: response = client.saved_for_later.posts.settings.with_raw_response.enable_or_update_automatic_posting( account="acct_XXXXXXXXXXXXXXX", - period=48, + period=24, ) assert response.is_closed is True @@ -132,7 +132,7 @@ def test_raw_response_enable_or_update_automatic_posting(self, client: OnlyFansA def test_streaming_response_enable_or_update_automatic_posting(self, client: OnlyFansAPI) -> None: with client.saved_for_later.posts.settings.with_streaming_response.enable_or_update_automatic_posting( account="acct_XXXXXXXXXXXXXXX", - period=48, + period=24, ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -148,7 +148,7 @@ def test_path_params_enable_or_update_automatic_posting(self, client: OnlyFansAP with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.saved_for_later.posts.settings.with_raw_response.enable_or_update_automatic_posting( account="", - period=48, + period=24, ) @@ -246,7 +246,7 @@ async def test_path_params_disable_automatic_posting(self, async_client: AsyncOn async def test_method_enable_or_update_automatic_posting(self, async_client: AsyncOnlyFansAPI) -> None: setting = await async_client.saved_for_later.posts.settings.enable_or_update_automatic_posting( account="acct_XXXXXXXXXXXXXXX", - period=48, + period=24, ) assert_matches_type(SettingEnableOrUpdateAutomaticPostingResponse, setting, path=["response"]) @@ -256,7 +256,7 @@ async def test_raw_response_enable_or_update_automatic_posting(self, async_clien response = ( await async_client.saved_for_later.posts.settings.with_raw_response.enable_or_update_automatic_posting( account="acct_XXXXXXXXXXXXXXX", - period=48, + period=24, ) ) @@ -271,7 +271,7 @@ async def test_streaming_response_enable_or_update_automatic_posting(self, async async with ( async_client.saved_for_later.posts.settings.with_streaming_response.enable_or_update_automatic_posting( account="acct_XXXXXXXXXXXXXXX", - period=48, + period=24, ) ) as response: assert not response.is_closed @@ -288,5 +288,5 @@ async def test_path_params_enable_or_update_automatic_posting(self, async_client with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.saved_for_later.posts.settings.with_raw_response.enable_or_update_automatic_posting( account="", - period=48, + period=24, ) diff --git a/tests/api_resources/settings/test_welcome_message.py b/tests/api_resources/settings/test_welcome_message.py index 9664075..544df88 100644 --- a/tests/api_resources/settings/test_welcome_message.py +++ b/tests/api_resources/settings/test_welcome_message.py @@ -76,7 +76,7 @@ def test_method_update(self, client: OnlyFansAPI) -> None: def test_method_update_with_all_params(self, client: OnlyFansAPI) -> None: welcome_message = client.settings.welcome_message.update( account="acct_XXXXXXXXXXXXXXX", - is_forward=False, + is_forward=True, locked_text=False, media_files=["ofapi_media_abc123", 1234567890], previews=["ofapi_media_abc123", 1234567890], @@ -229,7 +229,7 @@ async def test_method_update(self, async_client: AsyncOnlyFansAPI) -> None: async def test_method_update_with_all_params(self, async_client: AsyncOnlyFansAPI) -> None: welcome_message = await async_client.settings.welcome_message.update( account="acct_XXXXXXXXXXXXXXX", - is_forward=False, + is_forward=True, locked_text=False, media_files=["ofapi_media_abc123", 1234567890], previews=["ofapi_media_abc123", 1234567890], diff --git a/tests/api_resources/stories/test_highlights.py b/tests/api_resources/stories/test_highlights.py index 2ea0e88..06d474b 100644 --- a/tests/api_resources/stories/test_highlights.py +++ b/tests/api_resources/stories/test_highlights.py @@ -285,7 +285,7 @@ def test_path_params_delete(self, client: OnlyFansAPI) -> None: @parametrize def test_method_add_story(self, client: OnlyFansAPI) -> None: highlight = client.stories.highlights.add_story( - path_story_id="similique", + path_story_id="autem", account="acct_XXXXXXXXXXXXXXX", highlight_id=1234567890, body_story_id=2345678901, @@ -296,7 +296,7 @@ def test_method_add_story(self, client: OnlyFansAPI) -> None: @parametrize def test_raw_response_add_story(self, client: OnlyFansAPI) -> None: response = client.stories.highlights.with_raw_response.add_story( - path_story_id="similique", + path_story_id="autem", account="acct_XXXXXXXXXXXXXXX", highlight_id=1234567890, body_story_id=2345678901, @@ -311,7 +311,7 @@ def test_raw_response_add_story(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_add_story(self, client: OnlyFansAPI) -> None: with client.stories.highlights.with_streaming_response.add_story( - path_story_id="similique", + path_story_id="autem", account="acct_XXXXXXXXXXXXXXX", highlight_id=1234567890, body_story_id=2345678901, @@ -329,7 +329,7 @@ def test_streaming_response_add_story(self, client: OnlyFansAPI) -> None: def test_path_params_add_story(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.stories.highlights.with_raw_response.add_story( - path_story_id="similique", + path_story_id="autem", account="", highlight_id=1234567890, body_story_id=2345678901, @@ -347,7 +347,7 @@ def test_path_params_add_story(self, client: OnlyFansAPI) -> None: @parametrize def test_method_remove_story(self, client: OnlyFansAPI) -> None: highlight = client.stories.highlights.remove_story( - story_id="similique", + story_id="autem", account="acct_XXXXXXXXXXXXXXX", highlight_id=1234567890, ) @@ -357,7 +357,7 @@ def test_method_remove_story(self, client: OnlyFansAPI) -> None: @parametrize def test_raw_response_remove_story(self, client: OnlyFansAPI) -> None: response = client.stories.highlights.with_raw_response.remove_story( - story_id="similique", + story_id="autem", account="acct_XXXXXXXXXXXXXXX", highlight_id=1234567890, ) @@ -371,7 +371,7 @@ def test_raw_response_remove_story(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_remove_story(self, client: OnlyFansAPI) -> None: with client.stories.highlights.with_streaming_response.remove_story( - story_id="similique", + story_id="autem", account="acct_XXXXXXXXXXXXXXX", highlight_id=1234567890, ) as response: @@ -388,7 +388,7 @@ def test_streaming_response_remove_story(self, client: OnlyFansAPI) -> None: def test_path_params_remove_story(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.stories.highlights.with_raw_response.remove_story( - story_id="similique", + story_id="autem", account="", highlight_id=1234567890, ) @@ -666,7 +666,7 @@ async def test_path_params_delete(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_method_add_story(self, async_client: AsyncOnlyFansAPI) -> None: highlight = await async_client.stories.highlights.add_story( - path_story_id="similique", + path_story_id="autem", account="acct_XXXXXXXXXXXXXXX", highlight_id=1234567890, body_story_id=2345678901, @@ -677,7 +677,7 @@ async def test_method_add_story(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_raw_response_add_story(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.stories.highlights.with_raw_response.add_story( - path_story_id="similique", + path_story_id="autem", account="acct_XXXXXXXXXXXXXXX", highlight_id=1234567890, body_story_id=2345678901, @@ -692,7 +692,7 @@ async def test_raw_response_add_story(self, async_client: AsyncOnlyFansAPI) -> N @parametrize async def test_streaming_response_add_story(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.stories.highlights.with_streaming_response.add_story( - path_story_id="similique", + path_story_id="autem", account="acct_XXXXXXXXXXXXXXX", highlight_id=1234567890, body_story_id=2345678901, @@ -710,7 +710,7 @@ async def test_streaming_response_add_story(self, async_client: AsyncOnlyFansAPI async def test_path_params_add_story(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.stories.highlights.with_raw_response.add_story( - path_story_id="similique", + path_story_id="autem", account="", highlight_id=1234567890, body_story_id=2345678901, @@ -728,7 +728,7 @@ async def test_path_params_add_story(self, async_client: AsyncOnlyFansAPI) -> No @parametrize async def test_method_remove_story(self, async_client: AsyncOnlyFansAPI) -> None: highlight = await async_client.stories.highlights.remove_story( - story_id="similique", + story_id="autem", account="acct_XXXXXXXXXXXXXXX", highlight_id=1234567890, ) @@ -738,7 +738,7 @@ async def test_method_remove_story(self, async_client: AsyncOnlyFansAPI) -> None @parametrize async def test_raw_response_remove_story(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.stories.highlights.with_raw_response.remove_story( - story_id="similique", + story_id="autem", account="acct_XXXXXXXXXXXXXXX", highlight_id=1234567890, ) @@ -752,7 +752,7 @@ async def test_raw_response_remove_story(self, async_client: AsyncOnlyFansAPI) - @parametrize async def test_streaming_response_remove_story(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.stories.highlights.with_streaming_response.remove_story( - story_id="similique", + story_id="autem", account="acct_XXXXXXXXXXXXXXX", highlight_id=1234567890, ) as response: @@ -769,7 +769,7 @@ async def test_streaming_response_remove_story(self, async_client: AsyncOnlyFans async def test_path_params_remove_story(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.stories.highlights.with_raw_response.remove_story( - story_id="similique", + story_id="autem", account="", highlight_id=1234567890, ) diff --git a/tests/api_resources/test_accounts.py b/tests/api_resources/test_accounts.py index 92eea1a..02cf31a 100644 --- a/tests/api_resources/test_accounts.py +++ b/tests/api_resources/test_accounts.py @@ -59,7 +59,7 @@ def test_streaming_response_list(self, client: OnlyFansAPI) -> None: @parametrize def test_method_disconnect(self, client: OnlyFansAPI) -> None: account = client.accounts.disconnect( - "laboriosam", + "sed", ) assert_matches_type(Optional[AccountDisconnectResponse], account, path=["response"]) @@ -67,7 +67,7 @@ def test_method_disconnect(self, client: OnlyFansAPI) -> None: @parametrize def test_raw_response_disconnect(self, client: OnlyFansAPI) -> None: response = client.accounts.with_raw_response.disconnect( - "laboriosam", + "sed", ) assert response.is_closed is True @@ -79,7 +79,7 @@ def test_raw_response_disconnect(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_disconnect(self, client: OnlyFansAPI) -> None: with client.accounts.with_streaming_response.disconnect( - "laboriosam", + "sed", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -145,7 +145,7 @@ async def test_streaming_response_list(self, async_client: AsyncOnlyFansAPI) -> @parametrize async def test_method_disconnect(self, async_client: AsyncOnlyFansAPI) -> None: account = await async_client.accounts.disconnect( - "laboriosam", + "sed", ) assert_matches_type(Optional[AccountDisconnectResponse], account, path=["response"]) @@ -153,7 +153,7 @@ async def test_method_disconnect(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_raw_response_disconnect(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.accounts.with_raw_response.disconnect( - "laboriosam", + "sed", ) assert response.is_closed is True @@ -165,7 +165,7 @@ async def test_raw_response_disconnect(self, async_client: AsyncOnlyFansAPI) -> @parametrize async def test_streaming_response_disconnect(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.accounts.with_streaming_response.disconnect( - "laboriosam", + "sed", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" diff --git a/tests/api_resources/test_authenticate.py b/tests/api_resources/test_authenticate.py index 02dd95f..6d4a3d4 100644 --- a/tests/api_resources/test_authenticate.py +++ b/tests/api_resources/test_authenticate.py @@ -159,22 +159,22 @@ def test_method_start(self, client: OnlyFansAPI) -> None: @parametrize def test_method_start_with_all_params(self, client: OnlyFansAPI) -> None: authenticate = client.authenticate.start( - auth_id="voluptatem", + auth_id="aut", auth_type="raw_data", - cookies="quidem", + cookies="nihil", custom_proxy={ "host": "proxy.example.com", - "password": "B+:@hb)|H6^]Pd`]yD", + "password": "]%<>fO None: @parametrize async def test_method_start_with_all_params(self, async_client: AsyncOnlyFansAPI) -> None: authenticate = await async_client.authenticate.start( - auth_id="voluptatem", + auth_id="aut", auth_type="raw_data", - cookies="quidem", + cookies="nihil", custom_proxy={ "host": "proxy.example.com", - "password": "B+:@hb)|H6^]Pd`]yD", + "password": "]%<>fO None: from_id=123, limit=10, skip_users="all", - type="tags", + type="comments", ) assert_matches_type(NotificationListResponse, notification, path=["response"]) @@ -228,7 +228,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncOnlyFansAPI) from_id=123, limit=10, skip_users="all", - type="tags", + type="comments", ) assert_matches_type(NotificationListResponse, notification, path=["response"]) diff --git a/tests/api_resources/test_smart_links.py b/tests/api_resources/test_smart_links.py index f3a915c..267abb6 100644 --- a/tests/api_resources/test_smart_links.py +++ b/tests/api_resources/test_smart_links.py @@ -206,7 +206,7 @@ def test_path_params_delete(self, client: OnlyFansAPI) -> None: @parametrize def test_method_list_clicks(self, client: OnlyFansAPI) -> None: smart_link = client.smart_links.list_clicks( - smart_link_id="omnis", + smart_link_id="illum", ) assert_matches_type(SmartLinkListClicksResponse, smart_link, path=["response"]) @@ -214,7 +214,7 @@ def test_method_list_clicks(self, client: OnlyFansAPI) -> None: @parametrize def test_method_list_clicks_with_all_params(self, client: OnlyFansAPI) -> None: smart_link = client.smart_links.list_clicks( - smart_link_id="omnis", + smart_link_id="illum", date_end="2026-01-07T23:59:59Z", date_start="2026-01-01T00:00:00Z", include_bots=True, @@ -228,7 +228,7 @@ def test_method_list_clicks_with_all_params(self, client: OnlyFansAPI) -> None: @parametrize def test_raw_response_list_clicks(self, client: OnlyFansAPI) -> None: response = client.smart_links.with_raw_response.list_clicks( - smart_link_id="omnis", + smart_link_id="illum", ) assert response.is_closed is True @@ -240,7 +240,7 @@ def test_raw_response_list_clicks(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_list_clicks(self, client: OnlyFansAPI) -> None: with client.smart_links.with_streaming_response.list_clicks( - smart_link_id="omnis", + smart_link_id="illum", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -262,7 +262,7 @@ def test_path_params_list_clicks(self, client: OnlyFansAPI) -> None: @parametrize def test_method_list_conversions(self, client: OnlyFansAPI) -> None: smart_link = client.smart_links.list_conversions( - smart_link_id="dolorem", + smart_link_id="fugiat", ) assert_matches_type(SmartLinkListConversionsResponse, smart_link, path=["response"]) @@ -270,7 +270,7 @@ def test_method_list_conversions(self, client: OnlyFansAPI) -> None: @parametrize def test_method_list_conversions_with_all_params(self, client: OnlyFansAPI) -> None: smart_link = client.smart_links.list_conversions( - smart_link_id="dolorem", + smart_link_id="fugiat", conversion_type="new_transaction", date_end="2026-01-07T23:59:59Z", date_start="2026-01-01T00:00:00Z", @@ -286,7 +286,7 @@ def test_method_list_conversions_with_all_params(self, client: OnlyFansAPI) -> N @parametrize def test_raw_response_list_conversions(self, client: OnlyFansAPI) -> None: response = client.smart_links.with_raw_response.list_conversions( - smart_link_id="dolorem", + smart_link_id="fugiat", ) assert response.is_closed is True @@ -298,7 +298,7 @@ def test_raw_response_list_conversions(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_list_conversions(self, client: OnlyFansAPI) -> None: with client.smart_links.with_streaming_response.list_conversions( - smart_link_id="dolorem", + smart_link_id="fugiat", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -320,7 +320,7 @@ def test_path_params_list_conversions(self, client: OnlyFansAPI) -> None: @parametrize def test_method_list_fans(self, client: OnlyFansAPI) -> None: smart_link = client.smart_links.list_fans( - smart_link_id="eum", + smart_link_id="autem", ) assert_matches_type(SmartLinkListFansResponse, smart_link, path=["response"]) @@ -328,7 +328,7 @@ def test_method_list_fans(self, client: OnlyFansAPI) -> None: @parametrize def test_method_list_fans_with_all_params(self, client: OnlyFansAPI) -> None: smart_link = client.smart_links.list_fans( - smart_link_id="eum", + smart_link_id="autem", has_messages=True, limit=100, min_messages_sent_by_fan=3, @@ -343,7 +343,7 @@ def test_method_list_fans_with_all_params(self, client: OnlyFansAPI) -> None: @parametrize def test_raw_response_list_fans(self, client: OnlyFansAPI) -> None: response = client.smart_links.with_raw_response.list_fans( - smart_link_id="eum", + smart_link_id="autem", ) assert response.is_closed is True @@ -355,7 +355,7 @@ def test_raw_response_list_fans(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_list_fans(self, client: OnlyFansAPI) -> None: with client.smart_links.with_streaming_response.list_fans( - smart_link_id="eum", + smart_link_id="autem", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -377,7 +377,7 @@ def test_path_params_list_fans(self, client: OnlyFansAPI) -> None: @parametrize def test_method_list_spenders(self, client: OnlyFansAPI) -> None: smart_link = client.smart_links.list_spenders( - smart_link_id="voluptas", + smart_link_id="cum", ) assert_matches_type(SmartLinkListSpendersResponse, smart_link, path=["response"]) @@ -385,7 +385,7 @@ def test_method_list_spenders(self, client: OnlyFansAPI) -> None: @parametrize def test_method_list_spenders_with_all_params(self, client: OnlyFansAPI) -> None: smart_link = client.smart_links.list_spenders( - smart_link_id="voluptas", + smart_link_id="cum", limit=50, min_spend=1, offset=0, @@ -396,7 +396,7 @@ def test_method_list_spenders_with_all_params(self, client: OnlyFansAPI) -> None @parametrize def test_raw_response_list_spenders(self, client: OnlyFansAPI) -> None: response = client.smart_links.with_raw_response.list_spenders( - smart_link_id="voluptas", + smart_link_id="cum", ) assert response.is_closed is True @@ -408,7 +408,7 @@ def test_raw_response_list_spenders(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_list_spenders(self, client: OnlyFansAPI) -> None: with client.smart_links.with_streaming_response.list_spenders( - smart_link_id="voluptas", + smart_link_id="cum", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -430,7 +430,7 @@ def test_path_params_list_spenders(self, client: OnlyFansAPI) -> None: @parametrize def test_method_retrieve_cohort_arps(self, client: OnlyFansAPI) -> None: smart_link = client.smart_links.retrieve_cohort_arps( - smart_link_id="id", + smart_link_id="consequatur", ) assert smart_link is None @@ -438,7 +438,7 @@ def test_method_retrieve_cohort_arps(self, client: OnlyFansAPI) -> None: @parametrize def test_method_retrieve_cohort_arps_with_all_params(self, client: OnlyFansAPI) -> None: smart_link = client.smart_links.retrieve_cohort_arps( - smart_link_id="id", + smart_link_id="consequatur", acquisition_end="2026-01-31T23:59:59Z", acquisition_start="2026-01-01T00:00:00Z", revenue_basis="net", @@ -449,7 +449,7 @@ def test_method_retrieve_cohort_arps_with_all_params(self, client: OnlyFansAPI) @parametrize def test_raw_response_retrieve_cohort_arps(self, client: OnlyFansAPI) -> None: response = client.smart_links.with_raw_response.retrieve_cohort_arps( - smart_link_id="id", + smart_link_id="consequatur", ) assert response.is_closed is True @@ -461,7 +461,7 @@ def test_raw_response_retrieve_cohort_arps(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_retrieve_cohort_arps(self, client: OnlyFansAPI) -> None: with client.smart_links.with_streaming_response.retrieve_cohort_arps( - smart_link_id="id", + smart_link_id="consequatur", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -483,7 +483,7 @@ def test_path_params_retrieve_cohort_arps(self, client: OnlyFansAPI) -> None: @parametrize def test_method_retrieve_stats(self, client: OnlyFansAPI) -> None: smart_link = client.smart_links.retrieve_stats( - smart_link_id="iure", + smart_link_id="et", ) assert_matches_type(SmartLinkRetrieveStatsResponse, smart_link, path=["response"]) @@ -491,7 +491,7 @@ def test_method_retrieve_stats(self, client: OnlyFansAPI) -> None: @parametrize def test_method_retrieve_stats_with_all_params(self, client: OnlyFansAPI) -> None: smart_link = client.smart_links.retrieve_stats( - smart_link_id="iure", + smart_link_id="et", date_end="2026-01-31T23:59:59Z", date_start="2026-01-01T00:00:00Z", ) @@ -501,7 +501,7 @@ def test_method_retrieve_stats_with_all_params(self, client: OnlyFansAPI) -> Non @parametrize def test_raw_response_retrieve_stats(self, client: OnlyFansAPI) -> None: response = client.smart_links.with_raw_response.retrieve_stats( - smart_link_id="iure", + smart_link_id="et", ) assert response.is_closed is True @@ -513,7 +513,7 @@ def test_raw_response_retrieve_stats(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_retrieve_stats(self, client: OnlyFansAPI) -> None: with client.smart_links.with_streaming_response.retrieve_stats( - smart_link_id="iure", + smart_link_id="et", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -716,7 +716,7 @@ async def test_path_params_delete(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_method_list_clicks(self, async_client: AsyncOnlyFansAPI) -> None: smart_link = await async_client.smart_links.list_clicks( - smart_link_id="omnis", + smart_link_id="illum", ) assert_matches_type(SmartLinkListClicksResponse, smart_link, path=["response"]) @@ -724,7 +724,7 @@ async def test_method_list_clicks(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_method_list_clicks_with_all_params(self, async_client: AsyncOnlyFansAPI) -> None: smart_link = await async_client.smart_links.list_clicks( - smart_link_id="omnis", + smart_link_id="illum", date_end="2026-01-07T23:59:59Z", date_start="2026-01-01T00:00:00Z", include_bots=True, @@ -738,7 +738,7 @@ async def test_method_list_clicks_with_all_params(self, async_client: AsyncOnlyF @parametrize async def test_raw_response_list_clicks(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.smart_links.with_raw_response.list_clicks( - smart_link_id="omnis", + smart_link_id="illum", ) assert response.is_closed is True @@ -750,7 +750,7 @@ async def test_raw_response_list_clicks(self, async_client: AsyncOnlyFansAPI) -> @parametrize async def test_streaming_response_list_clicks(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.smart_links.with_streaming_response.list_clicks( - smart_link_id="omnis", + smart_link_id="illum", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -772,7 +772,7 @@ async def test_path_params_list_clicks(self, async_client: AsyncOnlyFansAPI) -> @parametrize async def test_method_list_conversions(self, async_client: AsyncOnlyFansAPI) -> None: smart_link = await async_client.smart_links.list_conversions( - smart_link_id="dolorem", + smart_link_id="fugiat", ) assert_matches_type(SmartLinkListConversionsResponse, smart_link, path=["response"]) @@ -780,7 +780,7 @@ async def test_method_list_conversions(self, async_client: AsyncOnlyFansAPI) -> @parametrize async def test_method_list_conversions_with_all_params(self, async_client: AsyncOnlyFansAPI) -> None: smart_link = await async_client.smart_links.list_conversions( - smart_link_id="dolorem", + smart_link_id="fugiat", conversion_type="new_transaction", date_end="2026-01-07T23:59:59Z", date_start="2026-01-01T00:00:00Z", @@ -796,7 +796,7 @@ async def test_method_list_conversions_with_all_params(self, async_client: Async @parametrize async def test_raw_response_list_conversions(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.smart_links.with_raw_response.list_conversions( - smart_link_id="dolorem", + smart_link_id="fugiat", ) assert response.is_closed is True @@ -808,7 +808,7 @@ async def test_raw_response_list_conversions(self, async_client: AsyncOnlyFansAP @parametrize async def test_streaming_response_list_conversions(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.smart_links.with_streaming_response.list_conversions( - smart_link_id="dolorem", + smart_link_id="fugiat", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -830,7 +830,7 @@ async def test_path_params_list_conversions(self, async_client: AsyncOnlyFansAPI @parametrize async def test_method_list_fans(self, async_client: AsyncOnlyFansAPI) -> None: smart_link = await async_client.smart_links.list_fans( - smart_link_id="eum", + smart_link_id="autem", ) assert_matches_type(SmartLinkListFansResponse, smart_link, path=["response"]) @@ -838,7 +838,7 @@ async def test_method_list_fans(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_method_list_fans_with_all_params(self, async_client: AsyncOnlyFansAPI) -> None: smart_link = await async_client.smart_links.list_fans( - smart_link_id="eum", + smart_link_id="autem", has_messages=True, limit=100, min_messages_sent_by_fan=3, @@ -853,7 +853,7 @@ async def test_method_list_fans_with_all_params(self, async_client: AsyncOnlyFan @parametrize async def test_raw_response_list_fans(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.smart_links.with_raw_response.list_fans( - smart_link_id="eum", + smart_link_id="autem", ) assert response.is_closed is True @@ -865,7 +865,7 @@ async def test_raw_response_list_fans(self, async_client: AsyncOnlyFansAPI) -> N @parametrize async def test_streaming_response_list_fans(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.smart_links.with_streaming_response.list_fans( - smart_link_id="eum", + smart_link_id="autem", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -887,7 +887,7 @@ async def test_path_params_list_fans(self, async_client: AsyncOnlyFansAPI) -> No @parametrize async def test_method_list_spenders(self, async_client: AsyncOnlyFansAPI) -> None: smart_link = await async_client.smart_links.list_spenders( - smart_link_id="voluptas", + smart_link_id="cum", ) assert_matches_type(SmartLinkListSpendersResponse, smart_link, path=["response"]) @@ -895,7 +895,7 @@ async def test_method_list_spenders(self, async_client: AsyncOnlyFansAPI) -> Non @parametrize async def test_method_list_spenders_with_all_params(self, async_client: AsyncOnlyFansAPI) -> None: smart_link = await async_client.smart_links.list_spenders( - smart_link_id="voluptas", + smart_link_id="cum", limit=50, min_spend=1, offset=0, @@ -906,7 +906,7 @@ async def test_method_list_spenders_with_all_params(self, async_client: AsyncOnl @parametrize async def test_raw_response_list_spenders(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.smart_links.with_raw_response.list_spenders( - smart_link_id="voluptas", + smart_link_id="cum", ) assert response.is_closed is True @@ -918,7 +918,7 @@ async def test_raw_response_list_spenders(self, async_client: AsyncOnlyFansAPI) @parametrize async def test_streaming_response_list_spenders(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.smart_links.with_streaming_response.list_spenders( - smart_link_id="voluptas", + smart_link_id="cum", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -940,7 +940,7 @@ async def test_path_params_list_spenders(self, async_client: AsyncOnlyFansAPI) - @parametrize async def test_method_retrieve_cohort_arps(self, async_client: AsyncOnlyFansAPI) -> None: smart_link = await async_client.smart_links.retrieve_cohort_arps( - smart_link_id="id", + smart_link_id="consequatur", ) assert smart_link is None @@ -948,7 +948,7 @@ async def test_method_retrieve_cohort_arps(self, async_client: AsyncOnlyFansAPI) @parametrize async def test_method_retrieve_cohort_arps_with_all_params(self, async_client: AsyncOnlyFansAPI) -> None: smart_link = await async_client.smart_links.retrieve_cohort_arps( - smart_link_id="id", + smart_link_id="consequatur", acquisition_end="2026-01-31T23:59:59Z", acquisition_start="2026-01-01T00:00:00Z", revenue_basis="net", @@ -959,7 +959,7 @@ async def test_method_retrieve_cohort_arps_with_all_params(self, async_client: A @parametrize async def test_raw_response_retrieve_cohort_arps(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.smart_links.with_raw_response.retrieve_cohort_arps( - smart_link_id="id", + smart_link_id="consequatur", ) assert response.is_closed is True @@ -971,7 +971,7 @@ async def test_raw_response_retrieve_cohort_arps(self, async_client: AsyncOnlyFa @parametrize async def test_streaming_response_retrieve_cohort_arps(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.smart_links.with_streaming_response.retrieve_cohort_arps( - smart_link_id="id", + smart_link_id="consequatur", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -993,7 +993,7 @@ async def test_path_params_retrieve_cohort_arps(self, async_client: AsyncOnlyFan @parametrize async def test_method_retrieve_stats(self, async_client: AsyncOnlyFansAPI) -> None: smart_link = await async_client.smart_links.retrieve_stats( - smart_link_id="iure", + smart_link_id="et", ) assert_matches_type(SmartLinkRetrieveStatsResponse, smart_link, path=["response"]) @@ -1001,7 +1001,7 @@ async def test_method_retrieve_stats(self, async_client: AsyncOnlyFansAPI) -> No @parametrize async def test_method_retrieve_stats_with_all_params(self, async_client: AsyncOnlyFansAPI) -> None: smart_link = await async_client.smart_links.retrieve_stats( - smart_link_id="iure", + smart_link_id="et", date_end="2026-01-31T23:59:59Z", date_start="2026-01-01T00:00:00Z", ) @@ -1011,7 +1011,7 @@ async def test_method_retrieve_stats_with_all_params(self, async_client: AsyncOn @parametrize async def test_raw_response_retrieve_stats(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.smart_links.with_raw_response.retrieve_stats( - smart_link_id="iure", + smart_link_id="et", ) assert response.is_closed is True @@ -1023,7 +1023,7 @@ async def test_raw_response_retrieve_stats(self, async_client: AsyncOnlyFansAPI) @parametrize async def test_streaming_response_retrieve_stats(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.smart_links.with_streaming_response.retrieve_stats( - smart_link_id="iure", + smart_link_id="et", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" diff --git a/tests/api_resources/test_stored.py b/tests/api_resources/test_stored.py index 6bcca6b..39aab6d 100644 --- a/tests/api_resources/test_stored.py +++ b/tests/api_resources/test_stored.py @@ -36,8 +36,8 @@ def test_method_list_shared_tracking_links_with_all_params(self, client: OnlyFan stored = client.stored.list_shared_tracking_links( account="acct_XXXXXXXXXXXXXXX", filter={ - "search": "frlrfllcwpizfmb", - "tags": ["vkmteppnp"], + "search": "wawukmfhpsfhwlhgdjcyu", + "tags": ["iizfurnvqqubrcpiuiou"], }, limit=10, offset=0, @@ -92,8 +92,8 @@ def test_method_list_shared_trial_links_with_all_params(self, client: OnlyFansAP stored = client.stored.list_shared_trial_links( account="acct_XXXXXXXXXXXXXXX", filter={ - "search": "ijgyh", - "tags": ["xtonuh"], + "search": "wqhvnrc", + "tags": ["uul"], }, limit=10, offset=0, @@ -149,8 +149,8 @@ def test_method_list_tracking_links_with_all_params(self, client: OnlyFansAPI) - account="acct_XXXXXXXXXXXXXXX", filter={ "include_smart_links": False, - "search": "ugcqnjiolnpwhfy", - "tags": ["nyknmwiekktwgnhggxo"], + "search": "pbtzgckzvatqptslffi", + "tags": ["retewknszoajldmmjdmbfwi"], }, limit=10, offset=0, @@ -205,9 +205,9 @@ def test_method_list_trial_links_with_all_params(self, client: OnlyFansAPI) -> N stored = client.stored.list_trial_links( account="acct_XXXXXXXXXXXXXXX", filter={ - "include_smart_links": True, - "search": "kb", - "tags": ["ok"], + "include_smart_links": False, + "search": "aazxbzoyffqvxas", + "tags": ["mbztc"], }, limit=10, offset=0, @@ -268,8 +268,8 @@ async def test_method_list_shared_tracking_links_with_all_params(self, async_cli stored = await async_client.stored.list_shared_tracking_links( account="acct_XXXXXXXXXXXXXXX", filter={ - "search": "frlrfllcwpizfmb", - "tags": ["vkmteppnp"], + "search": "wawukmfhpsfhwlhgdjcyu", + "tags": ["iizfurnvqqubrcpiuiou"], }, limit=10, offset=0, @@ -324,8 +324,8 @@ async def test_method_list_shared_trial_links_with_all_params(self, async_client stored = await async_client.stored.list_shared_trial_links( account="acct_XXXXXXXXXXXXXXX", filter={ - "search": "ijgyh", - "tags": ["xtonuh"], + "search": "wqhvnrc", + "tags": ["uul"], }, limit=10, offset=0, @@ -381,8 +381,8 @@ async def test_method_list_tracking_links_with_all_params(self, async_client: As account="acct_XXXXXXXXXXXXXXX", filter={ "include_smart_links": False, - "search": "ugcqnjiolnpwhfy", - "tags": ["nyknmwiekktwgnhggxo"], + "search": "pbtzgckzvatqptslffi", + "tags": ["retewknszoajldmmjdmbfwi"], }, limit=10, offset=0, @@ -437,9 +437,9 @@ async def test_method_list_trial_links_with_all_params(self, async_client: Async stored = await async_client.stored.list_trial_links( account="acct_XXXXXXXXXXXXXXX", filter={ - "include_smart_links": True, - "search": "kb", - "tags": ["ok"], + "include_smart_links": False, + "search": "aazxbzoyffqvxas", + "tags": ["mbztc"], }, limit=10, offset=0, diff --git a/tests/api_resources/test_tracking_links.py b/tests/api_resources/test_tracking_links.py index 650d0f4..41243f2 100644 --- a/tests/api_resources/test_tracking_links.py +++ b/tests/api_resources/test_tracking_links.py @@ -85,7 +85,7 @@ def test_path_params_create(self, client: OnlyFansAPI) -> None: @parametrize def test_method_retrieve(self, client: OnlyFansAPI) -> None: tracking_link = client.tracking_links.retrieve( - tracking_link_id="voluptatem", + tracking_link_id="consectetur", account="acct_XXXXXXXXXXXXXXX", ) assert_matches_type(TrackingLinkRetrieveResponse, tracking_link, path=["response"]) @@ -94,7 +94,7 @@ def test_method_retrieve(self, client: OnlyFansAPI) -> None: @parametrize def test_raw_response_retrieve(self, client: OnlyFansAPI) -> None: response = client.tracking_links.with_raw_response.retrieve( - tracking_link_id="voluptatem", + tracking_link_id="consectetur", account="acct_XXXXXXXXXXXXXXX", ) @@ -107,7 +107,7 @@ def test_raw_response_retrieve(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_retrieve(self, client: OnlyFansAPI) -> None: with client.tracking_links.with_streaming_response.retrieve( - tracking_link_id="voluptatem", + tracking_link_id="consectetur", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -123,7 +123,7 @@ def test_streaming_response_retrieve(self, client: OnlyFansAPI) -> None: def test_path_params_retrieve(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.tracking_links.with_raw_response.retrieve( - tracking_link_id="voluptatem", + tracking_link_id="consectetur", account="", ) @@ -195,7 +195,7 @@ def test_path_params_list(self, client: OnlyFansAPI) -> None: @parametrize def test_method_delete(self, client: OnlyFansAPI) -> None: tracking_link = client.tracking_links.delete( - tracking_link_id="voluptatem", + tracking_link_id="consectetur", account="acct_XXXXXXXXXXXXXXX", ) assert_matches_type(TrackingLinkDeleteResponse, tracking_link, path=["response"]) @@ -204,7 +204,7 @@ def test_method_delete(self, client: OnlyFansAPI) -> None: @parametrize def test_raw_response_delete(self, client: OnlyFansAPI) -> None: response = client.tracking_links.with_raw_response.delete( - tracking_link_id="voluptatem", + tracking_link_id="consectetur", account="acct_XXXXXXXXXXXXXXX", ) @@ -217,7 +217,7 @@ def test_raw_response_delete(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_delete(self, client: OnlyFansAPI) -> None: with client.tracking_links.with_streaming_response.delete( - tracking_link_id="voluptatem", + tracking_link_id="consectetur", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -233,7 +233,7 @@ def test_streaming_response_delete(self, client: OnlyFansAPI) -> None: def test_path_params_delete(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.tracking_links.with_raw_response.delete( - tracking_link_id="voluptatem", + tracking_link_id="consectetur", account="", ) @@ -247,7 +247,7 @@ def test_path_params_delete(self, client: OnlyFansAPI) -> None: @parametrize def test_method_get_cohort_arps(self, client: OnlyFansAPI) -> None: tracking_link = client.tracking_links.get_cohort_arps( - tracking_link_id="ipsam", + tracking_link_id="ratione", account="acct_XXXXXXXXXXXXXXX", ) assert tracking_link is None @@ -256,7 +256,7 @@ def test_method_get_cohort_arps(self, client: OnlyFansAPI) -> None: @parametrize def test_method_get_cohort_arps_with_all_params(self, client: OnlyFansAPI) -> None: tracking_link = client.tracking_links.get_cohort_arps( - tracking_link_id="ipsam", + tracking_link_id="ratione", account="acct_XXXXXXXXXXXXXXX", acquisition_end="2026-01-31T23:59:59Z", acquisition_start="2026-01-01T00:00:00Z", @@ -268,7 +268,7 @@ def test_method_get_cohort_arps_with_all_params(self, client: OnlyFansAPI) -> No @parametrize def test_raw_response_get_cohort_arps(self, client: OnlyFansAPI) -> None: response = client.tracking_links.with_raw_response.get_cohort_arps( - tracking_link_id="ipsam", + tracking_link_id="ratione", account="acct_XXXXXXXXXXXXXXX", ) @@ -281,7 +281,7 @@ def test_raw_response_get_cohort_arps(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_get_cohort_arps(self, client: OnlyFansAPI) -> None: with client.tracking_links.with_streaming_response.get_cohort_arps( - tracking_link_id="ipsam", + tracking_link_id="ratione", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -297,7 +297,7 @@ def test_streaming_response_get_cohort_arps(self, client: OnlyFansAPI) -> None: def test_path_params_get_cohort_arps(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.tracking_links.with_raw_response.get_cohort_arps( - tracking_link_id="ipsam", + tracking_link_id="ratione", account="", ) @@ -311,7 +311,7 @@ def test_path_params_get_cohort_arps(self, client: OnlyFansAPI) -> None: @parametrize def test_method_get_stats(self, client: OnlyFansAPI) -> None: tracking_link = client.tracking_links.get_stats( - tracking_link_id="sit", + tracking_link_id="reiciendis", account="acct_XXXXXXXXXXXXXXX", ) assert_matches_type(TrackingLinkGetStatsResponse, tracking_link, path=["response"]) @@ -320,7 +320,7 @@ def test_method_get_stats(self, client: OnlyFansAPI) -> None: @parametrize def test_method_get_stats_with_all_params(self, client: OnlyFansAPI) -> None: tracking_link = client.tracking_links.get_stats( - tracking_link_id="sit", + tracking_link_id="reiciendis", account="acct_XXXXXXXXXXXXXXX", date_end="2026-01-31T23:59:59Z", date_start="2026-01-01T00:00:00Z", @@ -331,7 +331,7 @@ def test_method_get_stats_with_all_params(self, client: OnlyFansAPI) -> None: @parametrize def test_raw_response_get_stats(self, client: OnlyFansAPI) -> None: response = client.tracking_links.with_raw_response.get_stats( - tracking_link_id="sit", + tracking_link_id="reiciendis", account="acct_XXXXXXXXXXXXXXX", ) @@ -344,7 +344,7 @@ def test_raw_response_get_stats(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_get_stats(self, client: OnlyFansAPI) -> None: with client.tracking_links.with_streaming_response.get_stats( - tracking_link_id="sit", + tracking_link_id="reiciendis", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -360,7 +360,7 @@ def test_streaming_response_get_stats(self, client: OnlyFansAPI) -> None: def test_path_params_get_stats(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.tracking_links.with_raw_response.get_stats( - tracking_link_id="sit", + tracking_link_id="reiciendis", account="", ) @@ -562,7 +562,7 @@ async def test_path_params_create(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_method_retrieve(self, async_client: AsyncOnlyFansAPI) -> None: tracking_link = await async_client.tracking_links.retrieve( - tracking_link_id="voluptatem", + tracking_link_id="consectetur", account="acct_XXXXXXXXXXXXXXX", ) assert_matches_type(TrackingLinkRetrieveResponse, tracking_link, path=["response"]) @@ -571,7 +571,7 @@ async def test_method_retrieve(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_raw_response_retrieve(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.tracking_links.with_raw_response.retrieve( - tracking_link_id="voluptatem", + tracking_link_id="consectetur", account="acct_XXXXXXXXXXXXXXX", ) @@ -584,7 +584,7 @@ async def test_raw_response_retrieve(self, async_client: AsyncOnlyFansAPI) -> No @parametrize async def test_streaming_response_retrieve(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.tracking_links.with_streaming_response.retrieve( - tracking_link_id="voluptatem", + tracking_link_id="consectetur", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -600,7 +600,7 @@ async def test_streaming_response_retrieve(self, async_client: AsyncOnlyFansAPI) async def test_path_params_retrieve(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.tracking_links.with_raw_response.retrieve( - tracking_link_id="voluptatem", + tracking_link_id="consectetur", account="", ) @@ -672,7 +672,7 @@ async def test_path_params_list(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_method_delete(self, async_client: AsyncOnlyFansAPI) -> None: tracking_link = await async_client.tracking_links.delete( - tracking_link_id="voluptatem", + tracking_link_id="consectetur", account="acct_XXXXXXXXXXXXXXX", ) assert_matches_type(TrackingLinkDeleteResponse, tracking_link, path=["response"]) @@ -681,7 +681,7 @@ async def test_method_delete(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_raw_response_delete(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.tracking_links.with_raw_response.delete( - tracking_link_id="voluptatem", + tracking_link_id="consectetur", account="acct_XXXXXXXXXXXXXXX", ) @@ -694,7 +694,7 @@ async def test_raw_response_delete(self, async_client: AsyncOnlyFansAPI) -> None @parametrize async def test_streaming_response_delete(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.tracking_links.with_streaming_response.delete( - tracking_link_id="voluptatem", + tracking_link_id="consectetur", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -710,7 +710,7 @@ async def test_streaming_response_delete(self, async_client: AsyncOnlyFansAPI) - async def test_path_params_delete(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.tracking_links.with_raw_response.delete( - tracking_link_id="voluptatem", + tracking_link_id="consectetur", account="", ) @@ -724,7 +724,7 @@ async def test_path_params_delete(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_method_get_cohort_arps(self, async_client: AsyncOnlyFansAPI) -> None: tracking_link = await async_client.tracking_links.get_cohort_arps( - tracking_link_id="ipsam", + tracking_link_id="ratione", account="acct_XXXXXXXXXXXXXXX", ) assert tracking_link is None @@ -733,7 +733,7 @@ async def test_method_get_cohort_arps(self, async_client: AsyncOnlyFansAPI) -> N @parametrize async def test_method_get_cohort_arps_with_all_params(self, async_client: AsyncOnlyFansAPI) -> None: tracking_link = await async_client.tracking_links.get_cohort_arps( - tracking_link_id="ipsam", + tracking_link_id="ratione", account="acct_XXXXXXXXXXXXXXX", acquisition_end="2026-01-31T23:59:59Z", acquisition_start="2026-01-01T00:00:00Z", @@ -745,7 +745,7 @@ async def test_method_get_cohort_arps_with_all_params(self, async_client: AsyncO @parametrize async def test_raw_response_get_cohort_arps(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.tracking_links.with_raw_response.get_cohort_arps( - tracking_link_id="ipsam", + tracking_link_id="ratione", account="acct_XXXXXXXXXXXXXXX", ) @@ -758,7 +758,7 @@ async def test_raw_response_get_cohort_arps(self, async_client: AsyncOnlyFansAPI @parametrize async def test_streaming_response_get_cohort_arps(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.tracking_links.with_streaming_response.get_cohort_arps( - tracking_link_id="ipsam", + tracking_link_id="ratione", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -774,7 +774,7 @@ async def test_streaming_response_get_cohort_arps(self, async_client: AsyncOnlyF async def test_path_params_get_cohort_arps(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.tracking_links.with_raw_response.get_cohort_arps( - tracking_link_id="ipsam", + tracking_link_id="ratione", account="", ) @@ -788,7 +788,7 @@ async def test_path_params_get_cohort_arps(self, async_client: AsyncOnlyFansAPI) @parametrize async def test_method_get_stats(self, async_client: AsyncOnlyFansAPI) -> None: tracking_link = await async_client.tracking_links.get_stats( - tracking_link_id="sit", + tracking_link_id="reiciendis", account="acct_XXXXXXXXXXXXXXX", ) assert_matches_type(TrackingLinkGetStatsResponse, tracking_link, path=["response"]) @@ -797,7 +797,7 @@ async def test_method_get_stats(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_method_get_stats_with_all_params(self, async_client: AsyncOnlyFansAPI) -> None: tracking_link = await async_client.tracking_links.get_stats( - tracking_link_id="sit", + tracking_link_id="reiciendis", account="acct_XXXXXXXXXXXXXXX", date_end="2026-01-31T23:59:59Z", date_start="2026-01-01T00:00:00Z", @@ -808,7 +808,7 @@ async def test_method_get_stats_with_all_params(self, async_client: AsyncOnlyFan @parametrize async def test_raw_response_get_stats(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.tracking_links.with_raw_response.get_stats( - tracking_link_id="sit", + tracking_link_id="reiciendis", account="acct_XXXXXXXXXXXXXXX", ) @@ -821,7 +821,7 @@ async def test_raw_response_get_stats(self, async_client: AsyncOnlyFansAPI) -> N @parametrize async def test_streaming_response_get_stats(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.tracking_links.with_streaming_response.get_stats( - tracking_link_id="sit", + tracking_link_id="reiciendis", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -837,7 +837,7 @@ async def test_streaming_response_get_stats(self, async_client: AsyncOnlyFansAPI async def test_path_params_get_stats(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.tracking_links.with_raw_response.get_stats( - tracking_link_id="sit", + tracking_link_id="reiciendis", account="", ) diff --git a/tests/api_resources/test_trial_links.py b/tests/api_resources/test_trial_links.py index 9b2e926..2b6fc57 100644 --- a/tests/api_resources/test_trial_links.py +++ b/tests/api_resources/test_trial_links.py @@ -96,7 +96,7 @@ def test_path_params_create(self, client: OnlyFansAPI) -> None: @parametrize def test_method_retrieve(self, client: OnlyFansAPI) -> None: trial_link = client.trial_links.retrieve( - trial_link_id="ut", + trial_link_id="quisquam", account="acct_XXXXXXXXXXXXXXX", ) assert_matches_type(TrialLinkRetrieveResponse, trial_link, path=["response"]) @@ -105,7 +105,7 @@ def test_method_retrieve(self, client: OnlyFansAPI) -> None: @parametrize def test_raw_response_retrieve(self, client: OnlyFansAPI) -> None: response = client.trial_links.with_raw_response.retrieve( - trial_link_id="ut", + trial_link_id="quisquam", account="acct_XXXXXXXXXXXXXXX", ) @@ -118,7 +118,7 @@ def test_raw_response_retrieve(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_retrieve(self, client: OnlyFansAPI) -> None: with client.trial_links.with_streaming_response.retrieve( - trial_link_id="ut", + trial_link_id="quisquam", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -134,7 +134,7 @@ def test_streaming_response_retrieve(self, client: OnlyFansAPI) -> None: def test_path_params_retrieve(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.trial_links.with_raw_response.retrieve( - trial_link_id="ut", + trial_link_id="quisquam", account="", ) @@ -211,7 +211,7 @@ def test_path_params_list(self, client: OnlyFansAPI) -> None: @parametrize def test_method_delete(self, client: OnlyFansAPI) -> None: trial_link = client.trial_links.delete( - trial_link_id="ut", + trial_link_id="quisquam", account="acct_XXXXXXXXXXXXXXX", ) assert_matches_type(TrialLinkDeleteResponse, trial_link, path=["response"]) @@ -220,7 +220,7 @@ def test_method_delete(self, client: OnlyFansAPI) -> None: @parametrize def test_raw_response_delete(self, client: OnlyFansAPI) -> None: response = client.trial_links.with_raw_response.delete( - trial_link_id="ut", + trial_link_id="quisquam", account="acct_XXXXXXXXXXXXXXX", ) @@ -233,7 +233,7 @@ def test_raw_response_delete(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_delete(self, client: OnlyFansAPI) -> None: with client.trial_links.with_streaming_response.delete( - trial_link_id="ut", + trial_link_id="quisquam", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -249,7 +249,7 @@ def test_streaming_response_delete(self, client: OnlyFansAPI) -> None: def test_path_params_delete(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.trial_links.with_raw_response.delete( - trial_link_id="ut", + trial_link_id="quisquam", account="", ) @@ -327,7 +327,7 @@ def test_path_params_list_spenders(self, client: OnlyFansAPI) -> None: @parametrize def test_method_list_subscribers(self, client: OnlyFansAPI) -> None: trial_link = client.trial_links.list_subscribers( - trial_link_id="est", + trial_link_id="ut", account="acct_XXXXXXXXXXXXXXX", limit=10, offset=0, @@ -338,7 +338,7 @@ def test_method_list_subscribers(self, client: OnlyFansAPI) -> None: @parametrize def test_raw_response_list_subscribers(self, client: OnlyFansAPI) -> None: response = client.trial_links.with_raw_response.list_subscribers( - trial_link_id="est", + trial_link_id="ut", account="acct_XXXXXXXXXXXXXXX", limit=10, offset=0, @@ -353,7 +353,7 @@ def test_raw_response_list_subscribers(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_list_subscribers(self, client: OnlyFansAPI) -> None: with client.trial_links.with_streaming_response.list_subscribers( - trial_link_id="est", + trial_link_id="ut", account="acct_XXXXXXXXXXXXXXX", limit=10, offset=0, @@ -371,7 +371,7 @@ def test_streaming_response_list_subscribers(self, client: OnlyFansAPI) -> None: def test_path_params_list_subscribers(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.trial_links.with_raw_response.list_subscribers( - trial_link_id="est", + trial_link_id="ut", account="", limit=10, offset=0, @@ -389,7 +389,7 @@ def test_path_params_list_subscribers(self, client: OnlyFansAPI) -> None: @parametrize def test_method_retrieve_cohort_arps(self, client: OnlyFansAPI) -> None: trial_link = client.trial_links.retrieve_cohort_arps( - trial_link_id="voluptates", + trial_link_id="sapiente", account="acct_XXXXXXXXXXXXXXX", ) assert trial_link is None @@ -398,7 +398,7 @@ def test_method_retrieve_cohort_arps(self, client: OnlyFansAPI) -> None: @parametrize def test_method_retrieve_cohort_arps_with_all_params(self, client: OnlyFansAPI) -> None: trial_link = client.trial_links.retrieve_cohort_arps( - trial_link_id="voluptates", + trial_link_id="sapiente", account="acct_XXXXXXXXXXXXXXX", acquisition_end="2026-01-31T23:59:59Z", acquisition_start="2026-01-01T00:00:00Z", @@ -410,7 +410,7 @@ def test_method_retrieve_cohort_arps_with_all_params(self, client: OnlyFansAPI) @parametrize def test_raw_response_retrieve_cohort_arps(self, client: OnlyFansAPI) -> None: response = client.trial_links.with_raw_response.retrieve_cohort_arps( - trial_link_id="voluptates", + trial_link_id="sapiente", account="acct_XXXXXXXXXXXXXXX", ) @@ -423,7 +423,7 @@ def test_raw_response_retrieve_cohort_arps(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_retrieve_cohort_arps(self, client: OnlyFansAPI) -> None: with client.trial_links.with_streaming_response.retrieve_cohort_arps( - trial_link_id="voluptates", + trial_link_id="sapiente", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -439,7 +439,7 @@ def test_streaming_response_retrieve_cohort_arps(self, client: OnlyFansAPI) -> N def test_path_params_retrieve_cohort_arps(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.trial_links.with_raw_response.retrieve_cohort_arps( - trial_link_id="voluptates", + trial_link_id="sapiente", account="", ) @@ -453,7 +453,7 @@ def test_path_params_retrieve_cohort_arps(self, client: OnlyFansAPI) -> None: @parametrize def test_method_retrieve_stats(self, client: OnlyFansAPI) -> None: trial_link = client.trial_links.retrieve_stats( - trial_link_id="fugit", + trial_link_id="esse", account="acct_XXXXXXXXXXXXXXX", ) assert_matches_type(TrialLinkRetrieveStatsResponse, trial_link, path=["response"]) @@ -462,7 +462,7 @@ def test_method_retrieve_stats(self, client: OnlyFansAPI) -> None: @parametrize def test_method_retrieve_stats_with_all_params(self, client: OnlyFansAPI) -> None: trial_link = client.trial_links.retrieve_stats( - trial_link_id="fugit", + trial_link_id="esse", account="acct_XXXXXXXXXXXXXXX", date_end="2026-01-31T23:59:59Z", date_start="2026-01-01T00:00:00Z", @@ -473,7 +473,7 @@ def test_method_retrieve_stats_with_all_params(self, client: OnlyFansAPI) -> Non @parametrize def test_raw_response_retrieve_stats(self, client: OnlyFansAPI) -> None: response = client.trial_links.with_raw_response.retrieve_stats( - trial_link_id="fugit", + trial_link_id="esse", account="acct_XXXXXXXXXXXXXXX", ) @@ -486,7 +486,7 @@ def test_raw_response_retrieve_stats(self, client: OnlyFansAPI) -> None: @parametrize def test_streaming_response_retrieve_stats(self, client: OnlyFansAPI) -> None: with client.trial_links.with_streaming_response.retrieve_stats( - trial_link_id="fugit", + trial_link_id="esse", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -502,7 +502,7 @@ def test_streaming_response_retrieve_stats(self, client: OnlyFansAPI) -> None: def test_path_params_retrieve_stats(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.trial_links.with_raw_response.retrieve_stats( - trial_link_id="fugit", + trial_link_id="esse", account="", ) @@ -589,7 +589,7 @@ async def test_path_params_create(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_method_retrieve(self, async_client: AsyncOnlyFansAPI) -> None: trial_link = await async_client.trial_links.retrieve( - trial_link_id="ut", + trial_link_id="quisquam", account="acct_XXXXXXXXXXXXXXX", ) assert_matches_type(TrialLinkRetrieveResponse, trial_link, path=["response"]) @@ -598,7 +598,7 @@ async def test_method_retrieve(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_raw_response_retrieve(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.trial_links.with_raw_response.retrieve( - trial_link_id="ut", + trial_link_id="quisquam", account="acct_XXXXXXXXXXXXXXX", ) @@ -611,7 +611,7 @@ async def test_raw_response_retrieve(self, async_client: AsyncOnlyFansAPI) -> No @parametrize async def test_streaming_response_retrieve(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.trial_links.with_streaming_response.retrieve( - trial_link_id="ut", + trial_link_id="quisquam", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -627,7 +627,7 @@ async def test_streaming_response_retrieve(self, async_client: AsyncOnlyFansAPI) async def test_path_params_retrieve(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.trial_links.with_raw_response.retrieve( - trial_link_id="ut", + trial_link_id="quisquam", account="", ) @@ -704,7 +704,7 @@ async def test_path_params_list(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_method_delete(self, async_client: AsyncOnlyFansAPI) -> None: trial_link = await async_client.trial_links.delete( - trial_link_id="ut", + trial_link_id="quisquam", account="acct_XXXXXXXXXXXXXXX", ) assert_matches_type(TrialLinkDeleteResponse, trial_link, path=["response"]) @@ -713,7 +713,7 @@ async def test_method_delete(self, async_client: AsyncOnlyFansAPI) -> None: @parametrize async def test_raw_response_delete(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.trial_links.with_raw_response.delete( - trial_link_id="ut", + trial_link_id="quisquam", account="acct_XXXXXXXXXXXXXXX", ) @@ -726,7 +726,7 @@ async def test_raw_response_delete(self, async_client: AsyncOnlyFansAPI) -> None @parametrize async def test_streaming_response_delete(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.trial_links.with_streaming_response.delete( - trial_link_id="ut", + trial_link_id="quisquam", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -742,7 +742,7 @@ async def test_streaming_response_delete(self, async_client: AsyncOnlyFansAPI) - async def test_path_params_delete(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.trial_links.with_raw_response.delete( - trial_link_id="ut", + trial_link_id="quisquam", account="", ) @@ -820,7 +820,7 @@ async def test_path_params_list_spenders(self, async_client: AsyncOnlyFansAPI) - @parametrize async def test_method_list_subscribers(self, async_client: AsyncOnlyFansAPI) -> None: trial_link = await async_client.trial_links.list_subscribers( - trial_link_id="est", + trial_link_id="ut", account="acct_XXXXXXXXXXXXXXX", limit=10, offset=0, @@ -831,7 +831,7 @@ async def test_method_list_subscribers(self, async_client: AsyncOnlyFansAPI) -> @parametrize async def test_raw_response_list_subscribers(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.trial_links.with_raw_response.list_subscribers( - trial_link_id="est", + trial_link_id="ut", account="acct_XXXXXXXXXXXXXXX", limit=10, offset=0, @@ -846,7 +846,7 @@ async def test_raw_response_list_subscribers(self, async_client: AsyncOnlyFansAP @parametrize async def test_streaming_response_list_subscribers(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.trial_links.with_streaming_response.list_subscribers( - trial_link_id="est", + trial_link_id="ut", account="acct_XXXXXXXXXXXXXXX", limit=10, offset=0, @@ -864,7 +864,7 @@ async def test_streaming_response_list_subscribers(self, async_client: AsyncOnly async def test_path_params_list_subscribers(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.trial_links.with_raw_response.list_subscribers( - trial_link_id="est", + trial_link_id="ut", account="", limit=10, offset=0, @@ -882,7 +882,7 @@ async def test_path_params_list_subscribers(self, async_client: AsyncOnlyFansAPI @parametrize async def test_method_retrieve_cohort_arps(self, async_client: AsyncOnlyFansAPI) -> None: trial_link = await async_client.trial_links.retrieve_cohort_arps( - trial_link_id="voluptates", + trial_link_id="sapiente", account="acct_XXXXXXXXXXXXXXX", ) assert trial_link is None @@ -891,7 +891,7 @@ async def test_method_retrieve_cohort_arps(self, async_client: AsyncOnlyFansAPI) @parametrize async def test_method_retrieve_cohort_arps_with_all_params(self, async_client: AsyncOnlyFansAPI) -> None: trial_link = await async_client.trial_links.retrieve_cohort_arps( - trial_link_id="voluptates", + trial_link_id="sapiente", account="acct_XXXXXXXXXXXXXXX", acquisition_end="2026-01-31T23:59:59Z", acquisition_start="2026-01-01T00:00:00Z", @@ -903,7 +903,7 @@ async def test_method_retrieve_cohort_arps_with_all_params(self, async_client: A @parametrize async def test_raw_response_retrieve_cohort_arps(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.trial_links.with_raw_response.retrieve_cohort_arps( - trial_link_id="voluptates", + trial_link_id="sapiente", account="acct_XXXXXXXXXXXXXXX", ) @@ -916,7 +916,7 @@ async def test_raw_response_retrieve_cohort_arps(self, async_client: AsyncOnlyFa @parametrize async def test_streaming_response_retrieve_cohort_arps(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.trial_links.with_streaming_response.retrieve_cohort_arps( - trial_link_id="voluptates", + trial_link_id="sapiente", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -932,7 +932,7 @@ async def test_streaming_response_retrieve_cohort_arps(self, async_client: Async async def test_path_params_retrieve_cohort_arps(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.trial_links.with_raw_response.retrieve_cohort_arps( - trial_link_id="voluptates", + trial_link_id="sapiente", account="", ) @@ -946,7 +946,7 @@ async def test_path_params_retrieve_cohort_arps(self, async_client: AsyncOnlyFan @parametrize async def test_method_retrieve_stats(self, async_client: AsyncOnlyFansAPI) -> None: trial_link = await async_client.trial_links.retrieve_stats( - trial_link_id="fugit", + trial_link_id="esse", account="acct_XXXXXXXXXXXXXXX", ) assert_matches_type(TrialLinkRetrieveStatsResponse, trial_link, path=["response"]) @@ -955,7 +955,7 @@ async def test_method_retrieve_stats(self, async_client: AsyncOnlyFansAPI) -> No @parametrize async def test_method_retrieve_stats_with_all_params(self, async_client: AsyncOnlyFansAPI) -> None: trial_link = await async_client.trial_links.retrieve_stats( - trial_link_id="fugit", + trial_link_id="esse", account="acct_XXXXXXXXXXXXXXX", date_end="2026-01-31T23:59:59Z", date_start="2026-01-01T00:00:00Z", @@ -966,7 +966,7 @@ async def test_method_retrieve_stats_with_all_params(self, async_client: AsyncOn @parametrize async def test_raw_response_retrieve_stats(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.trial_links.with_raw_response.retrieve_stats( - trial_link_id="fugit", + trial_link_id="esse", account="acct_XXXXXXXXXXXXXXX", ) @@ -979,7 +979,7 @@ async def test_raw_response_retrieve_stats(self, async_client: AsyncOnlyFansAPI) @parametrize async def test_streaming_response_retrieve_stats(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.trial_links.with_streaming_response.retrieve_stats( - trial_link_id="fugit", + trial_link_id="esse", account="acct_XXXXXXXXXXXXXXX", ) as response: assert not response.is_closed @@ -995,7 +995,7 @@ async def test_streaming_response_retrieve_stats(self, async_client: AsyncOnlyFa async def test_path_params_retrieve_stats(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.trial_links.with_raw_response.retrieve_stats( - trial_link_id="fugit", + trial_link_id="esse", account="", ) diff --git a/tests/api_resources/test_user_lists.py b/tests/api_resources/test_user_lists.py index 03b0982..3675e36 100644 --- a/tests/api_resources/test_user_lists.py +++ b/tests/api_resources/test_user_lists.py @@ -28,7 +28,7 @@ class TestUserLists: def test_method_create(self, client: OnlyFansAPI) -> None: user_list = client.user_lists.create( account="acct_XXXXXXXXXXXXXXX", - name="eujuvuhkododglgiobt", + name="qrruxylgb", ) assert_matches_type(UserListCreateResponse, user_list, path=["response"]) @@ -37,7 +37,7 @@ def test_method_create(self, client: OnlyFansAPI) -> None: def test_raw_response_create(self, client: OnlyFansAPI) -> None: response = client.user_lists.with_raw_response.create( account="acct_XXXXXXXXXXXXXXX", - name="eujuvuhkododglgiobt", + name="qrruxylgb", ) assert response.is_closed is True @@ -50,7 +50,7 @@ def test_raw_response_create(self, client: OnlyFansAPI) -> None: def test_streaming_response_create(self, client: OnlyFansAPI) -> None: with client.user_lists.with_streaming_response.create( account="acct_XXXXXXXXXXXXXXX", - name="eujuvuhkododglgiobt", + name="qrruxylgb", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -66,7 +66,7 @@ def test_path_params_create(self, client: OnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): client.user_lists.with_raw_response.create( account="", - name="eujuvuhkododglgiobt", + name="qrruxylgb", ) @pytest.mark.skip(reason="Mock server tests are disabled") @@ -304,7 +304,7 @@ class TestAsyncUserLists: async def test_method_create(self, async_client: AsyncOnlyFansAPI) -> None: user_list = await async_client.user_lists.create( account="acct_XXXXXXXXXXXXXXX", - name="eujuvuhkododglgiobt", + name="qrruxylgb", ) assert_matches_type(UserListCreateResponse, user_list, path=["response"]) @@ -313,7 +313,7 @@ async def test_method_create(self, async_client: AsyncOnlyFansAPI) -> None: async def test_raw_response_create(self, async_client: AsyncOnlyFansAPI) -> None: response = await async_client.user_lists.with_raw_response.create( account="acct_XXXXXXXXXXXXXXX", - name="eujuvuhkododglgiobt", + name="qrruxylgb", ) assert response.is_closed is True @@ -326,7 +326,7 @@ async def test_raw_response_create(self, async_client: AsyncOnlyFansAPI) -> None async def test_streaming_response_create(self, async_client: AsyncOnlyFansAPI) -> None: async with async_client.user_lists.with_streaming_response.create( account="acct_XXXXXXXXXXXXXXX", - name="eujuvuhkododglgiobt", + name="qrruxylgb", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -342,7 +342,7 @@ async def test_path_params_create(self, async_client: AsyncOnlyFansAPI) -> None: with pytest.raises(ValueError, match=r"Expected a non-empty value for `account` but received ''"): await async_client.user_lists.with_raw_response.create( account="", - name="eujuvuhkododglgiobt", + name="qrruxylgb", ) @pytest.mark.skip(reason="Mock server tests are disabled") diff --git a/uv.lock b/uv.lock index 3391bf7..00d873f 100644 --- a/uv.lock +++ b/uv.lock @@ -2,17 +2,17 @@ version = 1 revision = 3 requires-python = ">=3.9" resolution-markers = [ - "python_full_version >= '3.14' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and python_full_version < '3.14' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version < '3.10' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and extra == 'group-11-onlyfansapi-pydantic-v1' and extra != 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version < '3.10' and extra == 'group-11-onlyfansapi-pydantic-v1' and extra != 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra != 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version < '3.10' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra != 'group-11-onlyfansapi-pydantic-v2'", + "python_full_version >= '3.14' and extra != 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and python_full_version < '3.14' and extra != 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2'", + "python_full_version < '3.10' and extra != 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and extra == 'group-8-onlyfans-pydantic-v1' and extra != 'group-8-onlyfans-pydantic-v2'", + "python_full_version < '3.10' and extra == 'group-8-onlyfans-pydantic-v1' and extra != 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and extra != 'group-8-onlyfans-pydantic-v1' and extra != 'group-8-onlyfans-pydantic-v2'", + "python_full_version < '3.10' and extra != 'group-8-onlyfans-pydantic-v1' and extra != 'group-8-onlyfans-pydantic-v2'", ] conflicts = [[ - { package = "onlyfansapi", group = "pydantic-v1" }, - { package = "onlyfansapi", group = "pydantic-v2" }, + { package = "onlyfans", group = "pydantic-v1" }, + { package = "onlyfans", group = "pydantic-v2" }, ]] [[package]] @@ -31,7 +31,7 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "aiohappyeyeballs" }, { name = "aiosignal" }, - { name = "async-timeout", marker = "python_full_version < '3.11' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "async-timeout", marker = "python_full_version < '3.11' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, { name = "attrs" }, { name = "frozenlist" }, { name = "multidict" }, @@ -167,7 +167,7 @@ version = "1.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "frozenlist" }, - { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" } wheels = [ @@ -188,9 +188,9 @@ name = "anyio" version = "4.12.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "exceptiongroup", marker = "python_full_version < '3.11' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "exceptiongroup", marker = "python_full_version < '3.11' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, { name = "idna" }, - { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/96/f0/5eb65b2bb0d09ac6776f2eb54adee6abe8228ea05b20a5ad0e4945de8aac/anyio-4.12.1.tar.gz", hash = "sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703", size = 228685, upload-time = "2026-01-06T11:45:21.246Z" } wheels = [ @@ -265,7 +265,7 @@ name = "exceptiongroup" version = "1.3.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/50/79/66800aadf48771f6b62f7eb014e352e5d06856655206165d775e675a02c9/exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219", size = 30371, upload-time = "2025-11-21T23:01:54.787Z" } wheels = [ @@ -506,10 +506,10 @@ name = "iniconfig" version = "2.3.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and python_full_version < '3.14' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and extra == 'group-11-onlyfansapi-pydantic-v1' and extra != 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra != 'group-11-onlyfansapi-pydantic-v2'", + "python_full_version >= '3.14' and extra != 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and python_full_version < '3.14' and extra != 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and extra == 'group-8-onlyfans-pydantic-v1' and extra != 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and extra != 'group-8-onlyfans-pydantic-v1' and extra != 'group-8-onlyfans-pydantic-v2'", ] sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" } wheels = [ @@ -524,7 +524,7 @@ resolution-markers = [ "python_full_version < '3.10'", ] dependencies = [ - { name = "mdurl", marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "mdurl", marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596, upload-time = "2023-06-03T06:41:14.443Z" } wheels = [ @@ -536,13 +536,13 @@ name = "markdown-it-py" version = "4.0.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and python_full_version < '3.14' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and extra == 'group-11-onlyfansapi-pydantic-v1' and extra != 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra != 'group-11-onlyfansapi-pydantic-v2'", + "python_full_version >= '3.14' and extra != 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and python_full_version < '3.14' and extra != 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and extra == 'group-8-onlyfans-pydantic-v1' and extra != 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and extra != 'group-8-onlyfans-pydantic-v1' and extra != 'group-8-onlyfans-pydantic-v2'", ] dependencies = [ - { name = "mdurl", marker = "python_full_version >= '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "mdurl", marker = "python_full_version >= '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/5b/f5/4ec618ed16cc4f8fb3b701563655a69816155e79e24a17b651541804721d/markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3", size = 73070, upload-time = "2025-08-11T12:57:52.854Z" } wheels = [ @@ -563,7 +563,7 @@ name = "multidict" version = "6.7.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/80/1e/5492c365f222f907de1039b91f922b93fa4f764c713ee858d235495d8f50/multidict-6.7.0.tar.gz", hash = "sha256:c6e99d9a65ca282e578dfea819cfa9c0a62b2499d8677392e09feaf305e9e6f5", size = 101834, upload-time = "2025-10-06T14:52:30.657Z" } wheels = [ @@ -721,7 +721,7 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "mypy-extensions" }, { name = "pathspec" }, - { name = "tomli", marker = "python_full_version < '3.11' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "tomli", marker = "python_full_version < '3.11' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/1e/e3/034322d5a779685218ed69286c32faa505247f1f096251ef66c8fd203b08/mypy-1.17.0.tar.gz", hash = "sha256:e5d7ccc08ba089c06e2f5629c660388ef1fee708444f1dee0b9203fa031dee03", size = 3352114, upload-time = "2025-07-14T20:34:30.181Z" } @@ -778,15 +778,15 @@ wheels = [ ] [[package]] -name = "onlyfansapi" +name = "onlyfans" version = "0.0.1" source = { editable = "." } dependencies = [ { name = "anyio" }, { name = "distro" }, { name = "httpx" }, - { name = "pydantic", version = "1.10.26", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'group-11-onlyfansapi-pydantic-v1'" }, - { name = "pydantic", version = "2.12.5", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'group-11-onlyfansapi-pydantic-v2' or extra != 'group-11-onlyfansapi-pydantic-v1'" }, + { name = "pydantic", version = "1.10.26", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'group-8-onlyfans-pydantic-v1'" }, + { name = "pydantic", version = "2.12.5", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'group-8-onlyfans-pydantic-v2' or extra != 'group-8-onlyfans-pydantic-v1'" }, { name = "sniffio" }, { name = "typing-extensions" }, ] @@ -803,16 +803,16 @@ dev = [ { name = "importlib-metadata" }, { name = "mypy" }, { name = "pyright" }, - { name = "pytest", version = "8.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "pytest", version = "9.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "pytest-asyncio", version = "1.2.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "pytest-asyncio", version = "1.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "pytest", version = "8.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "pytest", version = "9.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "pytest-asyncio", version = "1.2.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "pytest-asyncio", version = "1.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, { name = "pytest-xdist" }, { name = "respx" }, { name = "rich" }, { name = "ruff" }, - { name = "time-machine", version = "2.19.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "time-machine", version = "3.2.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "time-machine", version = "2.19.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "time-machine", version = "3.2.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, ] pydantic-v1 = [ { name = "pydantic", version = "1.10.26", source = { registry = "https://pypi.org/simple" } }, @@ -1019,7 +1019,7 @@ resolution-markers = [ "python_full_version < '3.10'", ] dependencies = [ - { name = "typing-extensions", marker = "extra == 'group-11-onlyfansapi-pydantic-v1'" }, + { name = "typing-extensions", marker = "extra == 'group-8-onlyfans-pydantic-v1'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/7b/da/fd89f987a376c807cd81ea0eff4589aade783bbb702637b4734ef2c743a2/pydantic-1.10.26.tar.gz", hash = "sha256:8c6aa39b494c5af092e690127c283d84f363ac36017106a9e66cb33a22ac412e", size = 357906, upload-time = "2025-12-18T15:47:46.557Z" } wheels = [ @@ -1061,17 +1061,17 @@ name = "pydantic" version = "2.12.5" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and python_full_version < '3.14' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version < '3.10' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra != 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version < '3.10' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra != 'group-11-onlyfansapi-pydantic-v2'", + "python_full_version >= '3.14' and extra != 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and python_full_version < '3.14' and extra != 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2'", + "python_full_version < '3.10' and extra != 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and extra != 'group-8-onlyfans-pydantic-v1' and extra != 'group-8-onlyfans-pydantic-v2'", + "python_full_version < '3.10' and extra != 'group-8-onlyfans-pydantic-v1' and extra != 'group-8-onlyfans-pydantic-v2'", ] dependencies = [ - { name = "annotated-types", marker = "extra == 'group-11-onlyfansapi-pydantic-v2' or extra != 'group-11-onlyfansapi-pydantic-v1'" }, - { name = "pydantic-core", marker = "extra == 'group-11-onlyfansapi-pydantic-v2' or extra != 'group-11-onlyfansapi-pydantic-v1'" }, - { name = "typing-extensions", marker = "extra == 'group-11-onlyfansapi-pydantic-v2' or extra != 'group-11-onlyfansapi-pydantic-v1'" }, - { name = "typing-inspection", marker = "extra == 'group-11-onlyfansapi-pydantic-v2' or extra != 'group-11-onlyfansapi-pydantic-v1'" }, + { name = "annotated-types", marker = "extra == 'group-8-onlyfans-pydantic-v2' or extra != 'group-8-onlyfans-pydantic-v1'" }, + { name = "pydantic-core", marker = "extra == 'group-8-onlyfans-pydantic-v2' or extra != 'group-8-onlyfans-pydantic-v1'" }, + { name = "typing-extensions", marker = "extra == 'group-8-onlyfans-pydantic-v2' or extra != 'group-8-onlyfans-pydantic-v1'" }, + { name = "typing-inspection", marker = "extra == 'group-8-onlyfans-pydantic-v2' or extra != 'group-8-onlyfans-pydantic-v1'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/69/44/36f1a6e523abc58ae5f928898e4aca2e0ea509b5aa6f6f392a5d882be928/pydantic-2.12.5.tar.gz", hash = "sha256:4d351024c75c0f085a9febbb665ce8c0c6ec5d30e903bdb6394b7ede26aebb49", size = 821591, upload-time = "2025-11-26T15:11:46.471Z" } wheels = [ @@ -1083,7 +1083,7 @@ name = "pydantic-core" version = "2.41.5" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "typing-extensions", marker = "extra == 'group-11-onlyfansapi-pydantic-v2' or extra != 'group-11-onlyfansapi-pydantic-v1'" }, + { name = "typing-extensions", marker = "extra == 'group-8-onlyfans-pydantic-v2' or extra != 'group-8-onlyfans-pydantic-v1'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/71/70/23b021c950c2addd24ec408e9ab05d59b035b39d97cdc1130e1bce647bb6/pydantic_core-2.41.5.tar.gz", hash = "sha256:08daa51ea16ad373ffd5e7606252cc32f07bc72b28284b6bc9c6df804816476e", size = 460952, upload-time = "2025-11-04T13:43:49.098Z" } wheels = [ @@ -1239,13 +1239,13 @@ resolution-markers = [ "python_full_version < '3.10'", ] dependencies = [ - { name = "colorama", marker = "(python_full_version < '3.10' and sys_platform == 'win32') or (python_full_version >= '3.10' and extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2') or (sys_platform != 'win32' and extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "exceptiongroup", marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "iniconfig", version = "2.1.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "packaging", marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "pluggy", marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "pygments", marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "tomli", marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "colorama", marker = "(python_full_version < '3.10' and sys_platform == 'win32') or (python_full_version >= '3.10' and extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2') or (sys_platform != 'win32' and extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "exceptiongroup", marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "iniconfig", version = "2.1.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "packaging", marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "pluggy", marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "pygments", marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "tomli", marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a3/5c/00a0e072241553e1a7496d638deababa67c5058571567b92a7eaa258397c/pytest-8.4.2.tar.gz", hash = "sha256:86c0d0b93306b961d58d62a4db4879f27fe25513d4b969df351abdddb3c30e01", size = 1519618, upload-time = "2025-09-04T14:34:22.711Z" } wheels = [ @@ -1257,19 +1257,19 @@ name = "pytest" version = "9.0.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and python_full_version < '3.14' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and extra == 'group-11-onlyfansapi-pydantic-v1' and extra != 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra != 'group-11-onlyfansapi-pydantic-v2'", + "python_full_version >= '3.14' and extra != 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and python_full_version < '3.14' and extra != 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and extra == 'group-8-onlyfans-pydantic-v1' and extra != 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and extra != 'group-8-onlyfans-pydantic-v1' and extra != 'group-8-onlyfans-pydantic-v2'", ] dependencies = [ - { name = "colorama", marker = "(python_full_version >= '3.10' and sys_platform == 'win32') or (python_full_version < '3.10' and extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2') or (sys_platform != 'win32' and extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "exceptiongroup", marker = "python_full_version == '3.10.*' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "iniconfig", version = "2.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "packaging", marker = "python_full_version >= '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "pluggy", marker = "python_full_version >= '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "pygments", marker = "python_full_version >= '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "tomli", marker = "python_full_version == '3.10.*' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "colorama", marker = "(python_full_version >= '3.10' and sys_platform == 'win32') or (python_full_version < '3.10' and extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2') or (sys_platform != 'win32' and extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "exceptiongroup", marker = "python_full_version == '3.10.*' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "iniconfig", version = "2.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "packaging", marker = "python_full_version >= '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "pluggy", marker = "python_full_version >= '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "pygments", marker = "python_full_version >= '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "tomli", marker = "python_full_version == '3.10.*' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/d1/db/7ef3487e0fb0049ddb5ce41d3a49c235bf9ad299b6a25d5780a89f19230f/pytest-9.0.2.tar.gz", hash = "sha256:75186651a92bd89611d1d9fc20f0b4345fd827c41ccd5c299a868a05d70edf11", size = 1568901, upload-time = "2025-12-06T21:30:51.014Z" } wheels = [ @@ -1284,9 +1284,9 @@ resolution-markers = [ "python_full_version < '3.10'", ] dependencies = [ - { name = "backports-asyncio-runner", marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "pytest", version = "8.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "typing-extensions", marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "backports-asyncio-runner", marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "pytest", version = "8.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "typing-extensions", marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/42/86/9e3c5f48f7b7b638b216e4b9e645f54d199d7abbbab7a64a13b4e12ba10f/pytest_asyncio-1.2.0.tar.gz", hash = "sha256:c609a64a2a8768462d0c99811ddb8bd2583c33fd33cf7f21af1c142e824ffb57", size = 50119, upload-time = "2025-09-12T07:33:53.816Z" } wheels = [ @@ -1298,15 +1298,15 @@ name = "pytest-asyncio" version = "1.3.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and python_full_version < '3.14' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and extra == 'group-11-onlyfansapi-pydantic-v1' and extra != 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra != 'group-11-onlyfansapi-pydantic-v2'", + "python_full_version >= '3.14' and extra != 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and python_full_version < '3.14' and extra != 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and extra == 'group-8-onlyfans-pydantic-v1' and extra != 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and extra != 'group-8-onlyfans-pydantic-v1' and extra != 'group-8-onlyfans-pydantic-v2'", ] dependencies = [ - { name = "backports-asyncio-runner", marker = "python_full_version == '3.10.*' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "pytest", version = "9.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "typing-extensions", marker = "(python_full_version >= '3.10' and python_full_version < '3.13') or (python_full_version < '3.10' and extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2') or (python_full_version >= '3.13' and extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "backports-asyncio-runner", marker = "python_full_version == '3.10.*' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "pytest", version = "9.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "typing-extensions", marker = "(python_full_version >= '3.10' and python_full_version < '3.13') or (python_full_version < '3.10' and extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2') or (python_full_version >= '3.13' and extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/90/2c/8af215c0f776415f3590cac4f9086ccefd6fd463befeae41cd4d3f193e5a/pytest_asyncio-1.3.0.tar.gz", hash = "sha256:d7f52f36d231b80ee124cd216ffb19369aa168fc10095013c6b014a34d3ee9e5", size = 50087, upload-time = "2025-11-10T16:07:47.256Z" } wheels = [ @@ -1319,8 +1319,8 @@ version = "3.8.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "execnet" }, - { name = "pytest", version = "8.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "pytest", version = "9.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "pytest", version = "8.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "pytest", version = "9.0.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/78/b4/439b179d1ff526791eb921115fca8e44e596a13efeda518b9d845a619450/pytest_xdist-3.8.0.tar.gz", hash = "sha256:7e578125ec9bc6050861aa93f2d59f1d8d085595d6551c2c90b6f4fad8d3a9f1", size = 88069, upload-time = "2025-07-01T13:30:59.346Z" } wheels = [ @@ -1332,7 +1332,7 @@ name = "python-dateutil" version = "2.9.0.post0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "six", marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "six", marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" } wheels = [ @@ -1356,8 +1356,8 @@ name = "rich" version = "14.2.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "markdown-it-py", version = "3.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, - { name = "markdown-it-py", version = "4.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "markdown-it-py", version = "3.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, + { name = "markdown-it-py", version = "4.0.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, { name = "pygments" }, ] sdist = { url = "https://files.pythonhosted.org/packages/fb/d2/8920e102050a0de7bfabeb4c4614a49248cf8d5d7a8d01885fbb24dc767a/rich-14.2.0.tar.gz", hash = "sha256:73ff50c7c0c1c77c8243079283f4edb376f0f6442433aecb8ce7e6d0b92d1fe4", size = 219990, upload-time = "2025-10-09T14:16:53.064Z" } @@ -1417,7 +1417,7 @@ resolution-markers = [ "python_full_version < '3.10'", ] dependencies = [ - { name = "python-dateutil", marker = "python_full_version < '3.10' or (extra == 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2')" }, + { name = "python-dateutil", marker = "python_full_version < '3.10' or (extra == 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f8/a4/1b5fdd165f61b67f445fac2a7feb0c655118edef429cd09ff5a8067f7f1d/time_machine-2.19.0.tar.gz", hash = "sha256:7c5065a8b3f2bbb449422c66ef71d114d3f909c276a6469642ecfffb6a0fcd29", size = 14576, upload-time = "2025-08-19T17:22:08.402Z" } wheels = [ @@ -1516,10 +1516,10 @@ name = "time-machine" version = "3.2.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and python_full_version < '3.14' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra == 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and extra == 'group-11-onlyfansapi-pydantic-v1' and extra != 'group-11-onlyfansapi-pydantic-v2'", - "python_full_version >= '3.10' and extra != 'group-11-onlyfansapi-pydantic-v1' and extra != 'group-11-onlyfansapi-pydantic-v2'", + "python_full_version >= '3.14' and extra != 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and python_full_version < '3.14' and extra != 'group-8-onlyfans-pydantic-v1' and extra == 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and extra == 'group-8-onlyfans-pydantic-v1' and extra != 'group-8-onlyfans-pydantic-v2'", + "python_full_version >= '3.10' and extra != 'group-8-onlyfans-pydantic-v1' and extra != 'group-8-onlyfans-pydantic-v2'", ] sdist = { url = "https://files.pythonhosted.org/packages/02/fc/37b02f6094dbb1f851145330460532176ed2f1dc70511a35828166c41e52/time_machine-3.2.0.tar.gz", hash = "sha256:a4ddd1cea17b8950e462d1805a42b20c81eb9aafc8f66b392dd5ce997e037d79", size = 14804, upload-time = "2025-12-17T23:33:02.599Z" } wheels = [ @@ -1670,7 +1670,7 @@ name = "typing-inspection" version = "0.4.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "typing-extensions", marker = "extra == 'group-11-onlyfansapi-pydantic-v2' or extra != 'group-11-onlyfansapi-pydantic-v1'" }, + { name = "typing-extensions", marker = "extra == 'group-8-onlyfans-pydantic-v2' or extra != 'group-8-onlyfans-pydantic-v1'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/55/e3/70399cb7dd41c10ac53367ae42139cf4b1ca5f36bb3dc6c9d33acdb43655/typing_inspection-0.4.2.tar.gz", hash = "sha256:ba561c48a67c5958007083d386c3295464928b01faa735ab8547c5692e87f464", size = 75949, upload-time = "2025-10-01T02:14:41.687Z" } wheels = [