From 38d1c5117a6f321890cbed43145291d7f1ba80cd Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Wed, 29 May 2024 17:12:31 +0300 Subject: [PATCH 01/24] chore: run CQ CI only with PR and by cron --- .github/workflows/codeql.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index e0c92f423e..7f0b0bbec4 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -12,11 +12,9 @@ name: "CodeQL" on: - push: - branches: [ "main"] pull_request: - # The branches below must be a subset of the branches above - branches: [ "main" ] + branches: + - main schedule: - cron: '39 20 * * 0' From 1c49bd5c82f4ad0040433443f8ff98ff520b0bf7 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Wed, 29 May 2024 17:13:21 +0300 Subject: [PATCH 02/24] chore: run DR CI only if pyproject changed --- .github/workflows/dependency-review.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dependency-review.yaml b/.github/workflows/dependency-review.yaml index 0bc48198f8..56d3aafc09 100644 --- a/.github/workflows/dependency-review.yaml +++ b/.github/workflows/dependency-review.yaml @@ -5,7 +5,13 @@ # Source repository: https://github.com/actions/dependency-review-action # Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement name: 'Dependency Review' -on: [pull_request] + +on: + pull_request: + branches: + - main + paths: + - pyproject.toml permissions: contents: read From c78bcc4111902526e4bd067ea8da173ed3623158 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Wed, 29 May 2024 17:14:05 +0300 Subject: [PATCH 03/24] format: correct deploy docs CI --- .github/workflows/deploy-docs.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy-docs.yaml b/.github/workflows/deploy-docs.yaml index c9da5942b6..b600b4af9b 100644 --- a/.github/workflows/deploy-docs.yaml +++ b/.github/workflows/deploy-docs.yaml @@ -1,4 +1,5 @@ name: Deploy Docs + on: push: branches: @@ -10,6 +11,7 @@ on: permissions: contents: write + jobs: deploy_docs: runs-on: ubuntu-latest From 0c35e2c9200d671c3738c6ae60d214eba195d01f Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Wed, 29 May 2024 17:15:07 +0300 Subject: [PATCH 04/24] chore: run coverage publish CI only after PR merged --- .github/workflows/publish_coverage.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish_coverage.yml b/.github/workflows/publish_coverage.yml index f263ee33d4..c7f5a6ac3f 100644 --- a/.github/workflows/publish_coverage.yml +++ b/.github/workflows/publish_coverage.yml @@ -1,15 +1,13 @@ name: Smokeshow on: - workflow_run: - workflows: [Test] - types: [completed] - + push: + branches: + - main permissions: statuses: write - jobs: smokeshow: if: ${{ github.event.workflow_run.conclusion == 'success' }} @@ -24,13 +22,13 @@ jobs: - uses: dawidd6/action-download-artifact@v3.1.4 # nosemgrep with: - workflow: test.yaml + workflow: test_pr.yaml commit: ${{ github.event.workflow_run.head_sha }} - run: smokeshow upload coverage-html env: SMOKESHOW_GITHUB_STATUS_DESCRIPTION: Coverage {coverage-percentage} - SMOKESHOW_GITHUB_COVERAGE_THRESHOLD: 70 + SMOKESHOW_GITHUB_COVERAGE_THRESHOLD: 90 SMOKESHOW_GITHUB_CONTEXT: coverage SMOKESHOW_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SMOKESHOW_GITHUB_PR_HEAD_SHA: ${{ github.event.workflow_run.head_sha }} From dadc8ae75ae496c3b77e39c5688d7baccd239fb6 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Wed, 29 May 2024 17:15:45 +0300 Subject: [PATCH 05/24] chore: run tests only in PR --- .github/workflows/{test.yaml => test_pr.yaml} | 50 +++++++++---------- 1 file changed, 23 insertions(+), 27 deletions(-) rename .github/workflows/{test.yaml => test_pr.yaml} (95%) diff --git a/.github/workflows/test.yaml b/.github/workflows/test_pr.yaml similarity index 95% rename from .github/workflows/test.yaml rename to .github/workflows/test_pr.yaml index ddf783ded9..46a866094c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test_pr.yaml @@ -1,12 +1,8 @@ -name: Test +name: Test-PR on: - push: - branches: - - main pull_request: types: [opened, synchronize] - merge_group: jobs: static_analysis: @@ -40,27 +36,27 @@ jobs: shell: bash run: semgrep scan --config auto --error - check-docs-changes: - if: github.event.pull_request.draft == false - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: "3.12" - cache: "pip" - cache-dependency-path: pyproject.toml - - name: Install Dependencies - if: steps.cache.outputs.cache-hit != 'true' - run: pip install -e ".[dev]" - - name: Run build docs - run: bash scripts/build-docs.sh - - name: Check for changes - id: git-diff - run: git diff --exit-code - - test: + # check-docs-changes: + # if: github.event.pull_request.draft == false + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v4 + # - name: Set up Python + # uses: actions/setup-python@v5 + # with: + # python-version: "3.12" + # cache: "pip" + # cache-dependency-path: pyproject.toml + # - name: Install Dependencies + # if: steps.cache.outputs.cache-hit != 'true' + # run: pip install -e ".[dev]" + # - name: Run build docs + # run: bash scripts/build-docs.sh + # - name: Check for changes + # id: git-diff + # run: git diff --exit-code + + test-basic: if: github.event.pull_request.draft == false runs-on: ubuntu-latest strategy: @@ -435,7 +431,7 @@ jobs: coverage-combine: if: github.event.pull_request.draft == false needs: - - test + - test-basic - test-kafka-real - test-confluent-real - test-rabbit-real From 0ea7a6ba5d46d0b27feb773843cc12f186247510 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Wed, 29 May 2024 17:20:02 +0300 Subject: [PATCH 06/24] chore: fix test CI --- .github/workflows/codeql.yml | 2 ++ .github/workflows/test_pr.yaml | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 7f0b0bbec4..a32bd7560a 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -13,6 +13,8 @@ name: "CodeQL" on: pull_request: + types: + - review_requested branches: - main schedule: diff --git a/.github/workflows/test_pr.yaml b/.github/workflows/test_pr.yaml index 46a866094c..c3dca40ded 100644 --- a/.github/workflows/test_pr.yaml +++ b/.github/workflows/test_pr.yaml @@ -2,7 +2,9 @@ name: Test-PR on: pull_request: - types: [opened, synchronize] + types: + - opened + - synchronize jobs: static_analysis: @@ -474,7 +476,6 @@ jobs: needs: - static_analysis - - check-docs-changes - coverage-combine - test-macos-latest - test-windows-latest From f88ce8e3c42cebadf87a19cab15ef877d86c4474 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Wed, 29 May 2024 17:30:04 +0300 Subject: [PATCH 07/24] chore: add CI workflows names conversation --- ...ken-links-in-docs.yaml => docs_check-broken-links.yaml} | 7 ++++--- .github/workflows/{deploy-docs.yaml => docs_deploy.yaml} | 2 +- ...e_release_notes.yaml => docs_update-release-notes.yaml} | 2 +- .github/workflows/{codeql.yml => pr_codeql.yml} | 3 ++- .../{dependency-review.yaml => pr_dependency-review.yaml} | 3 +++ .github/workflows/{test_pr.yaml => pr_tests.yaml} | 2 +- .github/workflows/publish_coverage.yml | 4 ++-- .github/workflows/{publish_pypi.yml => release_pypi.yml} | 0 8 files changed, 14 insertions(+), 9 deletions(-) rename .github/workflows/{check-broken-links-in-docs.yaml => docs_check-broken-links.yaml} (89%) rename .github/workflows/{deploy-docs.yaml => docs_deploy.yaml} (97%) rename .github/workflows/{update_release_notes.yaml => docs_update-release-notes.yaml} (97%) rename .github/workflows/{codeql.yml => pr_codeql.yml} (98%) rename .github/workflows/{dependency-review.yaml => pr_dependency-review.yaml} (95%) rename .github/workflows/{test_pr.yaml => pr_tests.yaml} (99%) rename .github/workflows/{publish_pypi.yml => release_pypi.yml} (100%) diff --git a/.github/workflows/check-broken-links-in-docs.yaml b/.github/workflows/docs_check-broken-links.yaml similarity index 89% rename from .github/workflows/check-broken-links-in-docs.yaml rename to .github/workflows/docs_check-broken-links.yaml index 98ce376519..7791a3b5c9 100644 --- a/.github/workflows/check-broken-links-in-docs.yaml +++ b/.github/workflows/docs_check-broken-links.yaml @@ -2,10 +2,11 @@ name: Check docs for broken links on: workflow_run: - workflows: ["pages-build-deployment"] - types: [completed] + types: + - completed + workflows: + - docs_deploy -jobs: check-broken-link: name: Check docs for broken links runs-on: ubuntu-latest diff --git a/.github/workflows/deploy-docs.yaml b/.github/workflows/docs_deploy.yaml similarity index 97% rename from .github/workflows/deploy-docs.yaml rename to .github/workflows/docs_deploy.yaml index b600b4af9b..d3cd1ce1d2 100644 --- a/.github/workflows/deploy-docs.yaml +++ b/.github/workflows/docs_deploy.yaml @@ -1,4 +1,4 @@ -name: Deploy Docs +name: Deploy Docs to GitHub Pages on: push: diff --git a/.github/workflows/update_release_notes.yaml b/.github/workflows/docs_update-release-notes.yaml similarity index 97% rename from .github/workflows/update_release_notes.yaml rename to .github/workflows/docs_update-release-notes.yaml index b03ea6977f..b6280cc13b 100644 --- a/.github/workflows/update_release_notes.yaml +++ b/.github/workflows/docs_update-release-notes.yaml @@ -1,4 +1,4 @@ -name: Update Release Notes +name: Create PR with updated Release Notes on: workflow_dispatch: null diff --git a/.github/workflows/codeql.yml b/.github/workflows/pr_codeql.yml similarity index 98% rename from .github/workflows/codeql.yml rename to .github/workflows/pr_codeql.yml index a32bd7560a..7e97facb72 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/pr_codeql.yml @@ -14,7 +14,8 @@ name: "CodeQL" on: pull_request: types: - - review_requested + - opened + - synchronize branches: - main schedule: diff --git a/.github/workflows/dependency-review.yaml b/.github/workflows/pr_dependency-review.yaml similarity index 95% rename from .github/workflows/dependency-review.yaml rename to .github/workflows/pr_dependency-review.yaml index 56d3aafc09..11ad023407 100644 --- a/.github/workflows/dependency-review.yaml +++ b/.github/workflows/pr_dependency-review.yaml @@ -8,6 +8,9 @@ name: 'Dependency Review' on: pull_request: + types: + - opened + - synchronize branches: - main paths: diff --git a/.github/workflows/test_pr.yaml b/.github/workflows/pr_tests.yaml similarity index 99% rename from .github/workflows/test_pr.yaml rename to .github/workflows/pr_tests.yaml index c3dca40ded..d482e1c0f7 100644 --- a/.github/workflows/test_pr.yaml +++ b/.github/workflows/pr_tests.yaml @@ -1,4 +1,4 @@ -name: Test-PR +name: Run all tests on: pull_request: diff --git a/.github/workflows/publish_coverage.yml b/.github/workflows/publish_coverage.yml index c7f5a6ac3f..232e677ccc 100644 --- a/.github/workflows/publish_coverage.yml +++ b/.github/workflows/publish_coverage.yml @@ -1,4 +1,4 @@ -name: Smokeshow +name: Publish tests coverage to Smokeshow and set coverage % status to commit on: push: @@ -20,7 +20,7 @@ jobs: - run: pip install smokeshow - - uses: dawidd6/action-download-artifact@v3.1.4 # nosemgrep + - uses: dawidd6/action-download-artifact@v3.1.4 # nosemgrep with: workflow: test_pr.yaml commit: ${{ github.event.workflow_run.head_sha }} diff --git a/.github/workflows/publish_pypi.yml b/.github/workflows/release_pypi.yml similarity index 100% rename from .github/workflows/publish_pypi.yml rename to .github/workflows/release_pypi.yml From 6a7b82b372f0c5043ce388e8c44cc3d21db9617e Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Wed, 29 May 2024 17:37:01 +0300 Subject: [PATCH 08/24] chore: add docs update references CI --- .github/workflows/docs_update-references.yaml | 30 +++++++++++++++++++ .github/workflows/pr_tests.yaml | 20 ------------- pyproject.toml | 2 +- 3 files changed, 31 insertions(+), 21 deletions(-) create mode 100644 .github/workflows/docs_update-references.yaml diff --git a/.github/workflows/docs_update-references.yaml b/.github/workflows/docs_update-references.yaml new file mode 100644 index 0000000000..a462164752 --- /dev/null +++ b/.github/workflows/docs_update-references.yaml @@ -0,0 +1,30 @@ +name: Generate API References documentation + +on: + pull_request: + types: + - opened + - synchronize + paths: + - faststream/** + +jobs: + check-docs-changes: + if: github.event.pull_request.draft == false + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.12" + cache: "pip" + cache-dependency-path: pyproject.toml + - name: Install Dependencies + if: steps.cache.outputs.cache-hit != 'true' + run: pip install -e ".[dev]" + - name: Run build docs + run: bash scripts/build-docs.sh + - name: Check for changes + id: git-diff + run: git diff --exit-code \ No newline at end of file diff --git a/.github/workflows/pr_tests.yaml b/.github/workflows/pr_tests.yaml index d482e1c0f7..204dd3c30d 100644 --- a/.github/workflows/pr_tests.yaml +++ b/.github/workflows/pr_tests.yaml @@ -38,26 +38,6 @@ jobs: shell: bash run: semgrep scan --config auto --error - # check-docs-changes: - # if: github.event.pull_request.draft == false - # runs-on: ubuntu-latest - # steps: - # - uses: actions/checkout@v4 - # - name: Set up Python - # uses: actions/setup-python@v5 - # with: - # python-version: "3.12" - # cache: "pip" - # cache-dependency-path: pyproject.toml - # - name: Install Dependencies - # if: steps.cache.outputs.cache-hit != 'true' - # run: pip install -e ".[dev]" - # - name: Run build docs - # run: bash scripts/build-docs.sh - # - name: Check for changes - # id: git-diff - # run: git diff --exit-code - test-basic: if: github.event.pull_request.draft == false runs-on: ubuntu-latest diff --git a/pyproject.toml b/pyproject.toml index 5b22e5c4c8..686cb7c2df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -79,7 +79,7 @@ otel = ["opentelemetry-sdk>=1.24.0,<2.0.0"] optionals = ["faststream[rabbit,kafka,confluent,nats,redis,otel]"] devdocs = [ - "mkdocs-material==9.5.25", + "mkdocs-material==9.5.24", "mkdocs-static-i18n==1.2.3", "mdx-include==1.4.2", "mkdocstrings[python]==0.25.1", From f9565a29b25cee262921e8ffe14b8dc28231e916 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Wed, 29 May 2024 17:43:22 +0300 Subject: [PATCH 09/24] chore: make update references CI writeable --- .github/workflows/docs_update-references.yaml | 4 ++++ .github/workflows/pr_codeql.yml | 5 +++-- .github/workflows/pr_dependency-review.yaml | 5 +++-- .github/workflows/pr_tests.yaml | 5 +++-- docs/docs/en/api/faststream/BaseMiddleware.md | 11 ----------- docs/docs/en/api/faststream/Context.md | 11 ----------- docs/docs/en/api/faststream/Depends.md | 11 ----------- docs/docs/en/api/faststream/FastStream.md | 11 ----------- docs/docs/en/api/faststream/Header.md | 11 ----------- docs/docs/en/api/faststream/Path.md | 11 ----------- docs/docs/en/api/faststream/Response.md | 11 ----------- docs/docs/en/api/faststream/TestApp.md | 11 ----------- docs/docs/en/api/faststream/app/FastStream.md | 11 ----------- docs/docs/en/api/faststream/apply_types.md | 11 ----------- .../api/faststream/asyncapi/abc/AsyncAPIOperation.md | 11 ----------- .../faststream/asyncapi/generate/get_app_schema.md | 11 ----------- .../asyncapi/generate/get_broker_channels.md | 11 ----------- .../faststream/asyncapi/generate/get_broker_server.md | 11 ----------- .../docs/en/api/faststream/asyncapi/get_app_schema.md | 11 ----------- .../en/api/faststream/asyncapi/get_asyncapi_html.md | 11 ----------- .../faststream/asyncapi/message/get_model_schema.md | 11 ----------- .../asyncapi/message/get_response_schema.md | 11 ----------- .../asyncapi/message/parse_handler_params.md | 11 ----------- .../en/api/faststream/asyncapi/proto/AsyncAPIProto.md | 11 ----------- .../docs/en/api/faststream/asyncapi/schema/Channel.md | 11 ----------- .../api/faststream/asyncapi/schema/ChannelBinding.md | 11 ----------- .../en/api/faststream/asyncapi/schema/Components.md | 11 ----------- .../docs/en/api/faststream/asyncapi/schema/Contact.md | 11 ----------- .../en/api/faststream/asyncapi/schema/ContactDict.md | 11 ----------- .../api/faststream/asyncapi/schema/CorrelationId.md | 11 ----------- .../en/api/faststream/asyncapi/schema/ExternalDocs.md | 11 ----------- .../faststream/asyncapi/schema/ExternalDocsDict.md | 11 ----------- docs/docs/en/api/faststream/asyncapi/schema/Info.md | 11 ----------- .../docs/en/api/faststream/asyncapi/schema/License.md | 11 ----------- .../en/api/faststream/asyncapi/schema/LicenseDict.md | 11 ----------- .../docs/en/api/faststream/asyncapi/schema/Message.md | 11 ----------- .../en/api/faststream/asyncapi/schema/Operation.md | 11 ----------- .../faststream/asyncapi/schema/OperationBinding.md | 11 ----------- .../en/api/faststream/asyncapi/schema/Reference.md | 11 ----------- docs/docs/en/api/faststream/asyncapi/schema/Schema.md | 11 ----------- .../asyncapi/schema/SecuritySchemaComponent.md | 11 ----------- docs/docs/en/api/faststream/asyncapi/schema/Server.md | 11 ----------- .../api/faststream/asyncapi/schema/ServerBinding.md | 11 ----------- docs/docs/en/api/faststream/asyncapi/schema/Tag.md | 11 ----------- .../docs/en/api/faststream/asyncapi/schema/TagDict.md | 11 ----------- .../asyncapi/schema/bindings/ChannelBinding.md | 11 ----------- .../asyncapi/schema/bindings/OperationBinding.md | 11 ----------- .../asyncapi/schema/bindings/ServerBinding.md | 11 ----------- .../asyncapi/schema/bindings/amqp/ChannelBinding.md | 11 ----------- .../asyncapi/schema/bindings/amqp/Exchange.md | 11 ----------- .../asyncapi/schema/bindings/amqp/OperationBinding.md | 11 ----------- .../faststream/asyncapi/schema/bindings/amqp/Queue.md | 11 ----------- .../asyncapi/schema/bindings/amqp/ServerBinding.md | 11 ----------- .../asyncapi/schema/bindings/kafka/ChannelBinding.md | 11 ----------- .../schema/bindings/kafka/OperationBinding.md | 11 ----------- .../asyncapi/schema/bindings/kafka/ServerBinding.md | 11 ----------- .../asyncapi/schema/bindings/main/ChannelBinding.md | 11 ----------- .../asyncapi/schema/bindings/main/OperationBinding.md | 11 ----------- .../asyncapi/schema/bindings/main/ServerBinding.md | 11 ----------- .../asyncapi/schema/bindings/nats/ChannelBinding.md | 11 ----------- .../asyncapi/schema/bindings/nats/OperationBinding.md | 11 ----------- .../asyncapi/schema/bindings/nats/ServerBinding.md | 11 ----------- .../asyncapi/schema/bindings/redis/ChannelBinding.md | 11 ----------- .../schema/bindings/redis/OperationBinding.md | 11 ----------- .../asyncapi/schema/bindings/redis/ServerBinding.md | 11 ----------- .../asyncapi/schema/bindings/sqs/ChannelBinding.md | 11 ----------- .../asyncapi/schema/bindings/sqs/OperationBinding.md | 11 ----------- .../asyncapi/schema/bindings/sqs/ServerBinding.md | 11 ----------- .../faststream/asyncapi/schema/channels/Channel.md | 11 ----------- .../en/api/faststream/asyncapi/schema/info/Contact.md | 11 ----------- .../faststream/asyncapi/schema/info/ContactDict.md | 11 ----------- .../en/api/faststream/asyncapi/schema/info/Info.md | 11 ----------- .../en/api/faststream/asyncapi/schema/info/License.md | 11 ----------- .../faststream/asyncapi/schema/info/LicenseDict.md | 11 ----------- .../api/faststream/asyncapi/schema/main/Components.md | 11 ----------- .../en/api/faststream/asyncapi/schema/main/Schema.md | 11 ----------- .../asyncapi/schema/message/CorrelationId.md | 11 ----------- .../api/faststream/asyncapi/schema/message/Message.md | 11 ----------- .../asyncapi/schema/operations/Operation.md | 11 ----------- .../asyncapi/schema/security/OauthFlowObj.md | 11 ----------- .../faststream/asyncapi/schema/security/OauthFlows.md | 11 ----------- .../schema/security/SecuritySchemaComponent.md | 11 ----------- .../api/faststream/asyncapi/schema/servers/Server.md | 11 ----------- .../asyncapi/schema/servers/ServerVariable.md | 11 ----------- .../faststream/asyncapi/schema/utils/ExternalDocs.md | 11 ----------- .../asyncapi/schema/utils/ExternalDocsDict.md | 11 ----------- .../api/faststream/asyncapi/schema/utils/Parameter.md | 11 ----------- .../api/faststream/asyncapi/schema/utils/Reference.md | 11 ----------- .../en/api/faststream/asyncapi/schema/utils/Tag.md | 11 ----------- .../api/faststream/asyncapi/schema/utils/TagDict.md | 11 ----------- .../api/faststream/asyncapi/site/get_asyncapi_html.md | 11 ----------- .../docs/en/api/faststream/asyncapi/site/serve_app.md | 11 ----------- .../api/faststream/asyncapi/utils/resolve_payloads.md | 11 ----------- .../en/api/faststream/asyncapi/utils/to_camelcase.md | 11 ----------- .../broker/acknowledgement_watcher/BaseWatcher.md | 11 ----------- .../broker/acknowledgement_watcher/CounterWatcher.md | 11 ----------- .../broker/acknowledgement_watcher/EndlessWatcher.md | 11 ----------- .../broker/acknowledgement_watcher/OneTryWatcher.md | 11 ----------- .../broker/acknowledgement_watcher/WatcherContext.md | 11 ----------- .../broker/acknowledgement_watcher/get_watcher.md | 11 ----------- .../en/api/faststream/broker/core/abc/ABCBroker.md | 11 ----------- .../faststream/broker/core/logging/LoggingBroker.md | 11 ----------- .../faststream/broker/core/usecase/BrokerUsecase.md | 11 ----------- .../en/api/faststream/broker/fastapi/StreamMessage.md | 11 ----------- .../en/api/faststream/broker/fastapi/StreamRoute.md | 11 ----------- .../en/api/faststream/broker/fastapi/StreamRouter.md | 11 ----------- .../api/faststream/broker/fastapi/context/Context.md | 11 ----------- .../fastapi/get_dependant/get_fastapi_dependant.md | 11 ----------- .../get_dependant/get_fastapi_native_dependant.md | 11 ----------- .../faststream/broker/fastapi/route/StreamMessage.md | 11 ----------- .../faststream/broker/fastapi/route/StreamRoute.md | 11 ----------- .../broker/fastapi/route/make_fastapi_execution.md | 11 ----------- .../faststream/broker/fastapi/router/StreamRouter.md | 11 ----------- .../en/api/faststream/broker/message/StreamMessage.md | 11 ----------- .../api/faststream/broker/message/decode_message.md | 11 ----------- .../api/faststream/broker/message/encode_message.md | 11 ----------- .../en/api/faststream/broker/message/gen_cor_id.md | 11 ----------- .../faststream/broker/middlewares/BaseMiddleware.md | 11 ----------- .../broker/middlewares/base/BaseMiddleware.md | 11 ----------- .../middlewares/logging/CriticalLogMiddleware.md | 11 ----------- .../en/api/faststream/broker/proto/EndpointProto.md | 11 ----------- docs/docs/en/api/faststream/broker/proto/SetupAble.md | 11 ----------- .../faststream/broker/publisher/fake/FakePublisher.md | 11 ----------- .../broker/publisher/proto/BasePublisherProto.md | 11 ----------- .../broker/publisher/proto/ProducerProto.md | 11 ----------- .../broker/publisher/proto/PublisherProto.md | 11 ----------- .../broker/publisher/usecase/PublisherUsecase.md | 11 ----------- .../en/api/faststream/broker/response/Response.md | 11 ----------- .../en/api/faststream/broker/router/ArgsContainer.md | 11 ----------- .../en/api/faststream/broker/router/BrokerRouter.md | 11 ----------- .../api/faststream/broker/router/SubscriberRoute.md | 11 ----------- .../en/api/faststream/broker/schemas/NameRequired.md | 11 ----------- .../broker/subscriber/call_item/HandlerItem.md | 11 ----------- .../broker/subscriber/proto/SubscriberProto.md | 11 ----------- .../broker/subscriber/usecase/SubscriberUsecase.md | 11 ----------- .../faststream/broker/types/PublisherMiddleware.md | 11 ----------- docs/docs/en/api/faststream/broker/utils/MultiLock.md | 11 ----------- .../en/api/faststream/broker/utils/default_filter.md | 11 ----------- .../faststream/broker/utils/get_watcher_context.md | 11 ----------- .../faststream/broker/utils/resolve_custom_func.md | 11 ----------- .../broker/wrapper/call/HandlerCallWrapper.md | 11 ----------- .../faststream/broker/wrapper/proto/WrapperProto.md | 11 ----------- docs/docs/en/api/faststream/cli/docs/app/gen.md | 11 ----------- docs/docs/en/api/faststream/cli/docs/app/serve.md | 11 ----------- docs/docs/en/api/faststream/cli/main/main.md | 11 ----------- docs/docs/en/api/faststream/cli/main/publish.md | 11 ----------- .../en/api/faststream/cli/main/publish_message.md | 11 ----------- docs/docs/en/api/faststream/cli/main/run.md | 11 ----------- .../en/api/faststream/cli/main/version_callback.md | 11 ----------- .../cli/supervisors/basereload/BaseReload.md | 11 ----------- .../cli/supervisors/multiprocess/Multiprocess.md | 11 ----------- .../cli/supervisors/utils/get_subprocess.md | 11 ----------- .../api/faststream/cli/supervisors/utils/set_exit.md | 11 ----------- .../cli/supervisors/utils/subprocess_started.md | 11 ----------- .../cli/supervisors/watchfiles/ExtendedFilter.md | 11 ----------- .../cli/supervisors/watchfiles/WatchReloader.md | 11 ----------- .../api/faststream/cli/utils/imports/get_app_path.md | 11 ----------- .../cli/utils/imports/import_from_string.md | 11 ----------- .../api/faststream/cli/utils/imports/import_object.md | 11 ----------- .../faststream/cli/utils/imports/try_import_app.md | 11 ----------- .../en/api/faststream/cli/utils/logs/LogLevels.md | 11 ----------- .../en/api/faststream/cli/utils/logs/get_log_level.md | 11 ----------- .../en/api/faststream/cli/utils/logs/set_log_level.md | 11 ----------- .../api/faststream/cli/utils/parser/parse_cli_args.md | 11 ----------- .../api/faststream/cli/utils/parser/remove_prefix.md | 11 ----------- docs/docs/en/api/faststream/confluent/KafkaBroker.md | 11 ----------- .../en/api/faststream/confluent/KafkaPublisher.md | 11 ----------- .../docs/en/api/faststream/confluent/KafkaResponse.md | 11 ----------- docs/docs/en/api/faststream/confluent/KafkaRoute.md | 11 ----------- docs/docs/en/api/faststream/confluent/KafkaRouter.md | 11 ----------- docs/docs/en/api/faststream/confluent/TestApp.md | 11 ----------- .../en/api/faststream/confluent/TestKafkaBroker.md | 11 ----------- .../en/api/faststream/confluent/broker/KafkaBroker.md | 11 ----------- .../faststream/confluent/broker/broker/KafkaBroker.md | 11 ----------- .../confluent/broker/logging/KafkaLoggingBroker.md | 11 ----------- .../confluent/broker/registrator/KafkaRegistrator.md | 11 ----------- .../confluent/client/AsyncConfluentConsumer.md | 11 ----------- .../confluent/client/AsyncConfluentProducer.md | 11 ----------- .../api/faststream/confluent/client/BatchBuilder.md | 11 ----------- .../en/api/faststream/confluent/client/MsgToSend.md | 11 ----------- .../api/faststream/confluent/client/TopicPartition.md | 11 ----------- .../faststream/confluent/client/check_msg_error.md | 11 ----------- .../api/faststream/confluent/client/create_topics.md | 11 ----------- .../en/api/faststream/confluent/fastapi/Context.md | 11 ----------- .../api/faststream/confluent/fastapi/KafkaRouter.md | 11 ----------- .../confluent/fastapi/fastapi/KafkaRouter.md | 11 ----------- .../faststream/confluent/message/ConsumerProtocol.md | 11 ----------- .../api/faststream/confluent/message/FakeConsumer.md | 11 ----------- .../api/faststream/confluent/message/KafkaMessage.md | 11 ----------- .../opentelemetry/KafkaTelemetryMiddleware.md | 11 ----------- .../middleware/KafkaTelemetryMiddleware.md | 11 ----------- .../BaseConfluentTelemetrySettingsProvider.md | 11 ----------- .../BatchConfluentTelemetrySettingsProvider.md | 11 ----------- .../provider/ConfluentTelemetrySettingsProvider.md | 11 ----------- .../provider/telemetry_attributes_provider_factory.md | 11 ----------- .../confluent/parser/AsyncConfluentParser.md | 11 ----------- .../publisher/asyncapi/AsyncAPIBatchPublisher.md | 11 ----------- .../publisher/asyncapi/AsyncAPIDefaultPublisher.md | 11 ----------- .../confluent/publisher/asyncapi/AsyncAPIPublisher.md | 11 ----------- .../publisher/producer/AsyncConfluentFastProducer.md | 11 ----------- .../confluent/publisher/usecase/BatchPublisher.md | 11 ----------- .../confluent/publisher/usecase/DefaultPublisher.md | 11 ----------- .../confluent/publisher/usecase/LogicPublisher.md | 11 ----------- .../faststream/confluent/response/KafkaResponse.md | 11 ----------- .../api/faststream/confluent/router/KafkaPublisher.md | 11 ----------- .../en/api/faststream/confluent/router/KafkaRoute.md | 11 ----------- .../en/api/faststream/confluent/router/KafkaRouter.md | 11 ----------- .../schemas/params/ConsumerConnectionParams.md | 11 ----------- .../faststream/confluent/security/parse_security.md | 11 ----------- .../subscriber/asyncapi/AsyncAPIBatchSubscriber.md | 11 ----------- .../subscriber/asyncapi/AsyncAPIDefaultSubscriber.md | 11 ----------- .../subscriber/asyncapi/AsyncAPISubscriber.md | 11 ----------- .../confluent/subscriber/factory/create_subscriber.md | 11 ----------- .../confluent/subscriber/usecase/BatchSubscriber.md | 11 ----------- .../confluent/subscriber/usecase/DefaultSubscriber.md | 11 ----------- .../confluent/subscriber/usecase/LogicSubscriber.md | 11 ----------- .../api/faststream/confluent/testing/FakeProducer.md | 11 ----------- .../confluent/testing/MockConfluentMessage.md | 11 ----------- .../faststream/confluent/testing/TestKafkaBroker.md | 11 ----------- .../api/faststream/confluent/testing/build_message.md | 11 ----------- docs/docs/en/api/faststream/constants/ContentTypes.md | 11 ----------- docs/docs/en/api/faststream/exceptions/AckMessage.md | 11 ----------- .../api/faststream/exceptions/FastStreamException.md | 11 ----------- .../en/api/faststream/exceptions/HandlerException.md | 11 ----------- .../en/api/faststream/exceptions/IgnoredException.md | 11 ----------- docs/docs/en/api/faststream/exceptions/NackMessage.md | 11 ----------- .../en/api/faststream/exceptions/RejectMessage.md | 11 ----------- docs/docs/en/api/faststream/exceptions/SetupError.md | 11 ----------- docs/docs/en/api/faststream/exceptions/SkipMessage.md | 11 ----------- .../en/api/faststream/exceptions/StopApplication.md | 11 ----------- docs/docs/en/api/faststream/exceptions/StopConsume.md | 11 ----------- .../en/api/faststream/exceptions/ValidationError.md | 11 ----------- docs/docs/en/api/faststream/kafka/KafkaBroker.md | 11 ----------- docs/docs/en/api/faststream/kafka/KafkaPublisher.md | 11 ----------- docs/docs/en/api/faststream/kafka/KafkaResponse.md | 11 ----------- docs/docs/en/api/faststream/kafka/KafkaRoute.md | 11 ----------- docs/docs/en/api/faststream/kafka/KafkaRouter.md | 11 ----------- docs/docs/en/api/faststream/kafka/TestApp.md | 11 ----------- docs/docs/en/api/faststream/kafka/TestKafkaBroker.md | 11 ----------- docs/docs/en/api/faststream/kafka/TopicPartition.md | 11 ----------- .../en/api/faststream/kafka/broker/KafkaBroker.md | 11 ----------- .../api/faststream/kafka/broker/broker/KafkaBroker.md | 11 ----------- .../kafka/broker/logging/KafkaLoggingBroker.md | 11 ----------- .../kafka/broker/registrator/KafkaRegistrator.md | 11 ----------- docs/docs/en/api/faststream/kafka/fastapi/Context.md | 11 ----------- .../en/api/faststream/kafka/fastapi/KafkaRouter.md | 11 ----------- .../faststream/kafka/fastapi/fastapi/KafkaRouter.md | 11 ----------- .../api/faststream/kafka/message/ConsumerProtocol.md | 11 ----------- .../en/api/faststream/kafka/message/FakeConsumer.md | 11 ----------- .../en/api/faststream/kafka/message/KafkaMessage.md | 11 ----------- .../kafka/opentelemetry/KafkaTelemetryMiddleware.md | 11 ----------- .../middleware/KafkaTelemetryMiddleware.md | 11 ----------- .../provider/BaseKafkaTelemetrySettingsProvider.md | 11 ----------- .../provider/BatchKafkaTelemetrySettingsProvider.md | 11 ----------- .../provider/KafkaTelemetrySettingsProvider.md | 11 ----------- .../provider/telemetry_attributes_provider_factory.md | 11 ----------- .../en/api/faststream/kafka/parser/AioKafkaParser.md | 11 ----------- .../publisher/asyncapi/AsyncAPIBatchPublisher.md | 11 ----------- .../publisher/asyncapi/AsyncAPIDefaultPublisher.md | 11 ----------- .../kafka/publisher/asyncapi/AsyncAPIPublisher.md | 11 ----------- .../kafka/publisher/producer/AioKafkaFastProducer.md | 11 ----------- .../kafka/publisher/usecase/BatchPublisher.md | 11 ----------- .../kafka/publisher/usecase/DefaultPublisher.md | 11 ----------- .../kafka/publisher/usecase/LogicPublisher.md | 11 ----------- .../en/api/faststream/kafka/response/KafkaResponse.md | 11 ----------- .../en/api/faststream/kafka/router/KafkaPublisher.md | 11 ----------- .../docs/en/api/faststream/kafka/router/KafkaRoute.md | 11 ----------- .../en/api/faststream/kafka/router/KafkaRouter.md | 11 ----------- .../kafka/schemas/params/ConsumerConnectionParams.md | 11 ----------- .../api/faststream/kafka/security/parse_security.md | 11 ----------- .../subscriber/asyncapi/AsyncAPIBatchSubscriber.md | 11 ----------- .../subscriber/asyncapi/AsyncAPIDefaultSubscriber.md | 11 ----------- .../kafka/subscriber/asyncapi/AsyncAPISubscriber.md | 11 ----------- .../kafka/subscriber/factory/create_subscriber.md | 11 ----------- .../kafka/subscriber/usecase/BatchSubscriber.md | 11 ----------- .../kafka/subscriber/usecase/DefaultSubscriber.md | 11 ----------- .../kafka/subscriber/usecase/LogicSubscriber.md | 11 ----------- .../en/api/faststream/kafka/testing/FakeProducer.md | 11 ----------- .../api/faststream/kafka/testing/TestKafkaBroker.md | 11 ----------- .../en/api/faststream/kafka/testing/build_message.md | 11 ----------- .../faststream/log/formatter/ColourizedFormatter.md | 11 ----------- .../api/faststream/log/formatter/expand_log_field.md | 11 ----------- .../en/api/faststream/log/logging/ExtendedFilter.md | 11 ----------- .../api/faststream/log/logging/get_broker_logger.md | 11 ----------- .../en/api/faststream/log/logging/set_logger_fmt.md | 11 ----------- docs/docs/en/api/faststream/nats/AckPolicy.md | 11 ----------- docs/docs/en/api/faststream/nats/ConsumerConfig.md | 11 ----------- docs/docs/en/api/faststream/nats/DeliverPolicy.md | 11 ----------- docs/docs/en/api/faststream/nats/DiscardPolicy.md | 11 ----------- docs/docs/en/api/faststream/nats/ExternalStream.md | 11 ----------- docs/docs/en/api/faststream/nats/JStream.md | 11 ----------- docs/docs/en/api/faststream/nats/KvWatch.md | 11 ----------- docs/docs/en/api/faststream/nats/NatsBroker.md | 11 ----------- docs/docs/en/api/faststream/nats/NatsPublisher.md | 11 ----------- docs/docs/en/api/faststream/nats/NatsResponse.md | 11 ----------- docs/docs/en/api/faststream/nats/NatsRoute.md | 11 ----------- docs/docs/en/api/faststream/nats/NatsRouter.md | 11 ----------- docs/docs/en/api/faststream/nats/ObjWatch.md | 11 ----------- docs/docs/en/api/faststream/nats/Placement.md | 11 ----------- docs/docs/en/api/faststream/nats/PullSub.md | 11 ----------- docs/docs/en/api/faststream/nats/RePublish.md | 11 ----------- docs/docs/en/api/faststream/nats/ReplayPolicy.md | 11 ----------- docs/docs/en/api/faststream/nats/RetentionPolicy.md | 11 ----------- docs/docs/en/api/faststream/nats/StorageType.md | 11 ----------- docs/docs/en/api/faststream/nats/StreamConfig.md | 11 ----------- docs/docs/en/api/faststream/nats/StreamSource.md | 11 ----------- docs/docs/en/api/faststream/nats/TestApp.md | 11 ----------- docs/docs/en/api/faststream/nats/TestNatsBroker.md | 11 ----------- docs/docs/en/api/faststream/nats/broker/NatsBroker.md | 11 ----------- .../api/faststream/nats/broker/broker/NatsBroker.md | 11 ----------- .../nats/broker/logging/NatsLoggingBroker.md | 11 ----------- .../nats/broker/registrator/NatsRegistrator.md | 11 ----------- docs/docs/en/api/faststream/nats/fastapi/Context.md | 11 ----------- .../docs/en/api/faststream/nats/fastapi/NatsRouter.md | 11 ----------- .../api/faststream/nats/fastapi/fastapi/NatsRouter.md | 11 ----------- .../api/faststream/nats/helpers/KVBucketDeclarer.md | 11 ----------- .../api/faststream/nats/helpers/OSBucketDeclarer.md | 11 ----------- .../en/api/faststream/nats/helpers/StreamBuilder.md | 11 ----------- .../nats/helpers/bucket_declarer/KVBucketDeclarer.md | 11 ----------- .../helpers/obj_storage_declarer/OSBucketDeclarer.md | 11 ----------- .../nats/helpers/object_builder/StreamBuilder.md | 11 ----------- .../api/faststream/nats/message/NatsBatchMessage.md | 11 ----------- .../en/api/faststream/nats/message/NatsKvMessage.md | 11 ----------- .../en/api/faststream/nats/message/NatsMessage.md | 11 ----------- .../en/api/faststream/nats/message/NatsObjMessage.md | 11 ----------- .../nats/opentelemetry/NatsTelemetryMiddleware.md | 11 ----------- .../middleware/NatsTelemetryMiddleware.md | 11 ----------- .../provider/BaseNatsTelemetrySettingsProvider.md | 11 ----------- .../provider/NatsBatchTelemetrySettingsProvider.md | 11 ----------- .../provider/NatsTelemetrySettingsProvider.md | 11 ----------- .../provider/telemetry_attributes_provider_factory.md | 11 ----------- .../docs/en/api/faststream/nats/parser/BatchParser.md | 11 ----------- docs/docs/en/api/faststream/nats/parser/JsParser.md | 11 ----------- docs/docs/en/api/faststream/nats/parser/KvParser.md | 11 ----------- .../en/api/faststream/nats/parser/NatsBaseParser.md | 11 ----------- docs/docs/en/api/faststream/nats/parser/NatsParser.md | 11 ----------- docs/docs/en/api/faststream/nats/parser/ObjParser.md | 11 ----------- .../nats/publisher/asyncapi/AsyncAPIPublisher.md | 11 ----------- .../nats/publisher/producer/NatsFastProducer.md | 11 ----------- .../nats/publisher/producer/NatsJSFastProducer.md | 11 ----------- .../nats/publisher/usecase/LogicPublisher.md | 11 ----------- .../en/api/faststream/nats/response/NatsResponse.md | 11 ----------- .../en/api/faststream/nats/router/NatsPublisher.md | 11 ----------- docs/docs/en/api/faststream/nats/router/NatsRoute.md | 11 ----------- docs/docs/en/api/faststream/nats/router/NatsRouter.md | 11 ----------- docs/docs/en/api/faststream/nats/schemas/JStream.md | 11 ----------- docs/docs/en/api/faststream/nats/schemas/KvWatch.md | 11 ----------- docs/docs/en/api/faststream/nats/schemas/ObjWatch.md | 11 ----------- docs/docs/en/api/faststream/nats/schemas/PullSub.md | 11 ----------- .../api/faststream/nats/schemas/js_stream/JStream.md | 11 ----------- .../nats/schemas/js_stream/compile_nats_wildcard.md | 11 ----------- .../schemas/js_stream/is_subject_match_wildcard.md | 11 ----------- .../api/faststream/nats/schemas/kv_watch/KvWatch.md | 11 ----------- .../api/faststream/nats/schemas/obj_watch/ObjWatch.md | 11 ----------- .../api/faststream/nats/schemas/pull_sub/PullSub.md | 11 ----------- .../en/api/faststream/nats/security/parse_security.md | 11 ----------- .../asyncapi/AsyncAPIBatchPullStreamSubscriber.md | 11 ----------- .../asyncapi/AsyncAPIConcurrentCoreSubscriber.md | 11 ----------- .../AsyncAPIConcurrentPullStreamSubscriber.md | 11 ----------- .../AsyncAPIConcurrentPushStreamSubscriber.md | 11 ----------- .../subscriber/asyncapi/AsyncAPICoreSubscriber.md | 11 ----------- .../asyncapi/AsyncAPIKeyValueWatchSubscriber.md | 11 ----------- .../asyncapi/AsyncAPIObjStoreWatchSubscriber.md | 11 ----------- .../asyncapi/AsyncAPIPullStreamSubscriber.md | 11 ----------- .../subscriber/asyncapi/AsyncAPIStreamSubscriber.md | 11 ----------- .../nats/subscriber/asyncapi/AsyncAPISubscriber.md | 11 ----------- .../nats/subscriber/factory/create_subscriber.md | 11 ----------- .../subscriber/subscription/UnsubscribeAdapter.md | 11 ----------- .../nats/subscriber/subscription/Unsubscriptable.md | 11 ----------- .../nats/subscriber/subscription/Watchable.md | 11 ----------- .../subscriber/usecase/BatchPullStreamSubscriber.md | 11 ----------- .../subscriber/usecase/ConcurrentCoreSubscriber.md | 11 ----------- .../usecase/ConcurrentPullStreamSubscriber.md | 11 ----------- .../usecase/ConcurrentPushStreamSubscriber.md | 11 ----------- .../nats/subscriber/usecase/CoreSubscriber.md | 11 ----------- .../subscriber/usecase/KeyValueWatchSubscriber.md | 11 ----------- .../nats/subscriber/usecase/LogicSubscriber.md | 11 ----------- .../subscriber/usecase/ObjStoreWatchSubscriber.md | 11 ----------- .../nats/subscriber/usecase/PullStreamSubscriber.md | 11 ----------- .../nats/subscriber/usecase/PushStreamSubscription.md | 11 ----------- .../en/api/faststream/nats/testing/FakeProducer.md | 11 ----------- .../en/api/faststream/nats/testing/PatchedMessage.md | 11 ----------- .../en/api/faststream/nats/testing/TestNatsBroker.md | 11 ----------- .../en/api/faststream/nats/testing/build_message.md | 11 ----------- .../faststream/opentelemetry/TelemetryMiddleware.md | 11 ----------- .../opentelemetry/TelemetrySettingsProvider.md | 11 ----------- .../faststream/opentelemetry/consts/MessageAction.md | 11 ----------- .../middleware/BaseTelemetryMiddleware.md | 11 ----------- .../opentelemetry/middleware/TelemetryMiddleware.md | 11 ----------- .../provider/TelemetrySettingsProvider.md | 11 ----------- docs/docs/en/api/faststream/rabbit/ExchangeType.md | 11 ----------- docs/docs/en/api/faststream/rabbit/RabbitBroker.md | 11 ----------- docs/docs/en/api/faststream/rabbit/RabbitExchange.md | 11 ----------- docs/docs/en/api/faststream/rabbit/RabbitPublisher.md | 11 ----------- docs/docs/en/api/faststream/rabbit/RabbitQueue.md | 11 ----------- docs/docs/en/api/faststream/rabbit/RabbitResponse.md | 11 ----------- docs/docs/en/api/faststream/rabbit/RabbitRoute.md | 11 ----------- docs/docs/en/api/faststream/rabbit/RabbitRouter.md | 11 ----------- docs/docs/en/api/faststream/rabbit/ReplyConfig.md | 11 ----------- docs/docs/en/api/faststream/rabbit/TestApp.md | 11 ----------- .../docs/en/api/faststream/rabbit/TestRabbitBroker.md | 11 ----------- .../en/api/faststream/rabbit/broker/RabbitBroker.md | 11 ----------- .../faststream/rabbit/broker/broker/RabbitBroker.md | 11 ----------- .../rabbit/broker/logging/RabbitLoggingBroker.md | 11 ----------- .../rabbit/broker/registrator/RabbitRegistrator.md | 11 ----------- docs/docs/en/api/faststream/rabbit/fastapi/Context.md | 11 ----------- .../en/api/faststream/rabbit/fastapi/RabbitRouter.md | 11 ----------- .../faststream/rabbit/fastapi/router/RabbitRouter.md | 11 ----------- .../en/api/faststream/rabbit/message/RabbitMessage.md | 11 ----------- .../rabbit/opentelemetry/RabbitTelemetryMiddleware.md | 11 ----------- .../middleware/RabbitTelemetryMiddleware.md | 11 ----------- .../provider/RabbitTelemetrySettingsProvider.md | 11 ----------- .../en/api/faststream/rabbit/parser/AioPikaParser.md | 11 ----------- .../rabbit/publisher/asyncapi/AsyncAPIPublisher.md | 11 ----------- .../rabbit/publisher/producer/AioPikaFastProducer.md | 11 ----------- .../rabbit/publisher/usecase/LogicPublisher.md | 11 ----------- .../rabbit/publisher/usecase/PublishKwargs.md | 11 ----------- .../api/faststream/rabbit/response/RabbitResponse.md | 11 ----------- .../api/faststream/rabbit/router/RabbitPublisher.md | 11 ----------- .../en/api/faststream/rabbit/router/RabbitRoute.md | 11 ----------- .../en/api/faststream/rabbit/router/RabbitRouter.md | 11 ----------- .../faststream/rabbit/schemas/BaseRMQInformation.md | 11 ----------- .../en/api/faststream/rabbit/schemas/ExchangeType.md | 11 ----------- .../api/faststream/rabbit/schemas/RabbitExchange.md | 11 ----------- .../en/api/faststream/rabbit/schemas/RabbitQueue.md | 11 ----------- .../en/api/faststream/rabbit/schemas/ReplyConfig.md | 11 ----------- .../rabbit/schemas/constants/ExchangeType.md | 11 ----------- .../rabbit/schemas/exchange/RabbitExchange.md | 11 ----------- .../rabbit/schemas/proto/BaseRMQInformation.md | 11 ----------- .../faststream/rabbit/schemas/queue/RabbitQueue.md | 11 ----------- .../faststream/rabbit/schemas/reply/ReplyConfig.md | 11 ----------- .../api/faststream/rabbit/security/parse_security.md | 11 ----------- .../rabbit/subscriber/asyncapi/AsyncAPISubscriber.md | 11 ----------- .../rabbit/subscriber/factory/create_subscriber.md | 11 ----------- .../rabbit/subscriber/usecase/LogicSubscriber.md | 11 ----------- .../en/api/faststream/rabbit/testing/FakeProducer.md | 11 ----------- .../api/faststream/rabbit/testing/PatchedMessage.md | 11 ----------- .../api/faststream/rabbit/testing/TestRabbitBroker.md | 11 ----------- .../en/api/faststream/rabbit/testing/apply_pattern.md | 11 ----------- .../en/api/faststream/rabbit/testing/build_message.md | 11 ----------- .../en/api/faststream/rabbit/utils/RabbitDeclarer.md | 11 ----------- docs/docs/en/api/faststream/rabbit/utils/build_url.md | 11 ----------- .../faststream/rabbit/utils/is_routing_exchange.md | 11 ----------- docs/docs/en/api/faststream/redis/ListSub.md | 11 ----------- docs/docs/en/api/faststream/redis/PubSub.md | 11 ----------- docs/docs/en/api/faststream/redis/RedisBroker.md | 11 ----------- docs/docs/en/api/faststream/redis/RedisPublisher.md | 11 ----------- docs/docs/en/api/faststream/redis/RedisResponse.md | 11 ----------- docs/docs/en/api/faststream/redis/RedisRoute.md | 11 ----------- docs/docs/en/api/faststream/redis/RedisRouter.md | 11 ----------- docs/docs/en/api/faststream/redis/StreamSub.md | 11 ----------- docs/docs/en/api/faststream/redis/TestApp.md | 11 ----------- docs/docs/en/api/faststream/redis/TestRedisBroker.md | 11 ----------- .../api/faststream/redis/broker/broker/RedisBroker.md | 11 ----------- .../redis/broker/logging/RedisLoggingBroker.md | 11 ----------- .../redis/broker/registrator/RedisRegistrator.md | 11 ----------- docs/docs/en/api/faststream/redis/fastapi/Context.md | 11 ----------- .../en/api/faststream/redis/fastapi/RedisRouter.md | 11 ----------- .../faststream/redis/fastapi/fastapi/RedisRouter.md | 11 ----------- .../api/faststream/redis/message/BatchListMessage.md | 11 ----------- .../faststream/redis/message/BatchStreamMessage.md | 11 ----------- .../faststream/redis/message/DefaultListMessage.md | 11 ----------- .../faststream/redis/message/DefaultStreamMessage.md | 11 ----------- .../en/api/faststream/redis/message/ListMessage.md | 11 ----------- .../en/api/faststream/redis/message/PubSubMessage.md | 11 ----------- .../faststream/redis/message/RedisBatchListMessage.md | 11 ----------- .../redis/message/RedisBatchStreamMessage.md | 11 ----------- .../api/faststream/redis/message/RedisListMessage.md | 11 ----------- .../en/api/faststream/redis/message/RedisMessage.md | 11 ----------- .../faststream/redis/message/RedisStreamMessage.md | 11 ----------- .../en/api/faststream/redis/message/StreamMessage.md | 11 ----------- .../en/api/faststream/redis/message/UnifyRedisDict.md | 11 ----------- .../api/faststream/redis/message/UnifyRedisMessage.md | 11 ----------- .../redis/opentelemetry/RedisTelemetryMiddleware.md | 11 ----------- .../middleware/RedisTelemetryMiddleware.md | 11 ----------- .../provider/RedisTelemetrySettingsProvider.md | 11 ----------- .../docs/en/api/faststream/redis/parser/RawMessage.md | 11 ----------- .../faststream/redis/parser/RedisBatchListParser.md | 11 ----------- .../faststream/redis/parser/RedisBatchStreamParser.md | 11 ----------- .../en/api/faststream/redis/parser/RedisListParser.md | 11 ----------- .../api/faststream/redis/parser/RedisPubSubParser.md | 11 ----------- .../api/faststream/redis/parser/RedisStreamParser.md | 11 ----------- .../en/api/faststream/redis/parser/SimpleParser.md | 11 ----------- .../publisher/asyncapi/AsyncAPIChannelPublisher.md | 11 ----------- .../publisher/asyncapi/AsyncAPIListBatchPublisher.md | 11 ----------- .../redis/publisher/asyncapi/AsyncAPIListPublisher.md | 11 ----------- .../redis/publisher/asyncapi/AsyncAPIPublisher.md | 11 ----------- .../publisher/asyncapi/AsyncAPIStreamPublisher.md | 11 ----------- .../redis/publisher/producer/RedisFastProducer.md | 11 ----------- .../redis/publisher/usecase/ChannelPublisher.md | 11 ----------- .../redis/publisher/usecase/ListBatchPublisher.md | 11 ----------- .../redis/publisher/usecase/ListPublisher.md | 11 ----------- .../redis/publisher/usecase/LogicPublisher.md | 11 ----------- .../redis/publisher/usecase/StreamPublisher.md | 11 ----------- .../en/api/faststream/redis/response/RedisResponse.md | 11 ----------- .../en/api/faststream/redis/router/RedisPublisher.md | 11 ----------- .../docs/en/api/faststream/redis/router/RedisRoute.md | 11 ----------- .../en/api/faststream/redis/router/RedisRouter.md | 11 ----------- docs/docs/en/api/faststream/redis/schemas/ListSub.md | 11 ----------- docs/docs/en/api/faststream/redis/schemas/PubSub.md | 11 ----------- .../docs/en/api/faststream/redis/schemas/StreamSub.md | 11 ----------- .../api/faststream/redis/schemas/list_sub/ListSub.md | 11 ----------- .../redis/schemas/proto/RedisAsyncAPIProtocol.md | 11 ----------- .../redis/schemas/proto/validate_options.md | 11 ----------- .../en/api/faststream/redis/schemas/pub_sub/PubSub.md | 11 ----------- .../faststream/redis/schemas/stream_sub/StreamSub.md | 11 ----------- .../api/faststream/redis/security/parse_security.md | 11 ----------- .../subscriber/asyncapi/AsyncAPIChannelSubscriber.md | 11 ----------- .../asyncapi/AsyncAPIListBatchSubscriber.md | 11 ----------- .../subscriber/asyncapi/AsyncAPIListSubscriber.md | 11 ----------- .../asyncapi/AsyncAPIStreamBatchSubscriber.md | 11 ----------- .../subscriber/asyncapi/AsyncAPIStreamSubscriber.md | 11 ----------- .../redis/subscriber/asyncapi/AsyncAPISubscriber.md | 11 ----------- .../redis/subscriber/factory/create_subscriber.md | 11 ----------- .../redis/subscriber/usecase/BatchListSubscriber.md | 11 ----------- .../redis/subscriber/usecase/BatchStreamSubscriber.md | 11 ----------- .../redis/subscriber/usecase/ChannelSubscriber.md | 11 ----------- .../redis/subscriber/usecase/ListSubscriber.md | 11 ----------- .../redis/subscriber/usecase/LogicSubscriber.md | 11 ----------- .../redis/subscriber/usecase/StreamSubscriber.md | 11 ----------- .../en/api/faststream/redis/testing/FakeProducer.md | 11 ----------- .../api/faststream/redis/testing/TestRedisBroker.md | 11 ----------- .../en/api/faststream/redis/testing/build_message.md | 11 ----------- docs/docs/en/api/faststream/security/BaseSecurity.md | 11 ----------- docs/docs/en/api/faststream/security/SASLPlaintext.md | 11 ----------- docs/docs/en/api/faststream/security/SASLScram256.md | 11 ----------- docs/docs/en/api/faststream/security/SASLScram512.md | 11 ----------- docs/docs/en/api/faststream/testing/TestApp.md | 11 ----------- docs/docs/en/api/faststream/testing/app/TestApp.md | 11 ----------- .../en/api/faststream/testing/broker/TestBroker.md | 11 ----------- .../en/api/faststream/testing/broker/call_handler.md | 11 ----------- .../faststream/testing/broker/patch_broker_calls.md | 11 ----------- docs/docs/en/api/faststream/types/LoggerProto.md | 11 ----------- .../docs/en/api/faststream/types/StandardDataclass.md | 11 ----------- docs/docs/en/api/faststream/utils/Context.md | 11 ----------- docs/docs/en/api/faststream/utils/ContextRepo.md | 11 ----------- docs/docs/en/api/faststream/utils/Depends.md | 11 ----------- docs/docs/en/api/faststream/utils/Header.md | 11 ----------- docs/docs/en/api/faststream/utils/NoCast.md | 11 ----------- docs/docs/en/api/faststream/utils/Path.md | 11 ----------- docs/docs/en/api/faststream/utils/apply_types.md | 11 ----------- .../docs/en/api/faststream/utils/ast/find_ast_node.md | 11 ----------- .../en/api/faststream/utils/ast/find_withitems.md | 11 ----------- .../en/api/faststream/utils/ast/get_withitem_calls.md | 11 ----------- .../faststream/utils/ast/is_contains_context_name.md | 11 ----------- .../docs/en/api/faststream/utils/classes/Singleton.md | 11 ----------- docs/docs/en/api/faststream/utils/context/Context.md | 11 ----------- .../en/api/faststream/utils/context/ContextRepo.md | 11 ----------- docs/docs/en/api/faststream/utils/context/Header.md | 11 ----------- docs/docs/en/api/faststream/utils/context/Path.md | 11 ----------- .../api/faststream/utils/context/builders/Context.md | 11 ----------- .../api/faststream/utils/context/builders/Header.md | 11 ----------- .../en/api/faststream/utils/context/builders/Path.md | 11 ----------- .../utils/context/repository/ContextRepo.md | 11 ----------- .../en/api/faststream/utils/context/types/Context.md | 11 ----------- .../utils/context/types/resolve_context_by_name.md | 11 ----------- .../en/api/faststream/utils/data/filter_by_dict.md | 11 ----------- .../api/faststream/utils/functions/call_or_await.md | 11 ----------- .../faststream/utils/functions/drop_response_type.md | 11 ----------- .../en/api/faststream/utils/functions/fake_context.md | 11 ----------- .../faststream/utils/functions/sync_fake_context.md | 11 ----------- .../api/faststream/utils/functions/timeout_scope.md | 11 ----------- .../en/api/faststream/utils/functions/to_async.md | 11 ----------- docs/docs/en/api/faststream/utils/no_cast/NoCast.md | 11 ----------- .../docs/en/api/faststream/utils/path/compile_path.md | 11 ----------- pyproject.toml | 2 +- 566 files changed, 14 insertions(+), 6178 deletions(-) delete mode 100644 docs/docs/en/api/faststream/BaseMiddleware.md delete mode 100644 docs/docs/en/api/faststream/Context.md delete mode 100644 docs/docs/en/api/faststream/Depends.md delete mode 100644 docs/docs/en/api/faststream/FastStream.md delete mode 100644 docs/docs/en/api/faststream/Header.md delete mode 100644 docs/docs/en/api/faststream/Path.md delete mode 100644 docs/docs/en/api/faststream/Response.md delete mode 100644 docs/docs/en/api/faststream/TestApp.md delete mode 100644 docs/docs/en/api/faststream/app/FastStream.md delete mode 100644 docs/docs/en/api/faststream/apply_types.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/abc/AsyncAPIOperation.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/generate/get_app_schema.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/generate/get_broker_channels.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/generate/get_broker_server.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/get_app_schema.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/get_asyncapi_html.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/message/get_model_schema.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/message/get_response_schema.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/message/parse_handler_params.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/proto/AsyncAPIProto.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Channel.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/ChannelBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Components.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Contact.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/ContactDict.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/CorrelationId.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/ExternalDocs.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/ExternalDocsDict.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Info.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/License.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/LicenseDict.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Message.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Operation.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/OperationBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Reference.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Schema.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/SecuritySchemaComponent.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Server.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/ServerBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Tag.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/TagDict.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/ChannelBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/OperationBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/ServerBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/ChannelBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/Exchange.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/OperationBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/Queue.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/ServerBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/ChannelBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/OperationBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/ServerBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/main/ChannelBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/main/OperationBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/main/ServerBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/ChannelBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/OperationBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/ServerBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/ChannelBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/OperationBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/ServerBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/ChannelBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/OperationBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/ServerBinding.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/channels/Channel.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/info/Contact.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/info/ContactDict.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/info/Info.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/info/License.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/info/LicenseDict.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/main/Components.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/main/Schema.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/message/CorrelationId.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/message/Message.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/operations/Operation.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/security/OauthFlowObj.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/security/OauthFlows.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/security/SecuritySchemaComponent.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/servers/Server.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/servers/ServerVariable.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/utils/ExternalDocs.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/utils/ExternalDocsDict.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/utils/Parameter.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/utils/Reference.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/utils/Tag.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/schema/utils/TagDict.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/site/get_asyncapi_html.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/site/serve_app.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/utils/resolve_payloads.md delete mode 100644 docs/docs/en/api/faststream/asyncapi/utils/to_camelcase.md delete mode 100644 docs/docs/en/api/faststream/broker/acknowledgement_watcher/BaseWatcher.md delete mode 100644 docs/docs/en/api/faststream/broker/acknowledgement_watcher/CounterWatcher.md delete mode 100644 docs/docs/en/api/faststream/broker/acknowledgement_watcher/EndlessWatcher.md delete mode 100644 docs/docs/en/api/faststream/broker/acknowledgement_watcher/OneTryWatcher.md delete mode 100644 docs/docs/en/api/faststream/broker/acknowledgement_watcher/WatcherContext.md delete mode 100644 docs/docs/en/api/faststream/broker/acknowledgement_watcher/get_watcher.md delete mode 100644 docs/docs/en/api/faststream/broker/core/abc/ABCBroker.md delete mode 100644 docs/docs/en/api/faststream/broker/core/logging/LoggingBroker.md delete mode 100644 docs/docs/en/api/faststream/broker/core/usecase/BrokerUsecase.md delete mode 100644 docs/docs/en/api/faststream/broker/fastapi/StreamMessage.md delete mode 100644 docs/docs/en/api/faststream/broker/fastapi/StreamRoute.md delete mode 100644 docs/docs/en/api/faststream/broker/fastapi/StreamRouter.md delete mode 100644 docs/docs/en/api/faststream/broker/fastapi/context/Context.md delete mode 100644 docs/docs/en/api/faststream/broker/fastapi/get_dependant/get_fastapi_dependant.md delete mode 100644 docs/docs/en/api/faststream/broker/fastapi/get_dependant/get_fastapi_native_dependant.md delete mode 100644 docs/docs/en/api/faststream/broker/fastapi/route/StreamMessage.md delete mode 100644 docs/docs/en/api/faststream/broker/fastapi/route/StreamRoute.md delete mode 100644 docs/docs/en/api/faststream/broker/fastapi/route/make_fastapi_execution.md delete mode 100644 docs/docs/en/api/faststream/broker/fastapi/router/StreamRouter.md delete mode 100644 docs/docs/en/api/faststream/broker/message/StreamMessage.md delete mode 100644 docs/docs/en/api/faststream/broker/message/decode_message.md delete mode 100644 docs/docs/en/api/faststream/broker/message/encode_message.md delete mode 100644 docs/docs/en/api/faststream/broker/message/gen_cor_id.md delete mode 100644 docs/docs/en/api/faststream/broker/middlewares/BaseMiddleware.md delete mode 100644 docs/docs/en/api/faststream/broker/middlewares/base/BaseMiddleware.md delete mode 100644 docs/docs/en/api/faststream/broker/middlewares/logging/CriticalLogMiddleware.md delete mode 100644 docs/docs/en/api/faststream/broker/proto/EndpointProto.md delete mode 100644 docs/docs/en/api/faststream/broker/proto/SetupAble.md delete mode 100644 docs/docs/en/api/faststream/broker/publisher/fake/FakePublisher.md delete mode 100644 docs/docs/en/api/faststream/broker/publisher/proto/BasePublisherProto.md delete mode 100644 docs/docs/en/api/faststream/broker/publisher/proto/ProducerProto.md delete mode 100644 docs/docs/en/api/faststream/broker/publisher/proto/PublisherProto.md delete mode 100644 docs/docs/en/api/faststream/broker/publisher/usecase/PublisherUsecase.md delete mode 100644 docs/docs/en/api/faststream/broker/response/Response.md delete mode 100644 docs/docs/en/api/faststream/broker/router/ArgsContainer.md delete mode 100644 docs/docs/en/api/faststream/broker/router/BrokerRouter.md delete mode 100644 docs/docs/en/api/faststream/broker/router/SubscriberRoute.md delete mode 100644 docs/docs/en/api/faststream/broker/schemas/NameRequired.md delete mode 100644 docs/docs/en/api/faststream/broker/subscriber/call_item/HandlerItem.md delete mode 100644 docs/docs/en/api/faststream/broker/subscriber/proto/SubscriberProto.md delete mode 100644 docs/docs/en/api/faststream/broker/subscriber/usecase/SubscriberUsecase.md delete mode 100644 docs/docs/en/api/faststream/broker/types/PublisherMiddleware.md delete mode 100644 docs/docs/en/api/faststream/broker/utils/MultiLock.md delete mode 100644 docs/docs/en/api/faststream/broker/utils/default_filter.md delete mode 100644 docs/docs/en/api/faststream/broker/utils/get_watcher_context.md delete mode 100644 docs/docs/en/api/faststream/broker/utils/resolve_custom_func.md delete mode 100644 docs/docs/en/api/faststream/broker/wrapper/call/HandlerCallWrapper.md delete mode 100644 docs/docs/en/api/faststream/broker/wrapper/proto/WrapperProto.md delete mode 100644 docs/docs/en/api/faststream/cli/docs/app/gen.md delete mode 100644 docs/docs/en/api/faststream/cli/docs/app/serve.md delete mode 100644 docs/docs/en/api/faststream/cli/main/main.md delete mode 100644 docs/docs/en/api/faststream/cli/main/publish.md delete mode 100644 docs/docs/en/api/faststream/cli/main/publish_message.md delete mode 100644 docs/docs/en/api/faststream/cli/main/run.md delete mode 100644 docs/docs/en/api/faststream/cli/main/version_callback.md delete mode 100644 docs/docs/en/api/faststream/cli/supervisors/basereload/BaseReload.md delete mode 100644 docs/docs/en/api/faststream/cli/supervisors/multiprocess/Multiprocess.md delete mode 100644 docs/docs/en/api/faststream/cli/supervisors/utils/get_subprocess.md delete mode 100644 docs/docs/en/api/faststream/cli/supervisors/utils/set_exit.md delete mode 100644 docs/docs/en/api/faststream/cli/supervisors/utils/subprocess_started.md delete mode 100644 docs/docs/en/api/faststream/cli/supervisors/watchfiles/ExtendedFilter.md delete mode 100644 docs/docs/en/api/faststream/cli/supervisors/watchfiles/WatchReloader.md delete mode 100644 docs/docs/en/api/faststream/cli/utils/imports/get_app_path.md delete mode 100644 docs/docs/en/api/faststream/cli/utils/imports/import_from_string.md delete mode 100644 docs/docs/en/api/faststream/cli/utils/imports/import_object.md delete mode 100644 docs/docs/en/api/faststream/cli/utils/imports/try_import_app.md delete mode 100644 docs/docs/en/api/faststream/cli/utils/logs/LogLevels.md delete mode 100644 docs/docs/en/api/faststream/cli/utils/logs/get_log_level.md delete mode 100644 docs/docs/en/api/faststream/cli/utils/logs/set_log_level.md delete mode 100644 docs/docs/en/api/faststream/cli/utils/parser/parse_cli_args.md delete mode 100644 docs/docs/en/api/faststream/cli/utils/parser/remove_prefix.md delete mode 100644 docs/docs/en/api/faststream/confluent/KafkaBroker.md delete mode 100644 docs/docs/en/api/faststream/confluent/KafkaPublisher.md delete mode 100644 docs/docs/en/api/faststream/confluent/KafkaResponse.md delete mode 100644 docs/docs/en/api/faststream/confluent/KafkaRoute.md delete mode 100644 docs/docs/en/api/faststream/confluent/KafkaRouter.md delete mode 100644 docs/docs/en/api/faststream/confluent/TestApp.md delete mode 100644 docs/docs/en/api/faststream/confluent/TestKafkaBroker.md delete mode 100644 docs/docs/en/api/faststream/confluent/broker/KafkaBroker.md delete mode 100644 docs/docs/en/api/faststream/confluent/broker/broker/KafkaBroker.md delete mode 100644 docs/docs/en/api/faststream/confluent/broker/logging/KafkaLoggingBroker.md delete mode 100644 docs/docs/en/api/faststream/confluent/broker/registrator/KafkaRegistrator.md delete mode 100644 docs/docs/en/api/faststream/confluent/client/AsyncConfluentConsumer.md delete mode 100644 docs/docs/en/api/faststream/confluent/client/AsyncConfluentProducer.md delete mode 100644 docs/docs/en/api/faststream/confluent/client/BatchBuilder.md delete mode 100644 docs/docs/en/api/faststream/confluent/client/MsgToSend.md delete mode 100644 docs/docs/en/api/faststream/confluent/client/TopicPartition.md delete mode 100644 docs/docs/en/api/faststream/confluent/client/check_msg_error.md delete mode 100644 docs/docs/en/api/faststream/confluent/client/create_topics.md delete mode 100644 docs/docs/en/api/faststream/confluent/fastapi/Context.md delete mode 100644 docs/docs/en/api/faststream/confluent/fastapi/KafkaRouter.md delete mode 100644 docs/docs/en/api/faststream/confluent/fastapi/fastapi/KafkaRouter.md delete mode 100644 docs/docs/en/api/faststream/confluent/message/ConsumerProtocol.md delete mode 100644 docs/docs/en/api/faststream/confluent/message/FakeConsumer.md delete mode 100644 docs/docs/en/api/faststream/confluent/message/KafkaMessage.md delete mode 100644 docs/docs/en/api/faststream/confluent/opentelemetry/KafkaTelemetryMiddleware.md delete mode 100644 docs/docs/en/api/faststream/confluent/opentelemetry/middleware/KafkaTelemetryMiddleware.md delete mode 100644 docs/docs/en/api/faststream/confluent/opentelemetry/provider/BaseConfluentTelemetrySettingsProvider.md delete mode 100644 docs/docs/en/api/faststream/confluent/opentelemetry/provider/BatchConfluentTelemetrySettingsProvider.md delete mode 100644 docs/docs/en/api/faststream/confluent/opentelemetry/provider/ConfluentTelemetrySettingsProvider.md delete mode 100644 docs/docs/en/api/faststream/confluent/opentelemetry/provider/telemetry_attributes_provider_factory.md delete mode 100644 docs/docs/en/api/faststream/confluent/parser/AsyncConfluentParser.md delete mode 100644 docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIBatchPublisher.md delete mode 100644 docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIDefaultPublisher.md delete mode 100644 docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIPublisher.md delete mode 100644 docs/docs/en/api/faststream/confluent/publisher/producer/AsyncConfluentFastProducer.md delete mode 100644 docs/docs/en/api/faststream/confluent/publisher/usecase/BatchPublisher.md delete mode 100644 docs/docs/en/api/faststream/confluent/publisher/usecase/DefaultPublisher.md delete mode 100644 docs/docs/en/api/faststream/confluent/publisher/usecase/LogicPublisher.md delete mode 100644 docs/docs/en/api/faststream/confluent/response/KafkaResponse.md delete mode 100644 docs/docs/en/api/faststream/confluent/router/KafkaPublisher.md delete mode 100644 docs/docs/en/api/faststream/confluent/router/KafkaRoute.md delete mode 100644 docs/docs/en/api/faststream/confluent/router/KafkaRouter.md delete mode 100644 docs/docs/en/api/faststream/confluent/schemas/params/ConsumerConnectionParams.md delete mode 100644 docs/docs/en/api/faststream/confluent/security/parse_security.md delete mode 100644 docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPIBatchSubscriber.md delete mode 100644 docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPIDefaultSubscriber.md delete mode 100644 docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPISubscriber.md delete mode 100644 docs/docs/en/api/faststream/confluent/subscriber/factory/create_subscriber.md delete mode 100644 docs/docs/en/api/faststream/confluent/subscriber/usecase/BatchSubscriber.md delete mode 100644 docs/docs/en/api/faststream/confluent/subscriber/usecase/DefaultSubscriber.md delete mode 100644 docs/docs/en/api/faststream/confluent/subscriber/usecase/LogicSubscriber.md delete mode 100644 docs/docs/en/api/faststream/confluent/testing/FakeProducer.md delete mode 100644 docs/docs/en/api/faststream/confluent/testing/MockConfluentMessage.md delete mode 100644 docs/docs/en/api/faststream/confluent/testing/TestKafkaBroker.md delete mode 100644 docs/docs/en/api/faststream/confluent/testing/build_message.md delete mode 100644 docs/docs/en/api/faststream/constants/ContentTypes.md delete mode 100644 docs/docs/en/api/faststream/exceptions/AckMessage.md delete mode 100644 docs/docs/en/api/faststream/exceptions/FastStreamException.md delete mode 100644 docs/docs/en/api/faststream/exceptions/HandlerException.md delete mode 100644 docs/docs/en/api/faststream/exceptions/IgnoredException.md delete mode 100644 docs/docs/en/api/faststream/exceptions/NackMessage.md delete mode 100644 docs/docs/en/api/faststream/exceptions/RejectMessage.md delete mode 100644 docs/docs/en/api/faststream/exceptions/SetupError.md delete mode 100644 docs/docs/en/api/faststream/exceptions/SkipMessage.md delete mode 100644 docs/docs/en/api/faststream/exceptions/StopApplication.md delete mode 100644 docs/docs/en/api/faststream/exceptions/StopConsume.md delete mode 100644 docs/docs/en/api/faststream/exceptions/ValidationError.md delete mode 100644 docs/docs/en/api/faststream/kafka/KafkaBroker.md delete mode 100644 docs/docs/en/api/faststream/kafka/KafkaPublisher.md delete mode 100644 docs/docs/en/api/faststream/kafka/KafkaResponse.md delete mode 100644 docs/docs/en/api/faststream/kafka/KafkaRoute.md delete mode 100644 docs/docs/en/api/faststream/kafka/KafkaRouter.md delete mode 100644 docs/docs/en/api/faststream/kafka/TestApp.md delete mode 100644 docs/docs/en/api/faststream/kafka/TestKafkaBroker.md delete mode 100644 docs/docs/en/api/faststream/kafka/TopicPartition.md delete mode 100644 docs/docs/en/api/faststream/kafka/broker/KafkaBroker.md delete mode 100644 docs/docs/en/api/faststream/kafka/broker/broker/KafkaBroker.md delete mode 100644 docs/docs/en/api/faststream/kafka/broker/logging/KafkaLoggingBroker.md delete mode 100644 docs/docs/en/api/faststream/kafka/broker/registrator/KafkaRegistrator.md delete mode 100644 docs/docs/en/api/faststream/kafka/fastapi/Context.md delete mode 100644 docs/docs/en/api/faststream/kafka/fastapi/KafkaRouter.md delete mode 100644 docs/docs/en/api/faststream/kafka/fastapi/fastapi/KafkaRouter.md delete mode 100644 docs/docs/en/api/faststream/kafka/message/ConsumerProtocol.md delete mode 100644 docs/docs/en/api/faststream/kafka/message/FakeConsumer.md delete mode 100644 docs/docs/en/api/faststream/kafka/message/KafkaMessage.md delete mode 100644 docs/docs/en/api/faststream/kafka/opentelemetry/KafkaTelemetryMiddleware.md delete mode 100644 docs/docs/en/api/faststream/kafka/opentelemetry/middleware/KafkaTelemetryMiddleware.md delete mode 100644 docs/docs/en/api/faststream/kafka/opentelemetry/provider/BaseKafkaTelemetrySettingsProvider.md delete mode 100644 docs/docs/en/api/faststream/kafka/opentelemetry/provider/BatchKafkaTelemetrySettingsProvider.md delete mode 100644 docs/docs/en/api/faststream/kafka/opentelemetry/provider/KafkaTelemetrySettingsProvider.md delete mode 100644 docs/docs/en/api/faststream/kafka/opentelemetry/provider/telemetry_attributes_provider_factory.md delete mode 100644 docs/docs/en/api/faststream/kafka/parser/AioKafkaParser.md delete mode 100644 docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIBatchPublisher.md delete mode 100644 docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIDefaultPublisher.md delete mode 100644 docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIPublisher.md delete mode 100644 docs/docs/en/api/faststream/kafka/publisher/producer/AioKafkaFastProducer.md delete mode 100644 docs/docs/en/api/faststream/kafka/publisher/usecase/BatchPublisher.md delete mode 100644 docs/docs/en/api/faststream/kafka/publisher/usecase/DefaultPublisher.md delete mode 100644 docs/docs/en/api/faststream/kafka/publisher/usecase/LogicPublisher.md delete mode 100644 docs/docs/en/api/faststream/kafka/response/KafkaResponse.md delete mode 100644 docs/docs/en/api/faststream/kafka/router/KafkaPublisher.md delete mode 100644 docs/docs/en/api/faststream/kafka/router/KafkaRoute.md delete mode 100644 docs/docs/en/api/faststream/kafka/router/KafkaRouter.md delete mode 100644 docs/docs/en/api/faststream/kafka/schemas/params/ConsumerConnectionParams.md delete mode 100644 docs/docs/en/api/faststream/kafka/security/parse_security.md delete mode 100644 docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPIBatchSubscriber.md delete mode 100644 docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPIDefaultSubscriber.md delete mode 100644 docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPISubscriber.md delete mode 100644 docs/docs/en/api/faststream/kafka/subscriber/factory/create_subscriber.md delete mode 100644 docs/docs/en/api/faststream/kafka/subscriber/usecase/BatchSubscriber.md delete mode 100644 docs/docs/en/api/faststream/kafka/subscriber/usecase/DefaultSubscriber.md delete mode 100644 docs/docs/en/api/faststream/kafka/subscriber/usecase/LogicSubscriber.md delete mode 100644 docs/docs/en/api/faststream/kafka/testing/FakeProducer.md delete mode 100644 docs/docs/en/api/faststream/kafka/testing/TestKafkaBroker.md delete mode 100644 docs/docs/en/api/faststream/kafka/testing/build_message.md delete mode 100644 docs/docs/en/api/faststream/log/formatter/ColourizedFormatter.md delete mode 100644 docs/docs/en/api/faststream/log/formatter/expand_log_field.md delete mode 100644 docs/docs/en/api/faststream/log/logging/ExtendedFilter.md delete mode 100644 docs/docs/en/api/faststream/log/logging/get_broker_logger.md delete mode 100644 docs/docs/en/api/faststream/log/logging/set_logger_fmt.md delete mode 100644 docs/docs/en/api/faststream/nats/AckPolicy.md delete mode 100644 docs/docs/en/api/faststream/nats/ConsumerConfig.md delete mode 100644 docs/docs/en/api/faststream/nats/DeliverPolicy.md delete mode 100644 docs/docs/en/api/faststream/nats/DiscardPolicy.md delete mode 100644 docs/docs/en/api/faststream/nats/ExternalStream.md delete mode 100644 docs/docs/en/api/faststream/nats/JStream.md delete mode 100644 docs/docs/en/api/faststream/nats/KvWatch.md delete mode 100644 docs/docs/en/api/faststream/nats/NatsBroker.md delete mode 100644 docs/docs/en/api/faststream/nats/NatsPublisher.md delete mode 100644 docs/docs/en/api/faststream/nats/NatsResponse.md delete mode 100644 docs/docs/en/api/faststream/nats/NatsRoute.md delete mode 100644 docs/docs/en/api/faststream/nats/NatsRouter.md delete mode 100644 docs/docs/en/api/faststream/nats/ObjWatch.md delete mode 100644 docs/docs/en/api/faststream/nats/Placement.md delete mode 100644 docs/docs/en/api/faststream/nats/PullSub.md delete mode 100644 docs/docs/en/api/faststream/nats/RePublish.md delete mode 100644 docs/docs/en/api/faststream/nats/ReplayPolicy.md delete mode 100644 docs/docs/en/api/faststream/nats/RetentionPolicy.md delete mode 100644 docs/docs/en/api/faststream/nats/StorageType.md delete mode 100644 docs/docs/en/api/faststream/nats/StreamConfig.md delete mode 100644 docs/docs/en/api/faststream/nats/StreamSource.md delete mode 100644 docs/docs/en/api/faststream/nats/TestApp.md delete mode 100644 docs/docs/en/api/faststream/nats/TestNatsBroker.md delete mode 100644 docs/docs/en/api/faststream/nats/broker/NatsBroker.md delete mode 100644 docs/docs/en/api/faststream/nats/broker/broker/NatsBroker.md delete mode 100644 docs/docs/en/api/faststream/nats/broker/logging/NatsLoggingBroker.md delete mode 100644 docs/docs/en/api/faststream/nats/broker/registrator/NatsRegistrator.md delete mode 100644 docs/docs/en/api/faststream/nats/fastapi/Context.md delete mode 100644 docs/docs/en/api/faststream/nats/fastapi/NatsRouter.md delete mode 100644 docs/docs/en/api/faststream/nats/fastapi/fastapi/NatsRouter.md delete mode 100644 docs/docs/en/api/faststream/nats/helpers/KVBucketDeclarer.md delete mode 100644 docs/docs/en/api/faststream/nats/helpers/OSBucketDeclarer.md delete mode 100644 docs/docs/en/api/faststream/nats/helpers/StreamBuilder.md delete mode 100644 docs/docs/en/api/faststream/nats/helpers/bucket_declarer/KVBucketDeclarer.md delete mode 100644 docs/docs/en/api/faststream/nats/helpers/obj_storage_declarer/OSBucketDeclarer.md delete mode 100644 docs/docs/en/api/faststream/nats/helpers/object_builder/StreamBuilder.md delete mode 100644 docs/docs/en/api/faststream/nats/message/NatsBatchMessage.md delete mode 100644 docs/docs/en/api/faststream/nats/message/NatsKvMessage.md delete mode 100644 docs/docs/en/api/faststream/nats/message/NatsMessage.md delete mode 100644 docs/docs/en/api/faststream/nats/message/NatsObjMessage.md delete mode 100644 docs/docs/en/api/faststream/nats/opentelemetry/NatsTelemetryMiddleware.md delete mode 100644 docs/docs/en/api/faststream/nats/opentelemetry/middleware/NatsTelemetryMiddleware.md delete mode 100644 docs/docs/en/api/faststream/nats/opentelemetry/provider/BaseNatsTelemetrySettingsProvider.md delete mode 100644 docs/docs/en/api/faststream/nats/opentelemetry/provider/NatsBatchTelemetrySettingsProvider.md delete mode 100644 docs/docs/en/api/faststream/nats/opentelemetry/provider/NatsTelemetrySettingsProvider.md delete mode 100644 docs/docs/en/api/faststream/nats/opentelemetry/provider/telemetry_attributes_provider_factory.md delete mode 100644 docs/docs/en/api/faststream/nats/parser/BatchParser.md delete mode 100644 docs/docs/en/api/faststream/nats/parser/JsParser.md delete mode 100644 docs/docs/en/api/faststream/nats/parser/KvParser.md delete mode 100644 docs/docs/en/api/faststream/nats/parser/NatsBaseParser.md delete mode 100644 docs/docs/en/api/faststream/nats/parser/NatsParser.md delete mode 100644 docs/docs/en/api/faststream/nats/parser/ObjParser.md delete mode 100644 docs/docs/en/api/faststream/nats/publisher/asyncapi/AsyncAPIPublisher.md delete mode 100644 docs/docs/en/api/faststream/nats/publisher/producer/NatsFastProducer.md delete mode 100644 docs/docs/en/api/faststream/nats/publisher/producer/NatsJSFastProducer.md delete mode 100644 docs/docs/en/api/faststream/nats/publisher/usecase/LogicPublisher.md delete mode 100644 docs/docs/en/api/faststream/nats/response/NatsResponse.md delete mode 100644 docs/docs/en/api/faststream/nats/router/NatsPublisher.md delete mode 100644 docs/docs/en/api/faststream/nats/router/NatsRoute.md delete mode 100644 docs/docs/en/api/faststream/nats/router/NatsRouter.md delete mode 100644 docs/docs/en/api/faststream/nats/schemas/JStream.md delete mode 100644 docs/docs/en/api/faststream/nats/schemas/KvWatch.md delete mode 100644 docs/docs/en/api/faststream/nats/schemas/ObjWatch.md delete mode 100644 docs/docs/en/api/faststream/nats/schemas/PullSub.md delete mode 100644 docs/docs/en/api/faststream/nats/schemas/js_stream/JStream.md delete mode 100644 docs/docs/en/api/faststream/nats/schemas/js_stream/compile_nats_wildcard.md delete mode 100644 docs/docs/en/api/faststream/nats/schemas/js_stream/is_subject_match_wildcard.md delete mode 100644 docs/docs/en/api/faststream/nats/schemas/kv_watch/KvWatch.md delete mode 100644 docs/docs/en/api/faststream/nats/schemas/obj_watch/ObjWatch.md delete mode 100644 docs/docs/en/api/faststream/nats/schemas/pull_sub/PullSub.md delete mode 100644 docs/docs/en/api/faststream/nats/security/parse_security.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIBatchPullStreamSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentCoreSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentPullStreamSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentPushStreamSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPICoreSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIKeyValueWatchSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIObjStoreWatchSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIPullStreamSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIStreamSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPISubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/factory/create_subscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/subscription/UnsubscribeAdapter.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/subscription/Unsubscriptable.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/subscription/Watchable.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/BatchPullStreamSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentCoreSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentPullStreamSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentPushStreamSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/CoreSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/KeyValueWatchSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/LogicSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/ObjStoreWatchSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/PullStreamSubscriber.md delete mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/PushStreamSubscription.md delete mode 100644 docs/docs/en/api/faststream/nats/testing/FakeProducer.md delete mode 100644 docs/docs/en/api/faststream/nats/testing/PatchedMessage.md delete mode 100644 docs/docs/en/api/faststream/nats/testing/TestNatsBroker.md delete mode 100644 docs/docs/en/api/faststream/nats/testing/build_message.md delete mode 100644 docs/docs/en/api/faststream/opentelemetry/TelemetryMiddleware.md delete mode 100644 docs/docs/en/api/faststream/opentelemetry/TelemetrySettingsProvider.md delete mode 100644 docs/docs/en/api/faststream/opentelemetry/consts/MessageAction.md delete mode 100644 docs/docs/en/api/faststream/opentelemetry/middleware/BaseTelemetryMiddleware.md delete mode 100644 docs/docs/en/api/faststream/opentelemetry/middleware/TelemetryMiddleware.md delete mode 100644 docs/docs/en/api/faststream/opentelemetry/provider/TelemetrySettingsProvider.md delete mode 100644 docs/docs/en/api/faststream/rabbit/ExchangeType.md delete mode 100644 docs/docs/en/api/faststream/rabbit/RabbitBroker.md delete mode 100644 docs/docs/en/api/faststream/rabbit/RabbitExchange.md delete mode 100644 docs/docs/en/api/faststream/rabbit/RabbitPublisher.md delete mode 100644 docs/docs/en/api/faststream/rabbit/RabbitQueue.md delete mode 100644 docs/docs/en/api/faststream/rabbit/RabbitResponse.md delete mode 100644 docs/docs/en/api/faststream/rabbit/RabbitRoute.md delete mode 100644 docs/docs/en/api/faststream/rabbit/RabbitRouter.md delete mode 100644 docs/docs/en/api/faststream/rabbit/ReplyConfig.md delete mode 100644 docs/docs/en/api/faststream/rabbit/TestApp.md delete mode 100644 docs/docs/en/api/faststream/rabbit/TestRabbitBroker.md delete mode 100644 docs/docs/en/api/faststream/rabbit/broker/RabbitBroker.md delete mode 100644 docs/docs/en/api/faststream/rabbit/broker/broker/RabbitBroker.md delete mode 100644 docs/docs/en/api/faststream/rabbit/broker/logging/RabbitLoggingBroker.md delete mode 100644 docs/docs/en/api/faststream/rabbit/broker/registrator/RabbitRegistrator.md delete mode 100644 docs/docs/en/api/faststream/rabbit/fastapi/Context.md delete mode 100644 docs/docs/en/api/faststream/rabbit/fastapi/RabbitRouter.md delete mode 100644 docs/docs/en/api/faststream/rabbit/fastapi/router/RabbitRouter.md delete mode 100644 docs/docs/en/api/faststream/rabbit/message/RabbitMessage.md delete mode 100644 docs/docs/en/api/faststream/rabbit/opentelemetry/RabbitTelemetryMiddleware.md delete mode 100644 docs/docs/en/api/faststream/rabbit/opentelemetry/middleware/RabbitTelemetryMiddleware.md delete mode 100644 docs/docs/en/api/faststream/rabbit/opentelemetry/provider/RabbitTelemetrySettingsProvider.md delete mode 100644 docs/docs/en/api/faststream/rabbit/parser/AioPikaParser.md delete mode 100644 docs/docs/en/api/faststream/rabbit/publisher/asyncapi/AsyncAPIPublisher.md delete mode 100644 docs/docs/en/api/faststream/rabbit/publisher/producer/AioPikaFastProducer.md delete mode 100644 docs/docs/en/api/faststream/rabbit/publisher/usecase/LogicPublisher.md delete mode 100644 docs/docs/en/api/faststream/rabbit/publisher/usecase/PublishKwargs.md delete mode 100644 docs/docs/en/api/faststream/rabbit/response/RabbitResponse.md delete mode 100644 docs/docs/en/api/faststream/rabbit/router/RabbitPublisher.md delete mode 100644 docs/docs/en/api/faststream/rabbit/router/RabbitRoute.md delete mode 100644 docs/docs/en/api/faststream/rabbit/router/RabbitRouter.md delete mode 100644 docs/docs/en/api/faststream/rabbit/schemas/BaseRMQInformation.md delete mode 100644 docs/docs/en/api/faststream/rabbit/schemas/ExchangeType.md delete mode 100644 docs/docs/en/api/faststream/rabbit/schemas/RabbitExchange.md delete mode 100644 docs/docs/en/api/faststream/rabbit/schemas/RabbitQueue.md delete mode 100644 docs/docs/en/api/faststream/rabbit/schemas/ReplyConfig.md delete mode 100644 docs/docs/en/api/faststream/rabbit/schemas/constants/ExchangeType.md delete mode 100644 docs/docs/en/api/faststream/rabbit/schemas/exchange/RabbitExchange.md delete mode 100644 docs/docs/en/api/faststream/rabbit/schemas/proto/BaseRMQInformation.md delete mode 100644 docs/docs/en/api/faststream/rabbit/schemas/queue/RabbitQueue.md delete mode 100644 docs/docs/en/api/faststream/rabbit/schemas/reply/ReplyConfig.md delete mode 100644 docs/docs/en/api/faststream/rabbit/security/parse_security.md delete mode 100644 docs/docs/en/api/faststream/rabbit/subscriber/asyncapi/AsyncAPISubscriber.md delete mode 100644 docs/docs/en/api/faststream/rabbit/subscriber/factory/create_subscriber.md delete mode 100644 docs/docs/en/api/faststream/rabbit/subscriber/usecase/LogicSubscriber.md delete mode 100644 docs/docs/en/api/faststream/rabbit/testing/FakeProducer.md delete mode 100644 docs/docs/en/api/faststream/rabbit/testing/PatchedMessage.md delete mode 100644 docs/docs/en/api/faststream/rabbit/testing/TestRabbitBroker.md delete mode 100644 docs/docs/en/api/faststream/rabbit/testing/apply_pattern.md delete mode 100644 docs/docs/en/api/faststream/rabbit/testing/build_message.md delete mode 100644 docs/docs/en/api/faststream/rabbit/utils/RabbitDeclarer.md delete mode 100644 docs/docs/en/api/faststream/rabbit/utils/build_url.md delete mode 100644 docs/docs/en/api/faststream/rabbit/utils/is_routing_exchange.md delete mode 100644 docs/docs/en/api/faststream/redis/ListSub.md delete mode 100644 docs/docs/en/api/faststream/redis/PubSub.md delete mode 100644 docs/docs/en/api/faststream/redis/RedisBroker.md delete mode 100644 docs/docs/en/api/faststream/redis/RedisPublisher.md delete mode 100644 docs/docs/en/api/faststream/redis/RedisResponse.md delete mode 100644 docs/docs/en/api/faststream/redis/RedisRoute.md delete mode 100644 docs/docs/en/api/faststream/redis/RedisRouter.md delete mode 100644 docs/docs/en/api/faststream/redis/StreamSub.md delete mode 100644 docs/docs/en/api/faststream/redis/TestApp.md delete mode 100644 docs/docs/en/api/faststream/redis/TestRedisBroker.md delete mode 100644 docs/docs/en/api/faststream/redis/broker/broker/RedisBroker.md delete mode 100644 docs/docs/en/api/faststream/redis/broker/logging/RedisLoggingBroker.md delete mode 100644 docs/docs/en/api/faststream/redis/broker/registrator/RedisRegistrator.md delete mode 100644 docs/docs/en/api/faststream/redis/fastapi/Context.md delete mode 100644 docs/docs/en/api/faststream/redis/fastapi/RedisRouter.md delete mode 100644 docs/docs/en/api/faststream/redis/fastapi/fastapi/RedisRouter.md delete mode 100644 docs/docs/en/api/faststream/redis/message/BatchListMessage.md delete mode 100644 docs/docs/en/api/faststream/redis/message/BatchStreamMessage.md delete mode 100644 docs/docs/en/api/faststream/redis/message/DefaultListMessage.md delete mode 100644 docs/docs/en/api/faststream/redis/message/DefaultStreamMessage.md delete mode 100644 docs/docs/en/api/faststream/redis/message/ListMessage.md delete mode 100644 docs/docs/en/api/faststream/redis/message/PubSubMessage.md delete mode 100644 docs/docs/en/api/faststream/redis/message/RedisBatchListMessage.md delete mode 100644 docs/docs/en/api/faststream/redis/message/RedisBatchStreamMessage.md delete mode 100644 docs/docs/en/api/faststream/redis/message/RedisListMessage.md delete mode 100644 docs/docs/en/api/faststream/redis/message/RedisMessage.md delete mode 100644 docs/docs/en/api/faststream/redis/message/RedisStreamMessage.md delete mode 100644 docs/docs/en/api/faststream/redis/message/StreamMessage.md delete mode 100644 docs/docs/en/api/faststream/redis/message/UnifyRedisDict.md delete mode 100644 docs/docs/en/api/faststream/redis/message/UnifyRedisMessage.md delete mode 100644 docs/docs/en/api/faststream/redis/opentelemetry/RedisTelemetryMiddleware.md delete mode 100644 docs/docs/en/api/faststream/redis/opentelemetry/middleware/RedisTelemetryMiddleware.md delete mode 100644 docs/docs/en/api/faststream/redis/opentelemetry/provider/RedisTelemetrySettingsProvider.md delete mode 100644 docs/docs/en/api/faststream/redis/parser/RawMessage.md delete mode 100644 docs/docs/en/api/faststream/redis/parser/RedisBatchListParser.md delete mode 100644 docs/docs/en/api/faststream/redis/parser/RedisBatchStreamParser.md delete mode 100644 docs/docs/en/api/faststream/redis/parser/RedisListParser.md delete mode 100644 docs/docs/en/api/faststream/redis/parser/RedisPubSubParser.md delete mode 100644 docs/docs/en/api/faststream/redis/parser/RedisStreamParser.md delete mode 100644 docs/docs/en/api/faststream/redis/parser/SimpleParser.md delete mode 100644 docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIChannelPublisher.md delete mode 100644 docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIListBatchPublisher.md delete mode 100644 docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIListPublisher.md delete mode 100644 docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIPublisher.md delete mode 100644 docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIStreamPublisher.md delete mode 100644 docs/docs/en/api/faststream/redis/publisher/producer/RedisFastProducer.md delete mode 100644 docs/docs/en/api/faststream/redis/publisher/usecase/ChannelPublisher.md delete mode 100644 docs/docs/en/api/faststream/redis/publisher/usecase/ListBatchPublisher.md delete mode 100644 docs/docs/en/api/faststream/redis/publisher/usecase/ListPublisher.md delete mode 100644 docs/docs/en/api/faststream/redis/publisher/usecase/LogicPublisher.md delete mode 100644 docs/docs/en/api/faststream/redis/publisher/usecase/StreamPublisher.md delete mode 100644 docs/docs/en/api/faststream/redis/response/RedisResponse.md delete mode 100644 docs/docs/en/api/faststream/redis/router/RedisPublisher.md delete mode 100644 docs/docs/en/api/faststream/redis/router/RedisRoute.md delete mode 100644 docs/docs/en/api/faststream/redis/router/RedisRouter.md delete mode 100644 docs/docs/en/api/faststream/redis/schemas/ListSub.md delete mode 100644 docs/docs/en/api/faststream/redis/schemas/PubSub.md delete mode 100644 docs/docs/en/api/faststream/redis/schemas/StreamSub.md delete mode 100644 docs/docs/en/api/faststream/redis/schemas/list_sub/ListSub.md delete mode 100644 docs/docs/en/api/faststream/redis/schemas/proto/RedisAsyncAPIProtocol.md delete mode 100644 docs/docs/en/api/faststream/redis/schemas/proto/validate_options.md delete mode 100644 docs/docs/en/api/faststream/redis/schemas/pub_sub/PubSub.md delete mode 100644 docs/docs/en/api/faststream/redis/schemas/stream_sub/StreamSub.md delete mode 100644 docs/docs/en/api/faststream/redis/security/parse_security.md delete mode 100644 docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIChannelSubscriber.md delete mode 100644 docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIListBatchSubscriber.md delete mode 100644 docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIListSubscriber.md delete mode 100644 docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIStreamBatchSubscriber.md delete mode 100644 docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIStreamSubscriber.md delete mode 100644 docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPISubscriber.md delete mode 100644 docs/docs/en/api/faststream/redis/subscriber/factory/create_subscriber.md delete mode 100644 docs/docs/en/api/faststream/redis/subscriber/usecase/BatchListSubscriber.md delete mode 100644 docs/docs/en/api/faststream/redis/subscriber/usecase/BatchStreamSubscriber.md delete mode 100644 docs/docs/en/api/faststream/redis/subscriber/usecase/ChannelSubscriber.md delete mode 100644 docs/docs/en/api/faststream/redis/subscriber/usecase/ListSubscriber.md delete mode 100644 docs/docs/en/api/faststream/redis/subscriber/usecase/LogicSubscriber.md delete mode 100644 docs/docs/en/api/faststream/redis/subscriber/usecase/StreamSubscriber.md delete mode 100644 docs/docs/en/api/faststream/redis/testing/FakeProducer.md delete mode 100644 docs/docs/en/api/faststream/redis/testing/TestRedisBroker.md delete mode 100644 docs/docs/en/api/faststream/redis/testing/build_message.md delete mode 100644 docs/docs/en/api/faststream/security/BaseSecurity.md delete mode 100644 docs/docs/en/api/faststream/security/SASLPlaintext.md delete mode 100644 docs/docs/en/api/faststream/security/SASLScram256.md delete mode 100644 docs/docs/en/api/faststream/security/SASLScram512.md delete mode 100644 docs/docs/en/api/faststream/testing/TestApp.md delete mode 100644 docs/docs/en/api/faststream/testing/app/TestApp.md delete mode 100644 docs/docs/en/api/faststream/testing/broker/TestBroker.md delete mode 100644 docs/docs/en/api/faststream/testing/broker/call_handler.md delete mode 100644 docs/docs/en/api/faststream/testing/broker/patch_broker_calls.md delete mode 100644 docs/docs/en/api/faststream/types/LoggerProto.md delete mode 100644 docs/docs/en/api/faststream/types/StandardDataclass.md delete mode 100644 docs/docs/en/api/faststream/utils/Context.md delete mode 100644 docs/docs/en/api/faststream/utils/ContextRepo.md delete mode 100644 docs/docs/en/api/faststream/utils/Depends.md delete mode 100644 docs/docs/en/api/faststream/utils/Header.md delete mode 100644 docs/docs/en/api/faststream/utils/NoCast.md delete mode 100644 docs/docs/en/api/faststream/utils/Path.md delete mode 100644 docs/docs/en/api/faststream/utils/apply_types.md delete mode 100644 docs/docs/en/api/faststream/utils/ast/find_ast_node.md delete mode 100644 docs/docs/en/api/faststream/utils/ast/find_withitems.md delete mode 100644 docs/docs/en/api/faststream/utils/ast/get_withitem_calls.md delete mode 100644 docs/docs/en/api/faststream/utils/ast/is_contains_context_name.md delete mode 100644 docs/docs/en/api/faststream/utils/classes/Singleton.md delete mode 100644 docs/docs/en/api/faststream/utils/context/Context.md delete mode 100644 docs/docs/en/api/faststream/utils/context/ContextRepo.md delete mode 100644 docs/docs/en/api/faststream/utils/context/Header.md delete mode 100644 docs/docs/en/api/faststream/utils/context/Path.md delete mode 100644 docs/docs/en/api/faststream/utils/context/builders/Context.md delete mode 100644 docs/docs/en/api/faststream/utils/context/builders/Header.md delete mode 100644 docs/docs/en/api/faststream/utils/context/builders/Path.md delete mode 100644 docs/docs/en/api/faststream/utils/context/repository/ContextRepo.md delete mode 100644 docs/docs/en/api/faststream/utils/context/types/Context.md delete mode 100644 docs/docs/en/api/faststream/utils/context/types/resolve_context_by_name.md delete mode 100644 docs/docs/en/api/faststream/utils/data/filter_by_dict.md delete mode 100644 docs/docs/en/api/faststream/utils/functions/call_or_await.md delete mode 100644 docs/docs/en/api/faststream/utils/functions/drop_response_type.md delete mode 100644 docs/docs/en/api/faststream/utils/functions/fake_context.md delete mode 100644 docs/docs/en/api/faststream/utils/functions/sync_fake_context.md delete mode 100644 docs/docs/en/api/faststream/utils/functions/timeout_scope.md delete mode 100644 docs/docs/en/api/faststream/utils/functions/to_async.md delete mode 100644 docs/docs/en/api/faststream/utils/no_cast/NoCast.md delete mode 100644 docs/docs/en/api/faststream/utils/path/compile_path.md diff --git a/.github/workflows/docs_update-references.yaml b/.github/workflows/docs_update-references.yaml index a462164752..f29c3d240e 100644 --- a/.github/workflows/docs_update-references.yaml +++ b/.github/workflows/docs_update-references.yaml @@ -7,6 +7,10 @@ on: - synchronize paths: - faststream/** + - docs/**/api/** + +permissions: + contents: write jobs: check-docs-changes: diff --git a/.github/workflows/pr_codeql.yml b/.github/workflows/pr_codeql.yml index 7e97facb72..b933ed3e36 100644 --- a/.github/workflows/pr_codeql.yml +++ b/.github/workflows/pr_codeql.yml @@ -14,8 +14,9 @@ name: "CodeQL" on: pull_request: types: - - opened - - synchronize + # - opened + # - synchronize + - review_requested branches: - main schedule: diff --git a/.github/workflows/pr_dependency-review.yaml b/.github/workflows/pr_dependency-review.yaml index 11ad023407..63064ef068 100644 --- a/.github/workflows/pr_dependency-review.yaml +++ b/.github/workflows/pr_dependency-review.yaml @@ -9,8 +9,9 @@ name: 'Dependency Review' on: pull_request: types: - - opened - - synchronize + # - opened + # - synchronize + - review_requested branches: - main paths: diff --git a/.github/workflows/pr_tests.yaml b/.github/workflows/pr_tests.yaml index 204dd3c30d..21a76786a9 100644 --- a/.github/workflows/pr_tests.yaml +++ b/.github/workflows/pr_tests.yaml @@ -3,8 +3,9 @@ name: Run all tests on: pull_request: types: - - opened - - synchronize + # - opened + # - synchronize + - review_requested jobs: static_analysis: diff --git a/docs/docs/en/api/faststream/BaseMiddleware.md b/docs/docs/en/api/faststream/BaseMiddleware.md deleted file mode 100644 index 21145bf983..0000000000 --- a/docs/docs/en/api/faststream/BaseMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.BaseMiddleware diff --git a/docs/docs/en/api/faststream/Context.md b/docs/docs/en/api/faststream/Context.md deleted file mode 100644 index c6400b1e56..0000000000 --- a/docs/docs/en/api/faststream/Context.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.Context diff --git a/docs/docs/en/api/faststream/Depends.md b/docs/docs/en/api/faststream/Depends.md deleted file mode 100644 index c0704687e8..0000000000 --- a/docs/docs/en/api/faststream/Depends.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: fast_depends.use.Depends diff --git a/docs/docs/en/api/faststream/FastStream.md b/docs/docs/en/api/faststream/FastStream.md deleted file mode 100644 index 8d79ba3921..0000000000 --- a/docs/docs/en/api/faststream/FastStream.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.FastStream diff --git a/docs/docs/en/api/faststream/Header.md b/docs/docs/en/api/faststream/Header.md deleted file mode 100644 index 98bdb592a7..0000000000 --- a/docs/docs/en/api/faststream/Header.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.Header diff --git a/docs/docs/en/api/faststream/Path.md b/docs/docs/en/api/faststream/Path.md deleted file mode 100644 index 7716f47c23..0000000000 --- a/docs/docs/en/api/faststream/Path.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.Path diff --git a/docs/docs/en/api/faststream/Response.md b/docs/docs/en/api/faststream/Response.md deleted file mode 100644 index 3475e3f584..0000000000 --- a/docs/docs/en/api/faststream/Response.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.Response diff --git a/docs/docs/en/api/faststream/TestApp.md b/docs/docs/en/api/faststream/TestApp.md deleted file mode 100644 index 2301790c21..0000000000 --- a/docs/docs/en/api/faststream/TestApp.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.TestApp diff --git a/docs/docs/en/api/faststream/app/FastStream.md b/docs/docs/en/api/faststream/app/FastStream.md deleted file mode 100644 index 24235253c2..0000000000 --- a/docs/docs/en/api/faststream/app/FastStream.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.app.FastStream diff --git a/docs/docs/en/api/faststream/apply_types.md b/docs/docs/en/api/faststream/apply_types.md deleted file mode 100644 index 9dc4603bd2..0000000000 --- a/docs/docs/en/api/faststream/apply_types.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: fast_depends.use.inject diff --git a/docs/docs/en/api/faststream/asyncapi/abc/AsyncAPIOperation.md b/docs/docs/en/api/faststream/asyncapi/abc/AsyncAPIOperation.md deleted file mode 100644 index 1e80c37541..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/abc/AsyncAPIOperation.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.abc.AsyncAPIOperation diff --git a/docs/docs/en/api/faststream/asyncapi/generate/get_app_schema.md b/docs/docs/en/api/faststream/asyncapi/generate/get_app_schema.md deleted file mode 100644 index 07475ef5a8..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/generate/get_app_schema.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.generate.get_app_schema diff --git a/docs/docs/en/api/faststream/asyncapi/generate/get_broker_channels.md b/docs/docs/en/api/faststream/asyncapi/generate/get_broker_channels.md deleted file mode 100644 index f5788bae0b..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/generate/get_broker_channels.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.generate.get_broker_channels diff --git a/docs/docs/en/api/faststream/asyncapi/generate/get_broker_server.md b/docs/docs/en/api/faststream/asyncapi/generate/get_broker_server.md deleted file mode 100644 index 5f652d5b59..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/generate/get_broker_server.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.generate.get_broker_server diff --git a/docs/docs/en/api/faststream/asyncapi/get_app_schema.md b/docs/docs/en/api/faststream/asyncapi/get_app_schema.md deleted file mode 100644 index 03d7e4466b..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/get_app_schema.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.get_app_schema diff --git a/docs/docs/en/api/faststream/asyncapi/get_asyncapi_html.md b/docs/docs/en/api/faststream/asyncapi/get_asyncapi_html.md deleted file mode 100644 index 1ed4ce5500..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/get_asyncapi_html.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.get_asyncapi_html diff --git a/docs/docs/en/api/faststream/asyncapi/message/get_model_schema.md b/docs/docs/en/api/faststream/asyncapi/message/get_model_schema.md deleted file mode 100644 index 0099721324..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/message/get_model_schema.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.message.get_model_schema diff --git a/docs/docs/en/api/faststream/asyncapi/message/get_response_schema.md b/docs/docs/en/api/faststream/asyncapi/message/get_response_schema.md deleted file mode 100644 index e297370d01..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/message/get_response_schema.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.message.get_response_schema diff --git a/docs/docs/en/api/faststream/asyncapi/message/parse_handler_params.md b/docs/docs/en/api/faststream/asyncapi/message/parse_handler_params.md deleted file mode 100644 index ffaf1cf7dc..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/message/parse_handler_params.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.message.parse_handler_params diff --git a/docs/docs/en/api/faststream/asyncapi/proto/AsyncAPIProto.md b/docs/docs/en/api/faststream/asyncapi/proto/AsyncAPIProto.md deleted file mode 100644 index 6905c2d82f..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/proto/AsyncAPIProto.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.proto.AsyncAPIProto diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Channel.md b/docs/docs/en/api/faststream/asyncapi/schema/Channel.md deleted file mode 100644 index 4d3b7e83a3..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/Channel.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.Channel diff --git a/docs/docs/en/api/faststream/asyncapi/schema/ChannelBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/ChannelBinding.md deleted file mode 100644 index 4aaf57e584..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/ChannelBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.ChannelBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Components.md b/docs/docs/en/api/faststream/asyncapi/schema/Components.md deleted file mode 100644 index 9dc785c35e..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/Components.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.Components diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Contact.md b/docs/docs/en/api/faststream/asyncapi/schema/Contact.md deleted file mode 100644 index ded05c314d..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/Contact.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.Contact diff --git a/docs/docs/en/api/faststream/asyncapi/schema/ContactDict.md b/docs/docs/en/api/faststream/asyncapi/schema/ContactDict.md deleted file mode 100644 index 4170e564f6..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/ContactDict.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.ContactDict diff --git a/docs/docs/en/api/faststream/asyncapi/schema/CorrelationId.md b/docs/docs/en/api/faststream/asyncapi/schema/CorrelationId.md deleted file mode 100644 index cd12cdbba6..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/CorrelationId.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.CorrelationId diff --git a/docs/docs/en/api/faststream/asyncapi/schema/ExternalDocs.md b/docs/docs/en/api/faststream/asyncapi/schema/ExternalDocs.md deleted file mode 100644 index 7899164431..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/ExternalDocs.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.ExternalDocs diff --git a/docs/docs/en/api/faststream/asyncapi/schema/ExternalDocsDict.md b/docs/docs/en/api/faststream/asyncapi/schema/ExternalDocsDict.md deleted file mode 100644 index d80a12b10f..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/ExternalDocsDict.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.ExternalDocsDict diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Info.md b/docs/docs/en/api/faststream/asyncapi/schema/Info.md deleted file mode 100644 index 62eb9e4832..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/Info.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.Info diff --git a/docs/docs/en/api/faststream/asyncapi/schema/License.md b/docs/docs/en/api/faststream/asyncapi/schema/License.md deleted file mode 100644 index adb11654e4..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/License.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.License diff --git a/docs/docs/en/api/faststream/asyncapi/schema/LicenseDict.md b/docs/docs/en/api/faststream/asyncapi/schema/LicenseDict.md deleted file mode 100644 index 7c200c4ac7..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/LicenseDict.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.LicenseDict diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Message.md b/docs/docs/en/api/faststream/asyncapi/schema/Message.md deleted file mode 100644 index f04adf939f..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/Message.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.Message diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Operation.md b/docs/docs/en/api/faststream/asyncapi/schema/Operation.md deleted file mode 100644 index 2d43f05b89..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/Operation.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.Operation diff --git a/docs/docs/en/api/faststream/asyncapi/schema/OperationBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/OperationBinding.md deleted file mode 100644 index 0dc2099b66..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/OperationBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.OperationBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Reference.md b/docs/docs/en/api/faststream/asyncapi/schema/Reference.md deleted file mode 100644 index 778b70e548..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/Reference.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.Reference diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Schema.md b/docs/docs/en/api/faststream/asyncapi/schema/Schema.md deleted file mode 100644 index a496f56769..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/Schema.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.Schema diff --git a/docs/docs/en/api/faststream/asyncapi/schema/SecuritySchemaComponent.md b/docs/docs/en/api/faststream/asyncapi/schema/SecuritySchemaComponent.md deleted file mode 100644 index 61c0a83bf7..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/SecuritySchemaComponent.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.SecuritySchemaComponent diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Server.md b/docs/docs/en/api/faststream/asyncapi/schema/Server.md deleted file mode 100644 index e0d028314e..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/Server.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.Server diff --git a/docs/docs/en/api/faststream/asyncapi/schema/ServerBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/ServerBinding.md deleted file mode 100644 index 8dcaba6701..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/ServerBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.ServerBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Tag.md b/docs/docs/en/api/faststream/asyncapi/schema/Tag.md deleted file mode 100644 index 0c32584f58..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/Tag.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.Tag diff --git a/docs/docs/en/api/faststream/asyncapi/schema/TagDict.md b/docs/docs/en/api/faststream/asyncapi/schema/TagDict.md deleted file mode 100644 index ebb68351e0..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/TagDict.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.TagDict diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/ChannelBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/ChannelBinding.md deleted file mode 100644 index 51a5ed6586..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/ChannelBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.ChannelBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/OperationBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/OperationBinding.md deleted file mode 100644 index 37a28843be..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/OperationBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.OperationBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/ServerBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/ServerBinding.md deleted file mode 100644 index d91efbfe52..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/ServerBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.ServerBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/ChannelBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/ChannelBinding.md deleted file mode 100644 index 6c5c546126..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/ChannelBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.amqp.ChannelBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/Exchange.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/Exchange.md deleted file mode 100644 index b81a881827..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/Exchange.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.amqp.Exchange diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/OperationBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/OperationBinding.md deleted file mode 100644 index 5b9b34dd78..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/OperationBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.amqp.OperationBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/Queue.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/Queue.md deleted file mode 100644 index 395a7aedb0..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/Queue.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.amqp.Queue diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/ServerBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/ServerBinding.md deleted file mode 100644 index 0daa6510ec..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/ServerBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.amqp.ServerBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/ChannelBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/ChannelBinding.md deleted file mode 100644 index f327d3147e..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/ChannelBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.kafka.ChannelBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/OperationBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/OperationBinding.md deleted file mode 100644 index adaa645db0..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/OperationBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.kafka.OperationBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/ServerBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/ServerBinding.md deleted file mode 100644 index e52855bd45..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/ServerBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.kafka.ServerBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/ChannelBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/ChannelBinding.md deleted file mode 100644 index a2a8872d64..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/ChannelBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.main.ChannelBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/OperationBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/OperationBinding.md deleted file mode 100644 index 1e597b1757..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/OperationBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.main.OperationBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/ServerBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/ServerBinding.md deleted file mode 100644 index 4dacad7825..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/ServerBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.main.ServerBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/ChannelBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/ChannelBinding.md deleted file mode 100644 index 11135ad968..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/ChannelBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.nats.ChannelBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/OperationBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/OperationBinding.md deleted file mode 100644 index 8e0cd8acb1..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/OperationBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.nats.OperationBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/ServerBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/ServerBinding.md deleted file mode 100644 index 7d95811c44..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/ServerBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.nats.ServerBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/ChannelBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/ChannelBinding.md deleted file mode 100644 index fef00d4e8a..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/ChannelBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.redis.ChannelBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/OperationBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/OperationBinding.md deleted file mode 100644 index 81b906045b..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/OperationBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.redis.OperationBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/ServerBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/ServerBinding.md deleted file mode 100644 index 7d12316c85..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/ServerBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.redis.ServerBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/ChannelBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/ChannelBinding.md deleted file mode 100644 index 4a255559db..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/ChannelBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.sqs.ChannelBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/OperationBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/OperationBinding.md deleted file mode 100644 index 6a438685b4..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/OperationBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.sqs.OperationBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/ServerBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/ServerBinding.md deleted file mode 100644 index f6a200b3f7..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/ServerBinding.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.bindings.sqs.ServerBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/channels/Channel.md b/docs/docs/en/api/faststream/asyncapi/schema/channels/Channel.md deleted file mode 100644 index 7e8a913786..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/channels/Channel.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.channels.Channel diff --git a/docs/docs/en/api/faststream/asyncapi/schema/info/Contact.md b/docs/docs/en/api/faststream/asyncapi/schema/info/Contact.md deleted file mode 100644 index 2dfb0d074e..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/info/Contact.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.info.Contact diff --git a/docs/docs/en/api/faststream/asyncapi/schema/info/ContactDict.md b/docs/docs/en/api/faststream/asyncapi/schema/info/ContactDict.md deleted file mode 100644 index adcd40891f..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/info/ContactDict.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.info.ContactDict diff --git a/docs/docs/en/api/faststream/asyncapi/schema/info/Info.md b/docs/docs/en/api/faststream/asyncapi/schema/info/Info.md deleted file mode 100644 index 88201af129..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/info/Info.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.info.Info diff --git a/docs/docs/en/api/faststream/asyncapi/schema/info/License.md b/docs/docs/en/api/faststream/asyncapi/schema/info/License.md deleted file mode 100644 index ad564b3886..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/info/License.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.info.License diff --git a/docs/docs/en/api/faststream/asyncapi/schema/info/LicenseDict.md b/docs/docs/en/api/faststream/asyncapi/schema/info/LicenseDict.md deleted file mode 100644 index 29fab879e4..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/info/LicenseDict.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.info.LicenseDict diff --git a/docs/docs/en/api/faststream/asyncapi/schema/main/Components.md b/docs/docs/en/api/faststream/asyncapi/schema/main/Components.md deleted file mode 100644 index 782ed0e625..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/main/Components.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.main.Components diff --git a/docs/docs/en/api/faststream/asyncapi/schema/main/Schema.md b/docs/docs/en/api/faststream/asyncapi/schema/main/Schema.md deleted file mode 100644 index 1280877df1..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/main/Schema.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.main.Schema diff --git a/docs/docs/en/api/faststream/asyncapi/schema/message/CorrelationId.md b/docs/docs/en/api/faststream/asyncapi/schema/message/CorrelationId.md deleted file mode 100644 index 7693915525..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/message/CorrelationId.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.message.CorrelationId diff --git a/docs/docs/en/api/faststream/asyncapi/schema/message/Message.md b/docs/docs/en/api/faststream/asyncapi/schema/message/Message.md deleted file mode 100644 index e3959190b0..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/message/Message.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.message.Message diff --git a/docs/docs/en/api/faststream/asyncapi/schema/operations/Operation.md b/docs/docs/en/api/faststream/asyncapi/schema/operations/Operation.md deleted file mode 100644 index 0af1c63cfe..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/operations/Operation.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.operations.Operation diff --git a/docs/docs/en/api/faststream/asyncapi/schema/security/OauthFlowObj.md b/docs/docs/en/api/faststream/asyncapi/schema/security/OauthFlowObj.md deleted file mode 100644 index ea6ad87db9..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/security/OauthFlowObj.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.security.OauthFlowObj diff --git a/docs/docs/en/api/faststream/asyncapi/schema/security/OauthFlows.md b/docs/docs/en/api/faststream/asyncapi/schema/security/OauthFlows.md deleted file mode 100644 index 0c429487fb..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/security/OauthFlows.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.security.OauthFlows diff --git a/docs/docs/en/api/faststream/asyncapi/schema/security/SecuritySchemaComponent.md b/docs/docs/en/api/faststream/asyncapi/schema/security/SecuritySchemaComponent.md deleted file mode 100644 index 779e70fdd6..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/security/SecuritySchemaComponent.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.security.SecuritySchemaComponent diff --git a/docs/docs/en/api/faststream/asyncapi/schema/servers/Server.md b/docs/docs/en/api/faststream/asyncapi/schema/servers/Server.md deleted file mode 100644 index 5af6199d20..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/servers/Server.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.servers.Server diff --git a/docs/docs/en/api/faststream/asyncapi/schema/servers/ServerVariable.md b/docs/docs/en/api/faststream/asyncapi/schema/servers/ServerVariable.md deleted file mode 100644 index 51f99bd3bc..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/servers/ServerVariable.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.servers.ServerVariable diff --git a/docs/docs/en/api/faststream/asyncapi/schema/utils/ExternalDocs.md b/docs/docs/en/api/faststream/asyncapi/schema/utils/ExternalDocs.md deleted file mode 100644 index 207668a5c5..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/utils/ExternalDocs.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.utils.ExternalDocs diff --git a/docs/docs/en/api/faststream/asyncapi/schema/utils/ExternalDocsDict.md b/docs/docs/en/api/faststream/asyncapi/schema/utils/ExternalDocsDict.md deleted file mode 100644 index fc5cedfb73..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/utils/ExternalDocsDict.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.utils.ExternalDocsDict diff --git a/docs/docs/en/api/faststream/asyncapi/schema/utils/Parameter.md b/docs/docs/en/api/faststream/asyncapi/schema/utils/Parameter.md deleted file mode 100644 index 05cc2f3ba3..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/utils/Parameter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.utils.Parameter diff --git a/docs/docs/en/api/faststream/asyncapi/schema/utils/Reference.md b/docs/docs/en/api/faststream/asyncapi/schema/utils/Reference.md deleted file mode 100644 index a47fd931df..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/utils/Reference.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.utils.Reference diff --git a/docs/docs/en/api/faststream/asyncapi/schema/utils/Tag.md b/docs/docs/en/api/faststream/asyncapi/schema/utils/Tag.md deleted file mode 100644 index cf558e756d..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/utils/Tag.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.utils.Tag diff --git a/docs/docs/en/api/faststream/asyncapi/schema/utils/TagDict.md b/docs/docs/en/api/faststream/asyncapi/schema/utils/TagDict.md deleted file mode 100644 index 412546da6f..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/schema/utils/TagDict.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.schema.utils.TagDict diff --git a/docs/docs/en/api/faststream/asyncapi/site/get_asyncapi_html.md b/docs/docs/en/api/faststream/asyncapi/site/get_asyncapi_html.md deleted file mode 100644 index 69af839e6c..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/site/get_asyncapi_html.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.site.get_asyncapi_html diff --git a/docs/docs/en/api/faststream/asyncapi/site/serve_app.md b/docs/docs/en/api/faststream/asyncapi/site/serve_app.md deleted file mode 100644 index c5a1a726e8..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/site/serve_app.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.site.serve_app diff --git a/docs/docs/en/api/faststream/asyncapi/utils/resolve_payloads.md b/docs/docs/en/api/faststream/asyncapi/utils/resolve_payloads.md deleted file mode 100644 index 23aeedd082..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/utils/resolve_payloads.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.utils.resolve_payloads diff --git a/docs/docs/en/api/faststream/asyncapi/utils/to_camelcase.md b/docs/docs/en/api/faststream/asyncapi/utils/to_camelcase.md deleted file mode 100644 index 42cbdf9f29..0000000000 --- a/docs/docs/en/api/faststream/asyncapi/utils/to_camelcase.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.asyncapi.utils.to_camelcase diff --git a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/BaseWatcher.md b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/BaseWatcher.md deleted file mode 100644 index d0c27d17d9..0000000000 --- a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/BaseWatcher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.acknowledgement_watcher.BaseWatcher diff --git a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/CounterWatcher.md b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/CounterWatcher.md deleted file mode 100644 index e299f4c442..0000000000 --- a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/CounterWatcher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.acknowledgement_watcher.CounterWatcher diff --git a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/EndlessWatcher.md b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/EndlessWatcher.md deleted file mode 100644 index b3aac70921..0000000000 --- a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/EndlessWatcher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.acknowledgement_watcher.EndlessWatcher diff --git a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/OneTryWatcher.md b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/OneTryWatcher.md deleted file mode 100644 index 4baa0bdd9c..0000000000 --- a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/OneTryWatcher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.acknowledgement_watcher.OneTryWatcher diff --git a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/WatcherContext.md b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/WatcherContext.md deleted file mode 100644 index ee1ef8643b..0000000000 --- a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/WatcherContext.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.acknowledgement_watcher.WatcherContext diff --git a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/get_watcher.md b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/get_watcher.md deleted file mode 100644 index 9f6869bcf5..0000000000 --- a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/get_watcher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.acknowledgement_watcher.get_watcher diff --git a/docs/docs/en/api/faststream/broker/core/abc/ABCBroker.md b/docs/docs/en/api/faststream/broker/core/abc/ABCBroker.md deleted file mode 100644 index 88b39efd40..0000000000 --- a/docs/docs/en/api/faststream/broker/core/abc/ABCBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.core.abc.ABCBroker diff --git a/docs/docs/en/api/faststream/broker/core/logging/LoggingBroker.md b/docs/docs/en/api/faststream/broker/core/logging/LoggingBroker.md deleted file mode 100644 index b10dd8bc3f..0000000000 --- a/docs/docs/en/api/faststream/broker/core/logging/LoggingBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.core.logging.LoggingBroker diff --git a/docs/docs/en/api/faststream/broker/core/usecase/BrokerUsecase.md b/docs/docs/en/api/faststream/broker/core/usecase/BrokerUsecase.md deleted file mode 100644 index 0e791c5c38..0000000000 --- a/docs/docs/en/api/faststream/broker/core/usecase/BrokerUsecase.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.core.usecase.BrokerUsecase diff --git a/docs/docs/en/api/faststream/broker/fastapi/StreamMessage.md b/docs/docs/en/api/faststream/broker/fastapi/StreamMessage.md deleted file mode 100644 index 2124b279ea..0000000000 --- a/docs/docs/en/api/faststream/broker/fastapi/StreamMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.fastapi.StreamMessage diff --git a/docs/docs/en/api/faststream/broker/fastapi/StreamRoute.md b/docs/docs/en/api/faststream/broker/fastapi/StreamRoute.md deleted file mode 100644 index 423e8fdbdc..0000000000 --- a/docs/docs/en/api/faststream/broker/fastapi/StreamRoute.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.fastapi.StreamRoute diff --git a/docs/docs/en/api/faststream/broker/fastapi/StreamRouter.md b/docs/docs/en/api/faststream/broker/fastapi/StreamRouter.md deleted file mode 100644 index 32a8e8743d..0000000000 --- a/docs/docs/en/api/faststream/broker/fastapi/StreamRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.fastapi.StreamRouter diff --git a/docs/docs/en/api/faststream/broker/fastapi/context/Context.md b/docs/docs/en/api/faststream/broker/fastapi/context/Context.md deleted file mode 100644 index f4240bb0da..0000000000 --- a/docs/docs/en/api/faststream/broker/fastapi/context/Context.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.fastapi.context.Context diff --git a/docs/docs/en/api/faststream/broker/fastapi/get_dependant/get_fastapi_dependant.md b/docs/docs/en/api/faststream/broker/fastapi/get_dependant/get_fastapi_dependant.md deleted file mode 100644 index 1f5d3d1e77..0000000000 --- a/docs/docs/en/api/faststream/broker/fastapi/get_dependant/get_fastapi_dependant.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.fastapi.get_dependant.get_fastapi_dependant diff --git a/docs/docs/en/api/faststream/broker/fastapi/get_dependant/get_fastapi_native_dependant.md b/docs/docs/en/api/faststream/broker/fastapi/get_dependant/get_fastapi_native_dependant.md deleted file mode 100644 index f3d6a05e39..0000000000 --- a/docs/docs/en/api/faststream/broker/fastapi/get_dependant/get_fastapi_native_dependant.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.fastapi.get_dependant.get_fastapi_native_dependant diff --git a/docs/docs/en/api/faststream/broker/fastapi/route/StreamMessage.md b/docs/docs/en/api/faststream/broker/fastapi/route/StreamMessage.md deleted file mode 100644 index 0fbed89be9..0000000000 --- a/docs/docs/en/api/faststream/broker/fastapi/route/StreamMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.fastapi.route.StreamMessage diff --git a/docs/docs/en/api/faststream/broker/fastapi/route/StreamRoute.md b/docs/docs/en/api/faststream/broker/fastapi/route/StreamRoute.md deleted file mode 100644 index 4899cbe531..0000000000 --- a/docs/docs/en/api/faststream/broker/fastapi/route/StreamRoute.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.fastapi.route.StreamRoute diff --git a/docs/docs/en/api/faststream/broker/fastapi/route/make_fastapi_execution.md b/docs/docs/en/api/faststream/broker/fastapi/route/make_fastapi_execution.md deleted file mode 100644 index f9a0fdd712..0000000000 --- a/docs/docs/en/api/faststream/broker/fastapi/route/make_fastapi_execution.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.fastapi.route.make_fastapi_execution diff --git a/docs/docs/en/api/faststream/broker/fastapi/router/StreamRouter.md b/docs/docs/en/api/faststream/broker/fastapi/router/StreamRouter.md deleted file mode 100644 index d1f017acc6..0000000000 --- a/docs/docs/en/api/faststream/broker/fastapi/router/StreamRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.fastapi.router.StreamRouter diff --git a/docs/docs/en/api/faststream/broker/message/StreamMessage.md b/docs/docs/en/api/faststream/broker/message/StreamMessage.md deleted file mode 100644 index 800059b91d..0000000000 --- a/docs/docs/en/api/faststream/broker/message/StreamMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.message.StreamMessage diff --git a/docs/docs/en/api/faststream/broker/message/decode_message.md b/docs/docs/en/api/faststream/broker/message/decode_message.md deleted file mode 100644 index a5904b1458..0000000000 --- a/docs/docs/en/api/faststream/broker/message/decode_message.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.message.decode_message diff --git a/docs/docs/en/api/faststream/broker/message/encode_message.md b/docs/docs/en/api/faststream/broker/message/encode_message.md deleted file mode 100644 index ed34f0ceb1..0000000000 --- a/docs/docs/en/api/faststream/broker/message/encode_message.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.message.encode_message diff --git a/docs/docs/en/api/faststream/broker/message/gen_cor_id.md b/docs/docs/en/api/faststream/broker/message/gen_cor_id.md deleted file mode 100644 index 5e4c2a4622..0000000000 --- a/docs/docs/en/api/faststream/broker/message/gen_cor_id.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.message.gen_cor_id diff --git a/docs/docs/en/api/faststream/broker/middlewares/BaseMiddleware.md b/docs/docs/en/api/faststream/broker/middlewares/BaseMiddleware.md deleted file mode 100644 index d81c2fbf20..0000000000 --- a/docs/docs/en/api/faststream/broker/middlewares/BaseMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.middlewares.BaseMiddleware diff --git a/docs/docs/en/api/faststream/broker/middlewares/base/BaseMiddleware.md b/docs/docs/en/api/faststream/broker/middlewares/base/BaseMiddleware.md deleted file mode 100644 index 8502288249..0000000000 --- a/docs/docs/en/api/faststream/broker/middlewares/base/BaseMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.middlewares.base.BaseMiddleware diff --git a/docs/docs/en/api/faststream/broker/middlewares/logging/CriticalLogMiddleware.md b/docs/docs/en/api/faststream/broker/middlewares/logging/CriticalLogMiddleware.md deleted file mode 100644 index 829368d699..0000000000 --- a/docs/docs/en/api/faststream/broker/middlewares/logging/CriticalLogMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.middlewares.logging.CriticalLogMiddleware diff --git a/docs/docs/en/api/faststream/broker/proto/EndpointProto.md b/docs/docs/en/api/faststream/broker/proto/EndpointProto.md deleted file mode 100644 index 5a3b095952..0000000000 --- a/docs/docs/en/api/faststream/broker/proto/EndpointProto.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.proto.EndpointProto diff --git a/docs/docs/en/api/faststream/broker/proto/SetupAble.md b/docs/docs/en/api/faststream/broker/proto/SetupAble.md deleted file mode 100644 index a4b487318e..0000000000 --- a/docs/docs/en/api/faststream/broker/proto/SetupAble.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.proto.SetupAble diff --git a/docs/docs/en/api/faststream/broker/publisher/fake/FakePublisher.md b/docs/docs/en/api/faststream/broker/publisher/fake/FakePublisher.md deleted file mode 100644 index 67b2c04f5c..0000000000 --- a/docs/docs/en/api/faststream/broker/publisher/fake/FakePublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.publisher.fake.FakePublisher diff --git a/docs/docs/en/api/faststream/broker/publisher/proto/BasePublisherProto.md b/docs/docs/en/api/faststream/broker/publisher/proto/BasePublisherProto.md deleted file mode 100644 index ed0944fa14..0000000000 --- a/docs/docs/en/api/faststream/broker/publisher/proto/BasePublisherProto.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.publisher.proto.BasePublisherProto diff --git a/docs/docs/en/api/faststream/broker/publisher/proto/ProducerProto.md b/docs/docs/en/api/faststream/broker/publisher/proto/ProducerProto.md deleted file mode 100644 index 8cf65d4e00..0000000000 --- a/docs/docs/en/api/faststream/broker/publisher/proto/ProducerProto.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.publisher.proto.ProducerProto diff --git a/docs/docs/en/api/faststream/broker/publisher/proto/PublisherProto.md b/docs/docs/en/api/faststream/broker/publisher/proto/PublisherProto.md deleted file mode 100644 index f86760bba6..0000000000 --- a/docs/docs/en/api/faststream/broker/publisher/proto/PublisherProto.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.publisher.proto.PublisherProto diff --git a/docs/docs/en/api/faststream/broker/publisher/usecase/PublisherUsecase.md b/docs/docs/en/api/faststream/broker/publisher/usecase/PublisherUsecase.md deleted file mode 100644 index f1de9539fe..0000000000 --- a/docs/docs/en/api/faststream/broker/publisher/usecase/PublisherUsecase.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.publisher.usecase.PublisherUsecase diff --git a/docs/docs/en/api/faststream/broker/response/Response.md b/docs/docs/en/api/faststream/broker/response/Response.md deleted file mode 100644 index 1163381d7b..0000000000 --- a/docs/docs/en/api/faststream/broker/response/Response.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.response.Response diff --git a/docs/docs/en/api/faststream/broker/router/ArgsContainer.md b/docs/docs/en/api/faststream/broker/router/ArgsContainer.md deleted file mode 100644 index bd82308c79..0000000000 --- a/docs/docs/en/api/faststream/broker/router/ArgsContainer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.router.ArgsContainer diff --git a/docs/docs/en/api/faststream/broker/router/BrokerRouter.md b/docs/docs/en/api/faststream/broker/router/BrokerRouter.md deleted file mode 100644 index d6bb82fdd2..0000000000 --- a/docs/docs/en/api/faststream/broker/router/BrokerRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.router.BrokerRouter diff --git a/docs/docs/en/api/faststream/broker/router/SubscriberRoute.md b/docs/docs/en/api/faststream/broker/router/SubscriberRoute.md deleted file mode 100644 index 18c3a547ec..0000000000 --- a/docs/docs/en/api/faststream/broker/router/SubscriberRoute.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.router.SubscriberRoute diff --git a/docs/docs/en/api/faststream/broker/schemas/NameRequired.md b/docs/docs/en/api/faststream/broker/schemas/NameRequired.md deleted file mode 100644 index 398f70b421..0000000000 --- a/docs/docs/en/api/faststream/broker/schemas/NameRequired.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.schemas.NameRequired diff --git a/docs/docs/en/api/faststream/broker/subscriber/call_item/HandlerItem.md b/docs/docs/en/api/faststream/broker/subscriber/call_item/HandlerItem.md deleted file mode 100644 index e2f635512c..0000000000 --- a/docs/docs/en/api/faststream/broker/subscriber/call_item/HandlerItem.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.subscriber.call_item.HandlerItem diff --git a/docs/docs/en/api/faststream/broker/subscriber/proto/SubscriberProto.md b/docs/docs/en/api/faststream/broker/subscriber/proto/SubscriberProto.md deleted file mode 100644 index fd887d41b9..0000000000 --- a/docs/docs/en/api/faststream/broker/subscriber/proto/SubscriberProto.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.subscriber.proto.SubscriberProto diff --git a/docs/docs/en/api/faststream/broker/subscriber/usecase/SubscriberUsecase.md b/docs/docs/en/api/faststream/broker/subscriber/usecase/SubscriberUsecase.md deleted file mode 100644 index f7e9448277..0000000000 --- a/docs/docs/en/api/faststream/broker/subscriber/usecase/SubscriberUsecase.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.subscriber.usecase.SubscriberUsecase diff --git a/docs/docs/en/api/faststream/broker/types/PublisherMiddleware.md b/docs/docs/en/api/faststream/broker/types/PublisherMiddleware.md deleted file mode 100644 index 2c43d2efcb..0000000000 --- a/docs/docs/en/api/faststream/broker/types/PublisherMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.types.PublisherMiddleware diff --git a/docs/docs/en/api/faststream/broker/utils/MultiLock.md b/docs/docs/en/api/faststream/broker/utils/MultiLock.md deleted file mode 100644 index 5f4bc6d5cb..0000000000 --- a/docs/docs/en/api/faststream/broker/utils/MultiLock.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.utils.MultiLock diff --git a/docs/docs/en/api/faststream/broker/utils/default_filter.md b/docs/docs/en/api/faststream/broker/utils/default_filter.md deleted file mode 100644 index 3fe25fa14a..0000000000 --- a/docs/docs/en/api/faststream/broker/utils/default_filter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.utils.default_filter diff --git a/docs/docs/en/api/faststream/broker/utils/get_watcher_context.md b/docs/docs/en/api/faststream/broker/utils/get_watcher_context.md deleted file mode 100644 index 883599c043..0000000000 --- a/docs/docs/en/api/faststream/broker/utils/get_watcher_context.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.utils.get_watcher_context diff --git a/docs/docs/en/api/faststream/broker/utils/resolve_custom_func.md b/docs/docs/en/api/faststream/broker/utils/resolve_custom_func.md deleted file mode 100644 index f72ed3c059..0000000000 --- a/docs/docs/en/api/faststream/broker/utils/resolve_custom_func.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.utils.resolve_custom_func diff --git a/docs/docs/en/api/faststream/broker/wrapper/call/HandlerCallWrapper.md b/docs/docs/en/api/faststream/broker/wrapper/call/HandlerCallWrapper.md deleted file mode 100644 index 4c25733797..0000000000 --- a/docs/docs/en/api/faststream/broker/wrapper/call/HandlerCallWrapper.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.wrapper.call.HandlerCallWrapper diff --git a/docs/docs/en/api/faststream/broker/wrapper/proto/WrapperProto.md b/docs/docs/en/api/faststream/broker/wrapper/proto/WrapperProto.md deleted file mode 100644 index 87ffdf815b..0000000000 --- a/docs/docs/en/api/faststream/broker/wrapper/proto/WrapperProto.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.wrapper.proto.WrapperProto diff --git a/docs/docs/en/api/faststream/cli/docs/app/gen.md b/docs/docs/en/api/faststream/cli/docs/app/gen.md deleted file mode 100644 index 72af7d6688..0000000000 --- a/docs/docs/en/api/faststream/cli/docs/app/gen.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.docs.app.gen diff --git a/docs/docs/en/api/faststream/cli/docs/app/serve.md b/docs/docs/en/api/faststream/cli/docs/app/serve.md deleted file mode 100644 index 3d9ec139d9..0000000000 --- a/docs/docs/en/api/faststream/cli/docs/app/serve.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.docs.app.serve diff --git a/docs/docs/en/api/faststream/cli/main/main.md b/docs/docs/en/api/faststream/cli/main/main.md deleted file mode 100644 index c15cba484c..0000000000 --- a/docs/docs/en/api/faststream/cli/main/main.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.main.main diff --git a/docs/docs/en/api/faststream/cli/main/publish.md b/docs/docs/en/api/faststream/cli/main/publish.md deleted file mode 100644 index 84b490cde8..0000000000 --- a/docs/docs/en/api/faststream/cli/main/publish.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.main.publish diff --git a/docs/docs/en/api/faststream/cli/main/publish_message.md b/docs/docs/en/api/faststream/cli/main/publish_message.md deleted file mode 100644 index a8bb7b8efa..0000000000 --- a/docs/docs/en/api/faststream/cli/main/publish_message.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.main.publish_message diff --git a/docs/docs/en/api/faststream/cli/main/run.md b/docs/docs/en/api/faststream/cli/main/run.md deleted file mode 100644 index 6a01af3d26..0000000000 --- a/docs/docs/en/api/faststream/cli/main/run.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.main.run diff --git a/docs/docs/en/api/faststream/cli/main/version_callback.md b/docs/docs/en/api/faststream/cli/main/version_callback.md deleted file mode 100644 index a5467ffeb7..0000000000 --- a/docs/docs/en/api/faststream/cli/main/version_callback.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.main.version_callback diff --git a/docs/docs/en/api/faststream/cli/supervisors/basereload/BaseReload.md b/docs/docs/en/api/faststream/cli/supervisors/basereload/BaseReload.md deleted file mode 100644 index b378b2922a..0000000000 --- a/docs/docs/en/api/faststream/cli/supervisors/basereload/BaseReload.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.supervisors.basereload.BaseReload diff --git a/docs/docs/en/api/faststream/cli/supervisors/multiprocess/Multiprocess.md b/docs/docs/en/api/faststream/cli/supervisors/multiprocess/Multiprocess.md deleted file mode 100644 index 4cdd6d30e3..0000000000 --- a/docs/docs/en/api/faststream/cli/supervisors/multiprocess/Multiprocess.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.supervisors.multiprocess.Multiprocess diff --git a/docs/docs/en/api/faststream/cli/supervisors/utils/get_subprocess.md b/docs/docs/en/api/faststream/cli/supervisors/utils/get_subprocess.md deleted file mode 100644 index 1488078e45..0000000000 --- a/docs/docs/en/api/faststream/cli/supervisors/utils/get_subprocess.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.supervisors.utils.get_subprocess diff --git a/docs/docs/en/api/faststream/cli/supervisors/utils/set_exit.md b/docs/docs/en/api/faststream/cli/supervisors/utils/set_exit.md deleted file mode 100644 index e739d79409..0000000000 --- a/docs/docs/en/api/faststream/cli/supervisors/utils/set_exit.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.supervisors.utils.set_exit diff --git a/docs/docs/en/api/faststream/cli/supervisors/utils/subprocess_started.md b/docs/docs/en/api/faststream/cli/supervisors/utils/subprocess_started.md deleted file mode 100644 index 8840390ca8..0000000000 --- a/docs/docs/en/api/faststream/cli/supervisors/utils/subprocess_started.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.supervisors.utils.subprocess_started diff --git a/docs/docs/en/api/faststream/cli/supervisors/watchfiles/ExtendedFilter.md b/docs/docs/en/api/faststream/cli/supervisors/watchfiles/ExtendedFilter.md deleted file mode 100644 index 095c3cc2f0..0000000000 --- a/docs/docs/en/api/faststream/cli/supervisors/watchfiles/ExtendedFilter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.supervisors.watchfiles.ExtendedFilter diff --git a/docs/docs/en/api/faststream/cli/supervisors/watchfiles/WatchReloader.md b/docs/docs/en/api/faststream/cli/supervisors/watchfiles/WatchReloader.md deleted file mode 100644 index b86533f1e8..0000000000 --- a/docs/docs/en/api/faststream/cli/supervisors/watchfiles/WatchReloader.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.supervisors.watchfiles.WatchReloader diff --git a/docs/docs/en/api/faststream/cli/utils/imports/get_app_path.md b/docs/docs/en/api/faststream/cli/utils/imports/get_app_path.md deleted file mode 100644 index be8fcfef0c..0000000000 --- a/docs/docs/en/api/faststream/cli/utils/imports/get_app_path.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.utils.imports.get_app_path diff --git a/docs/docs/en/api/faststream/cli/utils/imports/import_from_string.md b/docs/docs/en/api/faststream/cli/utils/imports/import_from_string.md deleted file mode 100644 index 731203ac54..0000000000 --- a/docs/docs/en/api/faststream/cli/utils/imports/import_from_string.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.utils.imports.import_from_string diff --git a/docs/docs/en/api/faststream/cli/utils/imports/import_object.md b/docs/docs/en/api/faststream/cli/utils/imports/import_object.md deleted file mode 100644 index e26a3e280c..0000000000 --- a/docs/docs/en/api/faststream/cli/utils/imports/import_object.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.utils.imports.import_object diff --git a/docs/docs/en/api/faststream/cli/utils/imports/try_import_app.md b/docs/docs/en/api/faststream/cli/utils/imports/try_import_app.md deleted file mode 100644 index 0c6df90c86..0000000000 --- a/docs/docs/en/api/faststream/cli/utils/imports/try_import_app.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.utils.imports.try_import_app diff --git a/docs/docs/en/api/faststream/cli/utils/logs/LogLevels.md b/docs/docs/en/api/faststream/cli/utils/logs/LogLevels.md deleted file mode 100644 index f82e3bbb6f..0000000000 --- a/docs/docs/en/api/faststream/cli/utils/logs/LogLevels.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.utils.logs.LogLevels diff --git a/docs/docs/en/api/faststream/cli/utils/logs/get_log_level.md b/docs/docs/en/api/faststream/cli/utils/logs/get_log_level.md deleted file mode 100644 index f5e4fcaea0..0000000000 --- a/docs/docs/en/api/faststream/cli/utils/logs/get_log_level.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.utils.logs.get_log_level diff --git a/docs/docs/en/api/faststream/cli/utils/logs/set_log_level.md b/docs/docs/en/api/faststream/cli/utils/logs/set_log_level.md deleted file mode 100644 index 6db13adbb9..0000000000 --- a/docs/docs/en/api/faststream/cli/utils/logs/set_log_level.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.utils.logs.set_log_level diff --git a/docs/docs/en/api/faststream/cli/utils/parser/parse_cli_args.md b/docs/docs/en/api/faststream/cli/utils/parser/parse_cli_args.md deleted file mode 100644 index 9c6f03d066..0000000000 --- a/docs/docs/en/api/faststream/cli/utils/parser/parse_cli_args.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.utils.parser.parse_cli_args diff --git a/docs/docs/en/api/faststream/cli/utils/parser/remove_prefix.md b/docs/docs/en/api/faststream/cli/utils/parser/remove_prefix.md deleted file mode 100644 index 587db3677f..0000000000 --- a/docs/docs/en/api/faststream/cli/utils/parser/remove_prefix.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.cli.utils.parser.remove_prefix diff --git a/docs/docs/en/api/faststream/confluent/KafkaBroker.md b/docs/docs/en/api/faststream/confluent/KafkaBroker.md deleted file mode 100644 index 99fd644946..0000000000 --- a/docs/docs/en/api/faststream/confluent/KafkaBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.KafkaBroker diff --git a/docs/docs/en/api/faststream/confluent/KafkaPublisher.md b/docs/docs/en/api/faststream/confluent/KafkaPublisher.md deleted file mode 100644 index 73e485fcc5..0000000000 --- a/docs/docs/en/api/faststream/confluent/KafkaPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.KafkaPublisher diff --git a/docs/docs/en/api/faststream/confluent/KafkaResponse.md b/docs/docs/en/api/faststream/confluent/KafkaResponse.md deleted file mode 100644 index eb0eab479c..0000000000 --- a/docs/docs/en/api/faststream/confluent/KafkaResponse.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.KafkaResponse diff --git a/docs/docs/en/api/faststream/confluent/KafkaRoute.md b/docs/docs/en/api/faststream/confluent/KafkaRoute.md deleted file mode 100644 index 723012794f..0000000000 --- a/docs/docs/en/api/faststream/confluent/KafkaRoute.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.KafkaRoute diff --git a/docs/docs/en/api/faststream/confluent/KafkaRouter.md b/docs/docs/en/api/faststream/confluent/KafkaRouter.md deleted file mode 100644 index b9e7b0d991..0000000000 --- a/docs/docs/en/api/faststream/confluent/KafkaRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.KafkaRouter diff --git a/docs/docs/en/api/faststream/confluent/TestApp.md b/docs/docs/en/api/faststream/confluent/TestApp.md deleted file mode 100644 index 2468f3755c..0000000000 --- a/docs/docs/en/api/faststream/confluent/TestApp.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.testing.app.TestApp diff --git a/docs/docs/en/api/faststream/confluent/TestKafkaBroker.md b/docs/docs/en/api/faststream/confluent/TestKafkaBroker.md deleted file mode 100644 index 0a24384f69..0000000000 --- a/docs/docs/en/api/faststream/confluent/TestKafkaBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.TestKafkaBroker diff --git a/docs/docs/en/api/faststream/confluent/broker/KafkaBroker.md b/docs/docs/en/api/faststream/confluent/broker/KafkaBroker.md deleted file mode 100644 index cdfdbc6ef1..0000000000 --- a/docs/docs/en/api/faststream/confluent/broker/KafkaBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.broker.KafkaBroker diff --git a/docs/docs/en/api/faststream/confluent/broker/broker/KafkaBroker.md b/docs/docs/en/api/faststream/confluent/broker/broker/KafkaBroker.md deleted file mode 100644 index 05c8356f26..0000000000 --- a/docs/docs/en/api/faststream/confluent/broker/broker/KafkaBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.broker.broker.KafkaBroker diff --git a/docs/docs/en/api/faststream/confluent/broker/logging/KafkaLoggingBroker.md b/docs/docs/en/api/faststream/confluent/broker/logging/KafkaLoggingBroker.md deleted file mode 100644 index ea238b6b85..0000000000 --- a/docs/docs/en/api/faststream/confluent/broker/logging/KafkaLoggingBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.broker.logging.KafkaLoggingBroker diff --git a/docs/docs/en/api/faststream/confluent/broker/registrator/KafkaRegistrator.md b/docs/docs/en/api/faststream/confluent/broker/registrator/KafkaRegistrator.md deleted file mode 100644 index 80068d2349..0000000000 --- a/docs/docs/en/api/faststream/confluent/broker/registrator/KafkaRegistrator.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.broker.registrator.KafkaRegistrator diff --git a/docs/docs/en/api/faststream/confluent/client/AsyncConfluentConsumer.md b/docs/docs/en/api/faststream/confluent/client/AsyncConfluentConsumer.md deleted file mode 100644 index 25374c405d..0000000000 --- a/docs/docs/en/api/faststream/confluent/client/AsyncConfluentConsumer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.client.AsyncConfluentConsumer diff --git a/docs/docs/en/api/faststream/confluent/client/AsyncConfluentProducer.md b/docs/docs/en/api/faststream/confluent/client/AsyncConfluentProducer.md deleted file mode 100644 index 29bfac283f..0000000000 --- a/docs/docs/en/api/faststream/confluent/client/AsyncConfluentProducer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.client.AsyncConfluentProducer diff --git a/docs/docs/en/api/faststream/confluent/client/BatchBuilder.md b/docs/docs/en/api/faststream/confluent/client/BatchBuilder.md deleted file mode 100644 index 232f9ecdf2..0000000000 --- a/docs/docs/en/api/faststream/confluent/client/BatchBuilder.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.client.BatchBuilder diff --git a/docs/docs/en/api/faststream/confluent/client/MsgToSend.md b/docs/docs/en/api/faststream/confluent/client/MsgToSend.md deleted file mode 100644 index 2891c52db0..0000000000 --- a/docs/docs/en/api/faststream/confluent/client/MsgToSend.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.client.MsgToSend diff --git a/docs/docs/en/api/faststream/confluent/client/TopicPartition.md b/docs/docs/en/api/faststream/confluent/client/TopicPartition.md deleted file mode 100644 index ab43818b7d..0000000000 --- a/docs/docs/en/api/faststream/confluent/client/TopicPartition.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.client.TopicPartition diff --git a/docs/docs/en/api/faststream/confluent/client/check_msg_error.md b/docs/docs/en/api/faststream/confluent/client/check_msg_error.md deleted file mode 100644 index 71ac291b6e..0000000000 --- a/docs/docs/en/api/faststream/confluent/client/check_msg_error.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.client.check_msg_error diff --git a/docs/docs/en/api/faststream/confluent/client/create_topics.md b/docs/docs/en/api/faststream/confluent/client/create_topics.md deleted file mode 100644 index 8efc1a80c4..0000000000 --- a/docs/docs/en/api/faststream/confluent/client/create_topics.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.client.create_topics diff --git a/docs/docs/en/api/faststream/confluent/fastapi/Context.md b/docs/docs/en/api/faststream/confluent/fastapi/Context.md deleted file mode 100644 index f4240bb0da..0000000000 --- a/docs/docs/en/api/faststream/confluent/fastapi/Context.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.fastapi.context.Context diff --git a/docs/docs/en/api/faststream/confluent/fastapi/KafkaRouter.md b/docs/docs/en/api/faststream/confluent/fastapi/KafkaRouter.md deleted file mode 100644 index 034203e103..0000000000 --- a/docs/docs/en/api/faststream/confluent/fastapi/KafkaRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.fastapi.KafkaRouter diff --git a/docs/docs/en/api/faststream/confluent/fastapi/fastapi/KafkaRouter.md b/docs/docs/en/api/faststream/confluent/fastapi/fastapi/KafkaRouter.md deleted file mode 100644 index 87edcc2c3d..0000000000 --- a/docs/docs/en/api/faststream/confluent/fastapi/fastapi/KafkaRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.fastapi.fastapi.KafkaRouter diff --git a/docs/docs/en/api/faststream/confluent/message/ConsumerProtocol.md b/docs/docs/en/api/faststream/confluent/message/ConsumerProtocol.md deleted file mode 100644 index 18971d0829..0000000000 --- a/docs/docs/en/api/faststream/confluent/message/ConsumerProtocol.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.message.ConsumerProtocol diff --git a/docs/docs/en/api/faststream/confluent/message/FakeConsumer.md b/docs/docs/en/api/faststream/confluent/message/FakeConsumer.md deleted file mode 100644 index 19e60bb461..0000000000 --- a/docs/docs/en/api/faststream/confluent/message/FakeConsumer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.message.FakeConsumer diff --git a/docs/docs/en/api/faststream/confluent/message/KafkaMessage.md b/docs/docs/en/api/faststream/confluent/message/KafkaMessage.md deleted file mode 100644 index 02004c7d37..0000000000 --- a/docs/docs/en/api/faststream/confluent/message/KafkaMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.message.KafkaMessage diff --git a/docs/docs/en/api/faststream/confluent/opentelemetry/KafkaTelemetryMiddleware.md b/docs/docs/en/api/faststream/confluent/opentelemetry/KafkaTelemetryMiddleware.md deleted file mode 100644 index 743c494591..0000000000 --- a/docs/docs/en/api/faststream/confluent/opentelemetry/KafkaTelemetryMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.opentelemetry.KafkaTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/confluent/opentelemetry/middleware/KafkaTelemetryMiddleware.md b/docs/docs/en/api/faststream/confluent/opentelemetry/middleware/KafkaTelemetryMiddleware.md deleted file mode 100644 index b34265dfbb..0000000000 --- a/docs/docs/en/api/faststream/confluent/opentelemetry/middleware/KafkaTelemetryMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.opentelemetry.middleware.KafkaTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/confluent/opentelemetry/provider/BaseConfluentTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/confluent/opentelemetry/provider/BaseConfluentTelemetrySettingsProvider.md deleted file mode 100644 index 730662fae5..0000000000 --- a/docs/docs/en/api/faststream/confluent/opentelemetry/provider/BaseConfluentTelemetrySettingsProvider.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.opentelemetry.provider.BaseConfluentTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/confluent/opentelemetry/provider/BatchConfluentTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/confluent/opentelemetry/provider/BatchConfluentTelemetrySettingsProvider.md deleted file mode 100644 index a6db133484..0000000000 --- a/docs/docs/en/api/faststream/confluent/opentelemetry/provider/BatchConfluentTelemetrySettingsProvider.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.opentelemetry.provider.BatchConfluentTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/confluent/opentelemetry/provider/ConfluentTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/confluent/opentelemetry/provider/ConfluentTelemetrySettingsProvider.md deleted file mode 100644 index 2c5242e6e5..0000000000 --- a/docs/docs/en/api/faststream/confluent/opentelemetry/provider/ConfluentTelemetrySettingsProvider.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.opentelemetry.provider.ConfluentTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/confluent/opentelemetry/provider/telemetry_attributes_provider_factory.md b/docs/docs/en/api/faststream/confluent/opentelemetry/provider/telemetry_attributes_provider_factory.md deleted file mode 100644 index 7dd0e1d0fd..0000000000 --- a/docs/docs/en/api/faststream/confluent/opentelemetry/provider/telemetry_attributes_provider_factory.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.opentelemetry.provider.telemetry_attributes_provider_factory diff --git a/docs/docs/en/api/faststream/confluent/parser/AsyncConfluentParser.md b/docs/docs/en/api/faststream/confluent/parser/AsyncConfluentParser.md deleted file mode 100644 index e5029a60d1..0000000000 --- a/docs/docs/en/api/faststream/confluent/parser/AsyncConfluentParser.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.parser.AsyncConfluentParser diff --git a/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIBatchPublisher.md b/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIBatchPublisher.md deleted file mode 100644 index 62ae234697..0000000000 --- a/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIBatchPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.publisher.asyncapi.AsyncAPIBatchPublisher diff --git a/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIDefaultPublisher.md b/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIDefaultPublisher.md deleted file mode 100644 index 32685d612d..0000000000 --- a/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIDefaultPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.publisher.asyncapi.AsyncAPIDefaultPublisher diff --git a/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIPublisher.md b/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIPublisher.md deleted file mode 100644 index f76d27ccd0..0000000000 --- a/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.publisher.asyncapi.AsyncAPIPublisher diff --git a/docs/docs/en/api/faststream/confluent/publisher/producer/AsyncConfluentFastProducer.md b/docs/docs/en/api/faststream/confluent/publisher/producer/AsyncConfluentFastProducer.md deleted file mode 100644 index fd614d1593..0000000000 --- a/docs/docs/en/api/faststream/confluent/publisher/producer/AsyncConfluentFastProducer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.publisher.producer.AsyncConfluentFastProducer diff --git a/docs/docs/en/api/faststream/confluent/publisher/usecase/BatchPublisher.md b/docs/docs/en/api/faststream/confluent/publisher/usecase/BatchPublisher.md deleted file mode 100644 index 23e8baeed9..0000000000 --- a/docs/docs/en/api/faststream/confluent/publisher/usecase/BatchPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.publisher.usecase.BatchPublisher diff --git a/docs/docs/en/api/faststream/confluent/publisher/usecase/DefaultPublisher.md b/docs/docs/en/api/faststream/confluent/publisher/usecase/DefaultPublisher.md deleted file mode 100644 index faa20eaa11..0000000000 --- a/docs/docs/en/api/faststream/confluent/publisher/usecase/DefaultPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.publisher.usecase.DefaultPublisher diff --git a/docs/docs/en/api/faststream/confluent/publisher/usecase/LogicPublisher.md b/docs/docs/en/api/faststream/confluent/publisher/usecase/LogicPublisher.md deleted file mode 100644 index d9a8594d12..0000000000 --- a/docs/docs/en/api/faststream/confluent/publisher/usecase/LogicPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.publisher.usecase.LogicPublisher diff --git a/docs/docs/en/api/faststream/confluent/response/KafkaResponse.md b/docs/docs/en/api/faststream/confluent/response/KafkaResponse.md deleted file mode 100644 index 7fa5542613..0000000000 --- a/docs/docs/en/api/faststream/confluent/response/KafkaResponse.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.response.KafkaResponse diff --git a/docs/docs/en/api/faststream/confluent/router/KafkaPublisher.md b/docs/docs/en/api/faststream/confluent/router/KafkaPublisher.md deleted file mode 100644 index ee1c818707..0000000000 --- a/docs/docs/en/api/faststream/confluent/router/KafkaPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.router.KafkaPublisher diff --git a/docs/docs/en/api/faststream/confluent/router/KafkaRoute.md b/docs/docs/en/api/faststream/confluent/router/KafkaRoute.md deleted file mode 100644 index 60d7bb1c99..0000000000 --- a/docs/docs/en/api/faststream/confluent/router/KafkaRoute.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.router.KafkaRoute diff --git a/docs/docs/en/api/faststream/confluent/router/KafkaRouter.md b/docs/docs/en/api/faststream/confluent/router/KafkaRouter.md deleted file mode 100644 index dac6c1a646..0000000000 --- a/docs/docs/en/api/faststream/confluent/router/KafkaRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.router.KafkaRouter diff --git a/docs/docs/en/api/faststream/confluent/schemas/params/ConsumerConnectionParams.md b/docs/docs/en/api/faststream/confluent/schemas/params/ConsumerConnectionParams.md deleted file mode 100644 index f4ed5b2004..0000000000 --- a/docs/docs/en/api/faststream/confluent/schemas/params/ConsumerConnectionParams.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.schemas.params.ConsumerConnectionParams diff --git a/docs/docs/en/api/faststream/confluent/security/parse_security.md b/docs/docs/en/api/faststream/confluent/security/parse_security.md deleted file mode 100644 index 1eb84ceed6..0000000000 --- a/docs/docs/en/api/faststream/confluent/security/parse_security.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.security.parse_security diff --git a/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPIBatchSubscriber.md b/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPIBatchSubscriber.md deleted file mode 100644 index f6fc81226a..0000000000 --- a/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPIBatchSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.subscriber.asyncapi.AsyncAPIBatchSubscriber diff --git a/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPIDefaultSubscriber.md b/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPIDefaultSubscriber.md deleted file mode 100644 index 12641d32ce..0000000000 --- a/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPIDefaultSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.subscriber.asyncapi.AsyncAPIDefaultSubscriber diff --git a/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPISubscriber.md b/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPISubscriber.md deleted file mode 100644 index b22facc06a..0000000000 --- a/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPISubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.subscriber.asyncapi.AsyncAPISubscriber diff --git a/docs/docs/en/api/faststream/confluent/subscriber/factory/create_subscriber.md b/docs/docs/en/api/faststream/confluent/subscriber/factory/create_subscriber.md deleted file mode 100644 index ce811a99d9..0000000000 --- a/docs/docs/en/api/faststream/confluent/subscriber/factory/create_subscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.subscriber.factory.create_subscriber diff --git a/docs/docs/en/api/faststream/confluent/subscriber/usecase/BatchSubscriber.md b/docs/docs/en/api/faststream/confluent/subscriber/usecase/BatchSubscriber.md deleted file mode 100644 index 4642abd4a8..0000000000 --- a/docs/docs/en/api/faststream/confluent/subscriber/usecase/BatchSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.subscriber.usecase.BatchSubscriber diff --git a/docs/docs/en/api/faststream/confluent/subscriber/usecase/DefaultSubscriber.md b/docs/docs/en/api/faststream/confluent/subscriber/usecase/DefaultSubscriber.md deleted file mode 100644 index c2d7ed227e..0000000000 --- a/docs/docs/en/api/faststream/confluent/subscriber/usecase/DefaultSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.subscriber.usecase.DefaultSubscriber diff --git a/docs/docs/en/api/faststream/confluent/subscriber/usecase/LogicSubscriber.md b/docs/docs/en/api/faststream/confluent/subscriber/usecase/LogicSubscriber.md deleted file mode 100644 index c47daf891f..0000000000 --- a/docs/docs/en/api/faststream/confluent/subscriber/usecase/LogicSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.subscriber.usecase.LogicSubscriber diff --git a/docs/docs/en/api/faststream/confluent/testing/FakeProducer.md b/docs/docs/en/api/faststream/confluent/testing/FakeProducer.md deleted file mode 100644 index aeaee2a2d7..0000000000 --- a/docs/docs/en/api/faststream/confluent/testing/FakeProducer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.testing.FakeProducer diff --git a/docs/docs/en/api/faststream/confluent/testing/MockConfluentMessage.md b/docs/docs/en/api/faststream/confluent/testing/MockConfluentMessage.md deleted file mode 100644 index 78791486ab..0000000000 --- a/docs/docs/en/api/faststream/confluent/testing/MockConfluentMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.testing.MockConfluentMessage diff --git a/docs/docs/en/api/faststream/confluent/testing/TestKafkaBroker.md b/docs/docs/en/api/faststream/confluent/testing/TestKafkaBroker.md deleted file mode 100644 index 53dfed8f24..0000000000 --- a/docs/docs/en/api/faststream/confluent/testing/TestKafkaBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.testing.TestKafkaBroker diff --git a/docs/docs/en/api/faststream/confluent/testing/build_message.md b/docs/docs/en/api/faststream/confluent/testing/build_message.md deleted file mode 100644 index 75787a13b3..0000000000 --- a/docs/docs/en/api/faststream/confluent/testing/build_message.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.confluent.testing.build_message diff --git a/docs/docs/en/api/faststream/constants/ContentTypes.md b/docs/docs/en/api/faststream/constants/ContentTypes.md deleted file mode 100644 index 28d62bdcd7..0000000000 --- a/docs/docs/en/api/faststream/constants/ContentTypes.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.constants.ContentTypes diff --git a/docs/docs/en/api/faststream/exceptions/AckMessage.md b/docs/docs/en/api/faststream/exceptions/AckMessage.md deleted file mode 100644 index 175efc68ed..0000000000 --- a/docs/docs/en/api/faststream/exceptions/AckMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.exceptions.AckMessage diff --git a/docs/docs/en/api/faststream/exceptions/FastStreamException.md b/docs/docs/en/api/faststream/exceptions/FastStreamException.md deleted file mode 100644 index bd988e9332..0000000000 --- a/docs/docs/en/api/faststream/exceptions/FastStreamException.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.exceptions.FastStreamException diff --git a/docs/docs/en/api/faststream/exceptions/HandlerException.md b/docs/docs/en/api/faststream/exceptions/HandlerException.md deleted file mode 100644 index 64495519a4..0000000000 --- a/docs/docs/en/api/faststream/exceptions/HandlerException.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.exceptions.HandlerException diff --git a/docs/docs/en/api/faststream/exceptions/IgnoredException.md b/docs/docs/en/api/faststream/exceptions/IgnoredException.md deleted file mode 100644 index 18452057c1..0000000000 --- a/docs/docs/en/api/faststream/exceptions/IgnoredException.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.exceptions.IgnoredException diff --git a/docs/docs/en/api/faststream/exceptions/NackMessage.md b/docs/docs/en/api/faststream/exceptions/NackMessage.md deleted file mode 100644 index 05502ca14d..0000000000 --- a/docs/docs/en/api/faststream/exceptions/NackMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.exceptions.NackMessage diff --git a/docs/docs/en/api/faststream/exceptions/RejectMessage.md b/docs/docs/en/api/faststream/exceptions/RejectMessage.md deleted file mode 100644 index be491d89c1..0000000000 --- a/docs/docs/en/api/faststream/exceptions/RejectMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.exceptions.RejectMessage diff --git a/docs/docs/en/api/faststream/exceptions/SetupError.md b/docs/docs/en/api/faststream/exceptions/SetupError.md deleted file mode 100644 index 588e66557f..0000000000 --- a/docs/docs/en/api/faststream/exceptions/SetupError.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.exceptions.SetupError diff --git a/docs/docs/en/api/faststream/exceptions/SkipMessage.md b/docs/docs/en/api/faststream/exceptions/SkipMessage.md deleted file mode 100644 index e2a6ac135e..0000000000 --- a/docs/docs/en/api/faststream/exceptions/SkipMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.exceptions.SkipMessage diff --git a/docs/docs/en/api/faststream/exceptions/StopApplication.md b/docs/docs/en/api/faststream/exceptions/StopApplication.md deleted file mode 100644 index 12059837a4..0000000000 --- a/docs/docs/en/api/faststream/exceptions/StopApplication.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.exceptions.StopApplication diff --git a/docs/docs/en/api/faststream/exceptions/StopConsume.md b/docs/docs/en/api/faststream/exceptions/StopConsume.md deleted file mode 100644 index 9733dcc2e9..0000000000 --- a/docs/docs/en/api/faststream/exceptions/StopConsume.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.exceptions.StopConsume diff --git a/docs/docs/en/api/faststream/exceptions/ValidationError.md b/docs/docs/en/api/faststream/exceptions/ValidationError.md deleted file mode 100644 index 93dc0a73d1..0000000000 --- a/docs/docs/en/api/faststream/exceptions/ValidationError.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.exceptions.ValidationError diff --git a/docs/docs/en/api/faststream/kafka/KafkaBroker.md b/docs/docs/en/api/faststream/kafka/KafkaBroker.md deleted file mode 100644 index 7ee56a5e01..0000000000 --- a/docs/docs/en/api/faststream/kafka/KafkaBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.KafkaBroker diff --git a/docs/docs/en/api/faststream/kafka/KafkaPublisher.md b/docs/docs/en/api/faststream/kafka/KafkaPublisher.md deleted file mode 100644 index c379528109..0000000000 --- a/docs/docs/en/api/faststream/kafka/KafkaPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.KafkaPublisher diff --git a/docs/docs/en/api/faststream/kafka/KafkaResponse.md b/docs/docs/en/api/faststream/kafka/KafkaResponse.md deleted file mode 100644 index 4aab0b965d..0000000000 --- a/docs/docs/en/api/faststream/kafka/KafkaResponse.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.KafkaResponse diff --git a/docs/docs/en/api/faststream/kafka/KafkaRoute.md b/docs/docs/en/api/faststream/kafka/KafkaRoute.md deleted file mode 100644 index 89a8d8cca1..0000000000 --- a/docs/docs/en/api/faststream/kafka/KafkaRoute.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.KafkaRoute diff --git a/docs/docs/en/api/faststream/kafka/KafkaRouter.md b/docs/docs/en/api/faststream/kafka/KafkaRouter.md deleted file mode 100644 index c60f3ca6f4..0000000000 --- a/docs/docs/en/api/faststream/kafka/KafkaRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.KafkaRouter diff --git a/docs/docs/en/api/faststream/kafka/TestApp.md b/docs/docs/en/api/faststream/kafka/TestApp.md deleted file mode 100644 index 2468f3755c..0000000000 --- a/docs/docs/en/api/faststream/kafka/TestApp.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.testing.app.TestApp diff --git a/docs/docs/en/api/faststream/kafka/TestKafkaBroker.md b/docs/docs/en/api/faststream/kafka/TestKafkaBroker.md deleted file mode 100644 index 096df3b1d1..0000000000 --- a/docs/docs/en/api/faststream/kafka/TestKafkaBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.TestKafkaBroker diff --git a/docs/docs/en/api/faststream/kafka/TopicPartition.md b/docs/docs/en/api/faststream/kafka/TopicPartition.md deleted file mode 100644 index 41fbd7f624..0000000000 --- a/docs/docs/en/api/faststream/kafka/TopicPartition.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: aiokafka.structs.TopicPartition diff --git a/docs/docs/en/api/faststream/kafka/broker/KafkaBroker.md b/docs/docs/en/api/faststream/kafka/broker/KafkaBroker.md deleted file mode 100644 index 2cee711d14..0000000000 --- a/docs/docs/en/api/faststream/kafka/broker/KafkaBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.broker.KafkaBroker diff --git a/docs/docs/en/api/faststream/kafka/broker/broker/KafkaBroker.md b/docs/docs/en/api/faststream/kafka/broker/broker/KafkaBroker.md deleted file mode 100644 index ca32dd3865..0000000000 --- a/docs/docs/en/api/faststream/kafka/broker/broker/KafkaBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.broker.broker.KafkaBroker diff --git a/docs/docs/en/api/faststream/kafka/broker/logging/KafkaLoggingBroker.md b/docs/docs/en/api/faststream/kafka/broker/logging/KafkaLoggingBroker.md deleted file mode 100644 index 1f8d5921b7..0000000000 --- a/docs/docs/en/api/faststream/kafka/broker/logging/KafkaLoggingBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.broker.logging.KafkaLoggingBroker diff --git a/docs/docs/en/api/faststream/kafka/broker/registrator/KafkaRegistrator.md b/docs/docs/en/api/faststream/kafka/broker/registrator/KafkaRegistrator.md deleted file mode 100644 index aa06d38f65..0000000000 --- a/docs/docs/en/api/faststream/kafka/broker/registrator/KafkaRegistrator.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.broker.registrator.KafkaRegistrator diff --git a/docs/docs/en/api/faststream/kafka/fastapi/Context.md b/docs/docs/en/api/faststream/kafka/fastapi/Context.md deleted file mode 100644 index f4240bb0da..0000000000 --- a/docs/docs/en/api/faststream/kafka/fastapi/Context.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.fastapi.context.Context diff --git a/docs/docs/en/api/faststream/kafka/fastapi/KafkaRouter.md b/docs/docs/en/api/faststream/kafka/fastapi/KafkaRouter.md deleted file mode 100644 index 2ab7254e79..0000000000 --- a/docs/docs/en/api/faststream/kafka/fastapi/KafkaRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.fastapi.KafkaRouter diff --git a/docs/docs/en/api/faststream/kafka/fastapi/fastapi/KafkaRouter.md b/docs/docs/en/api/faststream/kafka/fastapi/fastapi/KafkaRouter.md deleted file mode 100644 index 80fc17dd4a..0000000000 --- a/docs/docs/en/api/faststream/kafka/fastapi/fastapi/KafkaRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.fastapi.fastapi.KafkaRouter diff --git a/docs/docs/en/api/faststream/kafka/message/ConsumerProtocol.md b/docs/docs/en/api/faststream/kafka/message/ConsumerProtocol.md deleted file mode 100644 index c9fd16a983..0000000000 --- a/docs/docs/en/api/faststream/kafka/message/ConsumerProtocol.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.message.ConsumerProtocol diff --git a/docs/docs/en/api/faststream/kafka/message/FakeConsumer.md b/docs/docs/en/api/faststream/kafka/message/FakeConsumer.md deleted file mode 100644 index d41724b288..0000000000 --- a/docs/docs/en/api/faststream/kafka/message/FakeConsumer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.message.FakeConsumer diff --git a/docs/docs/en/api/faststream/kafka/message/KafkaMessage.md b/docs/docs/en/api/faststream/kafka/message/KafkaMessage.md deleted file mode 100644 index 7a7a30bae3..0000000000 --- a/docs/docs/en/api/faststream/kafka/message/KafkaMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.message.KafkaMessage diff --git a/docs/docs/en/api/faststream/kafka/opentelemetry/KafkaTelemetryMiddleware.md b/docs/docs/en/api/faststream/kafka/opentelemetry/KafkaTelemetryMiddleware.md deleted file mode 100644 index 02fb4805ac..0000000000 --- a/docs/docs/en/api/faststream/kafka/opentelemetry/KafkaTelemetryMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.opentelemetry.KafkaTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/kafka/opentelemetry/middleware/KafkaTelemetryMiddleware.md b/docs/docs/en/api/faststream/kafka/opentelemetry/middleware/KafkaTelemetryMiddleware.md deleted file mode 100644 index aba78378f2..0000000000 --- a/docs/docs/en/api/faststream/kafka/opentelemetry/middleware/KafkaTelemetryMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.opentelemetry.middleware.KafkaTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/kafka/opentelemetry/provider/BaseKafkaTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/kafka/opentelemetry/provider/BaseKafkaTelemetrySettingsProvider.md deleted file mode 100644 index 5cb13be947..0000000000 --- a/docs/docs/en/api/faststream/kafka/opentelemetry/provider/BaseKafkaTelemetrySettingsProvider.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.opentelemetry.provider.BaseKafkaTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/kafka/opentelemetry/provider/BatchKafkaTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/kafka/opentelemetry/provider/BatchKafkaTelemetrySettingsProvider.md deleted file mode 100644 index d3d7080509..0000000000 --- a/docs/docs/en/api/faststream/kafka/opentelemetry/provider/BatchKafkaTelemetrySettingsProvider.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.opentelemetry.provider.BatchKafkaTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/kafka/opentelemetry/provider/KafkaTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/kafka/opentelemetry/provider/KafkaTelemetrySettingsProvider.md deleted file mode 100644 index 0859c0df3d..0000000000 --- a/docs/docs/en/api/faststream/kafka/opentelemetry/provider/KafkaTelemetrySettingsProvider.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.opentelemetry.provider.KafkaTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/kafka/opentelemetry/provider/telemetry_attributes_provider_factory.md b/docs/docs/en/api/faststream/kafka/opentelemetry/provider/telemetry_attributes_provider_factory.md deleted file mode 100644 index 3b2a1ad394..0000000000 --- a/docs/docs/en/api/faststream/kafka/opentelemetry/provider/telemetry_attributes_provider_factory.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.opentelemetry.provider.telemetry_attributes_provider_factory diff --git a/docs/docs/en/api/faststream/kafka/parser/AioKafkaParser.md b/docs/docs/en/api/faststream/kafka/parser/AioKafkaParser.md deleted file mode 100644 index e7e37cce97..0000000000 --- a/docs/docs/en/api/faststream/kafka/parser/AioKafkaParser.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.parser.AioKafkaParser diff --git a/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIBatchPublisher.md b/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIBatchPublisher.md deleted file mode 100644 index 8d796523e6..0000000000 --- a/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIBatchPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.publisher.asyncapi.AsyncAPIBatchPublisher diff --git a/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIDefaultPublisher.md b/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIDefaultPublisher.md deleted file mode 100644 index 7e4e54d030..0000000000 --- a/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIDefaultPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.publisher.asyncapi.AsyncAPIDefaultPublisher diff --git a/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIPublisher.md b/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIPublisher.md deleted file mode 100644 index 7d914809c2..0000000000 --- a/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.publisher.asyncapi.AsyncAPIPublisher diff --git a/docs/docs/en/api/faststream/kafka/publisher/producer/AioKafkaFastProducer.md b/docs/docs/en/api/faststream/kafka/publisher/producer/AioKafkaFastProducer.md deleted file mode 100644 index 83b116989b..0000000000 --- a/docs/docs/en/api/faststream/kafka/publisher/producer/AioKafkaFastProducer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.publisher.producer.AioKafkaFastProducer diff --git a/docs/docs/en/api/faststream/kafka/publisher/usecase/BatchPublisher.md b/docs/docs/en/api/faststream/kafka/publisher/usecase/BatchPublisher.md deleted file mode 100644 index 045cfbf45f..0000000000 --- a/docs/docs/en/api/faststream/kafka/publisher/usecase/BatchPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.publisher.usecase.BatchPublisher diff --git a/docs/docs/en/api/faststream/kafka/publisher/usecase/DefaultPublisher.md b/docs/docs/en/api/faststream/kafka/publisher/usecase/DefaultPublisher.md deleted file mode 100644 index 07518c75b3..0000000000 --- a/docs/docs/en/api/faststream/kafka/publisher/usecase/DefaultPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.publisher.usecase.DefaultPublisher diff --git a/docs/docs/en/api/faststream/kafka/publisher/usecase/LogicPublisher.md b/docs/docs/en/api/faststream/kafka/publisher/usecase/LogicPublisher.md deleted file mode 100644 index 615da58f90..0000000000 --- a/docs/docs/en/api/faststream/kafka/publisher/usecase/LogicPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.publisher.usecase.LogicPublisher diff --git a/docs/docs/en/api/faststream/kafka/response/KafkaResponse.md b/docs/docs/en/api/faststream/kafka/response/KafkaResponse.md deleted file mode 100644 index 05ecd69c2d..0000000000 --- a/docs/docs/en/api/faststream/kafka/response/KafkaResponse.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.response.KafkaResponse diff --git a/docs/docs/en/api/faststream/kafka/router/KafkaPublisher.md b/docs/docs/en/api/faststream/kafka/router/KafkaPublisher.md deleted file mode 100644 index 5027c18f20..0000000000 --- a/docs/docs/en/api/faststream/kafka/router/KafkaPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.router.KafkaPublisher diff --git a/docs/docs/en/api/faststream/kafka/router/KafkaRoute.md b/docs/docs/en/api/faststream/kafka/router/KafkaRoute.md deleted file mode 100644 index e7e6184deb..0000000000 --- a/docs/docs/en/api/faststream/kafka/router/KafkaRoute.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.router.KafkaRoute diff --git a/docs/docs/en/api/faststream/kafka/router/KafkaRouter.md b/docs/docs/en/api/faststream/kafka/router/KafkaRouter.md deleted file mode 100644 index 5d7578bbfc..0000000000 --- a/docs/docs/en/api/faststream/kafka/router/KafkaRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.router.KafkaRouter diff --git a/docs/docs/en/api/faststream/kafka/schemas/params/ConsumerConnectionParams.md b/docs/docs/en/api/faststream/kafka/schemas/params/ConsumerConnectionParams.md deleted file mode 100644 index b289e61e5a..0000000000 --- a/docs/docs/en/api/faststream/kafka/schemas/params/ConsumerConnectionParams.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.schemas.params.ConsumerConnectionParams diff --git a/docs/docs/en/api/faststream/kafka/security/parse_security.md b/docs/docs/en/api/faststream/kafka/security/parse_security.md deleted file mode 100644 index e325a99ad8..0000000000 --- a/docs/docs/en/api/faststream/kafka/security/parse_security.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.security.parse_security diff --git a/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPIBatchSubscriber.md b/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPIBatchSubscriber.md deleted file mode 100644 index 3ce948d2e2..0000000000 --- a/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPIBatchSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.subscriber.asyncapi.AsyncAPIBatchSubscriber diff --git a/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPIDefaultSubscriber.md b/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPIDefaultSubscriber.md deleted file mode 100644 index ef10b05e80..0000000000 --- a/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPIDefaultSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.subscriber.asyncapi.AsyncAPIDefaultSubscriber diff --git a/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPISubscriber.md b/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPISubscriber.md deleted file mode 100644 index 330a621bf5..0000000000 --- a/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPISubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.subscriber.asyncapi.AsyncAPISubscriber diff --git a/docs/docs/en/api/faststream/kafka/subscriber/factory/create_subscriber.md b/docs/docs/en/api/faststream/kafka/subscriber/factory/create_subscriber.md deleted file mode 100644 index d9e5fcb4a4..0000000000 --- a/docs/docs/en/api/faststream/kafka/subscriber/factory/create_subscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.subscriber.factory.create_subscriber diff --git a/docs/docs/en/api/faststream/kafka/subscriber/usecase/BatchSubscriber.md b/docs/docs/en/api/faststream/kafka/subscriber/usecase/BatchSubscriber.md deleted file mode 100644 index 6f8978f38b..0000000000 --- a/docs/docs/en/api/faststream/kafka/subscriber/usecase/BatchSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.subscriber.usecase.BatchSubscriber diff --git a/docs/docs/en/api/faststream/kafka/subscriber/usecase/DefaultSubscriber.md b/docs/docs/en/api/faststream/kafka/subscriber/usecase/DefaultSubscriber.md deleted file mode 100644 index 78949c27dd..0000000000 --- a/docs/docs/en/api/faststream/kafka/subscriber/usecase/DefaultSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.subscriber.usecase.DefaultSubscriber diff --git a/docs/docs/en/api/faststream/kafka/subscriber/usecase/LogicSubscriber.md b/docs/docs/en/api/faststream/kafka/subscriber/usecase/LogicSubscriber.md deleted file mode 100644 index 297013e037..0000000000 --- a/docs/docs/en/api/faststream/kafka/subscriber/usecase/LogicSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.subscriber.usecase.LogicSubscriber diff --git a/docs/docs/en/api/faststream/kafka/testing/FakeProducer.md b/docs/docs/en/api/faststream/kafka/testing/FakeProducer.md deleted file mode 100644 index 63eb94c3ca..0000000000 --- a/docs/docs/en/api/faststream/kafka/testing/FakeProducer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.testing.FakeProducer diff --git a/docs/docs/en/api/faststream/kafka/testing/TestKafkaBroker.md b/docs/docs/en/api/faststream/kafka/testing/TestKafkaBroker.md deleted file mode 100644 index 96f257a15f..0000000000 --- a/docs/docs/en/api/faststream/kafka/testing/TestKafkaBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.testing.TestKafkaBroker diff --git a/docs/docs/en/api/faststream/kafka/testing/build_message.md b/docs/docs/en/api/faststream/kafka/testing/build_message.md deleted file mode 100644 index 354d7a82f3..0000000000 --- a/docs/docs/en/api/faststream/kafka/testing/build_message.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.kafka.testing.build_message diff --git a/docs/docs/en/api/faststream/log/formatter/ColourizedFormatter.md b/docs/docs/en/api/faststream/log/formatter/ColourizedFormatter.md deleted file mode 100644 index 6e1aec157c..0000000000 --- a/docs/docs/en/api/faststream/log/formatter/ColourizedFormatter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.log.formatter.ColourizedFormatter diff --git a/docs/docs/en/api/faststream/log/formatter/expand_log_field.md b/docs/docs/en/api/faststream/log/formatter/expand_log_field.md deleted file mode 100644 index ce943209af..0000000000 --- a/docs/docs/en/api/faststream/log/formatter/expand_log_field.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.log.formatter.expand_log_field diff --git a/docs/docs/en/api/faststream/log/logging/ExtendedFilter.md b/docs/docs/en/api/faststream/log/logging/ExtendedFilter.md deleted file mode 100644 index bd8f017947..0000000000 --- a/docs/docs/en/api/faststream/log/logging/ExtendedFilter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.log.logging.ExtendedFilter diff --git a/docs/docs/en/api/faststream/log/logging/get_broker_logger.md b/docs/docs/en/api/faststream/log/logging/get_broker_logger.md deleted file mode 100644 index e3433fc8dd..0000000000 --- a/docs/docs/en/api/faststream/log/logging/get_broker_logger.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.log.logging.get_broker_logger diff --git a/docs/docs/en/api/faststream/log/logging/set_logger_fmt.md b/docs/docs/en/api/faststream/log/logging/set_logger_fmt.md deleted file mode 100644 index a4af3d137f..0000000000 --- a/docs/docs/en/api/faststream/log/logging/set_logger_fmt.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.log.logging.set_logger_fmt diff --git a/docs/docs/en/api/faststream/nats/AckPolicy.md b/docs/docs/en/api/faststream/nats/AckPolicy.md deleted file mode 100644 index 308d12ac63..0000000000 --- a/docs/docs/en/api/faststream/nats/AckPolicy.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: nats.js.api.AckPolicy diff --git a/docs/docs/en/api/faststream/nats/ConsumerConfig.md b/docs/docs/en/api/faststream/nats/ConsumerConfig.md deleted file mode 100644 index 56c357cc07..0000000000 --- a/docs/docs/en/api/faststream/nats/ConsumerConfig.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: nats.js.api.ConsumerConfig diff --git a/docs/docs/en/api/faststream/nats/DeliverPolicy.md b/docs/docs/en/api/faststream/nats/DeliverPolicy.md deleted file mode 100644 index ebb664d0d9..0000000000 --- a/docs/docs/en/api/faststream/nats/DeliverPolicy.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: nats.js.api.DeliverPolicy diff --git a/docs/docs/en/api/faststream/nats/DiscardPolicy.md b/docs/docs/en/api/faststream/nats/DiscardPolicy.md deleted file mode 100644 index 9eacd12198..0000000000 --- a/docs/docs/en/api/faststream/nats/DiscardPolicy.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: nats.js.api.DiscardPolicy diff --git a/docs/docs/en/api/faststream/nats/ExternalStream.md b/docs/docs/en/api/faststream/nats/ExternalStream.md deleted file mode 100644 index 5ea0eacbbc..0000000000 --- a/docs/docs/en/api/faststream/nats/ExternalStream.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: nats.js.api.ExternalStream diff --git a/docs/docs/en/api/faststream/nats/JStream.md b/docs/docs/en/api/faststream/nats/JStream.md deleted file mode 100644 index 70ca7cab69..0000000000 --- a/docs/docs/en/api/faststream/nats/JStream.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.JStream diff --git a/docs/docs/en/api/faststream/nats/KvWatch.md b/docs/docs/en/api/faststream/nats/KvWatch.md deleted file mode 100644 index 1527be51fd..0000000000 --- a/docs/docs/en/api/faststream/nats/KvWatch.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.KvWatch diff --git a/docs/docs/en/api/faststream/nats/NatsBroker.md b/docs/docs/en/api/faststream/nats/NatsBroker.md deleted file mode 100644 index 376231c4cd..0000000000 --- a/docs/docs/en/api/faststream/nats/NatsBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.NatsBroker diff --git a/docs/docs/en/api/faststream/nats/NatsPublisher.md b/docs/docs/en/api/faststream/nats/NatsPublisher.md deleted file mode 100644 index 1f1ffbca2a..0000000000 --- a/docs/docs/en/api/faststream/nats/NatsPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.NatsPublisher diff --git a/docs/docs/en/api/faststream/nats/NatsResponse.md b/docs/docs/en/api/faststream/nats/NatsResponse.md deleted file mode 100644 index 6b967b527a..0000000000 --- a/docs/docs/en/api/faststream/nats/NatsResponse.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.NatsResponse diff --git a/docs/docs/en/api/faststream/nats/NatsRoute.md b/docs/docs/en/api/faststream/nats/NatsRoute.md deleted file mode 100644 index b76a8481dc..0000000000 --- a/docs/docs/en/api/faststream/nats/NatsRoute.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.NatsRoute diff --git a/docs/docs/en/api/faststream/nats/NatsRouter.md b/docs/docs/en/api/faststream/nats/NatsRouter.md deleted file mode 100644 index 89e975235b..0000000000 --- a/docs/docs/en/api/faststream/nats/NatsRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.NatsRouter diff --git a/docs/docs/en/api/faststream/nats/ObjWatch.md b/docs/docs/en/api/faststream/nats/ObjWatch.md deleted file mode 100644 index 50102ecf31..0000000000 --- a/docs/docs/en/api/faststream/nats/ObjWatch.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.ObjWatch diff --git a/docs/docs/en/api/faststream/nats/Placement.md b/docs/docs/en/api/faststream/nats/Placement.md deleted file mode 100644 index bff8b3d4b8..0000000000 --- a/docs/docs/en/api/faststream/nats/Placement.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: nats.js.api.Placement diff --git a/docs/docs/en/api/faststream/nats/PullSub.md b/docs/docs/en/api/faststream/nats/PullSub.md deleted file mode 100644 index dbfaf68f54..0000000000 --- a/docs/docs/en/api/faststream/nats/PullSub.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.PullSub diff --git a/docs/docs/en/api/faststream/nats/RePublish.md b/docs/docs/en/api/faststream/nats/RePublish.md deleted file mode 100644 index 35ad498def..0000000000 --- a/docs/docs/en/api/faststream/nats/RePublish.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: nats.js.api.RePublish diff --git a/docs/docs/en/api/faststream/nats/ReplayPolicy.md b/docs/docs/en/api/faststream/nats/ReplayPolicy.md deleted file mode 100644 index 6430f0a22f..0000000000 --- a/docs/docs/en/api/faststream/nats/ReplayPolicy.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: nats.js.api.ReplayPolicy diff --git a/docs/docs/en/api/faststream/nats/RetentionPolicy.md b/docs/docs/en/api/faststream/nats/RetentionPolicy.md deleted file mode 100644 index 919b818c9e..0000000000 --- a/docs/docs/en/api/faststream/nats/RetentionPolicy.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: nats.js.api.RetentionPolicy diff --git a/docs/docs/en/api/faststream/nats/StorageType.md b/docs/docs/en/api/faststream/nats/StorageType.md deleted file mode 100644 index 78a6bc4d8f..0000000000 --- a/docs/docs/en/api/faststream/nats/StorageType.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: nats.js.api.StorageType diff --git a/docs/docs/en/api/faststream/nats/StreamConfig.md b/docs/docs/en/api/faststream/nats/StreamConfig.md deleted file mode 100644 index 3bce18f7de..0000000000 --- a/docs/docs/en/api/faststream/nats/StreamConfig.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: nats.js.api.StreamConfig diff --git a/docs/docs/en/api/faststream/nats/StreamSource.md b/docs/docs/en/api/faststream/nats/StreamSource.md deleted file mode 100644 index 4d85db37e5..0000000000 --- a/docs/docs/en/api/faststream/nats/StreamSource.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: nats.js.api.StreamSource diff --git a/docs/docs/en/api/faststream/nats/TestApp.md b/docs/docs/en/api/faststream/nats/TestApp.md deleted file mode 100644 index 2468f3755c..0000000000 --- a/docs/docs/en/api/faststream/nats/TestApp.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.testing.app.TestApp diff --git a/docs/docs/en/api/faststream/nats/TestNatsBroker.md b/docs/docs/en/api/faststream/nats/TestNatsBroker.md deleted file mode 100644 index 8557295619..0000000000 --- a/docs/docs/en/api/faststream/nats/TestNatsBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.TestNatsBroker diff --git a/docs/docs/en/api/faststream/nats/broker/NatsBroker.md b/docs/docs/en/api/faststream/nats/broker/NatsBroker.md deleted file mode 100644 index eeea31372b..0000000000 --- a/docs/docs/en/api/faststream/nats/broker/NatsBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.broker.NatsBroker diff --git a/docs/docs/en/api/faststream/nats/broker/broker/NatsBroker.md b/docs/docs/en/api/faststream/nats/broker/broker/NatsBroker.md deleted file mode 100644 index 7aed0de1ec..0000000000 --- a/docs/docs/en/api/faststream/nats/broker/broker/NatsBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.broker.broker.NatsBroker diff --git a/docs/docs/en/api/faststream/nats/broker/logging/NatsLoggingBroker.md b/docs/docs/en/api/faststream/nats/broker/logging/NatsLoggingBroker.md deleted file mode 100644 index cd31396a61..0000000000 --- a/docs/docs/en/api/faststream/nats/broker/logging/NatsLoggingBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.broker.logging.NatsLoggingBroker diff --git a/docs/docs/en/api/faststream/nats/broker/registrator/NatsRegistrator.md b/docs/docs/en/api/faststream/nats/broker/registrator/NatsRegistrator.md deleted file mode 100644 index f7f313746a..0000000000 --- a/docs/docs/en/api/faststream/nats/broker/registrator/NatsRegistrator.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.broker.registrator.NatsRegistrator diff --git a/docs/docs/en/api/faststream/nats/fastapi/Context.md b/docs/docs/en/api/faststream/nats/fastapi/Context.md deleted file mode 100644 index f4240bb0da..0000000000 --- a/docs/docs/en/api/faststream/nats/fastapi/Context.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.fastapi.context.Context diff --git a/docs/docs/en/api/faststream/nats/fastapi/NatsRouter.md b/docs/docs/en/api/faststream/nats/fastapi/NatsRouter.md deleted file mode 100644 index 53123192c2..0000000000 --- a/docs/docs/en/api/faststream/nats/fastapi/NatsRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.fastapi.NatsRouter diff --git a/docs/docs/en/api/faststream/nats/fastapi/fastapi/NatsRouter.md b/docs/docs/en/api/faststream/nats/fastapi/fastapi/NatsRouter.md deleted file mode 100644 index 015f730b4f..0000000000 --- a/docs/docs/en/api/faststream/nats/fastapi/fastapi/NatsRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.fastapi.fastapi.NatsRouter diff --git a/docs/docs/en/api/faststream/nats/helpers/KVBucketDeclarer.md b/docs/docs/en/api/faststream/nats/helpers/KVBucketDeclarer.md deleted file mode 100644 index b24feaada6..0000000000 --- a/docs/docs/en/api/faststream/nats/helpers/KVBucketDeclarer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.helpers.KVBucketDeclarer diff --git a/docs/docs/en/api/faststream/nats/helpers/OSBucketDeclarer.md b/docs/docs/en/api/faststream/nats/helpers/OSBucketDeclarer.md deleted file mode 100644 index 3ee16a3f24..0000000000 --- a/docs/docs/en/api/faststream/nats/helpers/OSBucketDeclarer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.helpers.OSBucketDeclarer diff --git a/docs/docs/en/api/faststream/nats/helpers/StreamBuilder.md b/docs/docs/en/api/faststream/nats/helpers/StreamBuilder.md deleted file mode 100644 index 3b2a318598..0000000000 --- a/docs/docs/en/api/faststream/nats/helpers/StreamBuilder.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.helpers.StreamBuilder diff --git a/docs/docs/en/api/faststream/nats/helpers/bucket_declarer/KVBucketDeclarer.md b/docs/docs/en/api/faststream/nats/helpers/bucket_declarer/KVBucketDeclarer.md deleted file mode 100644 index fe0eaec17f..0000000000 --- a/docs/docs/en/api/faststream/nats/helpers/bucket_declarer/KVBucketDeclarer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.helpers.bucket_declarer.KVBucketDeclarer diff --git a/docs/docs/en/api/faststream/nats/helpers/obj_storage_declarer/OSBucketDeclarer.md b/docs/docs/en/api/faststream/nats/helpers/obj_storage_declarer/OSBucketDeclarer.md deleted file mode 100644 index b7663051c8..0000000000 --- a/docs/docs/en/api/faststream/nats/helpers/obj_storage_declarer/OSBucketDeclarer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.helpers.obj_storage_declarer.OSBucketDeclarer diff --git a/docs/docs/en/api/faststream/nats/helpers/object_builder/StreamBuilder.md b/docs/docs/en/api/faststream/nats/helpers/object_builder/StreamBuilder.md deleted file mode 100644 index 024daf2d14..0000000000 --- a/docs/docs/en/api/faststream/nats/helpers/object_builder/StreamBuilder.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.helpers.object_builder.StreamBuilder diff --git a/docs/docs/en/api/faststream/nats/message/NatsBatchMessage.md b/docs/docs/en/api/faststream/nats/message/NatsBatchMessage.md deleted file mode 100644 index 83017107ff..0000000000 --- a/docs/docs/en/api/faststream/nats/message/NatsBatchMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.message.NatsBatchMessage diff --git a/docs/docs/en/api/faststream/nats/message/NatsKvMessage.md b/docs/docs/en/api/faststream/nats/message/NatsKvMessage.md deleted file mode 100644 index 5ac6ed9f41..0000000000 --- a/docs/docs/en/api/faststream/nats/message/NatsKvMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.message.NatsKvMessage diff --git a/docs/docs/en/api/faststream/nats/message/NatsMessage.md b/docs/docs/en/api/faststream/nats/message/NatsMessage.md deleted file mode 100644 index 22d17ceb56..0000000000 --- a/docs/docs/en/api/faststream/nats/message/NatsMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.message.NatsMessage diff --git a/docs/docs/en/api/faststream/nats/message/NatsObjMessage.md b/docs/docs/en/api/faststream/nats/message/NatsObjMessage.md deleted file mode 100644 index 3671628da4..0000000000 --- a/docs/docs/en/api/faststream/nats/message/NatsObjMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.message.NatsObjMessage diff --git a/docs/docs/en/api/faststream/nats/opentelemetry/NatsTelemetryMiddleware.md b/docs/docs/en/api/faststream/nats/opentelemetry/NatsTelemetryMiddleware.md deleted file mode 100644 index e72f2de8ab..0000000000 --- a/docs/docs/en/api/faststream/nats/opentelemetry/NatsTelemetryMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.opentelemetry.NatsTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/nats/opentelemetry/middleware/NatsTelemetryMiddleware.md b/docs/docs/en/api/faststream/nats/opentelemetry/middleware/NatsTelemetryMiddleware.md deleted file mode 100644 index b2bb226585..0000000000 --- a/docs/docs/en/api/faststream/nats/opentelemetry/middleware/NatsTelemetryMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.opentelemetry.middleware.NatsTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/nats/opentelemetry/provider/BaseNatsTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/nats/opentelemetry/provider/BaseNatsTelemetrySettingsProvider.md deleted file mode 100644 index d6626c537d..0000000000 --- a/docs/docs/en/api/faststream/nats/opentelemetry/provider/BaseNatsTelemetrySettingsProvider.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.opentelemetry.provider.BaseNatsTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/nats/opentelemetry/provider/NatsBatchTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/nats/opentelemetry/provider/NatsBatchTelemetrySettingsProvider.md deleted file mode 100644 index 045996125a..0000000000 --- a/docs/docs/en/api/faststream/nats/opentelemetry/provider/NatsBatchTelemetrySettingsProvider.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.opentelemetry.provider.NatsBatchTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/nats/opentelemetry/provider/NatsTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/nats/opentelemetry/provider/NatsTelemetrySettingsProvider.md deleted file mode 100644 index b58590c4fa..0000000000 --- a/docs/docs/en/api/faststream/nats/opentelemetry/provider/NatsTelemetrySettingsProvider.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.opentelemetry.provider.NatsTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/nats/opentelemetry/provider/telemetry_attributes_provider_factory.md b/docs/docs/en/api/faststream/nats/opentelemetry/provider/telemetry_attributes_provider_factory.md deleted file mode 100644 index 200d333e0b..0000000000 --- a/docs/docs/en/api/faststream/nats/opentelemetry/provider/telemetry_attributes_provider_factory.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.opentelemetry.provider.telemetry_attributes_provider_factory diff --git a/docs/docs/en/api/faststream/nats/parser/BatchParser.md b/docs/docs/en/api/faststream/nats/parser/BatchParser.md deleted file mode 100644 index 03ad25f549..0000000000 --- a/docs/docs/en/api/faststream/nats/parser/BatchParser.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.parser.BatchParser diff --git a/docs/docs/en/api/faststream/nats/parser/JsParser.md b/docs/docs/en/api/faststream/nats/parser/JsParser.md deleted file mode 100644 index 0cd283d36e..0000000000 --- a/docs/docs/en/api/faststream/nats/parser/JsParser.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.parser.JsParser diff --git a/docs/docs/en/api/faststream/nats/parser/KvParser.md b/docs/docs/en/api/faststream/nats/parser/KvParser.md deleted file mode 100644 index acba65e133..0000000000 --- a/docs/docs/en/api/faststream/nats/parser/KvParser.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.parser.KvParser diff --git a/docs/docs/en/api/faststream/nats/parser/NatsBaseParser.md b/docs/docs/en/api/faststream/nats/parser/NatsBaseParser.md deleted file mode 100644 index 00b038738d..0000000000 --- a/docs/docs/en/api/faststream/nats/parser/NatsBaseParser.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.parser.NatsBaseParser diff --git a/docs/docs/en/api/faststream/nats/parser/NatsParser.md b/docs/docs/en/api/faststream/nats/parser/NatsParser.md deleted file mode 100644 index ceed3d0bdf..0000000000 --- a/docs/docs/en/api/faststream/nats/parser/NatsParser.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.parser.NatsParser diff --git a/docs/docs/en/api/faststream/nats/parser/ObjParser.md b/docs/docs/en/api/faststream/nats/parser/ObjParser.md deleted file mode 100644 index 50ff5d0e18..0000000000 --- a/docs/docs/en/api/faststream/nats/parser/ObjParser.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.parser.ObjParser diff --git a/docs/docs/en/api/faststream/nats/publisher/asyncapi/AsyncAPIPublisher.md b/docs/docs/en/api/faststream/nats/publisher/asyncapi/AsyncAPIPublisher.md deleted file mode 100644 index 6ea394db59..0000000000 --- a/docs/docs/en/api/faststream/nats/publisher/asyncapi/AsyncAPIPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.publisher.asyncapi.AsyncAPIPublisher diff --git a/docs/docs/en/api/faststream/nats/publisher/producer/NatsFastProducer.md b/docs/docs/en/api/faststream/nats/publisher/producer/NatsFastProducer.md deleted file mode 100644 index 82ff491f16..0000000000 --- a/docs/docs/en/api/faststream/nats/publisher/producer/NatsFastProducer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.publisher.producer.NatsFastProducer diff --git a/docs/docs/en/api/faststream/nats/publisher/producer/NatsJSFastProducer.md b/docs/docs/en/api/faststream/nats/publisher/producer/NatsJSFastProducer.md deleted file mode 100644 index 9c0e046e61..0000000000 --- a/docs/docs/en/api/faststream/nats/publisher/producer/NatsJSFastProducer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.publisher.producer.NatsJSFastProducer diff --git a/docs/docs/en/api/faststream/nats/publisher/usecase/LogicPublisher.md b/docs/docs/en/api/faststream/nats/publisher/usecase/LogicPublisher.md deleted file mode 100644 index 08c7794545..0000000000 --- a/docs/docs/en/api/faststream/nats/publisher/usecase/LogicPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.publisher.usecase.LogicPublisher diff --git a/docs/docs/en/api/faststream/nats/response/NatsResponse.md b/docs/docs/en/api/faststream/nats/response/NatsResponse.md deleted file mode 100644 index 8a7da66982..0000000000 --- a/docs/docs/en/api/faststream/nats/response/NatsResponse.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.response.NatsResponse diff --git a/docs/docs/en/api/faststream/nats/router/NatsPublisher.md b/docs/docs/en/api/faststream/nats/router/NatsPublisher.md deleted file mode 100644 index b025495e44..0000000000 --- a/docs/docs/en/api/faststream/nats/router/NatsPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.router.NatsPublisher diff --git a/docs/docs/en/api/faststream/nats/router/NatsRoute.md b/docs/docs/en/api/faststream/nats/router/NatsRoute.md deleted file mode 100644 index 36df33c45e..0000000000 --- a/docs/docs/en/api/faststream/nats/router/NatsRoute.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.router.NatsRoute diff --git a/docs/docs/en/api/faststream/nats/router/NatsRouter.md b/docs/docs/en/api/faststream/nats/router/NatsRouter.md deleted file mode 100644 index 4b6dfaaf7d..0000000000 --- a/docs/docs/en/api/faststream/nats/router/NatsRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.router.NatsRouter diff --git a/docs/docs/en/api/faststream/nats/schemas/JStream.md b/docs/docs/en/api/faststream/nats/schemas/JStream.md deleted file mode 100644 index 51df9a02cc..0000000000 --- a/docs/docs/en/api/faststream/nats/schemas/JStream.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.schemas.JStream diff --git a/docs/docs/en/api/faststream/nats/schemas/KvWatch.md b/docs/docs/en/api/faststream/nats/schemas/KvWatch.md deleted file mode 100644 index ce99738043..0000000000 --- a/docs/docs/en/api/faststream/nats/schemas/KvWatch.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.schemas.KvWatch diff --git a/docs/docs/en/api/faststream/nats/schemas/ObjWatch.md b/docs/docs/en/api/faststream/nats/schemas/ObjWatch.md deleted file mode 100644 index 51c3628e5e..0000000000 --- a/docs/docs/en/api/faststream/nats/schemas/ObjWatch.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.schemas.ObjWatch diff --git a/docs/docs/en/api/faststream/nats/schemas/PullSub.md b/docs/docs/en/api/faststream/nats/schemas/PullSub.md deleted file mode 100644 index cb7341340c..0000000000 --- a/docs/docs/en/api/faststream/nats/schemas/PullSub.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.schemas.PullSub diff --git a/docs/docs/en/api/faststream/nats/schemas/js_stream/JStream.md b/docs/docs/en/api/faststream/nats/schemas/js_stream/JStream.md deleted file mode 100644 index af375c116a..0000000000 --- a/docs/docs/en/api/faststream/nats/schemas/js_stream/JStream.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.schemas.js_stream.JStream diff --git a/docs/docs/en/api/faststream/nats/schemas/js_stream/compile_nats_wildcard.md b/docs/docs/en/api/faststream/nats/schemas/js_stream/compile_nats_wildcard.md deleted file mode 100644 index 910f034eff..0000000000 --- a/docs/docs/en/api/faststream/nats/schemas/js_stream/compile_nats_wildcard.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.schemas.js_stream.compile_nats_wildcard diff --git a/docs/docs/en/api/faststream/nats/schemas/js_stream/is_subject_match_wildcard.md b/docs/docs/en/api/faststream/nats/schemas/js_stream/is_subject_match_wildcard.md deleted file mode 100644 index f9305b94e8..0000000000 --- a/docs/docs/en/api/faststream/nats/schemas/js_stream/is_subject_match_wildcard.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.schemas.js_stream.is_subject_match_wildcard diff --git a/docs/docs/en/api/faststream/nats/schemas/kv_watch/KvWatch.md b/docs/docs/en/api/faststream/nats/schemas/kv_watch/KvWatch.md deleted file mode 100644 index ce07fa305d..0000000000 --- a/docs/docs/en/api/faststream/nats/schemas/kv_watch/KvWatch.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.schemas.kv_watch.KvWatch diff --git a/docs/docs/en/api/faststream/nats/schemas/obj_watch/ObjWatch.md b/docs/docs/en/api/faststream/nats/schemas/obj_watch/ObjWatch.md deleted file mode 100644 index 55831b8a6a..0000000000 --- a/docs/docs/en/api/faststream/nats/schemas/obj_watch/ObjWatch.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.schemas.obj_watch.ObjWatch diff --git a/docs/docs/en/api/faststream/nats/schemas/pull_sub/PullSub.md b/docs/docs/en/api/faststream/nats/schemas/pull_sub/PullSub.md deleted file mode 100644 index 673a1e8ff6..0000000000 --- a/docs/docs/en/api/faststream/nats/schemas/pull_sub/PullSub.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.schemas.pull_sub.PullSub diff --git a/docs/docs/en/api/faststream/nats/security/parse_security.md b/docs/docs/en/api/faststream/nats/security/parse_security.md deleted file mode 100644 index d2fe5dd0c3..0000000000 --- a/docs/docs/en/api/faststream/nats/security/parse_security.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.security.parse_security diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIBatchPullStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIBatchPullStreamSubscriber.md deleted file mode 100644 index 15bceeedbc..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIBatchPullStreamSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.asyncapi.AsyncAPIBatchPullStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentCoreSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentCoreSubscriber.md deleted file mode 100644 index f88e14f817..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentCoreSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.asyncapi.AsyncAPIConcurrentCoreSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentPullStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentPullStreamSubscriber.md deleted file mode 100644 index b5ebf86f93..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentPullStreamSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.asyncapi.AsyncAPIConcurrentPullStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentPushStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentPushStreamSubscriber.md deleted file mode 100644 index 7bb4a6e088..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentPushStreamSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.asyncapi.AsyncAPIConcurrentPushStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPICoreSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPICoreSubscriber.md deleted file mode 100644 index 8819adebab..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPICoreSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.asyncapi.AsyncAPICoreSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIKeyValueWatchSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIKeyValueWatchSubscriber.md deleted file mode 100644 index b006854b0b..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIKeyValueWatchSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.asyncapi.AsyncAPIKeyValueWatchSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIObjStoreWatchSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIObjStoreWatchSubscriber.md deleted file mode 100644 index 0a9157ed55..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIObjStoreWatchSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.asyncapi.AsyncAPIObjStoreWatchSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIPullStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIPullStreamSubscriber.md deleted file mode 100644 index e9650bef94..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIPullStreamSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.asyncapi.AsyncAPIPullStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIStreamSubscriber.md deleted file mode 100644 index 6d448d3af5..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIStreamSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.asyncapi.AsyncAPIStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPISubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPISubscriber.md deleted file mode 100644 index 4fcbab6ea6..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPISubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.asyncapi.AsyncAPISubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/factory/create_subscriber.md b/docs/docs/en/api/faststream/nats/subscriber/factory/create_subscriber.md deleted file mode 100644 index 0e132c3394..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/factory/create_subscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.factory.create_subscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/subscription/UnsubscribeAdapter.md b/docs/docs/en/api/faststream/nats/subscriber/subscription/UnsubscribeAdapter.md deleted file mode 100644 index 455885671f..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/subscription/UnsubscribeAdapter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.subscription.UnsubscribeAdapter diff --git a/docs/docs/en/api/faststream/nats/subscriber/subscription/Unsubscriptable.md b/docs/docs/en/api/faststream/nats/subscriber/subscription/Unsubscriptable.md deleted file mode 100644 index c94cb1b731..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/subscription/Unsubscriptable.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.subscription.Unsubscriptable diff --git a/docs/docs/en/api/faststream/nats/subscriber/subscription/Watchable.md b/docs/docs/en/api/faststream/nats/subscriber/subscription/Watchable.md deleted file mode 100644 index 67638258ea..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/subscription/Watchable.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.subscription.Watchable diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/BatchPullStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/BatchPullStreamSubscriber.md deleted file mode 100644 index dfb1c43575..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/usecase/BatchPullStreamSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.usecase.BatchPullStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentCoreSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentCoreSubscriber.md deleted file mode 100644 index e1f100c043..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentCoreSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.usecase.ConcurrentCoreSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentPullStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentPullStreamSubscriber.md deleted file mode 100644 index c1b7207285..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentPullStreamSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.usecase.ConcurrentPullStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentPushStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentPushStreamSubscriber.md deleted file mode 100644 index ffa2e0c37b..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentPushStreamSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.usecase.ConcurrentPushStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/CoreSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/CoreSubscriber.md deleted file mode 100644 index 8ddb0b8c04..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/usecase/CoreSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.usecase.CoreSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/KeyValueWatchSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/KeyValueWatchSubscriber.md deleted file mode 100644 index 778557ee2b..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/usecase/KeyValueWatchSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.usecase.KeyValueWatchSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/LogicSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/LogicSubscriber.md deleted file mode 100644 index 100db07bbe..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/usecase/LogicSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.usecase.LogicSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/ObjStoreWatchSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/ObjStoreWatchSubscriber.md deleted file mode 100644 index ad15f32931..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/usecase/ObjStoreWatchSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.usecase.ObjStoreWatchSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/PullStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/PullStreamSubscriber.md deleted file mode 100644 index 30f30a893f..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/usecase/PullStreamSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.usecase.PullStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/PushStreamSubscription.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/PushStreamSubscription.md deleted file mode 100644 index bb29bbb9c2..0000000000 --- a/docs/docs/en/api/faststream/nats/subscriber/usecase/PushStreamSubscription.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.subscriber.usecase.PushStreamSubscription diff --git a/docs/docs/en/api/faststream/nats/testing/FakeProducer.md b/docs/docs/en/api/faststream/nats/testing/FakeProducer.md deleted file mode 100644 index f2615aeb36..0000000000 --- a/docs/docs/en/api/faststream/nats/testing/FakeProducer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.testing.FakeProducer diff --git a/docs/docs/en/api/faststream/nats/testing/PatchedMessage.md b/docs/docs/en/api/faststream/nats/testing/PatchedMessage.md deleted file mode 100644 index e32802d4dd..0000000000 --- a/docs/docs/en/api/faststream/nats/testing/PatchedMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.testing.PatchedMessage diff --git a/docs/docs/en/api/faststream/nats/testing/TestNatsBroker.md b/docs/docs/en/api/faststream/nats/testing/TestNatsBroker.md deleted file mode 100644 index 2abcf7f06d..0000000000 --- a/docs/docs/en/api/faststream/nats/testing/TestNatsBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.testing.TestNatsBroker diff --git a/docs/docs/en/api/faststream/nats/testing/build_message.md b/docs/docs/en/api/faststream/nats/testing/build_message.md deleted file mode 100644 index 160977893d..0000000000 --- a/docs/docs/en/api/faststream/nats/testing/build_message.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.nats.testing.build_message diff --git a/docs/docs/en/api/faststream/opentelemetry/TelemetryMiddleware.md b/docs/docs/en/api/faststream/opentelemetry/TelemetryMiddleware.md deleted file mode 100644 index 914f134e60..0000000000 --- a/docs/docs/en/api/faststream/opentelemetry/TelemetryMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.opentelemetry.TelemetryMiddleware diff --git a/docs/docs/en/api/faststream/opentelemetry/TelemetrySettingsProvider.md b/docs/docs/en/api/faststream/opentelemetry/TelemetrySettingsProvider.md deleted file mode 100644 index 7ca8b2cb6d..0000000000 --- a/docs/docs/en/api/faststream/opentelemetry/TelemetrySettingsProvider.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.opentelemetry.TelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/opentelemetry/consts/MessageAction.md b/docs/docs/en/api/faststream/opentelemetry/consts/MessageAction.md deleted file mode 100644 index cd58706774..0000000000 --- a/docs/docs/en/api/faststream/opentelemetry/consts/MessageAction.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.opentelemetry.consts.MessageAction diff --git a/docs/docs/en/api/faststream/opentelemetry/middleware/BaseTelemetryMiddleware.md b/docs/docs/en/api/faststream/opentelemetry/middleware/BaseTelemetryMiddleware.md deleted file mode 100644 index 64a7b4a501..0000000000 --- a/docs/docs/en/api/faststream/opentelemetry/middleware/BaseTelemetryMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.opentelemetry.middleware.BaseTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/opentelemetry/middleware/TelemetryMiddleware.md b/docs/docs/en/api/faststream/opentelemetry/middleware/TelemetryMiddleware.md deleted file mode 100644 index f019b3ad61..0000000000 --- a/docs/docs/en/api/faststream/opentelemetry/middleware/TelemetryMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.opentelemetry.middleware.TelemetryMiddleware diff --git a/docs/docs/en/api/faststream/opentelemetry/provider/TelemetrySettingsProvider.md b/docs/docs/en/api/faststream/opentelemetry/provider/TelemetrySettingsProvider.md deleted file mode 100644 index 0fefe1c0ef..0000000000 --- a/docs/docs/en/api/faststream/opentelemetry/provider/TelemetrySettingsProvider.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.opentelemetry.provider.TelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/rabbit/ExchangeType.md b/docs/docs/en/api/faststream/rabbit/ExchangeType.md deleted file mode 100644 index 9b299b951d..0000000000 --- a/docs/docs/en/api/faststream/rabbit/ExchangeType.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.ExchangeType diff --git a/docs/docs/en/api/faststream/rabbit/RabbitBroker.md b/docs/docs/en/api/faststream/rabbit/RabbitBroker.md deleted file mode 100644 index f48b2b5e78..0000000000 --- a/docs/docs/en/api/faststream/rabbit/RabbitBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.RabbitBroker diff --git a/docs/docs/en/api/faststream/rabbit/RabbitExchange.md b/docs/docs/en/api/faststream/rabbit/RabbitExchange.md deleted file mode 100644 index bbf9676e72..0000000000 --- a/docs/docs/en/api/faststream/rabbit/RabbitExchange.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.RabbitExchange diff --git a/docs/docs/en/api/faststream/rabbit/RabbitPublisher.md b/docs/docs/en/api/faststream/rabbit/RabbitPublisher.md deleted file mode 100644 index 7e0d3f674b..0000000000 --- a/docs/docs/en/api/faststream/rabbit/RabbitPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.RabbitPublisher diff --git a/docs/docs/en/api/faststream/rabbit/RabbitQueue.md b/docs/docs/en/api/faststream/rabbit/RabbitQueue.md deleted file mode 100644 index 97945b6408..0000000000 --- a/docs/docs/en/api/faststream/rabbit/RabbitQueue.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.RabbitQueue diff --git a/docs/docs/en/api/faststream/rabbit/RabbitResponse.md b/docs/docs/en/api/faststream/rabbit/RabbitResponse.md deleted file mode 100644 index 4d20d82b0e..0000000000 --- a/docs/docs/en/api/faststream/rabbit/RabbitResponse.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.RabbitResponse diff --git a/docs/docs/en/api/faststream/rabbit/RabbitRoute.md b/docs/docs/en/api/faststream/rabbit/RabbitRoute.md deleted file mode 100644 index e11a9f058d..0000000000 --- a/docs/docs/en/api/faststream/rabbit/RabbitRoute.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.RabbitRoute diff --git a/docs/docs/en/api/faststream/rabbit/RabbitRouter.md b/docs/docs/en/api/faststream/rabbit/RabbitRouter.md deleted file mode 100644 index 133880fc50..0000000000 --- a/docs/docs/en/api/faststream/rabbit/RabbitRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.RabbitRouter diff --git a/docs/docs/en/api/faststream/rabbit/ReplyConfig.md b/docs/docs/en/api/faststream/rabbit/ReplyConfig.md deleted file mode 100644 index 013bd2f986..0000000000 --- a/docs/docs/en/api/faststream/rabbit/ReplyConfig.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.ReplyConfig diff --git a/docs/docs/en/api/faststream/rabbit/TestApp.md b/docs/docs/en/api/faststream/rabbit/TestApp.md deleted file mode 100644 index 2468f3755c..0000000000 --- a/docs/docs/en/api/faststream/rabbit/TestApp.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.testing.app.TestApp diff --git a/docs/docs/en/api/faststream/rabbit/TestRabbitBroker.md b/docs/docs/en/api/faststream/rabbit/TestRabbitBroker.md deleted file mode 100644 index c4519d58b8..0000000000 --- a/docs/docs/en/api/faststream/rabbit/TestRabbitBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.TestRabbitBroker diff --git a/docs/docs/en/api/faststream/rabbit/broker/RabbitBroker.md b/docs/docs/en/api/faststream/rabbit/broker/RabbitBroker.md deleted file mode 100644 index ac72ec0ae9..0000000000 --- a/docs/docs/en/api/faststream/rabbit/broker/RabbitBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.broker.RabbitBroker diff --git a/docs/docs/en/api/faststream/rabbit/broker/broker/RabbitBroker.md b/docs/docs/en/api/faststream/rabbit/broker/broker/RabbitBroker.md deleted file mode 100644 index 9ed9170ead..0000000000 --- a/docs/docs/en/api/faststream/rabbit/broker/broker/RabbitBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.broker.broker.RabbitBroker diff --git a/docs/docs/en/api/faststream/rabbit/broker/logging/RabbitLoggingBroker.md b/docs/docs/en/api/faststream/rabbit/broker/logging/RabbitLoggingBroker.md deleted file mode 100644 index a3b3151d4b..0000000000 --- a/docs/docs/en/api/faststream/rabbit/broker/logging/RabbitLoggingBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.broker.logging.RabbitLoggingBroker diff --git a/docs/docs/en/api/faststream/rabbit/broker/registrator/RabbitRegistrator.md b/docs/docs/en/api/faststream/rabbit/broker/registrator/RabbitRegistrator.md deleted file mode 100644 index f22385f512..0000000000 --- a/docs/docs/en/api/faststream/rabbit/broker/registrator/RabbitRegistrator.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.broker.registrator.RabbitRegistrator diff --git a/docs/docs/en/api/faststream/rabbit/fastapi/Context.md b/docs/docs/en/api/faststream/rabbit/fastapi/Context.md deleted file mode 100644 index f4240bb0da..0000000000 --- a/docs/docs/en/api/faststream/rabbit/fastapi/Context.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.fastapi.context.Context diff --git a/docs/docs/en/api/faststream/rabbit/fastapi/RabbitRouter.md b/docs/docs/en/api/faststream/rabbit/fastapi/RabbitRouter.md deleted file mode 100644 index 72f0a90072..0000000000 --- a/docs/docs/en/api/faststream/rabbit/fastapi/RabbitRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.fastapi.RabbitRouter diff --git a/docs/docs/en/api/faststream/rabbit/fastapi/router/RabbitRouter.md b/docs/docs/en/api/faststream/rabbit/fastapi/router/RabbitRouter.md deleted file mode 100644 index 36dda03314..0000000000 --- a/docs/docs/en/api/faststream/rabbit/fastapi/router/RabbitRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.fastapi.router.RabbitRouter diff --git a/docs/docs/en/api/faststream/rabbit/message/RabbitMessage.md b/docs/docs/en/api/faststream/rabbit/message/RabbitMessage.md deleted file mode 100644 index 598d43f818..0000000000 --- a/docs/docs/en/api/faststream/rabbit/message/RabbitMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.message.RabbitMessage diff --git a/docs/docs/en/api/faststream/rabbit/opentelemetry/RabbitTelemetryMiddleware.md b/docs/docs/en/api/faststream/rabbit/opentelemetry/RabbitTelemetryMiddleware.md deleted file mode 100644 index 7d5ef3de27..0000000000 --- a/docs/docs/en/api/faststream/rabbit/opentelemetry/RabbitTelemetryMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.opentelemetry.RabbitTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/rabbit/opentelemetry/middleware/RabbitTelemetryMiddleware.md b/docs/docs/en/api/faststream/rabbit/opentelemetry/middleware/RabbitTelemetryMiddleware.md deleted file mode 100644 index e86771a8ba..0000000000 --- a/docs/docs/en/api/faststream/rabbit/opentelemetry/middleware/RabbitTelemetryMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.opentelemetry.middleware.RabbitTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/rabbit/opentelemetry/provider/RabbitTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/rabbit/opentelemetry/provider/RabbitTelemetrySettingsProvider.md deleted file mode 100644 index ba6742ac90..0000000000 --- a/docs/docs/en/api/faststream/rabbit/opentelemetry/provider/RabbitTelemetrySettingsProvider.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.opentelemetry.provider.RabbitTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/rabbit/parser/AioPikaParser.md b/docs/docs/en/api/faststream/rabbit/parser/AioPikaParser.md deleted file mode 100644 index 0a02d90270..0000000000 --- a/docs/docs/en/api/faststream/rabbit/parser/AioPikaParser.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.parser.AioPikaParser diff --git a/docs/docs/en/api/faststream/rabbit/publisher/asyncapi/AsyncAPIPublisher.md b/docs/docs/en/api/faststream/rabbit/publisher/asyncapi/AsyncAPIPublisher.md deleted file mode 100644 index 6ece65cfed..0000000000 --- a/docs/docs/en/api/faststream/rabbit/publisher/asyncapi/AsyncAPIPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.publisher.asyncapi.AsyncAPIPublisher diff --git a/docs/docs/en/api/faststream/rabbit/publisher/producer/AioPikaFastProducer.md b/docs/docs/en/api/faststream/rabbit/publisher/producer/AioPikaFastProducer.md deleted file mode 100644 index 527cc5604c..0000000000 --- a/docs/docs/en/api/faststream/rabbit/publisher/producer/AioPikaFastProducer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.publisher.producer.AioPikaFastProducer diff --git a/docs/docs/en/api/faststream/rabbit/publisher/usecase/LogicPublisher.md b/docs/docs/en/api/faststream/rabbit/publisher/usecase/LogicPublisher.md deleted file mode 100644 index 1ef927866e..0000000000 --- a/docs/docs/en/api/faststream/rabbit/publisher/usecase/LogicPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.publisher.usecase.LogicPublisher diff --git a/docs/docs/en/api/faststream/rabbit/publisher/usecase/PublishKwargs.md b/docs/docs/en/api/faststream/rabbit/publisher/usecase/PublishKwargs.md deleted file mode 100644 index 3d917891cd..0000000000 --- a/docs/docs/en/api/faststream/rabbit/publisher/usecase/PublishKwargs.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.publisher.usecase.PublishKwargs diff --git a/docs/docs/en/api/faststream/rabbit/response/RabbitResponse.md b/docs/docs/en/api/faststream/rabbit/response/RabbitResponse.md deleted file mode 100644 index 477cfb9861..0000000000 --- a/docs/docs/en/api/faststream/rabbit/response/RabbitResponse.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.response.RabbitResponse diff --git a/docs/docs/en/api/faststream/rabbit/router/RabbitPublisher.md b/docs/docs/en/api/faststream/rabbit/router/RabbitPublisher.md deleted file mode 100644 index befbec9103..0000000000 --- a/docs/docs/en/api/faststream/rabbit/router/RabbitPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.router.RabbitPublisher diff --git a/docs/docs/en/api/faststream/rabbit/router/RabbitRoute.md b/docs/docs/en/api/faststream/rabbit/router/RabbitRoute.md deleted file mode 100644 index 8e8b0fbb6c..0000000000 --- a/docs/docs/en/api/faststream/rabbit/router/RabbitRoute.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.router.RabbitRoute diff --git a/docs/docs/en/api/faststream/rabbit/router/RabbitRouter.md b/docs/docs/en/api/faststream/rabbit/router/RabbitRouter.md deleted file mode 100644 index eff5f6169a..0000000000 --- a/docs/docs/en/api/faststream/rabbit/router/RabbitRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.router.RabbitRouter diff --git a/docs/docs/en/api/faststream/rabbit/schemas/BaseRMQInformation.md b/docs/docs/en/api/faststream/rabbit/schemas/BaseRMQInformation.md deleted file mode 100644 index 7ff32d2cd2..0000000000 --- a/docs/docs/en/api/faststream/rabbit/schemas/BaseRMQInformation.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.schemas.BaseRMQInformation diff --git a/docs/docs/en/api/faststream/rabbit/schemas/ExchangeType.md b/docs/docs/en/api/faststream/rabbit/schemas/ExchangeType.md deleted file mode 100644 index c6c2ef8a28..0000000000 --- a/docs/docs/en/api/faststream/rabbit/schemas/ExchangeType.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.schemas.ExchangeType diff --git a/docs/docs/en/api/faststream/rabbit/schemas/RabbitExchange.md b/docs/docs/en/api/faststream/rabbit/schemas/RabbitExchange.md deleted file mode 100644 index 4e60ed96f5..0000000000 --- a/docs/docs/en/api/faststream/rabbit/schemas/RabbitExchange.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.schemas.RabbitExchange diff --git a/docs/docs/en/api/faststream/rabbit/schemas/RabbitQueue.md b/docs/docs/en/api/faststream/rabbit/schemas/RabbitQueue.md deleted file mode 100644 index 947238b788..0000000000 --- a/docs/docs/en/api/faststream/rabbit/schemas/RabbitQueue.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.schemas.RabbitQueue diff --git a/docs/docs/en/api/faststream/rabbit/schemas/ReplyConfig.md b/docs/docs/en/api/faststream/rabbit/schemas/ReplyConfig.md deleted file mode 100644 index 239c4f9d6e..0000000000 --- a/docs/docs/en/api/faststream/rabbit/schemas/ReplyConfig.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.schemas.ReplyConfig diff --git a/docs/docs/en/api/faststream/rabbit/schemas/constants/ExchangeType.md b/docs/docs/en/api/faststream/rabbit/schemas/constants/ExchangeType.md deleted file mode 100644 index 11705f35ac..0000000000 --- a/docs/docs/en/api/faststream/rabbit/schemas/constants/ExchangeType.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.schemas.constants.ExchangeType diff --git a/docs/docs/en/api/faststream/rabbit/schemas/exchange/RabbitExchange.md b/docs/docs/en/api/faststream/rabbit/schemas/exchange/RabbitExchange.md deleted file mode 100644 index ebcb211714..0000000000 --- a/docs/docs/en/api/faststream/rabbit/schemas/exchange/RabbitExchange.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.schemas.exchange.RabbitExchange diff --git a/docs/docs/en/api/faststream/rabbit/schemas/proto/BaseRMQInformation.md b/docs/docs/en/api/faststream/rabbit/schemas/proto/BaseRMQInformation.md deleted file mode 100644 index 1eca00071b..0000000000 --- a/docs/docs/en/api/faststream/rabbit/schemas/proto/BaseRMQInformation.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.schemas.proto.BaseRMQInformation diff --git a/docs/docs/en/api/faststream/rabbit/schemas/queue/RabbitQueue.md b/docs/docs/en/api/faststream/rabbit/schemas/queue/RabbitQueue.md deleted file mode 100644 index 83bc15e02f..0000000000 --- a/docs/docs/en/api/faststream/rabbit/schemas/queue/RabbitQueue.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.schemas.queue.RabbitQueue diff --git a/docs/docs/en/api/faststream/rabbit/schemas/reply/ReplyConfig.md b/docs/docs/en/api/faststream/rabbit/schemas/reply/ReplyConfig.md deleted file mode 100644 index 1aeb941ff5..0000000000 --- a/docs/docs/en/api/faststream/rabbit/schemas/reply/ReplyConfig.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.schemas.reply.ReplyConfig diff --git a/docs/docs/en/api/faststream/rabbit/security/parse_security.md b/docs/docs/en/api/faststream/rabbit/security/parse_security.md deleted file mode 100644 index 0b19ee5ee2..0000000000 --- a/docs/docs/en/api/faststream/rabbit/security/parse_security.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.security.parse_security diff --git a/docs/docs/en/api/faststream/rabbit/subscriber/asyncapi/AsyncAPISubscriber.md b/docs/docs/en/api/faststream/rabbit/subscriber/asyncapi/AsyncAPISubscriber.md deleted file mode 100644 index 4d11c4b8e0..0000000000 --- a/docs/docs/en/api/faststream/rabbit/subscriber/asyncapi/AsyncAPISubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.subscriber.asyncapi.AsyncAPISubscriber diff --git a/docs/docs/en/api/faststream/rabbit/subscriber/factory/create_subscriber.md b/docs/docs/en/api/faststream/rabbit/subscriber/factory/create_subscriber.md deleted file mode 100644 index 79c7082931..0000000000 --- a/docs/docs/en/api/faststream/rabbit/subscriber/factory/create_subscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.subscriber.factory.create_subscriber diff --git a/docs/docs/en/api/faststream/rabbit/subscriber/usecase/LogicSubscriber.md b/docs/docs/en/api/faststream/rabbit/subscriber/usecase/LogicSubscriber.md deleted file mode 100644 index 56ef70dd0d..0000000000 --- a/docs/docs/en/api/faststream/rabbit/subscriber/usecase/LogicSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.subscriber.usecase.LogicSubscriber diff --git a/docs/docs/en/api/faststream/rabbit/testing/FakeProducer.md b/docs/docs/en/api/faststream/rabbit/testing/FakeProducer.md deleted file mode 100644 index 7fa3603f60..0000000000 --- a/docs/docs/en/api/faststream/rabbit/testing/FakeProducer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.testing.FakeProducer diff --git a/docs/docs/en/api/faststream/rabbit/testing/PatchedMessage.md b/docs/docs/en/api/faststream/rabbit/testing/PatchedMessage.md deleted file mode 100644 index f58c1140c2..0000000000 --- a/docs/docs/en/api/faststream/rabbit/testing/PatchedMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.testing.PatchedMessage diff --git a/docs/docs/en/api/faststream/rabbit/testing/TestRabbitBroker.md b/docs/docs/en/api/faststream/rabbit/testing/TestRabbitBroker.md deleted file mode 100644 index ab2c088b39..0000000000 --- a/docs/docs/en/api/faststream/rabbit/testing/TestRabbitBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.testing.TestRabbitBroker diff --git a/docs/docs/en/api/faststream/rabbit/testing/apply_pattern.md b/docs/docs/en/api/faststream/rabbit/testing/apply_pattern.md deleted file mode 100644 index 02ffd305ef..0000000000 --- a/docs/docs/en/api/faststream/rabbit/testing/apply_pattern.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.testing.apply_pattern diff --git a/docs/docs/en/api/faststream/rabbit/testing/build_message.md b/docs/docs/en/api/faststream/rabbit/testing/build_message.md deleted file mode 100644 index 296715e46a..0000000000 --- a/docs/docs/en/api/faststream/rabbit/testing/build_message.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.testing.build_message diff --git a/docs/docs/en/api/faststream/rabbit/utils/RabbitDeclarer.md b/docs/docs/en/api/faststream/rabbit/utils/RabbitDeclarer.md deleted file mode 100644 index 28a5a6b7c5..0000000000 --- a/docs/docs/en/api/faststream/rabbit/utils/RabbitDeclarer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.utils.RabbitDeclarer diff --git a/docs/docs/en/api/faststream/rabbit/utils/build_url.md b/docs/docs/en/api/faststream/rabbit/utils/build_url.md deleted file mode 100644 index ffb6555837..0000000000 --- a/docs/docs/en/api/faststream/rabbit/utils/build_url.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.utils.build_url diff --git a/docs/docs/en/api/faststream/rabbit/utils/is_routing_exchange.md b/docs/docs/en/api/faststream/rabbit/utils/is_routing_exchange.md deleted file mode 100644 index 4ef1481a69..0000000000 --- a/docs/docs/en/api/faststream/rabbit/utils/is_routing_exchange.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.rabbit.utils.is_routing_exchange diff --git a/docs/docs/en/api/faststream/redis/ListSub.md b/docs/docs/en/api/faststream/redis/ListSub.md deleted file mode 100644 index 9c97a0afcd..0000000000 --- a/docs/docs/en/api/faststream/redis/ListSub.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.ListSub diff --git a/docs/docs/en/api/faststream/redis/PubSub.md b/docs/docs/en/api/faststream/redis/PubSub.md deleted file mode 100644 index d2fba00014..0000000000 --- a/docs/docs/en/api/faststream/redis/PubSub.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.PubSub diff --git a/docs/docs/en/api/faststream/redis/RedisBroker.md b/docs/docs/en/api/faststream/redis/RedisBroker.md deleted file mode 100644 index 7275bfb60a..0000000000 --- a/docs/docs/en/api/faststream/redis/RedisBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.RedisBroker diff --git a/docs/docs/en/api/faststream/redis/RedisPublisher.md b/docs/docs/en/api/faststream/redis/RedisPublisher.md deleted file mode 100644 index 565d857810..0000000000 --- a/docs/docs/en/api/faststream/redis/RedisPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.RedisPublisher diff --git a/docs/docs/en/api/faststream/redis/RedisResponse.md b/docs/docs/en/api/faststream/redis/RedisResponse.md deleted file mode 100644 index eedecf1ea3..0000000000 --- a/docs/docs/en/api/faststream/redis/RedisResponse.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.RedisResponse diff --git a/docs/docs/en/api/faststream/redis/RedisRoute.md b/docs/docs/en/api/faststream/redis/RedisRoute.md deleted file mode 100644 index 14b4416ed4..0000000000 --- a/docs/docs/en/api/faststream/redis/RedisRoute.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.RedisRoute diff --git a/docs/docs/en/api/faststream/redis/RedisRouter.md b/docs/docs/en/api/faststream/redis/RedisRouter.md deleted file mode 100644 index 9b7292e703..0000000000 --- a/docs/docs/en/api/faststream/redis/RedisRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.RedisRouter diff --git a/docs/docs/en/api/faststream/redis/StreamSub.md b/docs/docs/en/api/faststream/redis/StreamSub.md deleted file mode 100644 index d1244238b6..0000000000 --- a/docs/docs/en/api/faststream/redis/StreamSub.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.StreamSub diff --git a/docs/docs/en/api/faststream/redis/TestApp.md b/docs/docs/en/api/faststream/redis/TestApp.md deleted file mode 100644 index 2468f3755c..0000000000 --- a/docs/docs/en/api/faststream/redis/TestApp.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.testing.app.TestApp diff --git a/docs/docs/en/api/faststream/redis/TestRedisBroker.md b/docs/docs/en/api/faststream/redis/TestRedisBroker.md deleted file mode 100644 index 703490c302..0000000000 --- a/docs/docs/en/api/faststream/redis/TestRedisBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.TestRedisBroker diff --git a/docs/docs/en/api/faststream/redis/broker/broker/RedisBroker.md b/docs/docs/en/api/faststream/redis/broker/broker/RedisBroker.md deleted file mode 100644 index fdc177e868..0000000000 --- a/docs/docs/en/api/faststream/redis/broker/broker/RedisBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.broker.broker.RedisBroker diff --git a/docs/docs/en/api/faststream/redis/broker/logging/RedisLoggingBroker.md b/docs/docs/en/api/faststream/redis/broker/logging/RedisLoggingBroker.md deleted file mode 100644 index 58500b3c1f..0000000000 --- a/docs/docs/en/api/faststream/redis/broker/logging/RedisLoggingBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.broker.logging.RedisLoggingBroker diff --git a/docs/docs/en/api/faststream/redis/broker/registrator/RedisRegistrator.md b/docs/docs/en/api/faststream/redis/broker/registrator/RedisRegistrator.md deleted file mode 100644 index 8d040533d7..0000000000 --- a/docs/docs/en/api/faststream/redis/broker/registrator/RedisRegistrator.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.broker.registrator.RedisRegistrator diff --git a/docs/docs/en/api/faststream/redis/fastapi/Context.md b/docs/docs/en/api/faststream/redis/fastapi/Context.md deleted file mode 100644 index f4240bb0da..0000000000 --- a/docs/docs/en/api/faststream/redis/fastapi/Context.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.broker.fastapi.context.Context diff --git a/docs/docs/en/api/faststream/redis/fastapi/RedisRouter.md b/docs/docs/en/api/faststream/redis/fastapi/RedisRouter.md deleted file mode 100644 index 7894f88728..0000000000 --- a/docs/docs/en/api/faststream/redis/fastapi/RedisRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.fastapi.RedisRouter diff --git a/docs/docs/en/api/faststream/redis/fastapi/fastapi/RedisRouter.md b/docs/docs/en/api/faststream/redis/fastapi/fastapi/RedisRouter.md deleted file mode 100644 index 858c951f61..0000000000 --- a/docs/docs/en/api/faststream/redis/fastapi/fastapi/RedisRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.fastapi.fastapi.RedisRouter diff --git a/docs/docs/en/api/faststream/redis/message/BatchListMessage.md b/docs/docs/en/api/faststream/redis/message/BatchListMessage.md deleted file mode 100644 index c510fa09b9..0000000000 --- a/docs/docs/en/api/faststream/redis/message/BatchListMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.message.BatchListMessage diff --git a/docs/docs/en/api/faststream/redis/message/BatchStreamMessage.md b/docs/docs/en/api/faststream/redis/message/BatchStreamMessage.md deleted file mode 100644 index 16885fd028..0000000000 --- a/docs/docs/en/api/faststream/redis/message/BatchStreamMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.message.BatchStreamMessage diff --git a/docs/docs/en/api/faststream/redis/message/DefaultListMessage.md b/docs/docs/en/api/faststream/redis/message/DefaultListMessage.md deleted file mode 100644 index 8f38b34cae..0000000000 --- a/docs/docs/en/api/faststream/redis/message/DefaultListMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.message.DefaultListMessage diff --git a/docs/docs/en/api/faststream/redis/message/DefaultStreamMessage.md b/docs/docs/en/api/faststream/redis/message/DefaultStreamMessage.md deleted file mode 100644 index 6016bb624e..0000000000 --- a/docs/docs/en/api/faststream/redis/message/DefaultStreamMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.message.DefaultStreamMessage diff --git a/docs/docs/en/api/faststream/redis/message/ListMessage.md b/docs/docs/en/api/faststream/redis/message/ListMessage.md deleted file mode 100644 index 5e81a9f727..0000000000 --- a/docs/docs/en/api/faststream/redis/message/ListMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.message.ListMessage diff --git a/docs/docs/en/api/faststream/redis/message/PubSubMessage.md b/docs/docs/en/api/faststream/redis/message/PubSubMessage.md deleted file mode 100644 index 795cecb12e..0000000000 --- a/docs/docs/en/api/faststream/redis/message/PubSubMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.message.PubSubMessage diff --git a/docs/docs/en/api/faststream/redis/message/RedisBatchListMessage.md b/docs/docs/en/api/faststream/redis/message/RedisBatchListMessage.md deleted file mode 100644 index ec7d3983bd..0000000000 --- a/docs/docs/en/api/faststream/redis/message/RedisBatchListMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.message.RedisBatchListMessage diff --git a/docs/docs/en/api/faststream/redis/message/RedisBatchStreamMessage.md b/docs/docs/en/api/faststream/redis/message/RedisBatchStreamMessage.md deleted file mode 100644 index 2c66613eb7..0000000000 --- a/docs/docs/en/api/faststream/redis/message/RedisBatchStreamMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.message.RedisBatchStreamMessage diff --git a/docs/docs/en/api/faststream/redis/message/RedisListMessage.md b/docs/docs/en/api/faststream/redis/message/RedisListMessage.md deleted file mode 100644 index 8c996cb7f0..0000000000 --- a/docs/docs/en/api/faststream/redis/message/RedisListMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.message.RedisListMessage diff --git a/docs/docs/en/api/faststream/redis/message/RedisMessage.md b/docs/docs/en/api/faststream/redis/message/RedisMessage.md deleted file mode 100644 index 1b0654e7ce..0000000000 --- a/docs/docs/en/api/faststream/redis/message/RedisMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.message.RedisMessage diff --git a/docs/docs/en/api/faststream/redis/message/RedisStreamMessage.md b/docs/docs/en/api/faststream/redis/message/RedisStreamMessage.md deleted file mode 100644 index c36385a141..0000000000 --- a/docs/docs/en/api/faststream/redis/message/RedisStreamMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.message.RedisStreamMessage diff --git a/docs/docs/en/api/faststream/redis/message/StreamMessage.md b/docs/docs/en/api/faststream/redis/message/StreamMessage.md deleted file mode 100644 index f4e6a5d57e..0000000000 --- a/docs/docs/en/api/faststream/redis/message/StreamMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.message.StreamMessage diff --git a/docs/docs/en/api/faststream/redis/message/UnifyRedisDict.md b/docs/docs/en/api/faststream/redis/message/UnifyRedisDict.md deleted file mode 100644 index 9485ca2848..0000000000 --- a/docs/docs/en/api/faststream/redis/message/UnifyRedisDict.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.message.UnifyRedisDict diff --git a/docs/docs/en/api/faststream/redis/message/UnifyRedisMessage.md b/docs/docs/en/api/faststream/redis/message/UnifyRedisMessage.md deleted file mode 100644 index dee09d1657..0000000000 --- a/docs/docs/en/api/faststream/redis/message/UnifyRedisMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.message.UnifyRedisMessage diff --git a/docs/docs/en/api/faststream/redis/opentelemetry/RedisTelemetryMiddleware.md b/docs/docs/en/api/faststream/redis/opentelemetry/RedisTelemetryMiddleware.md deleted file mode 100644 index 537a2dc7b9..0000000000 --- a/docs/docs/en/api/faststream/redis/opentelemetry/RedisTelemetryMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.opentelemetry.RedisTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/redis/opentelemetry/middleware/RedisTelemetryMiddleware.md b/docs/docs/en/api/faststream/redis/opentelemetry/middleware/RedisTelemetryMiddleware.md deleted file mode 100644 index 4c0febf261..0000000000 --- a/docs/docs/en/api/faststream/redis/opentelemetry/middleware/RedisTelemetryMiddleware.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.opentelemetry.middleware.RedisTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/redis/opentelemetry/provider/RedisTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/redis/opentelemetry/provider/RedisTelemetrySettingsProvider.md deleted file mode 100644 index 26e7859c34..0000000000 --- a/docs/docs/en/api/faststream/redis/opentelemetry/provider/RedisTelemetrySettingsProvider.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.opentelemetry.provider.RedisTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/redis/parser/RawMessage.md b/docs/docs/en/api/faststream/redis/parser/RawMessage.md deleted file mode 100644 index 4add7b37fd..0000000000 --- a/docs/docs/en/api/faststream/redis/parser/RawMessage.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.parser.RawMessage diff --git a/docs/docs/en/api/faststream/redis/parser/RedisBatchListParser.md b/docs/docs/en/api/faststream/redis/parser/RedisBatchListParser.md deleted file mode 100644 index e3a583eee8..0000000000 --- a/docs/docs/en/api/faststream/redis/parser/RedisBatchListParser.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.parser.RedisBatchListParser diff --git a/docs/docs/en/api/faststream/redis/parser/RedisBatchStreamParser.md b/docs/docs/en/api/faststream/redis/parser/RedisBatchStreamParser.md deleted file mode 100644 index 28ed437573..0000000000 --- a/docs/docs/en/api/faststream/redis/parser/RedisBatchStreamParser.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.parser.RedisBatchStreamParser diff --git a/docs/docs/en/api/faststream/redis/parser/RedisListParser.md b/docs/docs/en/api/faststream/redis/parser/RedisListParser.md deleted file mode 100644 index fd0cf87991..0000000000 --- a/docs/docs/en/api/faststream/redis/parser/RedisListParser.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.parser.RedisListParser diff --git a/docs/docs/en/api/faststream/redis/parser/RedisPubSubParser.md b/docs/docs/en/api/faststream/redis/parser/RedisPubSubParser.md deleted file mode 100644 index 93ab92cfdb..0000000000 --- a/docs/docs/en/api/faststream/redis/parser/RedisPubSubParser.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.parser.RedisPubSubParser diff --git a/docs/docs/en/api/faststream/redis/parser/RedisStreamParser.md b/docs/docs/en/api/faststream/redis/parser/RedisStreamParser.md deleted file mode 100644 index 79633d06ad..0000000000 --- a/docs/docs/en/api/faststream/redis/parser/RedisStreamParser.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.parser.RedisStreamParser diff --git a/docs/docs/en/api/faststream/redis/parser/SimpleParser.md b/docs/docs/en/api/faststream/redis/parser/SimpleParser.md deleted file mode 100644 index 239d3fda25..0000000000 --- a/docs/docs/en/api/faststream/redis/parser/SimpleParser.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.parser.SimpleParser diff --git a/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIChannelPublisher.md b/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIChannelPublisher.md deleted file mode 100644 index a3bef9a56c..0000000000 --- a/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIChannelPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.publisher.asyncapi.AsyncAPIChannelPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIListBatchPublisher.md b/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIListBatchPublisher.md deleted file mode 100644 index ab4361bd85..0000000000 --- a/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIListBatchPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.publisher.asyncapi.AsyncAPIListBatchPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIListPublisher.md b/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIListPublisher.md deleted file mode 100644 index 0c233cc74b..0000000000 --- a/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIListPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.publisher.asyncapi.AsyncAPIListPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIPublisher.md b/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIPublisher.md deleted file mode 100644 index 4243308fb7..0000000000 --- a/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.publisher.asyncapi.AsyncAPIPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIStreamPublisher.md b/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIStreamPublisher.md deleted file mode 100644 index 29fb6329f3..0000000000 --- a/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIStreamPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.publisher.asyncapi.AsyncAPIStreamPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/producer/RedisFastProducer.md b/docs/docs/en/api/faststream/redis/publisher/producer/RedisFastProducer.md deleted file mode 100644 index 3bc630cc42..0000000000 --- a/docs/docs/en/api/faststream/redis/publisher/producer/RedisFastProducer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.publisher.producer.RedisFastProducer diff --git a/docs/docs/en/api/faststream/redis/publisher/usecase/ChannelPublisher.md b/docs/docs/en/api/faststream/redis/publisher/usecase/ChannelPublisher.md deleted file mode 100644 index 8aad760800..0000000000 --- a/docs/docs/en/api/faststream/redis/publisher/usecase/ChannelPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.publisher.usecase.ChannelPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/usecase/ListBatchPublisher.md b/docs/docs/en/api/faststream/redis/publisher/usecase/ListBatchPublisher.md deleted file mode 100644 index d7a1be63e4..0000000000 --- a/docs/docs/en/api/faststream/redis/publisher/usecase/ListBatchPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.publisher.usecase.ListBatchPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/usecase/ListPublisher.md b/docs/docs/en/api/faststream/redis/publisher/usecase/ListPublisher.md deleted file mode 100644 index 59895dc001..0000000000 --- a/docs/docs/en/api/faststream/redis/publisher/usecase/ListPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.publisher.usecase.ListPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/usecase/LogicPublisher.md b/docs/docs/en/api/faststream/redis/publisher/usecase/LogicPublisher.md deleted file mode 100644 index c441bcc461..0000000000 --- a/docs/docs/en/api/faststream/redis/publisher/usecase/LogicPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.publisher.usecase.LogicPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/usecase/StreamPublisher.md b/docs/docs/en/api/faststream/redis/publisher/usecase/StreamPublisher.md deleted file mode 100644 index ea56c9d699..0000000000 --- a/docs/docs/en/api/faststream/redis/publisher/usecase/StreamPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.publisher.usecase.StreamPublisher diff --git a/docs/docs/en/api/faststream/redis/response/RedisResponse.md b/docs/docs/en/api/faststream/redis/response/RedisResponse.md deleted file mode 100644 index dd7fbe72eb..0000000000 --- a/docs/docs/en/api/faststream/redis/response/RedisResponse.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.response.RedisResponse diff --git a/docs/docs/en/api/faststream/redis/router/RedisPublisher.md b/docs/docs/en/api/faststream/redis/router/RedisPublisher.md deleted file mode 100644 index fd1cad4d37..0000000000 --- a/docs/docs/en/api/faststream/redis/router/RedisPublisher.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.router.RedisPublisher diff --git a/docs/docs/en/api/faststream/redis/router/RedisRoute.md b/docs/docs/en/api/faststream/redis/router/RedisRoute.md deleted file mode 100644 index d6e1f525a7..0000000000 --- a/docs/docs/en/api/faststream/redis/router/RedisRoute.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.router.RedisRoute diff --git a/docs/docs/en/api/faststream/redis/router/RedisRouter.md b/docs/docs/en/api/faststream/redis/router/RedisRouter.md deleted file mode 100644 index 373ceea5a8..0000000000 --- a/docs/docs/en/api/faststream/redis/router/RedisRouter.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.router.RedisRouter diff --git a/docs/docs/en/api/faststream/redis/schemas/ListSub.md b/docs/docs/en/api/faststream/redis/schemas/ListSub.md deleted file mode 100644 index 3e0b448229..0000000000 --- a/docs/docs/en/api/faststream/redis/schemas/ListSub.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.schemas.ListSub diff --git a/docs/docs/en/api/faststream/redis/schemas/PubSub.md b/docs/docs/en/api/faststream/redis/schemas/PubSub.md deleted file mode 100644 index 078a8e2d8e..0000000000 --- a/docs/docs/en/api/faststream/redis/schemas/PubSub.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.schemas.PubSub diff --git a/docs/docs/en/api/faststream/redis/schemas/StreamSub.md b/docs/docs/en/api/faststream/redis/schemas/StreamSub.md deleted file mode 100644 index 396e594c0b..0000000000 --- a/docs/docs/en/api/faststream/redis/schemas/StreamSub.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.schemas.StreamSub diff --git a/docs/docs/en/api/faststream/redis/schemas/list_sub/ListSub.md b/docs/docs/en/api/faststream/redis/schemas/list_sub/ListSub.md deleted file mode 100644 index f4b58ff4fb..0000000000 --- a/docs/docs/en/api/faststream/redis/schemas/list_sub/ListSub.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.schemas.list_sub.ListSub diff --git a/docs/docs/en/api/faststream/redis/schemas/proto/RedisAsyncAPIProtocol.md b/docs/docs/en/api/faststream/redis/schemas/proto/RedisAsyncAPIProtocol.md deleted file mode 100644 index 7a9d46c451..0000000000 --- a/docs/docs/en/api/faststream/redis/schemas/proto/RedisAsyncAPIProtocol.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.schemas.proto.RedisAsyncAPIProtocol diff --git a/docs/docs/en/api/faststream/redis/schemas/proto/validate_options.md b/docs/docs/en/api/faststream/redis/schemas/proto/validate_options.md deleted file mode 100644 index 7a5381120e..0000000000 --- a/docs/docs/en/api/faststream/redis/schemas/proto/validate_options.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.schemas.proto.validate_options diff --git a/docs/docs/en/api/faststream/redis/schemas/pub_sub/PubSub.md b/docs/docs/en/api/faststream/redis/schemas/pub_sub/PubSub.md deleted file mode 100644 index 08552c7b8c..0000000000 --- a/docs/docs/en/api/faststream/redis/schemas/pub_sub/PubSub.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.schemas.pub_sub.PubSub diff --git a/docs/docs/en/api/faststream/redis/schemas/stream_sub/StreamSub.md b/docs/docs/en/api/faststream/redis/schemas/stream_sub/StreamSub.md deleted file mode 100644 index e1a8d44d4e..0000000000 --- a/docs/docs/en/api/faststream/redis/schemas/stream_sub/StreamSub.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.schemas.stream_sub.StreamSub diff --git a/docs/docs/en/api/faststream/redis/security/parse_security.md b/docs/docs/en/api/faststream/redis/security/parse_security.md deleted file mode 100644 index d3673649db..0000000000 --- a/docs/docs/en/api/faststream/redis/security/parse_security.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.security.parse_security diff --git a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIChannelSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIChannelSubscriber.md deleted file mode 100644 index 7cb7260111..0000000000 --- a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIChannelSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.subscriber.asyncapi.AsyncAPIChannelSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIListBatchSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIListBatchSubscriber.md deleted file mode 100644 index 26aa621262..0000000000 --- a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIListBatchSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.subscriber.asyncapi.AsyncAPIListBatchSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIListSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIListSubscriber.md deleted file mode 100644 index c65ba472d5..0000000000 --- a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIListSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.subscriber.asyncapi.AsyncAPIListSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIStreamBatchSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIStreamBatchSubscriber.md deleted file mode 100644 index 099f0a4ff2..0000000000 --- a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIStreamBatchSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.subscriber.asyncapi.AsyncAPIStreamBatchSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIStreamSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIStreamSubscriber.md deleted file mode 100644 index 3d85ce9587..0000000000 --- a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIStreamSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.subscriber.asyncapi.AsyncAPIStreamSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPISubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPISubscriber.md deleted file mode 100644 index c957f32688..0000000000 --- a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPISubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.subscriber.asyncapi.AsyncAPISubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/factory/create_subscriber.md b/docs/docs/en/api/faststream/redis/subscriber/factory/create_subscriber.md deleted file mode 100644 index d5cf7eadc8..0000000000 --- a/docs/docs/en/api/faststream/redis/subscriber/factory/create_subscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.subscriber.factory.create_subscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/usecase/BatchListSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/usecase/BatchListSubscriber.md deleted file mode 100644 index aee1b8aa9b..0000000000 --- a/docs/docs/en/api/faststream/redis/subscriber/usecase/BatchListSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.subscriber.usecase.BatchListSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/usecase/BatchStreamSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/usecase/BatchStreamSubscriber.md deleted file mode 100644 index 0f8e4f2e1b..0000000000 --- a/docs/docs/en/api/faststream/redis/subscriber/usecase/BatchStreamSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.subscriber.usecase.BatchStreamSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/usecase/ChannelSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/usecase/ChannelSubscriber.md deleted file mode 100644 index 3ab1fc045a..0000000000 --- a/docs/docs/en/api/faststream/redis/subscriber/usecase/ChannelSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.subscriber.usecase.ChannelSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/usecase/ListSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/usecase/ListSubscriber.md deleted file mode 100644 index f7c44e8be5..0000000000 --- a/docs/docs/en/api/faststream/redis/subscriber/usecase/ListSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.subscriber.usecase.ListSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/usecase/LogicSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/usecase/LogicSubscriber.md deleted file mode 100644 index e3531e7dcc..0000000000 --- a/docs/docs/en/api/faststream/redis/subscriber/usecase/LogicSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.subscriber.usecase.LogicSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/usecase/StreamSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/usecase/StreamSubscriber.md deleted file mode 100644 index 6e2ac31d7f..0000000000 --- a/docs/docs/en/api/faststream/redis/subscriber/usecase/StreamSubscriber.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.subscriber.usecase.StreamSubscriber diff --git a/docs/docs/en/api/faststream/redis/testing/FakeProducer.md b/docs/docs/en/api/faststream/redis/testing/FakeProducer.md deleted file mode 100644 index e05efb6448..0000000000 --- a/docs/docs/en/api/faststream/redis/testing/FakeProducer.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.testing.FakeProducer diff --git a/docs/docs/en/api/faststream/redis/testing/TestRedisBroker.md b/docs/docs/en/api/faststream/redis/testing/TestRedisBroker.md deleted file mode 100644 index 22946e09f8..0000000000 --- a/docs/docs/en/api/faststream/redis/testing/TestRedisBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.testing.TestRedisBroker diff --git a/docs/docs/en/api/faststream/redis/testing/build_message.md b/docs/docs/en/api/faststream/redis/testing/build_message.md deleted file mode 100644 index b2265905c6..0000000000 --- a/docs/docs/en/api/faststream/redis/testing/build_message.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.redis.testing.build_message diff --git a/docs/docs/en/api/faststream/security/BaseSecurity.md b/docs/docs/en/api/faststream/security/BaseSecurity.md deleted file mode 100644 index 0e5abb09ae..0000000000 --- a/docs/docs/en/api/faststream/security/BaseSecurity.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.security.BaseSecurity diff --git a/docs/docs/en/api/faststream/security/SASLPlaintext.md b/docs/docs/en/api/faststream/security/SASLPlaintext.md deleted file mode 100644 index b4b5165f27..0000000000 --- a/docs/docs/en/api/faststream/security/SASLPlaintext.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.security.SASLPlaintext diff --git a/docs/docs/en/api/faststream/security/SASLScram256.md b/docs/docs/en/api/faststream/security/SASLScram256.md deleted file mode 100644 index 4d50681fa9..0000000000 --- a/docs/docs/en/api/faststream/security/SASLScram256.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.security.SASLScram256 diff --git a/docs/docs/en/api/faststream/security/SASLScram512.md b/docs/docs/en/api/faststream/security/SASLScram512.md deleted file mode 100644 index 115645cc8c..0000000000 --- a/docs/docs/en/api/faststream/security/SASLScram512.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.security.SASLScram512 diff --git a/docs/docs/en/api/faststream/testing/TestApp.md b/docs/docs/en/api/faststream/testing/TestApp.md deleted file mode 100644 index 3d8f650f0f..0000000000 --- a/docs/docs/en/api/faststream/testing/TestApp.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.testing.TestApp diff --git a/docs/docs/en/api/faststream/testing/app/TestApp.md b/docs/docs/en/api/faststream/testing/app/TestApp.md deleted file mode 100644 index 2468f3755c..0000000000 --- a/docs/docs/en/api/faststream/testing/app/TestApp.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.testing.app.TestApp diff --git a/docs/docs/en/api/faststream/testing/broker/TestBroker.md b/docs/docs/en/api/faststream/testing/broker/TestBroker.md deleted file mode 100644 index 48e34a6ca3..0000000000 --- a/docs/docs/en/api/faststream/testing/broker/TestBroker.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.testing.broker.TestBroker diff --git a/docs/docs/en/api/faststream/testing/broker/call_handler.md b/docs/docs/en/api/faststream/testing/broker/call_handler.md deleted file mode 100644 index fd11830902..0000000000 --- a/docs/docs/en/api/faststream/testing/broker/call_handler.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.testing.broker.call_handler diff --git a/docs/docs/en/api/faststream/testing/broker/patch_broker_calls.md b/docs/docs/en/api/faststream/testing/broker/patch_broker_calls.md deleted file mode 100644 index 12a6431765..0000000000 --- a/docs/docs/en/api/faststream/testing/broker/patch_broker_calls.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.testing.broker.patch_broker_calls diff --git a/docs/docs/en/api/faststream/types/LoggerProto.md b/docs/docs/en/api/faststream/types/LoggerProto.md deleted file mode 100644 index 064320bf42..0000000000 --- a/docs/docs/en/api/faststream/types/LoggerProto.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.types.LoggerProto diff --git a/docs/docs/en/api/faststream/types/StandardDataclass.md b/docs/docs/en/api/faststream/types/StandardDataclass.md deleted file mode 100644 index 5140818794..0000000000 --- a/docs/docs/en/api/faststream/types/StandardDataclass.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.types.StandardDataclass diff --git a/docs/docs/en/api/faststream/utils/Context.md b/docs/docs/en/api/faststream/utils/Context.md deleted file mode 100644 index 3e4f9f17c5..0000000000 --- a/docs/docs/en/api/faststream/utils/Context.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.Context diff --git a/docs/docs/en/api/faststream/utils/ContextRepo.md b/docs/docs/en/api/faststream/utils/ContextRepo.md deleted file mode 100644 index dd18ad81e4..0000000000 --- a/docs/docs/en/api/faststream/utils/ContextRepo.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.ContextRepo diff --git a/docs/docs/en/api/faststream/utils/Depends.md b/docs/docs/en/api/faststream/utils/Depends.md deleted file mode 100644 index c0704687e8..0000000000 --- a/docs/docs/en/api/faststream/utils/Depends.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: fast_depends.use.Depends diff --git a/docs/docs/en/api/faststream/utils/Header.md b/docs/docs/en/api/faststream/utils/Header.md deleted file mode 100644 index 10e6ccaec7..0000000000 --- a/docs/docs/en/api/faststream/utils/Header.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.Header diff --git a/docs/docs/en/api/faststream/utils/NoCast.md b/docs/docs/en/api/faststream/utils/NoCast.md deleted file mode 100644 index 606a31e563..0000000000 --- a/docs/docs/en/api/faststream/utils/NoCast.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.NoCast diff --git a/docs/docs/en/api/faststream/utils/Path.md b/docs/docs/en/api/faststream/utils/Path.md deleted file mode 100644 index b311930841..0000000000 --- a/docs/docs/en/api/faststream/utils/Path.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.Path diff --git a/docs/docs/en/api/faststream/utils/apply_types.md b/docs/docs/en/api/faststream/utils/apply_types.md deleted file mode 100644 index 9dc4603bd2..0000000000 --- a/docs/docs/en/api/faststream/utils/apply_types.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: fast_depends.use.inject diff --git a/docs/docs/en/api/faststream/utils/ast/find_ast_node.md b/docs/docs/en/api/faststream/utils/ast/find_ast_node.md deleted file mode 100644 index 228e6f058c..0000000000 --- a/docs/docs/en/api/faststream/utils/ast/find_ast_node.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.ast.find_ast_node diff --git a/docs/docs/en/api/faststream/utils/ast/find_withitems.md b/docs/docs/en/api/faststream/utils/ast/find_withitems.md deleted file mode 100644 index 123acd71e4..0000000000 --- a/docs/docs/en/api/faststream/utils/ast/find_withitems.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.ast.find_withitems diff --git a/docs/docs/en/api/faststream/utils/ast/get_withitem_calls.md b/docs/docs/en/api/faststream/utils/ast/get_withitem_calls.md deleted file mode 100644 index c9d68c1ed2..0000000000 --- a/docs/docs/en/api/faststream/utils/ast/get_withitem_calls.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.ast.get_withitem_calls diff --git a/docs/docs/en/api/faststream/utils/ast/is_contains_context_name.md b/docs/docs/en/api/faststream/utils/ast/is_contains_context_name.md deleted file mode 100644 index 61cf140ea6..0000000000 --- a/docs/docs/en/api/faststream/utils/ast/is_contains_context_name.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.ast.is_contains_context_name diff --git a/docs/docs/en/api/faststream/utils/classes/Singleton.md b/docs/docs/en/api/faststream/utils/classes/Singleton.md deleted file mode 100644 index c9751ee2bd..0000000000 --- a/docs/docs/en/api/faststream/utils/classes/Singleton.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.classes.Singleton diff --git a/docs/docs/en/api/faststream/utils/context/Context.md b/docs/docs/en/api/faststream/utils/context/Context.md deleted file mode 100644 index 5669863fee..0000000000 --- a/docs/docs/en/api/faststream/utils/context/Context.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.context.Context diff --git a/docs/docs/en/api/faststream/utils/context/ContextRepo.md b/docs/docs/en/api/faststream/utils/context/ContextRepo.md deleted file mode 100644 index 50a7133aeb..0000000000 --- a/docs/docs/en/api/faststream/utils/context/ContextRepo.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.context.ContextRepo diff --git a/docs/docs/en/api/faststream/utils/context/Header.md b/docs/docs/en/api/faststream/utils/context/Header.md deleted file mode 100644 index 7e10284ec1..0000000000 --- a/docs/docs/en/api/faststream/utils/context/Header.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.context.Header diff --git a/docs/docs/en/api/faststream/utils/context/Path.md b/docs/docs/en/api/faststream/utils/context/Path.md deleted file mode 100644 index 92c2ef36fe..0000000000 --- a/docs/docs/en/api/faststream/utils/context/Path.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.context.Path diff --git a/docs/docs/en/api/faststream/utils/context/builders/Context.md b/docs/docs/en/api/faststream/utils/context/builders/Context.md deleted file mode 100644 index 6cdf6f36fe..0000000000 --- a/docs/docs/en/api/faststream/utils/context/builders/Context.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.context.builders.Context diff --git a/docs/docs/en/api/faststream/utils/context/builders/Header.md b/docs/docs/en/api/faststream/utils/context/builders/Header.md deleted file mode 100644 index e3f6e41ba6..0000000000 --- a/docs/docs/en/api/faststream/utils/context/builders/Header.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.context.builders.Header diff --git a/docs/docs/en/api/faststream/utils/context/builders/Path.md b/docs/docs/en/api/faststream/utils/context/builders/Path.md deleted file mode 100644 index 5203903c45..0000000000 --- a/docs/docs/en/api/faststream/utils/context/builders/Path.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.context.builders.Path diff --git a/docs/docs/en/api/faststream/utils/context/repository/ContextRepo.md b/docs/docs/en/api/faststream/utils/context/repository/ContextRepo.md deleted file mode 100644 index ad968d8954..0000000000 --- a/docs/docs/en/api/faststream/utils/context/repository/ContextRepo.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.context.repository.ContextRepo diff --git a/docs/docs/en/api/faststream/utils/context/types/Context.md b/docs/docs/en/api/faststream/utils/context/types/Context.md deleted file mode 100644 index 3ac9c51fad..0000000000 --- a/docs/docs/en/api/faststream/utils/context/types/Context.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.context.types.Context diff --git a/docs/docs/en/api/faststream/utils/context/types/resolve_context_by_name.md b/docs/docs/en/api/faststream/utils/context/types/resolve_context_by_name.md deleted file mode 100644 index 60ab9fc23c..0000000000 --- a/docs/docs/en/api/faststream/utils/context/types/resolve_context_by_name.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.context.types.resolve_context_by_name diff --git a/docs/docs/en/api/faststream/utils/data/filter_by_dict.md b/docs/docs/en/api/faststream/utils/data/filter_by_dict.md deleted file mode 100644 index 87d03b5288..0000000000 --- a/docs/docs/en/api/faststream/utils/data/filter_by_dict.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.data.filter_by_dict diff --git a/docs/docs/en/api/faststream/utils/functions/call_or_await.md b/docs/docs/en/api/faststream/utils/functions/call_or_await.md deleted file mode 100644 index 9bb63aa18c..0000000000 --- a/docs/docs/en/api/faststream/utils/functions/call_or_await.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: fast_depends.utils.run_async diff --git a/docs/docs/en/api/faststream/utils/functions/drop_response_type.md b/docs/docs/en/api/faststream/utils/functions/drop_response_type.md deleted file mode 100644 index a39e8a2699..0000000000 --- a/docs/docs/en/api/faststream/utils/functions/drop_response_type.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.functions.drop_response_type diff --git a/docs/docs/en/api/faststream/utils/functions/fake_context.md b/docs/docs/en/api/faststream/utils/functions/fake_context.md deleted file mode 100644 index 3943186ba4..0000000000 --- a/docs/docs/en/api/faststream/utils/functions/fake_context.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.functions.fake_context diff --git a/docs/docs/en/api/faststream/utils/functions/sync_fake_context.md b/docs/docs/en/api/faststream/utils/functions/sync_fake_context.md deleted file mode 100644 index 0860846843..0000000000 --- a/docs/docs/en/api/faststream/utils/functions/sync_fake_context.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.functions.sync_fake_context diff --git a/docs/docs/en/api/faststream/utils/functions/timeout_scope.md b/docs/docs/en/api/faststream/utils/functions/timeout_scope.md deleted file mode 100644 index 1577a7593a..0000000000 --- a/docs/docs/en/api/faststream/utils/functions/timeout_scope.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.functions.timeout_scope diff --git a/docs/docs/en/api/faststream/utils/functions/to_async.md b/docs/docs/en/api/faststream/utils/functions/to_async.md deleted file mode 100644 index 715b43d3ac..0000000000 --- a/docs/docs/en/api/faststream/utils/functions/to_async.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.functions.to_async diff --git a/docs/docs/en/api/faststream/utils/no_cast/NoCast.md b/docs/docs/en/api/faststream/utils/no_cast/NoCast.md deleted file mode 100644 index 4fcc6054ba..0000000000 --- a/docs/docs/en/api/faststream/utils/no_cast/NoCast.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.no_cast.NoCast diff --git a/docs/docs/en/api/faststream/utils/path/compile_path.md b/docs/docs/en/api/faststream/utils/path/compile_path.md deleted file mode 100644 index 136d5ab1b9..0000000000 --- a/docs/docs/en/api/faststream/utils/path/compile_path.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -# 0.5 - API -# 2 - Release -# 3 - Contributing -# 5 - Template Page -# 10 - Default -search: - boost: 0.5 ---- - -::: faststream.utils.path.compile_path diff --git a/pyproject.toml b/pyproject.toml index 686cb7c2df..5b22e5c4c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -79,7 +79,7 @@ otel = ["opentelemetry-sdk>=1.24.0,<2.0.0"] optionals = ["faststream[rabbit,kafka,confluent,nats,redis,otel]"] devdocs = [ - "mkdocs-material==9.5.24", + "mkdocs-material==9.5.25", "mkdocs-static-i18n==1.2.3", "mdx-include==1.4.2", "mkdocstrings[python]==0.25.1", From 54c9bee4b5378a5d9d9021451f9cb9558d41c6d4 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Wed, 29 May 2024 17:58:02 +0300 Subject: [PATCH 10/24] chore: finalize CI --- .github/workflows/docs_update-references.yaml | 4 ++-- .github/workflows/docs_update-release-notes.yaml | 6 +++--- .github/workflows/pr_codeql.yml | 5 ++--- .github/workflows/pr_dependency-review.yaml | 5 ++--- .github/workflows/pr_tests.yaml | 5 ++--- .github/workflows/release_pypi.yml | 6 +++--- 6 files changed, 14 insertions(+), 17 deletions(-) diff --git a/.github/workflows/docs_update-references.yaml b/.github/workflows/docs_update-references.yaml index f29c3d240e..d39a569c7a 100644 --- a/.github/workflows/docs_update-references.yaml +++ b/.github/workflows/docs_update-references.yaml @@ -9,8 +9,8 @@ on: - faststream/** - docs/**/api/** -permissions: - contents: write +# permissions: +# contents: write jobs: check-docs-changes: diff --git a/.github/workflows/docs_update-release-notes.yaml b/.github/workflows/docs_update-release-notes.yaml index b6280cc13b..1c3b3c0e1e 100644 --- a/.github/workflows/docs_update-release-notes.yaml +++ b/.github/workflows/docs_update-release-notes.yaml @@ -2,9 +2,9 @@ name: Create PR with updated Release Notes on: workflow_dispatch: null - push: - tags: - - '*' + release: + types: + - published jobs: update-release-notes: diff --git a/.github/workflows/pr_codeql.yml b/.github/workflows/pr_codeql.yml index b933ed3e36..7e97facb72 100644 --- a/.github/workflows/pr_codeql.yml +++ b/.github/workflows/pr_codeql.yml @@ -14,9 +14,8 @@ name: "CodeQL" on: pull_request: types: - # - opened - # - synchronize - - review_requested + - opened + - synchronize branches: - main schedule: diff --git a/.github/workflows/pr_dependency-review.yaml b/.github/workflows/pr_dependency-review.yaml index 63064ef068..11ad023407 100644 --- a/.github/workflows/pr_dependency-review.yaml +++ b/.github/workflows/pr_dependency-review.yaml @@ -9,9 +9,8 @@ name: 'Dependency Review' on: pull_request: types: - # - opened - # - synchronize - - review_requested + - opened + - synchronize branches: - main paths: diff --git a/.github/workflows/pr_tests.yaml b/.github/workflows/pr_tests.yaml index 21a76786a9..204dd3c30d 100644 --- a/.github/workflows/pr_tests.yaml +++ b/.github/workflows/pr_tests.yaml @@ -3,9 +3,8 @@ name: Run all tests on: pull_request: types: - # - opened - # - synchronize - - review_requested + - opened + - synchronize jobs: static_analysis: diff --git a/.github/workflows/release_pypi.yml b/.github/workflows/release_pypi.yml index 1f03e52ae0..f1ed153dde 100644 --- a/.github/workflows/release_pypi.yml +++ b/.github/workflows/release_pypi.yml @@ -2,9 +2,9 @@ name: Publish to PyPi on: workflow_dispatch: null - push: - tags: - - "*" + release: + types: + - published jobs: publish: From 0b6f657918cc20e8cc770e7ad7d78f5e6a774062 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Wed, 29 May 2024 18:02:56 +0300 Subject: [PATCH 11/24] chore: correct name in check links CI --- .github/workflows/docs_check-broken-links.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs_check-broken-links.yaml b/.github/workflows/docs_check-broken-links.yaml index 7791a3b5c9..f65ea85859 100644 --- a/.github/workflows/docs_check-broken-links.yaml +++ b/.github/workflows/docs_check-broken-links.yaml @@ -5,7 +5,7 @@ on: types: - completed workflows: - - docs_deploy + - Deploy Docs to GitHub Pages check-broken-link: name: Check docs for broken links From 4529728565cb6b8ae58dcd18d714538bbf7a9681 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Wed, 29 May 2024 18:08:20 +0300 Subject: [PATCH 12/24] chore: run tests only if required --- .github/workflows/pr_tests.yaml | 4 ++++ .github/workflows/publish_coverage.yml | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr_tests.yaml b/.github/workflows/pr_tests.yaml index 204dd3c30d..108bc9a345 100644 --- a/.github/workflows/pr_tests.yaml +++ b/.github/workflows/pr_tests.yaml @@ -5,6 +5,10 @@ on: types: - opened - synchronize + paths: + - faststream/** + - tests/** + - docs/docs_src/** jobs: static_analysis: diff --git a/.github/workflows/publish_coverage.yml b/.github/workflows/publish_coverage.yml index 232e677ccc..781cf0c72e 100644 --- a/.github/workflows/publish_coverage.yml +++ b/.github/workflows/publish_coverage.yml @@ -10,7 +10,6 @@ permissions: jobs: smokeshow: - if: ${{ github.event.workflow_run.conclusion == 'success' }} runs-on: ubuntu-latest steps: @@ -22,7 +21,7 @@ jobs: - uses: dawidd6/action-download-artifact@v3.1.4 # nosemgrep with: - workflow: test_pr.yaml + workflow: pr_tests.yaml commit: ${{ github.event.workflow_run.head_sha }} - run: smokeshow upload coverage-html From b5e2aae6fd3eefb016921c1c360d1bc943a27e92 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Wed, 29 May 2024 18:10:35 +0300 Subject: [PATCH 13/24] chore: run CQ CI if required --- .github/workflows/pr_codeql.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pr_codeql.yml b/.github/workflows/pr_codeql.yml index 7e97facb72..f1fb50d463 100644 --- a/.github/workflows/pr_codeql.yml +++ b/.github/workflows/pr_codeql.yml @@ -18,6 +18,8 @@ on: - synchronize branches: - main + paths: + - faststream/** schedule: - cron: '39 20 * * 0' From 47c08e61fc258fc19e32fd3551d6f569b4a7b36b Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Wed, 29 May 2024 18:13:13 +0300 Subject: [PATCH 14/24] chore: fix broken links CI --- .github/workflows/docs_check-broken-links.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docs_check-broken-links.yaml b/.github/workflows/docs_check-broken-links.yaml index f65ea85859..e09f0704fd 100644 --- a/.github/workflows/docs_check-broken-links.yaml +++ b/.github/workflows/docs_check-broken-links.yaml @@ -7,6 +7,7 @@ on: workflows: - Deploy Docs to GitHub Pages +jobs: check-broken-link: name: Check docs for broken links runs-on: ubuntu-latest From e1863290bf5c5980c4f505d9da3c19c1e0378eb5 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Thu, 30 May 2024 21:10:08 +0300 Subject: [PATCH 15/24] chore: make References autocommit --- .github/workflows/docs_update-references.yaml | 5 ++--- .github/workflows/pr_tests.yaml | 1 + .github/workflows/publish_coverage.yml | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs_update-references.yaml b/.github/workflows/docs_update-references.yaml index d39a569c7a..f8c966d65f 100644 --- a/.github/workflows/docs_update-references.yaml +++ b/.github/workflows/docs_update-references.yaml @@ -29,6 +29,5 @@ jobs: run: pip install -e ".[dev]" - name: Run build docs run: bash scripts/build-docs.sh - - name: Check for changes - id: git-diff - run: git diff --exit-code \ No newline at end of file + - name: Commit + uses: stefanzweifel/git-auto-commit-action@v5 diff --git a/.github/workflows/pr_tests.yaml b/.github/workflows/pr_tests.yaml index 108bc9a345..3dff9f89c7 100644 --- a/.github/workflows/pr_tests.yaml +++ b/.github/workflows/pr_tests.yaml @@ -5,6 +5,7 @@ on: types: - opened - synchronize + - review_requested paths: - faststream/** - tests/** diff --git a/.github/workflows/publish_coverage.yml b/.github/workflows/publish_coverage.yml index 781cf0c72e..04983682f8 100644 --- a/.github/workflows/publish_coverage.yml +++ b/.github/workflows/publish_coverage.yml @@ -22,7 +22,8 @@ jobs: - uses: dawidd6/action-download-artifact@v3.1.4 # nosemgrep with: workflow: pr_tests.yaml - commit: ${{ github.event.workflow_run.head_sha }} + workflow_conclusion: success + if_no_artifact_found: fail - run: smokeshow upload coverage-html env: From 81da0168ba65e8ebb68325413806a722774b2027 Mon Sep 17 00:00:00 2001 From: Lancetnik Date: Thu, 30 May 2024 18:13:49 +0000 Subject: [PATCH 16/24] Apply automatic changes --- docs/docs/en/api/faststream/BaseMiddleware.md | 11 +++++++++++ docs/docs/en/api/faststream/Context.md | 11 +++++++++++ docs/docs/en/api/faststream/Depends.md | 11 +++++++++++ docs/docs/en/api/faststream/FastStream.md | 11 +++++++++++ docs/docs/en/api/faststream/Header.md | 11 +++++++++++ docs/docs/en/api/faststream/Path.md | 11 +++++++++++ docs/docs/en/api/faststream/Response.md | 11 +++++++++++ docs/docs/en/api/faststream/TestApp.md | 11 +++++++++++ docs/docs/en/api/faststream/app/FastStream.md | 11 +++++++++++ docs/docs/en/api/faststream/apply_types.md | 11 +++++++++++ .../api/faststream/asyncapi/abc/AsyncAPIOperation.md | 11 +++++++++++ .../faststream/asyncapi/generate/get_app_schema.md | 11 +++++++++++ .../asyncapi/generate/get_broker_channels.md | 11 +++++++++++ .../faststream/asyncapi/generate/get_broker_server.md | 11 +++++++++++ .../docs/en/api/faststream/asyncapi/get_app_schema.md | 11 +++++++++++ .../en/api/faststream/asyncapi/get_asyncapi_html.md | 11 +++++++++++ .../faststream/asyncapi/message/get_model_schema.md | 11 +++++++++++ .../asyncapi/message/get_response_schema.md | 11 +++++++++++ .../asyncapi/message/parse_handler_params.md | 11 +++++++++++ .../en/api/faststream/asyncapi/proto/AsyncAPIProto.md | 11 +++++++++++ .../docs/en/api/faststream/asyncapi/schema/Channel.md | 11 +++++++++++ .../api/faststream/asyncapi/schema/ChannelBinding.md | 11 +++++++++++ .../en/api/faststream/asyncapi/schema/Components.md | 11 +++++++++++ .../docs/en/api/faststream/asyncapi/schema/Contact.md | 11 +++++++++++ .../en/api/faststream/asyncapi/schema/ContactDict.md | 11 +++++++++++ .../api/faststream/asyncapi/schema/CorrelationId.md | 11 +++++++++++ .../en/api/faststream/asyncapi/schema/ExternalDocs.md | 11 +++++++++++ .../faststream/asyncapi/schema/ExternalDocsDict.md | 11 +++++++++++ docs/docs/en/api/faststream/asyncapi/schema/Info.md | 11 +++++++++++ .../docs/en/api/faststream/asyncapi/schema/License.md | 11 +++++++++++ .../en/api/faststream/asyncapi/schema/LicenseDict.md | 11 +++++++++++ .../docs/en/api/faststream/asyncapi/schema/Message.md | 11 +++++++++++ .../en/api/faststream/asyncapi/schema/Operation.md | 11 +++++++++++ .../faststream/asyncapi/schema/OperationBinding.md | 11 +++++++++++ .../en/api/faststream/asyncapi/schema/Reference.md | 11 +++++++++++ docs/docs/en/api/faststream/asyncapi/schema/Schema.md | 11 +++++++++++ .../asyncapi/schema/SecuritySchemaComponent.md | 11 +++++++++++ docs/docs/en/api/faststream/asyncapi/schema/Server.md | 11 +++++++++++ .../api/faststream/asyncapi/schema/ServerBinding.md | 11 +++++++++++ docs/docs/en/api/faststream/asyncapi/schema/Tag.md | 11 +++++++++++ .../docs/en/api/faststream/asyncapi/schema/TagDict.md | 11 +++++++++++ .../asyncapi/schema/bindings/ChannelBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/OperationBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/ServerBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/amqp/ChannelBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/amqp/Exchange.md | 11 +++++++++++ .../asyncapi/schema/bindings/amqp/OperationBinding.md | 11 +++++++++++ .../faststream/asyncapi/schema/bindings/amqp/Queue.md | 11 +++++++++++ .../asyncapi/schema/bindings/amqp/ServerBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/kafka/ChannelBinding.md | 11 +++++++++++ .../schema/bindings/kafka/OperationBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/kafka/ServerBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/main/ChannelBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/main/OperationBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/main/ServerBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/nats/ChannelBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/nats/OperationBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/nats/ServerBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/redis/ChannelBinding.md | 11 +++++++++++ .../schema/bindings/redis/OperationBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/redis/ServerBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/sqs/ChannelBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/sqs/OperationBinding.md | 11 +++++++++++ .../asyncapi/schema/bindings/sqs/ServerBinding.md | 11 +++++++++++ .../faststream/asyncapi/schema/channels/Channel.md | 11 +++++++++++ .../en/api/faststream/asyncapi/schema/info/Contact.md | 11 +++++++++++ .../faststream/asyncapi/schema/info/ContactDict.md | 11 +++++++++++ .../en/api/faststream/asyncapi/schema/info/Info.md | 11 +++++++++++ .../en/api/faststream/asyncapi/schema/info/License.md | 11 +++++++++++ .../faststream/asyncapi/schema/info/LicenseDict.md | 11 +++++++++++ .../api/faststream/asyncapi/schema/main/Components.md | 11 +++++++++++ .../en/api/faststream/asyncapi/schema/main/Schema.md | 11 +++++++++++ .../asyncapi/schema/message/CorrelationId.md | 11 +++++++++++ .../api/faststream/asyncapi/schema/message/Message.md | 11 +++++++++++ .../asyncapi/schema/operations/Operation.md | 11 +++++++++++ .../asyncapi/schema/security/OauthFlowObj.md | 11 +++++++++++ .../faststream/asyncapi/schema/security/OauthFlows.md | 11 +++++++++++ .../schema/security/SecuritySchemaComponent.md | 11 +++++++++++ .../api/faststream/asyncapi/schema/servers/Server.md | 11 +++++++++++ .../asyncapi/schema/servers/ServerVariable.md | 11 +++++++++++ .../faststream/asyncapi/schema/utils/ExternalDocs.md | 11 +++++++++++ .../asyncapi/schema/utils/ExternalDocsDict.md | 11 +++++++++++ .../api/faststream/asyncapi/schema/utils/Parameter.md | 11 +++++++++++ .../api/faststream/asyncapi/schema/utils/Reference.md | 11 +++++++++++ .../en/api/faststream/asyncapi/schema/utils/Tag.md | 11 +++++++++++ .../api/faststream/asyncapi/schema/utils/TagDict.md | 11 +++++++++++ .../api/faststream/asyncapi/site/get_asyncapi_html.md | 11 +++++++++++ .../docs/en/api/faststream/asyncapi/site/serve_app.md | 11 +++++++++++ .../api/faststream/asyncapi/utils/resolve_payloads.md | 11 +++++++++++ .../en/api/faststream/asyncapi/utils/to_camelcase.md | 11 +++++++++++ .../broker/acknowledgement_watcher/BaseWatcher.md | 11 +++++++++++ .../broker/acknowledgement_watcher/CounterWatcher.md | 11 +++++++++++ .../broker/acknowledgement_watcher/EndlessWatcher.md | 11 +++++++++++ .../broker/acknowledgement_watcher/OneTryWatcher.md | 11 +++++++++++ .../broker/acknowledgement_watcher/WatcherContext.md | 11 +++++++++++ .../broker/acknowledgement_watcher/get_watcher.md | 11 +++++++++++ .../en/api/faststream/broker/core/abc/ABCBroker.md | 11 +++++++++++ .../faststream/broker/core/logging/LoggingBroker.md | 11 +++++++++++ .../faststream/broker/core/usecase/BrokerUsecase.md | 11 +++++++++++ .../en/api/faststream/broker/fastapi/StreamMessage.md | 11 +++++++++++ .../en/api/faststream/broker/fastapi/StreamRoute.md | 11 +++++++++++ .../en/api/faststream/broker/fastapi/StreamRouter.md | 11 +++++++++++ .../api/faststream/broker/fastapi/context/Context.md | 11 +++++++++++ .../fastapi/get_dependant/get_fastapi_dependant.md | 11 +++++++++++ .../get_dependant/get_fastapi_native_dependant.md | 11 +++++++++++ .../faststream/broker/fastapi/route/StreamMessage.md | 11 +++++++++++ .../faststream/broker/fastapi/route/StreamRoute.md | 11 +++++++++++ .../broker/fastapi/route/make_fastapi_execution.md | 11 +++++++++++ .../faststream/broker/fastapi/router/StreamRouter.md | 11 +++++++++++ .../en/api/faststream/broker/message/StreamMessage.md | 11 +++++++++++ .../api/faststream/broker/message/decode_message.md | 11 +++++++++++ .../api/faststream/broker/message/encode_message.md | 11 +++++++++++ .../en/api/faststream/broker/message/gen_cor_id.md | 11 +++++++++++ .../faststream/broker/middlewares/BaseMiddleware.md | 11 +++++++++++ .../broker/middlewares/base/BaseMiddleware.md | 11 +++++++++++ .../middlewares/logging/CriticalLogMiddleware.md | 11 +++++++++++ .../en/api/faststream/broker/proto/EndpointProto.md | 11 +++++++++++ docs/docs/en/api/faststream/broker/proto/SetupAble.md | 11 +++++++++++ .../faststream/broker/publisher/fake/FakePublisher.md | 11 +++++++++++ .../broker/publisher/proto/BasePublisherProto.md | 11 +++++++++++ .../broker/publisher/proto/ProducerProto.md | 11 +++++++++++ .../broker/publisher/proto/PublisherProto.md | 11 +++++++++++ .../broker/publisher/usecase/PublisherUsecase.md | 11 +++++++++++ .../en/api/faststream/broker/response/Response.md | 11 +++++++++++ .../en/api/faststream/broker/router/ArgsContainer.md | 11 +++++++++++ .../en/api/faststream/broker/router/BrokerRouter.md | 11 +++++++++++ .../api/faststream/broker/router/SubscriberRoute.md | 11 +++++++++++ .../en/api/faststream/broker/schemas/NameRequired.md | 11 +++++++++++ .../broker/subscriber/call_item/HandlerItem.md | 11 +++++++++++ .../broker/subscriber/proto/SubscriberProto.md | 11 +++++++++++ .../broker/subscriber/usecase/SubscriberUsecase.md | 11 +++++++++++ .../faststream/broker/types/PublisherMiddleware.md | 11 +++++++++++ docs/docs/en/api/faststream/broker/utils/MultiLock.md | 11 +++++++++++ .../en/api/faststream/broker/utils/default_filter.md | 11 +++++++++++ .../faststream/broker/utils/get_watcher_context.md | 11 +++++++++++ .../faststream/broker/utils/resolve_custom_func.md | 11 +++++++++++ .../broker/wrapper/call/HandlerCallWrapper.md | 11 +++++++++++ .../faststream/broker/wrapper/proto/WrapperProto.md | 11 +++++++++++ docs/docs/en/api/faststream/cli/docs/app/gen.md | 11 +++++++++++ docs/docs/en/api/faststream/cli/docs/app/serve.md | 11 +++++++++++ docs/docs/en/api/faststream/cli/main/main.md | 11 +++++++++++ docs/docs/en/api/faststream/cli/main/publish.md | 11 +++++++++++ .../en/api/faststream/cli/main/publish_message.md | 11 +++++++++++ docs/docs/en/api/faststream/cli/main/run.md | 11 +++++++++++ .../en/api/faststream/cli/main/version_callback.md | 11 +++++++++++ .../cli/supervisors/basereload/BaseReload.md | 11 +++++++++++ .../cli/supervisors/multiprocess/Multiprocess.md | 11 +++++++++++ .../cli/supervisors/utils/get_subprocess.md | 11 +++++++++++ .../api/faststream/cli/supervisors/utils/set_exit.md | 11 +++++++++++ .../cli/supervisors/utils/subprocess_started.md | 11 +++++++++++ .../cli/supervisors/watchfiles/ExtendedFilter.md | 11 +++++++++++ .../cli/supervisors/watchfiles/WatchReloader.md | 11 +++++++++++ .../api/faststream/cli/utils/imports/get_app_path.md | 11 +++++++++++ .../cli/utils/imports/import_from_string.md | 11 +++++++++++ .../api/faststream/cli/utils/imports/import_object.md | 11 +++++++++++ .../faststream/cli/utils/imports/try_import_app.md | 11 +++++++++++ .../en/api/faststream/cli/utils/logs/LogLevels.md | 11 +++++++++++ .../en/api/faststream/cli/utils/logs/get_log_level.md | 11 +++++++++++ .../en/api/faststream/cli/utils/logs/set_log_level.md | 11 +++++++++++ .../api/faststream/cli/utils/parser/parse_cli_args.md | 11 +++++++++++ .../api/faststream/cli/utils/parser/remove_prefix.md | 11 +++++++++++ docs/docs/en/api/faststream/confluent/KafkaBroker.md | 11 +++++++++++ .../en/api/faststream/confluent/KafkaPublisher.md | 11 +++++++++++ .../docs/en/api/faststream/confluent/KafkaResponse.md | 11 +++++++++++ docs/docs/en/api/faststream/confluent/KafkaRoute.md | 11 +++++++++++ docs/docs/en/api/faststream/confluent/KafkaRouter.md | 11 +++++++++++ docs/docs/en/api/faststream/confluent/TestApp.md | 11 +++++++++++ .../en/api/faststream/confluent/TestKafkaBroker.md | 11 +++++++++++ .../en/api/faststream/confluent/broker/KafkaBroker.md | 11 +++++++++++ .../faststream/confluent/broker/broker/KafkaBroker.md | 11 +++++++++++ .../confluent/broker/logging/KafkaLoggingBroker.md | 11 +++++++++++ .../confluent/broker/registrator/KafkaRegistrator.md | 11 +++++++++++ .../confluent/client/AsyncConfluentConsumer.md | 11 +++++++++++ .../confluent/client/AsyncConfluentProducer.md | 11 +++++++++++ .../api/faststream/confluent/client/BatchBuilder.md | 11 +++++++++++ .../en/api/faststream/confluent/client/MsgToSend.md | 11 +++++++++++ .../api/faststream/confluent/client/TopicPartition.md | 11 +++++++++++ .../faststream/confluent/client/check_msg_error.md | 11 +++++++++++ .../api/faststream/confluent/client/create_topics.md | 11 +++++++++++ .../en/api/faststream/confluent/fastapi/Context.md | 11 +++++++++++ .../api/faststream/confluent/fastapi/KafkaRouter.md | 11 +++++++++++ .../confluent/fastapi/fastapi/KafkaRouter.md | 11 +++++++++++ .../faststream/confluent/message/ConsumerProtocol.md | 11 +++++++++++ .../api/faststream/confluent/message/FakeConsumer.md | 11 +++++++++++ .../api/faststream/confluent/message/KafkaMessage.md | 11 +++++++++++ .../opentelemetry/KafkaTelemetryMiddleware.md | 11 +++++++++++ .../middleware/KafkaTelemetryMiddleware.md | 11 +++++++++++ .../BaseConfluentTelemetrySettingsProvider.md | 11 +++++++++++ .../BatchConfluentTelemetrySettingsProvider.md | 11 +++++++++++ .../provider/ConfluentTelemetrySettingsProvider.md | 11 +++++++++++ .../provider/telemetry_attributes_provider_factory.md | 11 +++++++++++ .../confluent/parser/AsyncConfluentParser.md | 11 +++++++++++ .../publisher/asyncapi/AsyncAPIBatchPublisher.md | 11 +++++++++++ .../publisher/asyncapi/AsyncAPIDefaultPublisher.md | 11 +++++++++++ .../confluent/publisher/asyncapi/AsyncAPIPublisher.md | 11 +++++++++++ .../publisher/producer/AsyncConfluentFastProducer.md | 11 +++++++++++ .../confluent/publisher/usecase/BatchPublisher.md | 11 +++++++++++ .../confluent/publisher/usecase/DefaultPublisher.md | 11 +++++++++++ .../confluent/publisher/usecase/LogicPublisher.md | 11 +++++++++++ .../faststream/confluent/response/KafkaResponse.md | 11 +++++++++++ .../api/faststream/confluent/router/KafkaPublisher.md | 11 +++++++++++ .../en/api/faststream/confluent/router/KafkaRoute.md | 11 +++++++++++ .../en/api/faststream/confluent/router/KafkaRouter.md | 11 +++++++++++ .../schemas/params/ConsumerConnectionParams.md | 11 +++++++++++ .../faststream/confluent/security/parse_security.md | 11 +++++++++++ .../subscriber/asyncapi/AsyncAPIBatchSubscriber.md | 11 +++++++++++ .../subscriber/asyncapi/AsyncAPIDefaultSubscriber.md | 11 +++++++++++ .../subscriber/asyncapi/AsyncAPISubscriber.md | 11 +++++++++++ .../confluent/subscriber/factory/create_subscriber.md | 11 +++++++++++ .../confluent/subscriber/usecase/BatchSubscriber.md | 11 +++++++++++ .../confluent/subscriber/usecase/DefaultSubscriber.md | 11 +++++++++++ .../confluent/subscriber/usecase/LogicSubscriber.md | 11 +++++++++++ .../api/faststream/confluent/testing/FakeProducer.md | 11 +++++++++++ .../confluent/testing/MockConfluentMessage.md | 11 +++++++++++ .../faststream/confluent/testing/TestKafkaBroker.md | 11 +++++++++++ .../api/faststream/confluent/testing/build_message.md | 11 +++++++++++ docs/docs/en/api/faststream/constants/ContentTypes.md | 11 +++++++++++ docs/docs/en/api/faststream/exceptions/AckMessage.md | 11 +++++++++++ .../api/faststream/exceptions/FastStreamException.md | 11 +++++++++++ .../en/api/faststream/exceptions/HandlerException.md | 11 +++++++++++ .../en/api/faststream/exceptions/IgnoredException.md | 11 +++++++++++ docs/docs/en/api/faststream/exceptions/NackMessage.md | 11 +++++++++++ .../en/api/faststream/exceptions/RejectMessage.md | 11 +++++++++++ docs/docs/en/api/faststream/exceptions/SetupError.md | 11 +++++++++++ docs/docs/en/api/faststream/exceptions/SkipMessage.md | 11 +++++++++++ .../en/api/faststream/exceptions/StopApplication.md | 11 +++++++++++ docs/docs/en/api/faststream/exceptions/StopConsume.md | 11 +++++++++++ .../en/api/faststream/exceptions/ValidationError.md | 11 +++++++++++ docs/docs/en/api/faststream/kafka/KafkaBroker.md | 11 +++++++++++ docs/docs/en/api/faststream/kafka/KafkaPublisher.md | 11 +++++++++++ docs/docs/en/api/faststream/kafka/KafkaResponse.md | 11 +++++++++++ docs/docs/en/api/faststream/kafka/KafkaRoute.md | 11 +++++++++++ docs/docs/en/api/faststream/kafka/KafkaRouter.md | 11 +++++++++++ docs/docs/en/api/faststream/kafka/TestApp.md | 11 +++++++++++ docs/docs/en/api/faststream/kafka/TestKafkaBroker.md | 11 +++++++++++ docs/docs/en/api/faststream/kafka/TopicPartition.md | 11 +++++++++++ .../en/api/faststream/kafka/broker/KafkaBroker.md | 11 +++++++++++ .../api/faststream/kafka/broker/broker/KafkaBroker.md | 11 +++++++++++ .../kafka/broker/logging/KafkaLoggingBroker.md | 11 +++++++++++ .../kafka/broker/registrator/KafkaRegistrator.md | 11 +++++++++++ docs/docs/en/api/faststream/kafka/fastapi/Context.md | 11 +++++++++++ .../en/api/faststream/kafka/fastapi/KafkaRouter.md | 11 +++++++++++ .../faststream/kafka/fastapi/fastapi/KafkaRouter.md | 11 +++++++++++ .../api/faststream/kafka/message/ConsumerProtocol.md | 11 +++++++++++ .../en/api/faststream/kafka/message/FakeConsumer.md | 11 +++++++++++ .../en/api/faststream/kafka/message/KafkaMessage.md | 11 +++++++++++ .../kafka/opentelemetry/KafkaTelemetryMiddleware.md | 11 +++++++++++ .../middleware/KafkaTelemetryMiddleware.md | 11 +++++++++++ .../provider/BaseKafkaTelemetrySettingsProvider.md | 11 +++++++++++ .../provider/BatchKafkaTelemetrySettingsProvider.md | 11 +++++++++++ .../provider/KafkaTelemetrySettingsProvider.md | 11 +++++++++++ .../provider/telemetry_attributes_provider_factory.md | 11 +++++++++++ .../en/api/faststream/kafka/parser/AioKafkaParser.md | 11 +++++++++++ .../publisher/asyncapi/AsyncAPIBatchPublisher.md | 11 +++++++++++ .../publisher/asyncapi/AsyncAPIDefaultPublisher.md | 11 +++++++++++ .../kafka/publisher/asyncapi/AsyncAPIPublisher.md | 11 +++++++++++ .../kafka/publisher/producer/AioKafkaFastProducer.md | 11 +++++++++++ .../kafka/publisher/usecase/BatchPublisher.md | 11 +++++++++++ .../kafka/publisher/usecase/DefaultPublisher.md | 11 +++++++++++ .../kafka/publisher/usecase/LogicPublisher.md | 11 +++++++++++ .../en/api/faststream/kafka/response/KafkaResponse.md | 11 +++++++++++ .../en/api/faststream/kafka/router/KafkaPublisher.md | 11 +++++++++++ .../docs/en/api/faststream/kafka/router/KafkaRoute.md | 11 +++++++++++ .../en/api/faststream/kafka/router/KafkaRouter.md | 11 +++++++++++ .../kafka/schemas/params/ConsumerConnectionParams.md | 11 +++++++++++ .../api/faststream/kafka/security/parse_security.md | 11 +++++++++++ .../subscriber/asyncapi/AsyncAPIBatchSubscriber.md | 11 +++++++++++ .../subscriber/asyncapi/AsyncAPIDefaultSubscriber.md | 11 +++++++++++ .../kafka/subscriber/asyncapi/AsyncAPISubscriber.md | 11 +++++++++++ .../kafka/subscriber/factory/create_subscriber.md | 11 +++++++++++ .../kafka/subscriber/usecase/BatchSubscriber.md | 11 +++++++++++ .../kafka/subscriber/usecase/DefaultSubscriber.md | 11 +++++++++++ .../kafka/subscriber/usecase/LogicSubscriber.md | 11 +++++++++++ .../en/api/faststream/kafka/testing/FakeProducer.md | 11 +++++++++++ .../api/faststream/kafka/testing/TestKafkaBroker.md | 11 +++++++++++ .../en/api/faststream/kafka/testing/build_message.md | 11 +++++++++++ .../faststream/log/formatter/ColourizedFormatter.md | 11 +++++++++++ .../api/faststream/log/formatter/expand_log_field.md | 11 +++++++++++ .../en/api/faststream/log/logging/ExtendedFilter.md | 11 +++++++++++ .../api/faststream/log/logging/get_broker_logger.md | 11 +++++++++++ .../en/api/faststream/log/logging/set_logger_fmt.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/AckPolicy.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/ConsumerConfig.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/DeliverPolicy.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/DiscardPolicy.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/ExternalStream.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/JStream.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/KvWatch.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/NatsBroker.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/NatsPublisher.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/NatsResponse.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/NatsRoute.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/NatsRouter.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/ObjWatch.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/Placement.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/PullSub.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/RePublish.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/ReplayPolicy.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/RetentionPolicy.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/StorageType.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/StreamConfig.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/StreamSource.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/TestApp.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/TestNatsBroker.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/broker/NatsBroker.md | 11 +++++++++++ .../api/faststream/nats/broker/broker/NatsBroker.md | 11 +++++++++++ .../nats/broker/logging/NatsLoggingBroker.md | 11 +++++++++++ .../nats/broker/registrator/NatsRegistrator.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/fastapi/Context.md | 11 +++++++++++ .../docs/en/api/faststream/nats/fastapi/NatsRouter.md | 11 +++++++++++ .../api/faststream/nats/fastapi/fastapi/NatsRouter.md | 11 +++++++++++ .../api/faststream/nats/helpers/KVBucketDeclarer.md | 11 +++++++++++ .../api/faststream/nats/helpers/OSBucketDeclarer.md | 11 +++++++++++ .../en/api/faststream/nats/helpers/StreamBuilder.md | 11 +++++++++++ .../nats/helpers/bucket_declarer/KVBucketDeclarer.md | 11 +++++++++++ .../helpers/obj_storage_declarer/OSBucketDeclarer.md | 11 +++++++++++ .../nats/helpers/object_builder/StreamBuilder.md | 11 +++++++++++ .../api/faststream/nats/message/NatsBatchMessage.md | 11 +++++++++++ .../en/api/faststream/nats/message/NatsKvMessage.md | 11 +++++++++++ .../en/api/faststream/nats/message/NatsMessage.md | 11 +++++++++++ .../en/api/faststream/nats/message/NatsObjMessage.md | 11 +++++++++++ .../nats/opentelemetry/NatsTelemetryMiddleware.md | 11 +++++++++++ .../middleware/NatsTelemetryMiddleware.md | 11 +++++++++++ .../provider/BaseNatsTelemetrySettingsProvider.md | 11 +++++++++++ .../provider/NatsBatchTelemetrySettingsProvider.md | 11 +++++++++++ .../provider/NatsTelemetrySettingsProvider.md | 11 +++++++++++ .../provider/telemetry_attributes_provider_factory.md | 11 +++++++++++ .../docs/en/api/faststream/nats/parser/BatchParser.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/parser/JsParser.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/parser/KvParser.md | 11 +++++++++++ .../en/api/faststream/nats/parser/NatsBaseParser.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/parser/NatsParser.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/parser/ObjParser.md | 11 +++++++++++ .../nats/publisher/asyncapi/AsyncAPIPublisher.md | 11 +++++++++++ .../nats/publisher/producer/NatsFastProducer.md | 11 +++++++++++ .../nats/publisher/producer/NatsJSFastProducer.md | 11 +++++++++++ .../nats/publisher/usecase/LogicPublisher.md | 11 +++++++++++ .../en/api/faststream/nats/response/NatsResponse.md | 11 +++++++++++ .../en/api/faststream/nats/router/NatsPublisher.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/router/NatsRoute.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/router/NatsRouter.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/schemas/JStream.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/schemas/KvWatch.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/schemas/ObjWatch.md | 11 +++++++++++ docs/docs/en/api/faststream/nats/schemas/PullSub.md | 11 +++++++++++ .../api/faststream/nats/schemas/js_stream/JStream.md | 11 +++++++++++ .../nats/schemas/js_stream/compile_nats_wildcard.md | 11 +++++++++++ .../schemas/js_stream/is_subject_match_wildcard.md | 11 +++++++++++ .../api/faststream/nats/schemas/kv_watch/KvWatch.md | 11 +++++++++++ .../api/faststream/nats/schemas/obj_watch/ObjWatch.md | 11 +++++++++++ .../api/faststream/nats/schemas/pull_sub/PullSub.md | 11 +++++++++++ .../en/api/faststream/nats/security/parse_security.md | 11 +++++++++++ .../asyncapi/AsyncAPIBatchPullStreamSubscriber.md | 11 +++++++++++ .../asyncapi/AsyncAPIConcurrentCoreSubscriber.md | 11 +++++++++++ .../AsyncAPIConcurrentPullStreamSubscriber.md | 11 +++++++++++ .../AsyncAPIConcurrentPushStreamSubscriber.md | 11 +++++++++++ .../subscriber/asyncapi/AsyncAPICoreSubscriber.md | 11 +++++++++++ .../asyncapi/AsyncAPIKeyValueWatchSubscriber.md | 11 +++++++++++ .../asyncapi/AsyncAPIObjStoreWatchSubscriber.md | 11 +++++++++++ .../asyncapi/AsyncAPIPullStreamSubscriber.md | 11 +++++++++++ .../subscriber/asyncapi/AsyncAPIStreamSubscriber.md | 11 +++++++++++ .../nats/subscriber/asyncapi/AsyncAPISubscriber.md | 11 +++++++++++ .../nats/subscriber/factory/create_subscriber.md | 11 +++++++++++ .../subscriber/subscription/UnsubscribeAdapter.md | 11 +++++++++++ .../nats/subscriber/subscription/Unsubscriptable.md | 11 +++++++++++ .../nats/subscriber/subscription/Watchable.md | 11 +++++++++++ .../subscriber/usecase/BatchPullStreamSubscriber.md | 11 +++++++++++ .../subscriber/usecase/ConcurrentCoreSubscriber.md | 11 +++++++++++ .../usecase/ConcurrentPullStreamSubscriber.md | 11 +++++++++++ .../usecase/ConcurrentPushStreamSubscriber.md | 11 +++++++++++ .../nats/subscriber/usecase/CoreSubscriber.md | 11 +++++++++++ .../subscriber/usecase/KeyValueWatchSubscriber.md | 11 +++++++++++ .../nats/subscriber/usecase/LogicSubscriber.md | 11 +++++++++++ .../subscriber/usecase/ObjStoreWatchSubscriber.md | 11 +++++++++++ .../nats/subscriber/usecase/PullStreamSubscriber.md | 11 +++++++++++ .../nats/subscriber/usecase/PushStreamSubscription.md | 11 +++++++++++ .../en/api/faststream/nats/testing/FakeProducer.md | 11 +++++++++++ .../en/api/faststream/nats/testing/PatchedMessage.md | 11 +++++++++++ .../en/api/faststream/nats/testing/TestNatsBroker.md | 11 +++++++++++ .../en/api/faststream/nats/testing/build_message.md | 11 +++++++++++ .../faststream/opentelemetry/TelemetryMiddleware.md | 11 +++++++++++ .../opentelemetry/TelemetrySettingsProvider.md | 11 +++++++++++ .../faststream/opentelemetry/consts/MessageAction.md | 11 +++++++++++ .../middleware/BaseTelemetryMiddleware.md | 11 +++++++++++ .../opentelemetry/middleware/TelemetryMiddleware.md | 11 +++++++++++ .../provider/TelemetrySettingsProvider.md | 11 +++++++++++ docs/docs/en/api/faststream/rabbit/ExchangeType.md | 11 +++++++++++ docs/docs/en/api/faststream/rabbit/RabbitBroker.md | 11 +++++++++++ docs/docs/en/api/faststream/rabbit/RabbitExchange.md | 11 +++++++++++ docs/docs/en/api/faststream/rabbit/RabbitPublisher.md | 11 +++++++++++ docs/docs/en/api/faststream/rabbit/RabbitQueue.md | 11 +++++++++++ docs/docs/en/api/faststream/rabbit/RabbitResponse.md | 11 +++++++++++ docs/docs/en/api/faststream/rabbit/RabbitRoute.md | 11 +++++++++++ docs/docs/en/api/faststream/rabbit/RabbitRouter.md | 11 +++++++++++ docs/docs/en/api/faststream/rabbit/ReplyConfig.md | 11 +++++++++++ docs/docs/en/api/faststream/rabbit/TestApp.md | 11 +++++++++++ .../docs/en/api/faststream/rabbit/TestRabbitBroker.md | 11 +++++++++++ .../en/api/faststream/rabbit/broker/RabbitBroker.md | 11 +++++++++++ .../faststream/rabbit/broker/broker/RabbitBroker.md | 11 +++++++++++ .../rabbit/broker/logging/RabbitLoggingBroker.md | 11 +++++++++++ .../rabbit/broker/registrator/RabbitRegistrator.md | 11 +++++++++++ docs/docs/en/api/faststream/rabbit/fastapi/Context.md | 11 +++++++++++ .../en/api/faststream/rabbit/fastapi/RabbitRouter.md | 11 +++++++++++ .../faststream/rabbit/fastapi/router/RabbitRouter.md | 11 +++++++++++ .../en/api/faststream/rabbit/message/RabbitMessage.md | 11 +++++++++++ .../rabbit/opentelemetry/RabbitTelemetryMiddleware.md | 11 +++++++++++ .../middleware/RabbitTelemetryMiddleware.md | 11 +++++++++++ .../provider/RabbitTelemetrySettingsProvider.md | 11 +++++++++++ .../en/api/faststream/rabbit/parser/AioPikaParser.md | 11 +++++++++++ .../rabbit/publisher/asyncapi/AsyncAPIPublisher.md | 11 +++++++++++ .../rabbit/publisher/producer/AioPikaFastProducer.md | 11 +++++++++++ .../rabbit/publisher/usecase/LogicPublisher.md | 11 +++++++++++ .../rabbit/publisher/usecase/PublishKwargs.md | 11 +++++++++++ .../api/faststream/rabbit/response/RabbitResponse.md | 11 +++++++++++ .../api/faststream/rabbit/router/RabbitPublisher.md | 11 +++++++++++ .../en/api/faststream/rabbit/router/RabbitRoute.md | 11 +++++++++++ .../en/api/faststream/rabbit/router/RabbitRouter.md | 11 +++++++++++ .../faststream/rabbit/schemas/BaseRMQInformation.md | 11 +++++++++++ .../en/api/faststream/rabbit/schemas/ExchangeType.md | 11 +++++++++++ .../api/faststream/rabbit/schemas/RabbitExchange.md | 11 +++++++++++ .../en/api/faststream/rabbit/schemas/RabbitQueue.md | 11 +++++++++++ .../en/api/faststream/rabbit/schemas/ReplyConfig.md | 11 +++++++++++ .../rabbit/schemas/constants/ExchangeType.md | 11 +++++++++++ .../rabbit/schemas/exchange/RabbitExchange.md | 11 +++++++++++ .../rabbit/schemas/proto/BaseRMQInformation.md | 11 +++++++++++ .../faststream/rabbit/schemas/queue/RabbitQueue.md | 11 +++++++++++ .../faststream/rabbit/schemas/reply/ReplyConfig.md | 11 +++++++++++ .../api/faststream/rabbit/security/parse_security.md | 11 +++++++++++ .../rabbit/subscriber/asyncapi/AsyncAPISubscriber.md | 11 +++++++++++ .../rabbit/subscriber/factory/create_subscriber.md | 11 +++++++++++ .../rabbit/subscriber/usecase/LogicSubscriber.md | 11 +++++++++++ .../en/api/faststream/rabbit/testing/FakeProducer.md | 11 +++++++++++ .../api/faststream/rabbit/testing/PatchedMessage.md | 11 +++++++++++ .../api/faststream/rabbit/testing/TestRabbitBroker.md | 11 +++++++++++ .../en/api/faststream/rabbit/testing/apply_pattern.md | 11 +++++++++++ .../en/api/faststream/rabbit/testing/build_message.md | 11 +++++++++++ .../en/api/faststream/rabbit/utils/RabbitDeclarer.md | 11 +++++++++++ docs/docs/en/api/faststream/rabbit/utils/build_url.md | 11 +++++++++++ .../faststream/rabbit/utils/is_routing_exchange.md | 11 +++++++++++ docs/docs/en/api/faststream/redis/ListSub.md | 11 +++++++++++ docs/docs/en/api/faststream/redis/PubSub.md | 11 +++++++++++ docs/docs/en/api/faststream/redis/RedisBroker.md | 11 +++++++++++ docs/docs/en/api/faststream/redis/RedisPublisher.md | 11 +++++++++++ docs/docs/en/api/faststream/redis/RedisResponse.md | 11 +++++++++++ docs/docs/en/api/faststream/redis/RedisRoute.md | 11 +++++++++++ docs/docs/en/api/faststream/redis/RedisRouter.md | 11 +++++++++++ docs/docs/en/api/faststream/redis/StreamSub.md | 11 +++++++++++ docs/docs/en/api/faststream/redis/TestApp.md | 11 +++++++++++ docs/docs/en/api/faststream/redis/TestRedisBroker.md | 11 +++++++++++ .../api/faststream/redis/broker/broker/RedisBroker.md | 11 +++++++++++ .../redis/broker/logging/RedisLoggingBroker.md | 11 +++++++++++ .../redis/broker/registrator/RedisRegistrator.md | 11 +++++++++++ docs/docs/en/api/faststream/redis/fastapi/Context.md | 11 +++++++++++ .../en/api/faststream/redis/fastapi/RedisRouter.md | 11 +++++++++++ .../faststream/redis/fastapi/fastapi/RedisRouter.md | 11 +++++++++++ .../api/faststream/redis/message/BatchListMessage.md | 11 +++++++++++ .../faststream/redis/message/BatchStreamMessage.md | 11 +++++++++++ .../faststream/redis/message/DefaultListMessage.md | 11 +++++++++++ .../faststream/redis/message/DefaultStreamMessage.md | 11 +++++++++++ .../en/api/faststream/redis/message/ListMessage.md | 11 +++++++++++ .../en/api/faststream/redis/message/PubSubMessage.md | 11 +++++++++++ .../faststream/redis/message/RedisBatchListMessage.md | 11 +++++++++++ .../redis/message/RedisBatchStreamMessage.md | 11 +++++++++++ .../api/faststream/redis/message/RedisListMessage.md | 11 +++++++++++ .../en/api/faststream/redis/message/RedisMessage.md | 11 +++++++++++ .../faststream/redis/message/RedisStreamMessage.md | 11 +++++++++++ .../en/api/faststream/redis/message/StreamMessage.md | 11 +++++++++++ .../en/api/faststream/redis/message/UnifyRedisDict.md | 11 +++++++++++ .../api/faststream/redis/message/UnifyRedisMessage.md | 11 +++++++++++ .../redis/opentelemetry/RedisTelemetryMiddleware.md | 11 +++++++++++ .../middleware/RedisTelemetryMiddleware.md | 11 +++++++++++ .../provider/RedisTelemetrySettingsProvider.md | 11 +++++++++++ .../docs/en/api/faststream/redis/parser/RawMessage.md | 11 +++++++++++ .../faststream/redis/parser/RedisBatchListParser.md | 11 +++++++++++ .../faststream/redis/parser/RedisBatchStreamParser.md | 11 +++++++++++ .../en/api/faststream/redis/parser/RedisListParser.md | 11 +++++++++++ .../api/faststream/redis/parser/RedisPubSubParser.md | 11 +++++++++++ .../api/faststream/redis/parser/RedisStreamParser.md | 11 +++++++++++ .../en/api/faststream/redis/parser/SimpleParser.md | 11 +++++++++++ .../publisher/asyncapi/AsyncAPIChannelPublisher.md | 11 +++++++++++ .../publisher/asyncapi/AsyncAPIListBatchPublisher.md | 11 +++++++++++ .../redis/publisher/asyncapi/AsyncAPIListPublisher.md | 11 +++++++++++ .../redis/publisher/asyncapi/AsyncAPIPublisher.md | 11 +++++++++++ .../publisher/asyncapi/AsyncAPIStreamPublisher.md | 11 +++++++++++ .../redis/publisher/producer/RedisFastProducer.md | 11 +++++++++++ .../redis/publisher/usecase/ChannelPublisher.md | 11 +++++++++++ .../redis/publisher/usecase/ListBatchPublisher.md | 11 +++++++++++ .../redis/publisher/usecase/ListPublisher.md | 11 +++++++++++ .../redis/publisher/usecase/LogicPublisher.md | 11 +++++++++++ .../redis/publisher/usecase/StreamPublisher.md | 11 +++++++++++ .../en/api/faststream/redis/response/RedisResponse.md | 11 +++++++++++ .../en/api/faststream/redis/router/RedisPublisher.md | 11 +++++++++++ .../docs/en/api/faststream/redis/router/RedisRoute.md | 11 +++++++++++ .../en/api/faststream/redis/router/RedisRouter.md | 11 +++++++++++ docs/docs/en/api/faststream/redis/schemas/ListSub.md | 11 +++++++++++ docs/docs/en/api/faststream/redis/schemas/PubSub.md | 11 +++++++++++ .../docs/en/api/faststream/redis/schemas/StreamSub.md | 11 +++++++++++ .../api/faststream/redis/schemas/list_sub/ListSub.md | 11 +++++++++++ .../redis/schemas/proto/RedisAsyncAPIProtocol.md | 11 +++++++++++ .../redis/schemas/proto/validate_options.md | 11 +++++++++++ .../en/api/faststream/redis/schemas/pub_sub/PubSub.md | 11 +++++++++++ .../faststream/redis/schemas/stream_sub/StreamSub.md | 11 +++++++++++ .../api/faststream/redis/security/parse_security.md | 11 +++++++++++ .../subscriber/asyncapi/AsyncAPIChannelSubscriber.md | 11 +++++++++++ .../asyncapi/AsyncAPIListBatchSubscriber.md | 11 +++++++++++ .../subscriber/asyncapi/AsyncAPIListSubscriber.md | 11 +++++++++++ .../asyncapi/AsyncAPIStreamBatchSubscriber.md | 11 +++++++++++ .../subscriber/asyncapi/AsyncAPIStreamSubscriber.md | 11 +++++++++++ .../redis/subscriber/asyncapi/AsyncAPISubscriber.md | 11 +++++++++++ .../redis/subscriber/factory/create_subscriber.md | 11 +++++++++++ .../redis/subscriber/usecase/BatchListSubscriber.md | 11 +++++++++++ .../redis/subscriber/usecase/BatchStreamSubscriber.md | 11 +++++++++++ .../redis/subscriber/usecase/ChannelSubscriber.md | 11 +++++++++++ .../redis/subscriber/usecase/ListSubscriber.md | 11 +++++++++++ .../redis/subscriber/usecase/LogicSubscriber.md | 11 +++++++++++ .../redis/subscriber/usecase/StreamSubscriber.md | 11 +++++++++++ .../en/api/faststream/redis/testing/FakeProducer.md | 11 +++++++++++ .../api/faststream/redis/testing/TestRedisBroker.md | 11 +++++++++++ .../en/api/faststream/redis/testing/build_message.md | 11 +++++++++++ docs/docs/en/api/faststream/security/BaseSecurity.md | 11 +++++++++++ docs/docs/en/api/faststream/security/SASLPlaintext.md | 11 +++++++++++ docs/docs/en/api/faststream/security/SASLScram256.md | 11 +++++++++++ docs/docs/en/api/faststream/security/SASLScram512.md | 11 +++++++++++ docs/docs/en/api/faststream/testing/TestApp.md | 11 +++++++++++ docs/docs/en/api/faststream/testing/app/TestApp.md | 11 +++++++++++ .../en/api/faststream/testing/broker/TestBroker.md | 11 +++++++++++ .../en/api/faststream/testing/broker/call_handler.md | 11 +++++++++++ .../faststream/testing/broker/patch_broker_calls.md | 11 +++++++++++ docs/docs/en/api/faststream/types/LoggerProto.md | 11 +++++++++++ .../docs/en/api/faststream/types/StandardDataclass.md | 11 +++++++++++ docs/docs/en/api/faststream/utils/Context.md | 11 +++++++++++ docs/docs/en/api/faststream/utils/ContextRepo.md | 11 +++++++++++ docs/docs/en/api/faststream/utils/Depends.md | 11 +++++++++++ docs/docs/en/api/faststream/utils/Header.md | 11 +++++++++++ docs/docs/en/api/faststream/utils/NoCast.md | 11 +++++++++++ docs/docs/en/api/faststream/utils/Path.md | 11 +++++++++++ docs/docs/en/api/faststream/utils/apply_types.md | 11 +++++++++++ .../docs/en/api/faststream/utils/ast/find_ast_node.md | 11 +++++++++++ .../en/api/faststream/utils/ast/find_withitems.md | 11 +++++++++++ .../en/api/faststream/utils/ast/get_withitem_calls.md | 11 +++++++++++ .../faststream/utils/ast/is_contains_context_name.md | 11 +++++++++++ .../docs/en/api/faststream/utils/classes/Singleton.md | 11 +++++++++++ docs/docs/en/api/faststream/utils/context/Context.md | 11 +++++++++++ .../en/api/faststream/utils/context/ContextRepo.md | 11 +++++++++++ docs/docs/en/api/faststream/utils/context/Header.md | 11 +++++++++++ docs/docs/en/api/faststream/utils/context/Path.md | 11 +++++++++++ .../api/faststream/utils/context/builders/Context.md | 11 +++++++++++ .../api/faststream/utils/context/builders/Header.md | 11 +++++++++++ .../en/api/faststream/utils/context/builders/Path.md | 11 +++++++++++ .../utils/context/repository/ContextRepo.md | 11 +++++++++++ .../en/api/faststream/utils/context/types/Context.md | 11 +++++++++++ .../utils/context/types/resolve_context_by_name.md | 11 +++++++++++ .../en/api/faststream/utils/data/filter_by_dict.md | 11 +++++++++++ .../api/faststream/utils/functions/call_or_await.md | 11 +++++++++++ .../faststream/utils/functions/drop_response_type.md | 11 +++++++++++ .../en/api/faststream/utils/functions/fake_context.md | 11 +++++++++++ .../faststream/utils/functions/sync_fake_context.md | 11 +++++++++++ .../api/faststream/utils/functions/timeout_scope.md | 11 +++++++++++ .../en/api/faststream/utils/functions/to_async.md | 11 +++++++++++ docs/docs/en/api/faststream/utils/no_cast/NoCast.md | 11 +++++++++++ .../docs/en/api/faststream/utils/path/compile_path.md | 11 +++++++++++ 561 files changed, 6171 insertions(+) create mode 100644 docs/docs/en/api/faststream/BaseMiddleware.md create mode 100644 docs/docs/en/api/faststream/Context.md create mode 100644 docs/docs/en/api/faststream/Depends.md create mode 100644 docs/docs/en/api/faststream/FastStream.md create mode 100644 docs/docs/en/api/faststream/Header.md create mode 100644 docs/docs/en/api/faststream/Path.md create mode 100644 docs/docs/en/api/faststream/Response.md create mode 100644 docs/docs/en/api/faststream/TestApp.md create mode 100644 docs/docs/en/api/faststream/app/FastStream.md create mode 100644 docs/docs/en/api/faststream/apply_types.md create mode 100644 docs/docs/en/api/faststream/asyncapi/abc/AsyncAPIOperation.md create mode 100644 docs/docs/en/api/faststream/asyncapi/generate/get_app_schema.md create mode 100644 docs/docs/en/api/faststream/asyncapi/generate/get_broker_channels.md create mode 100644 docs/docs/en/api/faststream/asyncapi/generate/get_broker_server.md create mode 100644 docs/docs/en/api/faststream/asyncapi/get_app_schema.md create mode 100644 docs/docs/en/api/faststream/asyncapi/get_asyncapi_html.md create mode 100644 docs/docs/en/api/faststream/asyncapi/message/get_model_schema.md create mode 100644 docs/docs/en/api/faststream/asyncapi/message/get_response_schema.md create mode 100644 docs/docs/en/api/faststream/asyncapi/message/parse_handler_params.md create mode 100644 docs/docs/en/api/faststream/asyncapi/proto/AsyncAPIProto.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Channel.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/ChannelBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Components.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Contact.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/ContactDict.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/CorrelationId.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/ExternalDocs.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/ExternalDocsDict.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Info.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/License.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/LicenseDict.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Message.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Operation.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/OperationBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Reference.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Schema.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/SecuritySchemaComponent.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Server.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/ServerBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/Tag.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/TagDict.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/ChannelBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/OperationBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/ServerBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/ChannelBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/Exchange.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/OperationBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/Queue.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/ServerBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/ChannelBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/OperationBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/ServerBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/main/ChannelBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/main/OperationBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/main/ServerBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/ChannelBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/OperationBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/ServerBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/ChannelBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/OperationBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/ServerBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/ChannelBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/OperationBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/ServerBinding.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/channels/Channel.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/info/Contact.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/info/ContactDict.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/info/Info.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/info/License.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/info/LicenseDict.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/main/Components.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/main/Schema.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/message/CorrelationId.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/message/Message.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/operations/Operation.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/security/OauthFlowObj.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/security/OauthFlows.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/security/SecuritySchemaComponent.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/servers/Server.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/servers/ServerVariable.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/utils/ExternalDocs.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/utils/ExternalDocsDict.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/utils/Parameter.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/utils/Reference.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/utils/Tag.md create mode 100644 docs/docs/en/api/faststream/asyncapi/schema/utils/TagDict.md create mode 100644 docs/docs/en/api/faststream/asyncapi/site/get_asyncapi_html.md create mode 100644 docs/docs/en/api/faststream/asyncapi/site/serve_app.md create mode 100644 docs/docs/en/api/faststream/asyncapi/utils/resolve_payloads.md create mode 100644 docs/docs/en/api/faststream/asyncapi/utils/to_camelcase.md create mode 100644 docs/docs/en/api/faststream/broker/acknowledgement_watcher/BaseWatcher.md create mode 100644 docs/docs/en/api/faststream/broker/acknowledgement_watcher/CounterWatcher.md create mode 100644 docs/docs/en/api/faststream/broker/acknowledgement_watcher/EndlessWatcher.md create mode 100644 docs/docs/en/api/faststream/broker/acknowledgement_watcher/OneTryWatcher.md create mode 100644 docs/docs/en/api/faststream/broker/acknowledgement_watcher/WatcherContext.md create mode 100644 docs/docs/en/api/faststream/broker/acknowledgement_watcher/get_watcher.md create mode 100644 docs/docs/en/api/faststream/broker/core/abc/ABCBroker.md create mode 100644 docs/docs/en/api/faststream/broker/core/logging/LoggingBroker.md create mode 100644 docs/docs/en/api/faststream/broker/core/usecase/BrokerUsecase.md create mode 100644 docs/docs/en/api/faststream/broker/fastapi/StreamMessage.md create mode 100644 docs/docs/en/api/faststream/broker/fastapi/StreamRoute.md create mode 100644 docs/docs/en/api/faststream/broker/fastapi/StreamRouter.md create mode 100644 docs/docs/en/api/faststream/broker/fastapi/context/Context.md create mode 100644 docs/docs/en/api/faststream/broker/fastapi/get_dependant/get_fastapi_dependant.md create mode 100644 docs/docs/en/api/faststream/broker/fastapi/get_dependant/get_fastapi_native_dependant.md create mode 100644 docs/docs/en/api/faststream/broker/fastapi/route/StreamMessage.md create mode 100644 docs/docs/en/api/faststream/broker/fastapi/route/StreamRoute.md create mode 100644 docs/docs/en/api/faststream/broker/fastapi/route/make_fastapi_execution.md create mode 100644 docs/docs/en/api/faststream/broker/fastapi/router/StreamRouter.md create mode 100644 docs/docs/en/api/faststream/broker/message/StreamMessage.md create mode 100644 docs/docs/en/api/faststream/broker/message/decode_message.md create mode 100644 docs/docs/en/api/faststream/broker/message/encode_message.md create mode 100644 docs/docs/en/api/faststream/broker/message/gen_cor_id.md create mode 100644 docs/docs/en/api/faststream/broker/middlewares/BaseMiddleware.md create mode 100644 docs/docs/en/api/faststream/broker/middlewares/base/BaseMiddleware.md create mode 100644 docs/docs/en/api/faststream/broker/middlewares/logging/CriticalLogMiddleware.md create mode 100644 docs/docs/en/api/faststream/broker/proto/EndpointProto.md create mode 100644 docs/docs/en/api/faststream/broker/proto/SetupAble.md create mode 100644 docs/docs/en/api/faststream/broker/publisher/fake/FakePublisher.md create mode 100644 docs/docs/en/api/faststream/broker/publisher/proto/BasePublisherProto.md create mode 100644 docs/docs/en/api/faststream/broker/publisher/proto/ProducerProto.md create mode 100644 docs/docs/en/api/faststream/broker/publisher/proto/PublisherProto.md create mode 100644 docs/docs/en/api/faststream/broker/publisher/usecase/PublisherUsecase.md create mode 100644 docs/docs/en/api/faststream/broker/response/Response.md create mode 100644 docs/docs/en/api/faststream/broker/router/ArgsContainer.md create mode 100644 docs/docs/en/api/faststream/broker/router/BrokerRouter.md create mode 100644 docs/docs/en/api/faststream/broker/router/SubscriberRoute.md create mode 100644 docs/docs/en/api/faststream/broker/schemas/NameRequired.md create mode 100644 docs/docs/en/api/faststream/broker/subscriber/call_item/HandlerItem.md create mode 100644 docs/docs/en/api/faststream/broker/subscriber/proto/SubscriberProto.md create mode 100644 docs/docs/en/api/faststream/broker/subscriber/usecase/SubscriberUsecase.md create mode 100644 docs/docs/en/api/faststream/broker/types/PublisherMiddleware.md create mode 100644 docs/docs/en/api/faststream/broker/utils/MultiLock.md create mode 100644 docs/docs/en/api/faststream/broker/utils/default_filter.md create mode 100644 docs/docs/en/api/faststream/broker/utils/get_watcher_context.md create mode 100644 docs/docs/en/api/faststream/broker/utils/resolve_custom_func.md create mode 100644 docs/docs/en/api/faststream/broker/wrapper/call/HandlerCallWrapper.md create mode 100644 docs/docs/en/api/faststream/broker/wrapper/proto/WrapperProto.md create mode 100644 docs/docs/en/api/faststream/cli/docs/app/gen.md create mode 100644 docs/docs/en/api/faststream/cli/docs/app/serve.md create mode 100644 docs/docs/en/api/faststream/cli/main/main.md create mode 100644 docs/docs/en/api/faststream/cli/main/publish.md create mode 100644 docs/docs/en/api/faststream/cli/main/publish_message.md create mode 100644 docs/docs/en/api/faststream/cli/main/run.md create mode 100644 docs/docs/en/api/faststream/cli/main/version_callback.md create mode 100644 docs/docs/en/api/faststream/cli/supervisors/basereload/BaseReload.md create mode 100644 docs/docs/en/api/faststream/cli/supervisors/multiprocess/Multiprocess.md create mode 100644 docs/docs/en/api/faststream/cli/supervisors/utils/get_subprocess.md create mode 100644 docs/docs/en/api/faststream/cli/supervisors/utils/set_exit.md create mode 100644 docs/docs/en/api/faststream/cli/supervisors/utils/subprocess_started.md create mode 100644 docs/docs/en/api/faststream/cli/supervisors/watchfiles/ExtendedFilter.md create mode 100644 docs/docs/en/api/faststream/cli/supervisors/watchfiles/WatchReloader.md create mode 100644 docs/docs/en/api/faststream/cli/utils/imports/get_app_path.md create mode 100644 docs/docs/en/api/faststream/cli/utils/imports/import_from_string.md create mode 100644 docs/docs/en/api/faststream/cli/utils/imports/import_object.md create mode 100644 docs/docs/en/api/faststream/cli/utils/imports/try_import_app.md create mode 100644 docs/docs/en/api/faststream/cli/utils/logs/LogLevels.md create mode 100644 docs/docs/en/api/faststream/cli/utils/logs/get_log_level.md create mode 100644 docs/docs/en/api/faststream/cli/utils/logs/set_log_level.md create mode 100644 docs/docs/en/api/faststream/cli/utils/parser/parse_cli_args.md create mode 100644 docs/docs/en/api/faststream/cli/utils/parser/remove_prefix.md create mode 100644 docs/docs/en/api/faststream/confluent/KafkaBroker.md create mode 100644 docs/docs/en/api/faststream/confluent/KafkaPublisher.md create mode 100644 docs/docs/en/api/faststream/confluent/KafkaResponse.md create mode 100644 docs/docs/en/api/faststream/confluent/KafkaRoute.md create mode 100644 docs/docs/en/api/faststream/confluent/KafkaRouter.md create mode 100644 docs/docs/en/api/faststream/confluent/TestApp.md create mode 100644 docs/docs/en/api/faststream/confluent/TestKafkaBroker.md create mode 100644 docs/docs/en/api/faststream/confluent/broker/KafkaBroker.md create mode 100644 docs/docs/en/api/faststream/confluent/broker/broker/KafkaBroker.md create mode 100644 docs/docs/en/api/faststream/confluent/broker/logging/KafkaLoggingBroker.md create mode 100644 docs/docs/en/api/faststream/confluent/broker/registrator/KafkaRegistrator.md create mode 100644 docs/docs/en/api/faststream/confluent/client/AsyncConfluentConsumer.md create mode 100644 docs/docs/en/api/faststream/confluent/client/AsyncConfluentProducer.md create mode 100644 docs/docs/en/api/faststream/confluent/client/BatchBuilder.md create mode 100644 docs/docs/en/api/faststream/confluent/client/MsgToSend.md create mode 100644 docs/docs/en/api/faststream/confluent/client/TopicPartition.md create mode 100644 docs/docs/en/api/faststream/confluent/client/check_msg_error.md create mode 100644 docs/docs/en/api/faststream/confluent/client/create_topics.md create mode 100644 docs/docs/en/api/faststream/confluent/fastapi/Context.md create mode 100644 docs/docs/en/api/faststream/confluent/fastapi/KafkaRouter.md create mode 100644 docs/docs/en/api/faststream/confluent/fastapi/fastapi/KafkaRouter.md create mode 100644 docs/docs/en/api/faststream/confluent/message/ConsumerProtocol.md create mode 100644 docs/docs/en/api/faststream/confluent/message/FakeConsumer.md create mode 100644 docs/docs/en/api/faststream/confluent/message/KafkaMessage.md create mode 100644 docs/docs/en/api/faststream/confluent/opentelemetry/KafkaTelemetryMiddleware.md create mode 100644 docs/docs/en/api/faststream/confluent/opentelemetry/middleware/KafkaTelemetryMiddleware.md create mode 100644 docs/docs/en/api/faststream/confluent/opentelemetry/provider/BaseConfluentTelemetrySettingsProvider.md create mode 100644 docs/docs/en/api/faststream/confluent/opentelemetry/provider/BatchConfluentTelemetrySettingsProvider.md create mode 100644 docs/docs/en/api/faststream/confluent/opentelemetry/provider/ConfluentTelemetrySettingsProvider.md create mode 100644 docs/docs/en/api/faststream/confluent/opentelemetry/provider/telemetry_attributes_provider_factory.md create mode 100644 docs/docs/en/api/faststream/confluent/parser/AsyncConfluentParser.md create mode 100644 docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIBatchPublisher.md create mode 100644 docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIDefaultPublisher.md create mode 100644 docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIPublisher.md create mode 100644 docs/docs/en/api/faststream/confluent/publisher/producer/AsyncConfluentFastProducer.md create mode 100644 docs/docs/en/api/faststream/confluent/publisher/usecase/BatchPublisher.md create mode 100644 docs/docs/en/api/faststream/confluent/publisher/usecase/DefaultPublisher.md create mode 100644 docs/docs/en/api/faststream/confluent/publisher/usecase/LogicPublisher.md create mode 100644 docs/docs/en/api/faststream/confluent/response/KafkaResponse.md create mode 100644 docs/docs/en/api/faststream/confluent/router/KafkaPublisher.md create mode 100644 docs/docs/en/api/faststream/confluent/router/KafkaRoute.md create mode 100644 docs/docs/en/api/faststream/confluent/router/KafkaRouter.md create mode 100644 docs/docs/en/api/faststream/confluent/schemas/params/ConsumerConnectionParams.md create mode 100644 docs/docs/en/api/faststream/confluent/security/parse_security.md create mode 100644 docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPIBatchSubscriber.md create mode 100644 docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPIDefaultSubscriber.md create mode 100644 docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPISubscriber.md create mode 100644 docs/docs/en/api/faststream/confluent/subscriber/factory/create_subscriber.md create mode 100644 docs/docs/en/api/faststream/confluent/subscriber/usecase/BatchSubscriber.md create mode 100644 docs/docs/en/api/faststream/confluent/subscriber/usecase/DefaultSubscriber.md create mode 100644 docs/docs/en/api/faststream/confluent/subscriber/usecase/LogicSubscriber.md create mode 100644 docs/docs/en/api/faststream/confluent/testing/FakeProducer.md create mode 100644 docs/docs/en/api/faststream/confluent/testing/MockConfluentMessage.md create mode 100644 docs/docs/en/api/faststream/confluent/testing/TestKafkaBroker.md create mode 100644 docs/docs/en/api/faststream/confluent/testing/build_message.md create mode 100644 docs/docs/en/api/faststream/constants/ContentTypes.md create mode 100644 docs/docs/en/api/faststream/exceptions/AckMessage.md create mode 100644 docs/docs/en/api/faststream/exceptions/FastStreamException.md create mode 100644 docs/docs/en/api/faststream/exceptions/HandlerException.md create mode 100644 docs/docs/en/api/faststream/exceptions/IgnoredException.md create mode 100644 docs/docs/en/api/faststream/exceptions/NackMessage.md create mode 100644 docs/docs/en/api/faststream/exceptions/RejectMessage.md create mode 100644 docs/docs/en/api/faststream/exceptions/SetupError.md create mode 100644 docs/docs/en/api/faststream/exceptions/SkipMessage.md create mode 100644 docs/docs/en/api/faststream/exceptions/StopApplication.md create mode 100644 docs/docs/en/api/faststream/exceptions/StopConsume.md create mode 100644 docs/docs/en/api/faststream/exceptions/ValidationError.md create mode 100644 docs/docs/en/api/faststream/kafka/KafkaBroker.md create mode 100644 docs/docs/en/api/faststream/kafka/KafkaPublisher.md create mode 100644 docs/docs/en/api/faststream/kafka/KafkaResponse.md create mode 100644 docs/docs/en/api/faststream/kafka/KafkaRoute.md create mode 100644 docs/docs/en/api/faststream/kafka/KafkaRouter.md create mode 100644 docs/docs/en/api/faststream/kafka/TestApp.md create mode 100644 docs/docs/en/api/faststream/kafka/TestKafkaBroker.md create mode 100644 docs/docs/en/api/faststream/kafka/TopicPartition.md create mode 100644 docs/docs/en/api/faststream/kafka/broker/KafkaBroker.md create mode 100644 docs/docs/en/api/faststream/kafka/broker/broker/KafkaBroker.md create mode 100644 docs/docs/en/api/faststream/kafka/broker/logging/KafkaLoggingBroker.md create mode 100644 docs/docs/en/api/faststream/kafka/broker/registrator/KafkaRegistrator.md create mode 100644 docs/docs/en/api/faststream/kafka/fastapi/Context.md create mode 100644 docs/docs/en/api/faststream/kafka/fastapi/KafkaRouter.md create mode 100644 docs/docs/en/api/faststream/kafka/fastapi/fastapi/KafkaRouter.md create mode 100644 docs/docs/en/api/faststream/kafka/message/ConsumerProtocol.md create mode 100644 docs/docs/en/api/faststream/kafka/message/FakeConsumer.md create mode 100644 docs/docs/en/api/faststream/kafka/message/KafkaMessage.md create mode 100644 docs/docs/en/api/faststream/kafka/opentelemetry/KafkaTelemetryMiddleware.md create mode 100644 docs/docs/en/api/faststream/kafka/opentelemetry/middleware/KafkaTelemetryMiddleware.md create mode 100644 docs/docs/en/api/faststream/kafka/opentelemetry/provider/BaseKafkaTelemetrySettingsProvider.md create mode 100644 docs/docs/en/api/faststream/kafka/opentelemetry/provider/BatchKafkaTelemetrySettingsProvider.md create mode 100644 docs/docs/en/api/faststream/kafka/opentelemetry/provider/KafkaTelemetrySettingsProvider.md create mode 100644 docs/docs/en/api/faststream/kafka/opentelemetry/provider/telemetry_attributes_provider_factory.md create mode 100644 docs/docs/en/api/faststream/kafka/parser/AioKafkaParser.md create mode 100644 docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIBatchPublisher.md create mode 100644 docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIDefaultPublisher.md create mode 100644 docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIPublisher.md create mode 100644 docs/docs/en/api/faststream/kafka/publisher/producer/AioKafkaFastProducer.md create mode 100644 docs/docs/en/api/faststream/kafka/publisher/usecase/BatchPublisher.md create mode 100644 docs/docs/en/api/faststream/kafka/publisher/usecase/DefaultPublisher.md create mode 100644 docs/docs/en/api/faststream/kafka/publisher/usecase/LogicPublisher.md create mode 100644 docs/docs/en/api/faststream/kafka/response/KafkaResponse.md create mode 100644 docs/docs/en/api/faststream/kafka/router/KafkaPublisher.md create mode 100644 docs/docs/en/api/faststream/kafka/router/KafkaRoute.md create mode 100644 docs/docs/en/api/faststream/kafka/router/KafkaRouter.md create mode 100644 docs/docs/en/api/faststream/kafka/schemas/params/ConsumerConnectionParams.md create mode 100644 docs/docs/en/api/faststream/kafka/security/parse_security.md create mode 100644 docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPIBatchSubscriber.md create mode 100644 docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPIDefaultSubscriber.md create mode 100644 docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPISubscriber.md create mode 100644 docs/docs/en/api/faststream/kafka/subscriber/factory/create_subscriber.md create mode 100644 docs/docs/en/api/faststream/kafka/subscriber/usecase/BatchSubscriber.md create mode 100644 docs/docs/en/api/faststream/kafka/subscriber/usecase/DefaultSubscriber.md create mode 100644 docs/docs/en/api/faststream/kafka/subscriber/usecase/LogicSubscriber.md create mode 100644 docs/docs/en/api/faststream/kafka/testing/FakeProducer.md create mode 100644 docs/docs/en/api/faststream/kafka/testing/TestKafkaBroker.md create mode 100644 docs/docs/en/api/faststream/kafka/testing/build_message.md create mode 100644 docs/docs/en/api/faststream/log/formatter/ColourizedFormatter.md create mode 100644 docs/docs/en/api/faststream/log/formatter/expand_log_field.md create mode 100644 docs/docs/en/api/faststream/log/logging/ExtendedFilter.md create mode 100644 docs/docs/en/api/faststream/log/logging/get_broker_logger.md create mode 100644 docs/docs/en/api/faststream/log/logging/set_logger_fmt.md create mode 100644 docs/docs/en/api/faststream/nats/AckPolicy.md create mode 100644 docs/docs/en/api/faststream/nats/ConsumerConfig.md create mode 100644 docs/docs/en/api/faststream/nats/DeliverPolicy.md create mode 100644 docs/docs/en/api/faststream/nats/DiscardPolicy.md create mode 100644 docs/docs/en/api/faststream/nats/ExternalStream.md create mode 100644 docs/docs/en/api/faststream/nats/JStream.md create mode 100644 docs/docs/en/api/faststream/nats/KvWatch.md create mode 100644 docs/docs/en/api/faststream/nats/NatsBroker.md create mode 100644 docs/docs/en/api/faststream/nats/NatsPublisher.md create mode 100644 docs/docs/en/api/faststream/nats/NatsResponse.md create mode 100644 docs/docs/en/api/faststream/nats/NatsRoute.md create mode 100644 docs/docs/en/api/faststream/nats/NatsRouter.md create mode 100644 docs/docs/en/api/faststream/nats/ObjWatch.md create mode 100644 docs/docs/en/api/faststream/nats/Placement.md create mode 100644 docs/docs/en/api/faststream/nats/PullSub.md create mode 100644 docs/docs/en/api/faststream/nats/RePublish.md create mode 100644 docs/docs/en/api/faststream/nats/ReplayPolicy.md create mode 100644 docs/docs/en/api/faststream/nats/RetentionPolicy.md create mode 100644 docs/docs/en/api/faststream/nats/StorageType.md create mode 100644 docs/docs/en/api/faststream/nats/StreamConfig.md create mode 100644 docs/docs/en/api/faststream/nats/StreamSource.md create mode 100644 docs/docs/en/api/faststream/nats/TestApp.md create mode 100644 docs/docs/en/api/faststream/nats/TestNatsBroker.md create mode 100644 docs/docs/en/api/faststream/nats/broker/NatsBroker.md create mode 100644 docs/docs/en/api/faststream/nats/broker/broker/NatsBroker.md create mode 100644 docs/docs/en/api/faststream/nats/broker/logging/NatsLoggingBroker.md create mode 100644 docs/docs/en/api/faststream/nats/broker/registrator/NatsRegistrator.md create mode 100644 docs/docs/en/api/faststream/nats/fastapi/Context.md create mode 100644 docs/docs/en/api/faststream/nats/fastapi/NatsRouter.md create mode 100644 docs/docs/en/api/faststream/nats/fastapi/fastapi/NatsRouter.md create mode 100644 docs/docs/en/api/faststream/nats/helpers/KVBucketDeclarer.md create mode 100644 docs/docs/en/api/faststream/nats/helpers/OSBucketDeclarer.md create mode 100644 docs/docs/en/api/faststream/nats/helpers/StreamBuilder.md create mode 100644 docs/docs/en/api/faststream/nats/helpers/bucket_declarer/KVBucketDeclarer.md create mode 100644 docs/docs/en/api/faststream/nats/helpers/obj_storage_declarer/OSBucketDeclarer.md create mode 100644 docs/docs/en/api/faststream/nats/helpers/object_builder/StreamBuilder.md create mode 100644 docs/docs/en/api/faststream/nats/message/NatsBatchMessage.md create mode 100644 docs/docs/en/api/faststream/nats/message/NatsKvMessage.md create mode 100644 docs/docs/en/api/faststream/nats/message/NatsMessage.md create mode 100644 docs/docs/en/api/faststream/nats/message/NatsObjMessage.md create mode 100644 docs/docs/en/api/faststream/nats/opentelemetry/NatsTelemetryMiddleware.md create mode 100644 docs/docs/en/api/faststream/nats/opentelemetry/middleware/NatsTelemetryMiddleware.md create mode 100644 docs/docs/en/api/faststream/nats/opentelemetry/provider/BaseNatsTelemetrySettingsProvider.md create mode 100644 docs/docs/en/api/faststream/nats/opentelemetry/provider/NatsBatchTelemetrySettingsProvider.md create mode 100644 docs/docs/en/api/faststream/nats/opentelemetry/provider/NatsTelemetrySettingsProvider.md create mode 100644 docs/docs/en/api/faststream/nats/opentelemetry/provider/telemetry_attributes_provider_factory.md create mode 100644 docs/docs/en/api/faststream/nats/parser/BatchParser.md create mode 100644 docs/docs/en/api/faststream/nats/parser/JsParser.md create mode 100644 docs/docs/en/api/faststream/nats/parser/KvParser.md create mode 100644 docs/docs/en/api/faststream/nats/parser/NatsBaseParser.md create mode 100644 docs/docs/en/api/faststream/nats/parser/NatsParser.md create mode 100644 docs/docs/en/api/faststream/nats/parser/ObjParser.md create mode 100644 docs/docs/en/api/faststream/nats/publisher/asyncapi/AsyncAPIPublisher.md create mode 100644 docs/docs/en/api/faststream/nats/publisher/producer/NatsFastProducer.md create mode 100644 docs/docs/en/api/faststream/nats/publisher/producer/NatsJSFastProducer.md create mode 100644 docs/docs/en/api/faststream/nats/publisher/usecase/LogicPublisher.md create mode 100644 docs/docs/en/api/faststream/nats/response/NatsResponse.md create mode 100644 docs/docs/en/api/faststream/nats/router/NatsPublisher.md create mode 100644 docs/docs/en/api/faststream/nats/router/NatsRoute.md create mode 100644 docs/docs/en/api/faststream/nats/router/NatsRouter.md create mode 100644 docs/docs/en/api/faststream/nats/schemas/JStream.md create mode 100644 docs/docs/en/api/faststream/nats/schemas/KvWatch.md create mode 100644 docs/docs/en/api/faststream/nats/schemas/ObjWatch.md create mode 100644 docs/docs/en/api/faststream/nats/schemas/PullSub.md create mode 100644 docs/docs/en/api/faststream/nats/schemas/js_stream/JStream.md create mode 100644 docs/docs/en/api/faststream/nats/schemas/js_stream/compile_nats_wildcard.md create mode 100644 docs/docs/en/api/faststream/nats/schemas/js_stream/is_subject_match_wildcard.md create mode 100644 docs/docs/en/api/faststream/nats/schemas/kv_watch/KvWatch.md create mode 100644 docs/docs/en/api/faststream/nats/schemas/obj_watch/ObjWatch.md create mode 100644 docs/docs/en/api/faststream/nats/schemas/pull_sub/PullSub.md create mode 100644 docs/docs/en/api/faststream/nats/security/parse_security.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIBatchPullStreamSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentCoreSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentPullStreamSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentPushStreamSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPICoreSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIKeyValueWatchSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIObjStoreWatchSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIPullStreamSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIStreamSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPISubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/factory/create_subscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/subscription/UnsubscribeAdapter.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/subscription/Unsubscriptable.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/subscription/Watchable.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/BatchPullStreamSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentCoreSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentPullStreamSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentPushStreamSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/CoreSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/KeyValueWatchSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/LogicSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/ObjStoreWatchSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/PullStreamSubscriber.md create mode 100644 docs/docs/en/api/faststream/nats/subscriber/usecase/PushStreamSubscription.md create mode 100644 docs/docs/en/api/faststream/nats/testing/FakeProducer.md create mode 100644 docs/docs/en/api/faststream/nats/testing/PatchedMessage.md create mode 100644 docs/docs/en/api/faststream/nats/testing/TestNatsBroker.md create mode 100644 docs/docs/en/api/faststream/nats/testing/build_message.md create mode 100644 docs/docs/en/api/faststream/opentelemetry/TelemetryMiddleware.md create mode 100644 docs/docs/en/api/faststream/opentelemetry/TelemetrySettingsProvider.md create mode 100644 docs/docs/en/api/faststream/opentelemetry/consts/MessageAction.md create mode 100644 docs/docs/en/api/faststream/opentelemetry/middleware/BaseTelemetryMiddleware.md create mode 100644 docs/docs/en/api/faststream/opentelemetry/middleware/TelemetryMiddleware.md create mode 100644 docs/docs/en/api/faststream/opentelemetry/provider/TelemetrySettingsProvider.md create mode 100644 docs/docs/en/api/faststream/rabbit/ExchangeType.md create mode 100644 docs/docs/en/api/faststream/rabbit/RabbitBroker.md create mode 100644 docs/docs/en/api/faststream/rabbit/RabbitExchange.md create mode 100644 docs/docs/en/api/faststream/rabbit/RabbitPublisher.md create mode 100644 docs/docs/en/api/faststream/rabbit/RabbitQueue.md create mode 100644 docs/docs/en/api/faststream/rabbit/RabbitResponse.md create mode 100644 docs/docs/en/api/faststream/rabbit/RabbitRoute.md create mode 100644 docs/docs/en/api/faststream/rabbit/RabbitRouter.md create mode 100644 docs/docs/en/api/faststream/rabbit/ReplyConfig.md create mode 100644 docs/docs/en/api/faststream/rabbit/TestApp.md create mode 100644 docs/docs/en/api/faststream/rabbit/TestRabbitBroker.md create mode 100644 docs/docs/en/api/faststream/rabbit/broker/RabbitBroker.md create mode 100644 docs/docs/en/api/faststream/rabbit/broker/broker/RabbitBroker.md create mode 100644 docs/docs/en/api/faststream/rabbit/broker/logging/RabbitLoggingBroker.md create mode 100644 docs/docs/en/api/faststream/rabbit/broker/registrator/RabbitRegistrator.md create mode 100644 docs/docs/en/api/faststream/rabbit/fastapi/Context.md create mode 100644 docs/docs/en/api/faststream/rabbit/fastapi/RabbitRouter.md create mode 100644 docs/docs/en/api/faststream/rabbit/fastapi/router/RabbitRouter.md create mode 100644 docs/docs/en/api/faststream/rabbit/message/RabbitMessage.md create mode 100644 docs/docs/en/api/faststream/rabbit/opentelemetry/RabbitTelemetryMiddleware.md create mode 100644 docs/docs/en/api/faststream/rabbit/opentelemetry/middleware/RabbitTelemetryMiddleware.md create mode 100644 docs/docs/en/api/faststream/rabbit/opentelemetry/provider/RabbitTelemetrySettingsProvider.md create mode 100644 docs/docs/en/api/faststream/rabbit/parser/AioPikaParser.md create mode 100644 docs/docs/en/api/faststream/rabbit/publisher/asyncapi/AsyncAPIPublisher.md create mode 100644 docs/docs/en/api/faststream/rabbit/publisher/producer/AioPikaFastProducer.md create mode 100644 docs/docs/en/api/faststream/rabbit/publisher/usecase/LogicPublisher.md create mode 100644 docs/docs/en/api/faststream/rabbit/publisher/usecase/PublishKwargs.md create mode 100644 docs/docs/en/api/faststream/rabbit/response/RabbitResponse.md create mode 100644 docs/docs/en/api/faststream/rabbit/router/RabbitPublisher.md create mode 100644 docs/docs/en/api/faststream/rabbit/router/RabbitRoute.md create mode 100644 docs/docs/en/api/faststream/rabbit/router/RabbitRouter.md create mode 100644 docs/docs/en/api/faststream/rabbit/schemas/BaseRMQInformation.md create mode 100644 docs/docs/en/api/faststream/rabbit/schemas/ExchangeType.md create mode 100644 docs/docs/en/api/faststream/rabbit/schemas/RabbitExchange.md create mode 100644 docs/docs/en/api/faststream/rabbit/schemas/RabbitQueue.md create mode 100644 docs/docs/en/api/faststream/rabbit/schemas/ReplyConfig.md create mode 100644 docs/docs/en/api/faststream/rabbit/schemas/constants/ExchangeType.md create mode 100644 docs/docs/en/api/faststream/rabbit/schemas/exchange/RabbitExchange.md create mode 100644 docs/docs/en/api/faststream/rabbit/schemas/proto/BaseRMQInformation.md create mode 100644 docs/docs/en/api/faststream/rabbit/schemas/queue/RabbitQueue.md create mode 100644 docs/docs/en/api/faststream/rabbit/schemas/reply/ReplyConfig.md create mode 100644 docs/docs/en/api/faststream/rabbit/security/parse_security.md create mode 100644 docs/docs/en/api/faststream/rabbit/subscriber/asyncapi/AsyncAPISubscriber.md create mode 100644 docs/docs/en/api/faststream/rabbit/subscriber/factory/create_subscriber.md create mode 100644 docs/docs/en/api/faststream/rabbit/subscriber/usecase/LogicSubscriber.md create mode 100644 docs/docs/en/api/faststream/rabbit/testing/FakeProducer.md create mode 100644 docs/docs/en/api/faststream/rabbit/testing/PatchedMessage.md create mode 100644 docs/docs/en/api/faststream/rabbit/testing/TestRabbitBroker.md create mode 100644 docs/docs/en/api/faststream/rabbit/testing/apply_pattern.md create mode 100644 docs/docs/en/api/faststream/rabbit/testing/build_message.md create mode 100644 docs/docs/en/api/faststream/rabbit/utils/RabbitDeclarer.md create mode 100644 docs/docs/en/api/faststream/rabbit/utils/build_url.md create mode 100644 docs/docs/en/api/faststream/rabbit/utils/is_routing_exchange.md create mode 100644 docs/docs/en/api/faststream/redis/ListSub.md create mode 100644 docs/docs/en/api/faststream/redis/PubSub.md create mode 100644 docs/docs/en/api/faststream/redis/RedisBroker.md create mode 100644 docs/docs/en/api/faststream/redis/RedisPublisher.md create mode 100644 docs/docs/en/api/faststream/redis/RedisResponse.md create mode 100644 docs/docs/en/api/faststream/redis/RedisRoute.md create mode 100644 docs/docs/en/api/faststream/redis/RedisRouter.md create mode 100644 docs/docs/en/api/faststream/redis/StreamSub.md create mode 100644 docs/docs/en/api/faststream/redis/TestApp.md create mode 100644 docs/docs/en/api/faststream/redis/TestRedisBroker.md create mode 100644 docs/docs/en/api/faststream/redis/broker/broker/RedisBroker.md create mode 100644 docs/docs/en/api/faststream/redis/broker/logging/RedisLoggingBroker.md create mode 100644 docs/docs/en/api/faststream/redis/broker/registrator/RedisRegistrator.md create mode 100644 docs/docs/en/api/faststream/redis/fastapi/Context.md create mode 100644 docs/docs/en/api/faststream/redis/fastapi/RedisRouter.md create mode 100644 docs/docs/en/api/faststream/redis/fastapi/fastapi/RedisRouter.md create mode 100644 docs/docs/en/api/faststream/redis/message/BatchListMessage.md create mode 100644 docs/docs/en/api/faststream/redis/message/BatchStreamMessage.md create mode 100644 docs/docs/en/api/faststream/redis/message/DefaultListMessage.md create mode 100644 docs/docs/en/api/faststream/redis/message/DefaultStreamMessage.md create mode 100644 docs/docs/en/api/faststream/redis/message/ListMessage.md create mode 100644 docs/docs/en/api/faststream/redis/message/PubSubMessage.md create mode 100644 docs/docs/en/api/faststream/redis/message/RedisBatchListMessage.md create mode 100644 docs/docs/en/api/faststream/redis/message/RedisBatchStreamMessage.md create mode 100644 docs/docs/en/api/faststream/redis/message/RedisListMessage.md create mode 100644 docs/docs/en/api/faststream/redis/message/RedisMessage.md create mode 100644 docs/docs/en/api/faststream/redis/message/RedisStreamMessage.md create mode 100644 docs/docs/en/api/faststream/redis/message/StreamMessage.md create mode 100644 docs/docs/en/api/faststream/redis/message/UnifyRedisDict.md create mode 100644 docs/docs/en/api/faststream/redis/message/UnifyRedisMessage.md create mode 100644 docs/docs/en/api/faststream/redis/opentelemetry/RedisTelemetryMiddleware.md create mode 100644 docs/docs/en/api/faststream/redis/opentelemetry/middleware/RedisTelemetryMiddleware.md create mode 100644 docs/docs/en/api/faststream/redis/opentelemetry/provider/RedisTelemetrySettingsProvider.md create mode 100644 docs/docs/en/api/faststream/redis/parser/RawMessage.md create mode 100644 docs/docs/en/api/faststream/redis/parser/RedisBatchListParser.md create mode 100644 docs/docs/en/api/faststream/redis/parser/RedisBatchStreamParser.md create mode 100644 docs/docs/en/api/faststream/redis/parser/RedisListParser.md create mode 100644 docs/docs/en/api/faststream/redis/parser/RedisPubSubParser.md create mode 100644 docs/docs/en/api/faststream/redis/parser/RedisStreamParser.md create mode 100644 docs/docs/en/api/faststream/redis/parser/SimpleParser.md create mode 100644 docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIChannelPublisher.md create mode 100644 docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIListBatchPublisher.md create mode 100644 docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIListPublisher.md create mode 100644 docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIPublisher.md create mode 100644 docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIStreamPublisher.md create mode 100644 docs/docs/en/api/faststream/redis/publisher/producer/RedisFastProducer.md create mode 100644 docs/docs/en/api/faststream/redis/publisher/usecase/ChannelPublisher.md create mode 100644 docs/docs/en/api/faststream/redis/publisher/usecase/ListBatchPublisher.md create mode 100644 docs/docs/en/api/faststream/redis/publisher/usecase/ListPublisher.md create mode 100644 docs/docs/en/api/faststream/redis/publisher/usecase/LogicPublisher.md create mode 100644 docs/docs/en/api/faststream/redis/publisher/usecase/StreamPublisher.md create mode 100644 docs/docs/en/api/faststream/redis/response/RedisResponse.md create mode 100644 docs/docs/en/api/faststream/redis/router/RedisPublisher.md create mode 100644 docs/docs/en/api/faststream/redis/router/RedisRoute.md create mode 100644 docs/docs/en/api/faststream/redis/router/RedisRouter.md create mode 100644 docs/docs/en/api/faststream/redis/schemas/ListSub.md create mode 100644 docs/docs/en/api/faststream/redis/schemas/PubSub.md create mode 100644 docs/docs/en/api/faststream/redis/schemas/StreamSub.md create mode 100644 docs/docs/en/api/faststream/redis/schemas/list_sub/ListSub.md create mode 100644 docs/docs/en/api/faststream/redis/schemas/proto/RedisAsyncAPIProtocol.md create mode 100644 docs/docs/en/api/faststream/redis/schemas/proto/validate_options.md create mode 100644 docs/docs/en/api/faststream/redis/schemas/pub_sub/PubSub.md create mode 100644 docs/docs/en/api/faststream/redis/schemas/stream_sub/StreamSub.md create mode 100644 docs/docs/en/api/faststream/redis/security/parse_security.md create mode 100644 docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIChannelSubscriber.md create mode 100644 docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIListBatchSubscriber.md create mode 100644 docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIListSubscriber.md create mode 100644 docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIStreamBatchSubscriber.md create mode 100644 docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIStreamSubscriber.md create mode 100644 docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPISubscriber.md create mode 100644 docs/docs/en/api/faststream/redis/subscriber/factory/create_subscriber.md create mode 100644 docs/docs/en/api/faststream/redis/subscriber/usecase/BatchListSubscriber.md create mode 100644 docs/docs/en/api/faststream/redis/subscriber/usecase/BatchStreamSubscriber.md create mode 100644 docs/docs/en/api/faststream/redis/subscriber/usecase/ChannelSubscriber.md create mode 100644 docs/docs/en/api/faststream/redis/subscriber/usecase/ListSubscriber.md create mode 100644 docs/docs/en/api/faststream/redis/subscriber/usecase/LogicSubscriber.md create mode 100644 docs/docs/en/api/faststream/redis/subscriber/usecase/StreamSubscriber.md create mode 100644 docs/docs/en/api/faststream/redis/testing/FakeProducer.md create mode 100644 docs/docs/en/api/faststream/redis/testing/TestRedisBroker.md create mode 100644 docs/docs/en/api/faststream/redis/testing/build_message.md create mode 100644 docs/docs/en/api/faststream/security/BaseSecurity.md create mode 100644 docs/docs/en/api/faststream/security/SASLPlaintext.md create mode 100644 docs/docs/en/api/faststream/security/SASLScram256.md create mode 100644 docs/docs/en/api/faststream/security/SASLScram512.md create mode 100644 docs/docs/en/api/faststream/testing/TestApp.md create mode 100644 docs/docs/en/api/faststream/testing/app/TestApp.md create mode 100644 docs/docs/en/api/faststream/testing/broker/TestBroker.md create mode 100644 docs/docs/en/api/faststream/testing/broker/call_handler.md create mode 100644 docs/docs/en/api/faststream/testing/broker/patch_broker_calls.md create mode 100644 docs/docs/en/api/faststream/types/LoggerProto.md create mode 100644 docs/docs/en/api/faststream/types/StandardDataclass.md create mode 100644 docs/docs/en/api/faststream/utils/Context.md create mode 100644 docs/docs/en/api/faststream/utils/ContextRepo.md create mode 100644 docs/docs/en/api/faststream/utils/Depends.md create mode 100644 docs/docs/en/api/faststream/utils/Header.md create mode 100644 docs/docs/en/api/faststream/utils/NoCast.md create mode 100644 docs/docs/en/api/faststream/utils/Path.md create mode 100644 docs/docs/en/api/faststream/utils/apply_types.md create mode 100644 docs/docs/en/api/faststream/utils/ast/find_ast_node.md create mode 100644 docs/docs/en/api/faststream/utils/ast/find_withitems.md create mode 100644 docs/docs/en/api/faststream/utils/ast/get_withitem_calls.md create mode 100644 docs/docs/en/api/faststream/utils/ast/is_contains_context_name.md create mode 100644 docs/docs/en/api/faststream/utils/classes/Singleton.md create mode 100644 docs/docs/en/api/faststream/utils/context/Context.md create mode 100644 docs/docs/en/api/faststream/utils/context/ContextRepo.md create mode 100644 docs/docs/en/api/faststream/utils/context/Header.md create mode 100644 docs/docs/en/api/faststream/utils/context/Path.md create mode 100644 docs/docs/en/api/faststream/utils/context/builders/Context.md create mode 100644 docs/docs/en/api/faststream/utils/context/builders/Header.md create mode 100644 docs/docs/en/api/faststream/utils/context/builders/Path.md create mode 100644 docs/docs/en/api/faststream/utils/context/repository/ContextRepo.md create mode 100644 docs/docs/en/api/faststream/utils/context/types/Context.md create mode 100644 docs/docs/en/api/faststream/utils/context/types/resolve_context_by_name.md create mode 100644 docs/docs/en/api/faststream/utils/data/filter_by_dict.md create mode 100644 docs/docs/en/api/faststream/utils/functions/call_or_await.md create mode 100644 docs/docs/en/api/faststream/utils/functions/drop_response_type.md create mode 100644 docs/docs/en/api/faststream/utils/functions/fake_context.md create mode 100644 docs/docs/en/api/faststream/utils/functions/sync_fake_context.md create mode 100644 docs/docs/en/api/faststream/utils/functions/timeout_scope.md create mode 100644 docs/docs/en/api/faststream/utils/functions/to_async.md create mode 100644 docs/docs/en/api/faststream/utils/no_cast/NoCast.md create mode 100644 docs/docs/en/api/faststream/utils/path/compile_path.md diff --git a/docs/docs/en/api/faststream/BaseMiddleware.md b/docs/docs/en/api/faststream/BaseMiddleware.md new file mode 100644 index 0000000000..21145bf983 --- /dev/null +++ b/docs/docs/en/api/faststream/BaseMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.BaseMiddleware diff --git a/docs/docs/en/api/faststream/Context.md b/docs/docs/en/api/faststream/Context.md new file mode 100644 index 0000000000..c6400b1e56 --- /dev/null +++ b/docs/docs/en/api/faststream/Context.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.Context diff --git a/docs/docs/en/api/faststream/Depends.md b/docs/docs/en/api/faststream/Depends.md new file mode 100644 index 0000000000..c0704687e8 --- /dev/null +++ b/docs/docs/en/api/faststream/Depends.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: fast_depends.use.Depends diff --git a/docs/docs/en/api/faststream/FastStream.md b/docs/docs/en/api/faststream/FastStream.md new file mode 100644 index 0000000000..8d79ba3921 --- /dev/null +++ b/docs/docs/en/api/faststream/FastStream.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.FastStream diff --git a/docs/docs/en/api/faststream/Header.md b/docs/docs/en/api/faststream/Header.md new file mode 100644 index 0000000000..98bdb592a7 --- /dev/null +++ b/docs/docs/en/api/faststream/Header.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.Header diff --git a/docs/docs/en/api/faststream/Path.md b/docs/docs/en/api/faststream/Path.md new file mode 100644 index 0000000000..7716f47c23 --- /dev/null +++ b/docs/docs/en/api/faststream/Path.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.Path diff --git a/docs/docs/en/api/faststream/Response.md b/docs/docs/en/api/faststream/Response.md new file mode 100644 index 0000000000..3475e3f584 --- /dev/null +++ b/docs/docs/en/api/faststream/Response.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.Response diff --git a/docs/docs/en/api/faststream/TestApp.md b/docs/docs/en/api/faststream/TestApp.md new file mode 100644 index 0000000000..2301790c21 --- /dev/null +++ b/docs/docs/en/api/faststream/TestApp.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.TestApp diff --git a/docs/docs/en/api/faststream/app/FastStream.md b/docs/docs/en/api/faststream/app/FastStream.md new file mode 100644 index 0000000000..24235253c2 --- /dev/null +++ b/docs/docs/en/api/faststream/app/FastStream.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.app.FastStream diff --git a/docs/docs/en/api/faststream/apply_types.md b/docs/docs/en/api/faststream/apply_types.md new file mode 100644 index 0000000000..9dc4603bd2 --- /dev/null +++ b/docs/docs/en/api/faststream/apply_types.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: fast_depends.use.inject diff --git a/docs/docs/en/api/faststream/asyncapi/abc/AsyncAPIOperation.md b/docs/docs/en/api/faststream/asyncapi/abc/AsyncAPIOperation.md new file mode 100644 index 0000000000..1e80c37541 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/abc/AsyncAPIOperation.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.abc.AsyncAPIOperation diff --git a/docs/docs/en/api/faststream/asyncapi/generate/get_app_schema.md b/docs/docs/en/api/faststream/asyncapi/generate/get_app_schema.md new file mode 100644 index 0000000000..07475ef5a8 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/generate/get_app_schema.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.generate.get_app_schema diff --git a/docs/docs/en/api/faststream/asyncapi/generate/get_broker_channels.md b/docs/docs/en/api/faststream/asyncapi/generate/get_broker_channels.md new file mode 100644 index 0000000000..f5788bae0b --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/generate/get_broker_channels.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.generate.get_broker_channels diff --git a/docs/docs/en/api/faststream/asyncapi/generate/get_broker_server.md b/docs/docs/en/api/faststream/asyncapi/generate/get_broker_server.md new file mode 100644 index 0000000000..5f652d5b59 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/generate/get_broker_server.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.generate.get_broker_server diff --git a/docs/docs/en/api/faststream/asyncapi/get_app_schema.md b/docs/docs/en/api/faststream/asyncapi/get_app_schema.md new file mode 100644 index 0000000000..03d7e4466b --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/get_app_schema.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.get_app_schema diff --git a/docs/docs/en/api/faststream/asyncapi/get_asyncapi_html.md b/docs/docs/en/api/faststream/asyncapi/get_asyncapi_html.md new file mode 100644 index 0000000000..1ed4ce5500 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/get_asyncapi_html.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.get_asyncapi_html diff --git a/docs/docs/en/api/faststream/asyncapi/message/get_model_schema.md b/docs/docs/en/api/faststream/asyncapi/message/get_model_schema.md new file mode 100644 index 0000000000..0099721324 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/message/get_model_schema.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.message.get_model_schema diff --git a/docs/docs/en/api/faststream/asyncapi/message/get_response_schema.md b/docs/docs/en/api/faststream/asyncapi/message/get_response_schema.md new file mode 100644 index 0000000000..e297370d01 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/message/get_response_schema.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.message.get_response_schema diff --git a/docs/docs/en/api/faststream/asyncapi/message/parse_handler_params.md b/docs/docs/en/api/faststream/asyncapi/message/parse_handler_params.md new file mode 100644 index 0000000000..ffaf1cf7dc --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/message/parse_handler_params.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.message.parse_handler_params diff --git a/docs/docs/en/api/faststream/asyncapi/proto/AsyncAPIProto.md b/docs/docs/en/api/faststream/asyncapi/proto/AsyncAPIProto.md new file mode 100644 index 0000000000..6905c2d82f --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/proto/AsyncAPIProto.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.proto.AsyncAPIProto diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Channel.md b/docs/docs/en/api/faststream/asyncapi/schema/Channel.md new file mode 100644 index 0000000000..4d3b7e83a3 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/Channel.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.Channel diff --git a/docs/docs/en/api/faststream/asyncapi/schema/ChannelBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/ChannelBinding.md new file mode 100644 index 0000000000..4aaf57e584 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/ChannelBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.ChannelBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Components.md b/docs/docs/en/api/faststream/asyncapi/schema/Components.md new file mode 100644 index 0000000000..9dc785c35e --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/Components.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.Components diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Contact.md b/docs/docs/en/api/faststream/asyncapi/schema/Contact.md new file mode 100644 index 0000000000..ded05c314d --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/Contact.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.Contact diff --git a/docs/docs/en/api/faststream/asyncapi/schema/ContactDict.md b/docs/docs/en/api/faststream/asyncapi/schema/ContactDict.md new file mode 100644 index 0000000000..4170e564f6 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/ContactDict.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.ContactDict diff --git a/docs/docs/en/api/faststream/asyncapi/schema/CorrelationId.md b/docs/docs/en/api/faststream/asyncapi/schema/CorrelationId.md new file mode 100644 index 0000000000..cd12cdbba6 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/CorrelationId.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.CorrelationId diff --git a/docs/docs/en/api/faststream/asyncapi/schema/ExternalDocs.md b/docs/docs/en/api/faststream/asyncapi/schema/ExternalDocs.md new file mode 100644 index 0000000000..7899164431 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/ExternalDocs.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.ExternalDocs diff --git a/docs/docs/en/api/faststream/asyncapi/schema/ExternalDocsDict.md b/docs/docs/en/api/faststream/asyncapi/schema/ExternalDocsDict.md new file mode 100644 index 0000000000..d80a12b10f --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/ExternalDocsDict.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.ExternalDocsDict diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Info.md b/docs/docs/en/api/faststream/asyncapi/schema/Info.md new file mode 100644 index 0000000000..62eb9e4832 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/Info.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.Info diff --git a/docs/docs/en/api/faststream/asyncapi/schema/License.md b/docs/docs/en/api/faststream/asyncapi/schema/License.md new file mode 100644 index 0000000000..adb11654e4 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/License.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.License diff --git a/docs/docs/en/api/faststream/asyncapi/schema/LicenseDict.md b/docs/docs/en/api/faststream/asyncapi/schema/LicenseDict.md new file mode 100644 index 0000000000..7c200c4ac7 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/LicenseDict.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.LicenseDict diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Message.md b/docs/docs/en/api/faststream/asyncapi/schema/Message.md new file mode 100644 index 0000000000..f04adf939f --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/Message.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.Message diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Operation.md b/docs/docs/en/api/faststream/asyncapi/schema/Operation.md new file mode 100644 index 0000000000..2d43f05b89 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/Operation.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.Operation diff --git a/docs/docs/en/api/faststream/asyncapi/schema/OperationBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/OperationBinding.md new file mode 100644 index 0000000000..0dc2099b66 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/OperationBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.OperationBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Reference.md b/docs/docs/en/api/faststream/asyncapi/schema/Reference.md new file mode 100644 index 0000000000..778b70e548 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/Reference.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.Reference diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Schema.md b/docs/docs/en/api/faststream/asyncapi/schema/Schema.md new file mode 100644 index 0000000000..a496f56769 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/Schema.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.Schema diff --git a/docs/docs/en/api/faststream/asyncapi/schema/SecuritySchemaComponent.md b/docs/docs/en/api/faststream/asyncapi/schema/SecuritySchemaComponent.md new file mode 100644 index 0000000000..61c0a83bf7 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/SecuritySchemaComponent.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.SecuritySchemaComponent diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Server.md b/docs/docs/en/api/faststream/asyncapi/schema/Server.md new file mode 100644 index 0000000000..e0d028314e --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/Server.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.Server diff --git a/docs/docs/en/api/faststream/asyncapi/schema/ServerBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/ServerBinding.md new file mode 100644 index 0000000000..8dcaba6701 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/ServerBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.ServerBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/Tag.md b/docs/docs/en/api/faststream/asyncapi/schema/Tag.md new file mode 100644 index 0000000000..0c32584f58 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/Tag.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.Tag diff --git a/docs/docs/en/api/faststream/asyncapi/schema/TagDict.md b/docs/docs/en/api/faststream/asyncapi/schema/TagDict.md new file mode 100644 index 0000000000..ebb68351e0 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/TagDict.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.TagDict diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/ChannelBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/ChannelBinding.md new file mode 100644 index 0000000000..51a5ed6586 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/ChannelBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.ChannelBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/OperationBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/OperationBinding.md new file mode 100644 index 0000000000..37a28843be --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/OperationBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.OperationBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/ServerBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/ServerBinding.md new file mode 100644 index 0000000000..d91efbfe52 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/ServerBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.ServerBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/ChannelBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/ChannelBinding.md new file mode 100644 index 0000000000..6c5c546126 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/ChannelBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.amqp.ChannelBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/Exchange.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/Exchange.md new file mode 100644 index 0000000000..b81a881827 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/Exchange.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.amqp.Exchange diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/OperationBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/OperationBinding.md new file mode 100644 index 0000000000..5b9b34dd78 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/OperationBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.amqp.OperationBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/Queue.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/Queue.md new file mode 100644 index 0000000000..395a7aedb0 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/Queue.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.amqp.Queue diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/ServerBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/ServerBinding.md new file mode 100644 index 0000000000..0daa6510ec --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/amqp/ServerBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.amqp.ServerBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/ChannelBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/ChannelBinding.md new file mode 100644 index 0000000000..f327d3147e --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/ChannelBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.kafka.ChannelBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/OperationBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/OperationBinding.md new file mode 100644 index 0000000000..adaa645db0 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/OperationBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.kafka.OperationBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/ServerBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/ServerBinding.md new file mode 100644 index 0000000000..e52855bd45 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/kafka/ServerBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.kafka.ServerBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/ChannelBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/ChannelBinding.md new file mode 100644 index 0000000000..a2a8872d64 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/ChannelBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.main.ChannelBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/OperationBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/OperationBinding.md new file mode 100644 index 0000000000..1e597b1757 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/OperationBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.main.OperationBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/ServerBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/ServerBinding.md new file mode 100644 index 0000000000..4dacad7825 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/main/ServerBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.main.ServerBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/ChannelBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/ChannelBinding.md new file mode 100644 index 0000000000..11135ad968 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/ChannelBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.nats.ChannelBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/OperationBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/OperationBinding.md new file mode 100644 index 0000000000..8e0cd8acb1 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/OperationBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.nats.OperationBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/ServerBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/ServerBinding.md new file mode 100644 index 0000000000..7d95811c44 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/nats/ServerBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.nats.ServerBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/ChannelBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/ChannelBinding.md new file mode 100644 index 0000000000..fef00d4e8a --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/ChannelBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.redis.ChannelBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/OperationBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/OperationBinding.md new file mode 100644 index 0000000000..81b906045b --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/OperationBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.redis.OperationBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/ServerBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/ServerBinding.md new file mode 100644 index 0000000000..7d12316c85 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/redis/ServerBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.redis.ServerBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/ChannelBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/ChannelBinding.md new file mode 100644 index 0000000000..4a255559db --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/ChannelBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.sqs.ChannelBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/OperationBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/OperationBinding.md new file mode 100644 index 0000000000..6a438685b4 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/OperationBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.sqs.OperationBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/ServerBinding.md b/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/ServerBinding.md new file mode 100644 index 0000000000..f6a200b3f7 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/bindings/sqs/ServerBinding.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.bindings.sqs.ServerBinding diff --git a/docs/docs/en/api/faststream/asyncapi/schema/channels/Channel.md b/docs/docs/en/api/faststream/asyncapi/schema/channels/Channel.md new file mode 100644 index 0000000000..7e8a913786 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/channels/Channel.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.channels.Channel diff --git a/docs/docs/en/api/faststream/asyncapi/schema/info/Contact.md b/docs/docs/en/api/faststream/asyncapi/schema/info/Contact.md new file mode 100644 index 0000000000..2dfb0d074e --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/info/Contact.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.info.Contact diff --git a/docs/docs/en/api/faststream/asyncapi/schema/info/ContactDict.md b/docs/docs/en/api/faststream/asyncapi/schema/info/ContactDict.md new file mode 100644 index 0000000000..adcd40891f --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/info/ContactDict.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.info.ContactDict diff --git a/docs/docs/en/api/faststream/asyncapi/schema/info/Info.md b/docs/docs/en/api/faststream/asyncapi/schema/info/Info.md new file mode 100644 index 0000000000..88201af129 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/info/Info.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.info.Info diff --git a/docs/docs/en/api/faststream/asyncapi/schema/info/License.md b/docs/docs/en/api/faststream/asyncapi/schema/info/License.md new file mode 100644 index 0000000000..ad564b3886 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/info/License.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.info.License diff --git a/docs/docs/en/api/faststream/asyncapi/schema/info/LicenseDict.md b/docs/docs/en/api/faststream/asyncapi/schema/info/LicenseDict.md new file mode 100644 index 0000000000..29fab879e4 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/info/LicenseDict.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.info.LicenseDict diff --git a/docs/docs/en/api/faststream/asyncapi/schema/main/Components.md b/docs/docs/en/api/faststream/asyncapi/schema/main/Components.md new file mode 100644 index 0000000000..782ed0e625 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/main/Components.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.main.Components diff --git a/docs/docs/en/api/faststream/asyncapi/schema/main/Schema.md b/docs/docs/en/api/faststream/asyncapi/schema/main/Schema.md new file mode 100644 index 0000000000..1280877df1 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/main/Schema.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.main.Schema diff --git a/docs/docs/en/api/faststream/asyncapi/schema/message/CorrelationId.md b/docs/docs/en/api/faststream/asyncapi/schema/message/CorrelationId.md new file mode 100644 index 0000000000..7693915525 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/message/CorrelationId.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.message.CorrelationId diff --git a/docs/docs/en/api/faststream/asyncapi/schema/message/Message.md b/docs/docs/en/api/faststream/asyncapi/schema/message/Message.md new file mode 100644 index 0000000000..e3959190b0 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/message/Message.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.message.Message diff --git a/docs/docs/en/api/faststream/asyncapi/schema/operations/Operation.md b/docs/docs/en/api/faststream/asyncapi/schema/operations/Operation.md new file mode 100644 index 0000000000..0af1c63cfe --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/operations/Operation.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.operations.Operation diff --git a/docs/docs/en/api/faststream/asyncapi/schema/security/OauthFlowObj.md b/docs/docs/en/api/faststream/asyncapi/schema/security/OauthFlowObj.md new file mode 100644 index 0000000000..ea6ad87db9 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/security/OauthFlowObj.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.security.OauthFlowObj diff --git a/docs/docs/en/api/faststream/asyncapi/schema/security/OauthFlows.md b/docs/docs/en/api/faststream/asyncapi/schema/security/OauthFlows.md new file mode 100644 index 0000000000..0c429487fb --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/security/OauthFlows.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.security.OauthFlows diff --git a/docs/docs/en/api/faststream/asyncapi/schema/security/SecuritySchemaComponent.md b/docs/docs/en/api/faststream/asyncapi/schema/security/SecuritySchemaComponent.md new file mode 100644 index 0000000000..779e70fdd6 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/security/SecuritySchemaComponent.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.security.SecuritySchemaComponent diff --git a/docs/docs/en/api/faststream/asyncapi/schema/servers/Server.md b/docs/docs/en/api/faststream/asyncapi/schema/servers/Server.md new file mode 100644 index 0000000000..5af6199d20 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/servers/Server.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.servers.Server diff --git a/docs/docs/en/api/faststream/asyncapi/schema/servers/ServerVariable.md b/docs/docs/en/api/faststream/asyncapi/schema/servers/ServerVariable.md new file mode 100644 index 0000000000..51f99bd3bc --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/servers/ServerVariable.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.servers.ServerVariable diff --git a/docs/docs/en/api/faststream/asyncapi/schema/utils/ExternalDocs.md b/docs/docs/en/api/faststream/asyncapi/schema/utils/ExternalDocs.md new file mode 100644 index 0000000000..207668a5c5 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/utils/ExternalDocs.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.utils.ExternalDocs diff --git a/docs/docs/en/api/faststream/asyncapi/schema/utils/ExternalDocsDict.md b/docs/docs/en/api/faststream/asyncapi/schema/utils/ExternalDocsDict.md new file mode 100644 index 0000000000..fc5cedfb73 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/utils/ExternalDocsDict.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.utils.ExternalDocsDict diff --git a/docs/docs/en/api/faststream/asyncapi/schema/utils/Parameter.md b/docs/docs/en/api/faststream/asyncapi/schema/utils/Parameter.md new file mode 100644 index 0000000000..05cc2f3ba3 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/utils/Parameter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.utils.Parameter diff --git a/docs/docs/en/api/faststream/asyncapi/schema/utils/Reference.md b/docs/docs/en/api/faststream/asyncapi/schema/utils/Reference.md new file mode 100644 index 0000000000..a47fd931df --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/utils/Reference.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.utils.Reference diff --git a/docs/docs/en/api/faststream/asyncapi/schema/utils/Tag.md b/docs/docs/en/api/faststream/asyncapi/schema/utils/Tag.md new file mode 100644 index 0000000000..cf558e756d --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/utils/Tag.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.utils.Tag diff --git a/docs/docs/en/api/faststream/asyncapi/schema/utils/TagDict.md b/docs/docs/en/api/faststream/asyncapi/schema/utils/TagDict.md new file mode 100644 index 0000000000..412546da6f --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/schema/utils/TagDict.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.schema.utils.TagDict diff --git a/docs/docs/en/api/faststream/asyncapi/site/get_asyncapi_html.md b/docs/docs/en/api/faststream/asyncapi/site/get_asyncapi_html.md new file mode 100644 index 0000000000..69af839e6c --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/site/get_asyncapi_html.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.site.get_asyncapi_html diff --git a/docs/docs/en/api/faststream/asyncapi/site/serve_app.md b/docs/docs/en/api/faststream/asyncapi/site/serve_app.md new file mode 100644 index 0000000000..c5a1a726e8 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/site/serve_app.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.site.serve_app diff --git a/docs/docs/en/api/faststream/asyncapi/utils/resolve_payloads.md b/docs/docs/en/api/faststream/asyncapi/utils/resolve_payloads.md new file mode 100644 index 0000000000..23aeedd082 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/utils/resolve_payloads.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.utils.resolve_payloads diff --git a/docs/docs/en/api/faststream/asyncapi/utils/to_camelcase.md b/docs/docs/en/api/faststream/asyncapi/utils/to_camelcase.md new file mode 100644 index 0000000000..42cbdf9f29 --- /dev/null +++ b/docs/docs/en/api/faststream/asyncapi/utils/to_camelcase.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.asyncapi.utils.to_camelcase diff --git a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/BaseWatcher.md b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/BaseWatcher.md new file mode 100644 index 0000000000..d0c27d17d9 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/BaseWatcher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.acknowledgement_watcher.BaseWatcher diff --git a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/CounterWatcher.md b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/CounterWatcher.md new file mode 100644 index 0000000000..e299f4c442 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/CounterWatcher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.acknowledgement_watcher.CounterWatcher diff --git a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/EndlessWatcher.md b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/EndlessWatcher.md new file mode 100644 index 0000000000..b3aac70921 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/EndlessWatcher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.acknowledgement_watcher.EndlessWatcher diff --git a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/OneTryWatcher.md b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/OneTryWatcher.md new file mode 100644 index 0000000000..4baa0bdd9c --- /dev/null +++ b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/OneTryWatcher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.acknowledgement_watcher.OneTryWatcher diff --git a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/WatcherContext.md b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/WatcherContext.md new file mode 100644 index 0000000000..ee1ef8643b --- /dev/null +++ b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/WatcherContext.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.acknowledgement_watcher.WatcherContext diff --git a/docs/docs/en/api/faststream/broker/acknowledgement_watcher/get_watcher.md b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/get_watcher.md new file mode 100644 index 0000000000..9f6869bcf5 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/acknowledgement_watcher/get_watcher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.acknowledgement_watcher.get_watcher diff --git a/docs/docs/en/api/faststream/broker/core/abc/ABCBroker.md b/docs/docs/en/api/faststream/broker/core/abc/ABCBroker.md new file mode 100644 index 0000000000..88b39efd40 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/core/abc/ABCBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.core.abc.ABCBroker diff --git a/docs/docs/en/api/faststream/broker/core/logging/LoggingBroker.md b/docs/docs/en/api/faststream/broker/core/logging/LoggingBroker.md new file mode 100644 index 0000000000..b10dd8bc3f --- /dev/null +++ b/docs/docs/en/api/faststream/broker/core/logging/LoggingBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.core.logging.LoggingBroker diff --git a/docs/docs/en/api/faststream/broker/core/usecase/BrokerUsecase.md b/docs/docs/en/api/faststream/broker/core/usecase/BrokerUsecase.md new file mode 100644 index 0000000000..0e791c5c38 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/core/usecase/BrokerUsecase.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.core.usecase.BrokerUsecase diff --git a/docs/docs/en/api/faststream/broker/fastapi/StreamMessage.md b/docs/docs/en/api/faststream/broker/fastapi/StreamMessage.md new file mode 100644 index 0000000000..2124b279ea --- /dev/null +++ b/docs/docs/en/api/faststream/broker/fastapi/StreamMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.fastapi.StreamMessage diff --git a/docs/docs/en/api/faststream/broker/fastapi/StreamRoute.md b/docs/docs/en/api/faststream/broker/fastapi/StreamRoute.md new file mode 100644 index 0000000000..423e8fdbdc --- /dev/null +++ b/docs/docs/en/api/faststream/broker/fastapi/StreamRoute.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.fastapi.StreamRoute diff --git a/docs/docs/en/api/faststream/broker/fastapi/StreamRouter.md b/docs/docs/en/api/faststream/broker/fastapi/StreamRouter.md new file mode 100644 index 0000000000..32a8e8743d --- /dev/null +++ b/docs/docs/en/api/faststream/broker/fastapi/StreamRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.fastapi.StreamRouter diff --git a/docs/docs/en/api/faststream/broker/fastapi/context/Context.md b/docs/docs/en/api/faststream/broker/fastapi/context/Context.md new file mode 100644 index 0000000000..f4240bb0da --- /dev/null +++ b/docs/docs/en/api/faststream/broker/fastapi/context/Context.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.fastapi.context.Context diff --git a/docs/docs/en/api/faststream/broker/fastapi/get_dependant/get_fastapi_dependant.md b/docs/docs/en/api/faststream/broker/fastapi/get_dependant/get_fastapi_dependant.md new file mode 100644 index 0000000000..1f5d3d1e77 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/fastapi/get_dependant/get_fastapi_dependant.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.fastapi.get_dependant.get_fastapi_dependant diff --git a/docs/docs/en/api/faststream/broker/fastapi/get_dependant/get_fastapi_native_dependant.md b/docs/docs/en/api/faststream/broker/fastapi/get_dependant/get_fastapi_native_dependant.md new file mode 100644 index 0000000000..f3d6a05e39 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/fastapi/get_dependant/get_fastapi_native_dependant.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.fastapi.get_dependant.get_fastapi_native_dependant diff --git a/docs/docs/en/api/faststream/broker/fastapi/route/StreamMessage.md b/docs/docs/en/api/faststream/broker/fastapi/route/StreamMessage.md new file mode 100644 index 0000000000..0fbed89be9 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/fastapi/route/StreamMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.fastapi.route.StreamMessage diff --git a/docs/docs/en/api/faststream/broker/fastapi/route/StreamRoute.md b/docs/docs/en/api/faststream/broker/fastapi/route/StreamRoute.md new file mode 100644 index 0000000000..4899cbe531 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/fastapi/route/StreamRoute.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.fastapi.route.StreamRoute diff --git a/docs/docs/en/api/faststream/broker/fastapi/route/make_fastapi_execution.md b/docs/docs/en/api/faststream/broker/fastapi/route/make_fastapi_execution.md new file mode 100644 index 0000000000..f9a0fdd712 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/fastapi/route/make_fastapi_execution.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.fastapi.route.make_fastapi_execution diff --git a/docs/docs/en/api/faststream/broker/fastapi/router/StreamRouter.md b/docs/docs/en/api/faststream/broker/fastapi/router/StreamRouter.md new file mode 100644 index 0000000000..d1f017acc6 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/fastapi/router/StreamRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.fastapi.router.StreamRouter diff --git a/docs/docs/en/api/faststream/broker/message/StreamMessage.md b/docs/docs/en/api/faststream/broker/message/StreamMessage.md new file mode 100644 index 0000000000..800059b91d --- /dev/null +++ b/docs/docs/en/api/faststream/broker/message/StreamMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.message.StreamMessage diff --git a/docs/docs/en/api/faststream/broker/message/decode_message.md b/docs/docs/en/api/faststream/broker/message/decode_message.md new file mode 100644 index 0000000000..a5904b1458 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/message/decode_message.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.message.decode_message diff --git a/docs/docs/en/api/faststream/broker/message/encode_message.md b/docs/docs/en/api/faststream/broker/message/encode_message.md new file mode 100644 index 0000000000..ed34f0ceb1 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/message/encode_message.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.message.encode_message diff --git a/docs/docs/en/api/faststream/broker/message/gen_cor_id.md b/docs/docs/en/api/faststream/broker/message/gen_cor_id.md new file mode 100644 index 0000000000..5e4c2a4622 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/message/gen_cor_id.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.message.gen_cor_id diff --git a/docs/docs/en/api/faststream/broker/middlewares/BaseMiddleware.md b/docs/docs/en/api/faststream/broker/middlewares/BaseMiddleware.md new file mode 100644 index 0000000000..d81c2fbf20 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/middlewares/BaseMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.middlewares.BaseMiddleware diff --git a/docs/docs/en/api/faststream/broker/middlewares/base/BaseMiddleware.md b/docs/docs/en/api/faststream/broker/middlewares/base/BaseMiddleware.md new file mode 100644 index 0000000000..8502288249 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/middlewares/base/BaseMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.middlewares.base.BaseMiddleware diff --git a/docs/docs/en/api/faststream/broker/middlewares/logging/CriticalLogMiddleware.md b/docs/docs/en/api/faststream/broker/middlewares/logging/CriticalLogMiddleware.md new file mode 100644 index 0000000000..829368d699 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/middlewares/logging/CriticalLogMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.middlewares.logging.CriticalLogMiddleware diff --git a/docs/docs/en/api/faststream/broker/proto/EndpointProto.md b/docs/docs/en/api/faststream/broker/proto/EndpointProto.md new file mode 100644 index 0000000000..5a3b095952 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/proto/EndpointProto.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.proto.EndpointProto diff --git a/docs/docs/en/api/faststream/broker/proto/SetupAble.md b/docs/docs/en/api/faststream/broker/proto/SetupAble.md new file mode 100644 index 0000000000..a4b487318e --- /dev/null +++ b/docs/docs/en/api/faststream/broker/proto/SetupAble.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.proto.SetupAble diff --git a/docs/docs/en/api/faststream/broker/publisher/fake/FakePublisher.md b/docs/docs/en/api/faststream/broker/publisher/fake/FakePublisher.md new file mode 100644 index 0000000000..67b2c04f5c --- /dev/null +++ b/docs/docs/en/api/faststream/broker/publisher/fake/FakePublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.publisher.fake.FakePublisher diff --git a/docs/docs/en/api/faststream/broker/publisher/proto/BasePublisherProto.md b/docs/docs/en/api/faststream/broker/publisher/proto/BasePublisherProto.md new file mode 100644 index 0000000000..ed0944fa14 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/publisher/proto/BasePublisherProto.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.publisher.proto.BasePublisherProto diff --git a/docs/docs/en/api/faststream/broker/publisher/proto/ProducerProto.md b/docs/docs/en/api/faststream/broker/publisher/proto/ProducerProto.md new file mode 100644 index 0000000000..8cf65d4e00 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/publisher/proto/ProducerProto.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.publisher.proto.ProducerProto diff --git a/docs/docs/en/api/faststream/broker/publisher/proto/PublisherProto.md b/docs/docs/en/api/faststream/broker/publisher/proto/PublisherProto.md new file mode 100644 index 0000000000..f86760bba6 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/publisher/proto/PublisherProto.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.publisher.proto.PublisherProto diff --git a/docs/docs/en/api/faststream/broker/publisher/usecase/PublisherUsecase.md b/docs/docs/en/api/faststream/broker/publisher/usecase/PublisherUsecase.md new file mode 100644 index 0000000000..f1de9539fe --- /dev/null +++ b/docs/docs/en/api/faststream/broker/publisher/usecase/PublisherUsecase.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.publisher.usecase.PublisherUsecase diff --git a/docs/docs/en/api/faststream/broker/response/Response.md b/docs/docs/en/api/faststream/broker/response/Response.md new file mode 100644 index 0000000000..1163381d7b --- /dev/null +++ b/docs/docs/en/api/faststream/broker/response/Response.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.response.Response diff --git a/docs/docs/en/api/faststream/broker/router/ArgsContainer.md b/docs/docs/en/api/faststream/broker/router/ArgsContainer.md new file mode 100644 index 0000000000..bd82308c79 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/router/ArgsContainer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.router.ArgsContainer diff --git a/docs/docs/en/api/faststream/broker/router/BrokerRouter.md b/docs/docs/en/api/faststream/broker/router/BrokerRouter.md new file mode 100644 index 0000000000..d6bb82fdd2 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/router/BrokerRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.router.BrokerRouter diff --git a/docs/docs/en/api/faststream/broker/router/SubscriberRoute.md b/docs/docs/en/api/faststream/broker/router/SubscriberRoute.md new file mode 100644 index 0000000000..18c3a547ec --- /dev/null +++ b/docs/docs/en/api/faststream/broker/router/SubscriberRoute.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.router.SubscriberRoute diff --git a/docs/docs/en/api/faststream/broker/schemas/NameRequired.md b/docs/docs/en/api/faststream/broker/schemas/NameRequired.md new file mode 100644 index 0000000000..398f70b421 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/schemas/NameRequired.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.schemas.NameRequired diff --git a/docs/docs/en/api/faststream/broker/subscriber/call_item/HandlerItem.md b/docs/docs/en/api/faststream/broker/subscriber/call_item/HandlerItem.md new file mode 100644 index 0000000000..e2f635512c --- /dev/null +++ b/docs/docs/en/api/faststream/broker/subscriber/call_item/HandlerItem.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.subscriber.call_item.HandlerItem diff --git a/docs/docs/en/api/faststream/broker/subscriber/proto/SubscriberProto.md b/docs/docs/en/api/faststream/broker/subscriber/proto/SubscriberProto.md new file mode 100644 index 0000000000..fd887d41b9 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/subscriber/proto/SubscriberProto.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.subscriber.proto.SubscriberProto diff --git a/docs/docs/en/api/faststream/broker/subscriber/usecase/SubscriberUsecase.md b/docs/docs/en/api/faststream/broker/subscriber/usecase/SubscriberUsecase.md new file mode 100644 index 0000000000..f7e9448277 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/subscriber/usecase/SubscriberUsecase.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.subscriber.usecase.SubscriberUsecase diff --git a/docs/docs/en/api/faststream/broker/types/PublisherMiddleware.md b/docs/docs/en/api/faststream/broker/types/PublisherMiddleware.md new file mode 100644 index 0000000000..2c43d2efcb --- /dev/null +++ b/docs/docs/en/api/faststream/broker/types/PublisherMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.types.PublisherMiddleware diff --git a/docs/docs/en/api/faststream/broker/utils/MultiLock.md b/docs/docs/en/api/faststream/broker/utils/MultiLock.md new file mode 100644 index 0000000000..5f4bc6d5cb --- /dev/null +++ b/docs/docs/en/api/faststream/broker/utils/MultiLock.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.utils.MultiLock diff --git a/docs/docs/en/api/faststream/broker/utils/default_filter.md b/docs/docs/en/api/faststream/broker/utils/default_filter.md new file mode 100644 index 0000000000..3fe25fa14a --- /dev/null +++ b/docs/docs/en/api/faststream/broker/utils/default_filter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.utils.default_filter diff --git a/docs/docs/en/api/faststream/broker/utils/get_watcher_context.md b/docs/docs/en/api/faststream/broker/utils/get_watcher_context.md new file mode 100644 index 0000000000..883599c043 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/utils/get_watcher_context.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.utils.get_watcher_context diff --git a/docs/docs/en/api/faststream/broker/utils/resolve_custom_func.md b/docs/docs/en/api/faststream/broker/utils/resolve_custom_func.md new file mode 100644 index 0000000000..f72ed3c059 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/utils/resolve_custom_func.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.utils.resolve_custom_func diff --git a/docs/docs/en/api/faststream/broker/wrapper/call/HandlerCallWrapper.md b/docs/docs/en/api/faststream/broker/wrapper/call/HandlerCallWrapper.md new file mode 100644 index 0000000000..4c25733797 --- /dev/null +++ b/docs/docs/en/api/faststream/broker/wrapper/call/HandlerCallWrapper.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.wrapper.call.HandlerCallWrapper diff --git a/docs/docs/en/api/faststream/broker/wrapper/proto/WrapperProto.md b/docs/docs/en/api/faststream/broker/wrapper/proto/WrapperProto.md new file mode 100644 index 0000000000..87ffdf815b --- /dev/null +++ b/docs/docs/en/api/faststream/broker/wrapper/proto/WrapperProto.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.wrapper.proto.WrapperProto diff --git a/docs/docs/en/api/faststream/cli/docs/app/gen.md b/docs/docs/en/api/faststream/cli/docs/app/gen.md new file mode 100644 index 0000000000..72af7d6688 --- /dev/null +++ b/docs/docs/en/api/faststream/cli/docs/app/gen.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.docs.app.gen diff --git a/docs/docs/en/api/faststream/cli/docs/app/serve.md b/docs/docs/en/api/faststream/cli/docs/app/serve.md new file mode 100644 index 0000000000..3d9ec139d9 --- /dev/null +++ b/docs/docs/en/api/faststream/cli/docs/app/serve.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.docs.app.serve diff --git a/docs/docs/en/api/faststream/cli/main/main.md b/docs/docs/en/api/faststream/cli/main/main.md new file mode 100644 index 0000000000..c15cba484c --- /dev/null +++ b/docs/docs/en/api/faststream/cli/main/main.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.main.main diff --git a/docs/docs/en/api/faststream/cli/main/publish.md b/docs/docs/en/api/faststream/cli/main/publish.md new file mode 100644 index 0000000000..84b490cde8 --- /dev/null +++ b/docs/docs/en/api/faststream/cli/main/publish.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.main.publish diff --git a/docs/docs/en/api/faststream/cli/main/publish_message.md b/docs/docs/en/api/faststream/cli/main/publish_message.md new file mode 100644 index 0000000000..a8bb7b8efa --- /dev/null +++ b/docs/docs/en/api/faststream/cli/main/publish_message.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.main.publish_message diff --git a/docs/docs/en/api/faststream/cli/main/run.md b/docs/docs/en/api/faststream/cli/main/run.md new file mode 100644 index 0000000000..6a01af3d26 --- /dev/null +++ b/docs/docs/en/api/faststream/cli/main/run.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.main.run diff --git a/docs/docs/en/api/faststream/cli/main/version_callback.md b/docs/docs/en/api/faststream/cli/main/version_callback.md new file mode 100644 index 0000000000..a5467ffeb7 --- /dev/null +++ b/docs/docs/en/api/faststream/cli/main/version_callback.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.main.version_callback diff --git a/docs/docs/en/api/faststream/cli/supervisors/basereload/BaseReload.md b/docs/docs/en/api/faststream/cli/supervisors/basereload/BaseReload.md new file mode 100644 index 0000000000..b378b2922a --- /dev/null +++ b/docs/docs/en/api/faststream/cli/supervisors/basereload/BaseReload.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.supervisors.basereload.BaseReload diff --git a/docs/docs/en/api/faststream/cli/supervisors/multiprocess/Multiprocess.md b/docs/docs/en/api/faststream/cli/supervisors/multiprocess/Multiprocess.md new file mode 100644 index 0000000000..4cdd6d30e3 --- /dev/null +++ b/docs/docs/en/api/faststream/cli/supervisors/multiprocess/Multiprocess.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.supervisors.multiprocess.Multiprocess diff --git a/docs/docs/en/api/faststream/cli/supervisors/utils/get_subprocess.md b/docs/docs/en/api/faststream/cli/supervisors/utils/get_subprocess.md new file mode 100644 index 0000000000..1488078e45 --- /dev/null +++ b/docs/docs/en/api/faststream/cli/supervisors/utils/get_subprocess.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.supervisors.utils.get_subprocess diff --git a/docs/docs/en/api/faststream/cli/supervisors/utils/set_exit.md b/docs/docs/en/api/faststream/cli/supervisors/utils/set_exit.md new file mode 100644 index 0000000000..e739d79409 --- /dev/null +++ b/docs/docs/en/api/faststream/cli/supervisors/utils/set_exit.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.supervisors.utils.set_exit diff --git a/docs/docs/en/api/faststream/cli/supervisors/utils/subprocess_started.md b/docs/docs/en/api/faststream/cli/supervisors/utils/subprocess_started.md new file mode 100644 index 0000000000..8840390ca8 --- /dev/null +++ b/docs/docs/en/api/faststream/cli/supervisors/utils/subprocess_started.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.supervisors.utils.subprocess_started diff --git a/docs/docs/en/api/faststream/cli/supervisors/watchfiles/ExtendedFilter.md b/docs/docs/en/api/faststream/cli/supervisors/watchfiles/ExtendedFilter.md new file mode 100644 index 0000000000..095c3cc2f0 --- /dev/null +++ b/docs/docs/en/api/faststream/cli/supervisors/watchfiles/ExtendedFilter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.supervisors.watchfiles.ExtendedFilter diff --git a/docs/docs/en/api/faststream/cli/supervisors/watchfiles/WatchReloader.md b/docs/docs/en/api/faststream/cli/supervisors/watchfiles/WatchReloader.md new file mode 100644 index 0000000000..b86533f1e8 --- /dev/null +++ b/docs/docs/en/api/faststream/cli/supervisors/watchfiles/WatchReloader.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.supervisors.watchfiles.WatchReloader diff --git a/docs/docs/en/api/faststream/cli/utils/imports/get_app_path.md b/docs/docs/en/api/faststream/cli/utils/imports/get_app_path.md new file mode 100644 index 0000000000..be8fcfef0c --- /dev/null +++ b/docs/docs/en/api/faststream/cli/utils/imports/get_app_path.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.utils.imports.get_app_path diff --git a/docs/docs/en/api/faststream/cli/utils/imports/import_from_string.md b/docs/docs/en/api/faststream/cli/utils/imports/import_from_string.md new file mode 100644 index 0000000000..731203ac54 --- /dev/null +++ b/docs/docs/en/api/faststream/cli/utils/imports/import_from_string.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.utils.imports.import_from_string diff --git a/docs/docs/en/api/faststream/cli/utils/imports/import_object.md b/docs/docs/en/api/faststream/cli/utils/imports/import_object.md new file mode 100644 index 0000000000..e26a3e280c --- /dev/null +++ b/docs/docs/en/api/faststream/cli/utils/imports/import_object.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.utils.imports.import_object diff --git a/docs/docs/en/api/faststream/cli/utils/imports/try_import_app.md b/docs/docs/en/api/faststream/cli/utils/imports/try_import_app.md new file mode 100644 index 0000000000..0c6df90c86 --- /dev/null +++ b/docs/docs/en/api/faststream/cli/utils/imports/try_import_app.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.utils.imports.try_import_app diff --git a/docs/docs/en/api/faststream/cli/utils/logs/LogLevels.md b/docs/docs/en/api/faststream/cli/utils/logs/LogLevels.md new file mode 100644 index 0000000000..f82e3bbb6f --- /dev/null +++ b/docs/docs/en/api/faststream/cli/utils/logs/LogLevels.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.utils.logs.LogLevels diff --git a/docs/docs/en/api/faststream/cli/utils/logs/get_log_level.md b/docs/docs/en/api/faststream/cli/utils/logs/get_log_level.md new file mode 100644 index 0000000000..f5e4fcaea0 --- /dev/null +++ b/docs/docs/en/api/faststream/cli/utils/logs/get_log_level.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.utils.logs.get_log_level diff --git a/docs/docs/en/api/faststream/cli/utils/logs/set_log_level.md b/docs/docs/en/api/faststream/cli/utils/logs/set_log_level.md new file mode 100644 index 0000000000..6db13adbb9 --- /dev/null +++ b/docs/docs/en/api/faststream/cli/utils/logs/set_log_level.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.utils.logs.set_log_level diff --git a/docs/docs/en/api/faststream/cli/utils/parser/parse_cli_args.md b/docs/docs/en/api/faststream/cli/utils/parser/parse_cli_args.md new file mode 100644 index 0000000000..9c6f03d066 --- /dev/null +++ b/docs/docs/en/api/faststream/cli/utils/parser/parse_cli_args.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.utils.parser.parse_cli_args diff --git a/docs/docs/en/api/faststream/cli/utils/parser/remove_prefix.md b/docs/docs/en/api/faststream/cli/utils/parser/remove_prefix.md new file mode 100644 index 0000000000..587db3677f --- /dev/null +++ b/docs/docs/en/api/faststream/cli/utils/parser/remove_prefix.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.cli.utils.parser.remove_prefix diff --git a/docs/docs/en/api/faststream/confluent/KafkaBroker.md b/docs/docs/en/api/faststream/confluent/KafkaBroker.md new file mode 100644 index 0000000000..99fd644946 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/KafkaBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.KafkaBroker diff --git a/docs/docs/en/api/faststream/confluent/KafkaPublisher.md b/docs/docs/en/api/faststream/confluent/KafkaPublisher.md new file mode 100644 index 0000000000..73e485fcc5 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/KafkaPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.KafkaPublisher diff --git a/docs/docs/en/api/faststream/confluent/KafkaResponse.md b/docs/docs/en/api/faststream/confluent/KafkaResponse.md new file mode 100644 index 0000000000..eb0eab479c --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/KafkaResponse.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.KafkaResponse diff --git a/docs/docs/en/api/faststream/confluent/KafkaRoute.md b/docs/docs/en/api/faststream/confluent/KafkaRoute.md new file mode 100644 index 0000000000..723012794f --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/KafkaRoute.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.KafkaRoute diff --git a/docs/docs/en/api/faststream/confluent/KafkaRouter.md b/docs/docs/en/api/faststream/confluent/KafkaRouter.md new file mode 100644 index 0000000000..b9e7b0d991 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/KafkaRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.KafkaRouter diff --git a/docs/docs/en/api/faststream/confluent/TestApp.md b/docs/docs/en/api/faststream/confluent/TestApp.md new file mode 100644 index 0000000000..2468f3755c --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/TestApp.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.testing.app.TestApp diff --git a/docs/docs/en/api/faststream/confluent/TestKafkaBroker.md b/docs/docs/en/api/faststream/confluent/TestKafkaBroker.md new file mode 100644 index 0000000000..0a24384f69 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/TestKafkaBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.TestKafkaBroker diff --git a/docs/docs/en/api/faststream/confluent/broker/KafkaBroker.md b/docs/docs/en/api/faststream/confluent/broker/KafkaBroker.md new file mode 100644 index 0000000000..cdfdbc6ef1 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/broker/KafkaBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.broker.KafkaBroker diff --git a/docs/docs/en/api/faststream/confluent/broker/broker/KafkaBroker.md b/docs/docs/en/api/faststream/confluent/broker/broker/KafkaBroker.md new file mode 100644 index 0000000000..05c8356f26 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/broker/broker/KafkaBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.broker.broker.KafkaBroker diff --git a/docs/docs/en/api/faststream/confluent/broker/logging/KafkaLoggingBroker.md b/docs/docs/en/api/faststream/confluent/broker/logging/KafkaLoggingBroker.md new file mode 100644 index 0000000000..ea238b6b85 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/broker/logging/KafkaLoggingBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.broker.logging.KafkaLoggingBroker diff --git a/docs/docs/en/api/faststream/confluent/broker/registrator/KafkaRegistrator.md b/docs/docs/en/api/faststream/confluent/broker/registrator/KafkaRegistrator.md new file mode 100644 index 0000000000..80068d2349 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/broker/registrator/KafkaRegistrator.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.broker.registrator.KafkaRegistrator diff --git a/docs/docs/en/api/faststream/confluent/client/AsyncConfluentConsumer.md b/docs/docs/en/api/faststream/confluent/client/AsyncConfluentConsumer.md new file mode 100644 index 0000000000..25374c405d --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/client/AsyncConfluentConsumer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.client.AsyncConfluentConsumer diff --git a/docs/docs/en/api/faststream/confluent/client/AsyncConfluentProducer.md b/docs/docs/en/api/faststream/confluent/client/AsyncConfluentProducer.md new file mode 100644 index 0000000000..29bfac283f --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/client/AsyncConfluentProducer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.client.AsyncConfluentProducer diff --git a/docs/docs/en/api/faststream/confluent/client/BatchBuilder.md b/docs/docs/en/api/faststream/confluent/client/BatchBuilder.md new file mode 100644 index 0000000000..232f9ecdf2 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/client/BatchBuilder.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.client.BatchBuilder diff --git a/docs/docs/en/api/faststream/confluent/client/MsgToSend.md b/docs/docs/en/api/faststream/confluent/client/MsgToSend.md new file mode 100644 index 0000000000..2891c52db0 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/client/MsgToSend.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.client.MsgToSend diff --git a/docs/docs/en/api/faststream/confluent/client/TopicPartition.md b/docs/docs/en/api/faststream/confluent/client/TopicPartition.md new file mode 100644 index 0000000000..ab43818b7d --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/client/TopicPartition.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.client.TopicPartition diff --git a/docs/docs/en/api/faststream/confluent/client/check_msg_error.md b/docs/docs/en/api/faststream/confluent/client/check_msg_error.md new file mode 100644 index 0000000000..71ac291b6e --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/client/check_msg_error.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.client.check_msg_error diff --git a/docs/docs/en/api/faststream/confluent/client/create_topics.md b/docs/docs/en/api/faststream/confluent/client/create_topics.md new file mode 100644 index 0000000000..8efc1a80c4 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/client/create_topics.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.client.create_topics diff --git a/docs/docs/en/api/faststream/confluent/fastapi/Context.md b/docs/docs/en/api/faststream/confluent/fastapi/Context.md new file mode 100644 index 0000000000..f4240bb0da --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/fastapi/Context.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.fastapi.context.Context diff --git a/docs/docs/en/api/faststream/confluent/fastapi/KafkaRouter.md b/docs/docs/en/api/faststream/confluent/fastapi/KafkaRouter.md new file mode 100644 index 0000000000..034203e103 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/fastapi/KafkaRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.fastapi.KafkaRouter diff --git a/docs/docs/en/api/faststream/confluent/fastapi/fastapi/KafkaRouter.md b/docs/docs/en/api/faststream/confluent/fastapi/fastapi/KafkaRouter.md new file mode 100644 index 0000000000..87edcc2c3d --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/fastapi/fastapi/KafkaRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.fastapi.fastapi.KafkaRouter diff --git a/docs/docs/en/api/faststream/confluent/message/ConsumerProtocol.md b/docs/docs/en/api/faststream/confluent/message/ConsumerProtocol.md new file mode 100644 index 0000000000..18971d0829 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/message/ConsumerProtocol.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.message.ConsumerProtocol diff --git a/docs/docs/en/api/faststream/confluent/message/FakeConsumer.md b/docs/docs/en/api/faststream/confluent/message/FakeConsumer.md new file mode 100644 index 0000000000..19e60bb461 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/message/FakeConsumer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.message.FakeConsumer diff --git a/docs/docs/en/api/faststream/confluent/message/KafkaMessage.md b/docs/docs/en/api/faststream/confluent/message/KafkaMessage.md new file mode 100644 index 0000000000..02004c7d37 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/message/KafkaMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.message.KafkaMessage diff --git a/docs/docs/en/api/faststream/confluent/opentelemetry/KafkaTelemetryMiddleware.md b/docs/docs/en/api/faststream/confluent/opentelemetry/KafkaTelemetryMiddleware.md new file mode 100644 index 0000000000..743c494591 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/opentelemetry/KafkaTelemetryMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.opentelemetry.KafkaTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/confluent/opentelemetry/middleware/KafkaTelemetryMiddleware.md b/docs/docs/en/api/faststream/confluent/opentelemetry/middleware/KafkaTelemetryMiddleware.md new file mode 100644 index 0000000000..b34265dfbb --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/opentelemetry/middleware/KafkaTelemetryMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.opentelemetry.middleware.KafkaTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/confluent/opentelemetry/provider/BaseConfluentTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/confluent/opentelemetry/provider/BaseConfluentTelemetrySettingsProvider.md new file mode 100644 index 0000000000..730662fae5 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/opentelemetry/provider/BaseConfluentTelemetrySettingsProvider.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.opentelemetry.provider.BaseConfluentTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/confluent/opentelemetry/provider/BatchConfluentTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/confluent/opentelemetry/provider/BatchConfluentTelemetrySettingsProvider.md new file mode 100644 index 0000000000..a6db133484 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/opentelemetry/provider/BatchConfluentTelemetrySettingsProvider.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.opentelemetry.provider.BatchConfluentTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/confluent/opentelemetry/provider/ConfluentTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/confluent/opentelemetry/provider/ConfluentTelemetrySettingsProvider.md new file mode 100644 index 0000000000..2c5242e6e5 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/opentelemetry/provider/ConfluentTelemetrySettingsProvider.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.opentelemetry.provider.ConfluentTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/confluent/opentelemetry/provider/telemetry_attributes_provider_factory.md b/docs/docs/en/api/faststream/confluent/opentelemetry/provider/telemetry_attributes_provider_factory.md new file mode 100644 index 0000000000..7dd0e1d0fd --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/opentelemetry/provider/telemetry_attributes_provider_factory.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.opentelemetry.provider.telemetry_attributes_provider_factory diff --git a/docs/docs/en/api/faststream/confluent/parser/AsyncConfluentParser.md b/docs/docs/en/api/faststream/confluent/parser/AsyncConfluentParser.md new file mode 100644 index 0000000000..e5029a60d1 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/parser/AsyncConfluentParser.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.parser.AsyncConfluentParser diff --git a/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIBatchPublisher.md b/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIBatchPublisher.md new file mode 100644 index 0000000000..62ae234697 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIBatchPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.publisher.asyncapi.AsyncAPIBatchPublisher diff --git a/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIDefaultPublisher.md b/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIDefaultPublisher.md new file mode 100644 index 0000000000..32685d612d --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIDefaultPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.publisher.asyncapi.AsyncAPIDefaultPublisher diff --git a/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIPublisher.md b/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIPublisher.md new file mode 100644 index 0000000000..f76d27ccd0 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/publisher/asyncapi/AsyncAPIPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.publisher.asyncapi.AsyncAPIPublisher diff --git a/docs/docs/en/api/faststream/confluent/publisher/producer/AsyncConfluentFastProducer.md b/docs/docs/en/api/faststream/confluent/publisher/producer/AsyncConfluentFastProducer.md new file mode 100644 index 0000000000..fd614d1593 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/publisher/producer/AsyncConfluentFastProducer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.publisher.producer.AsyncConfluentFastProducer diff --git a/docs/docs/en/api/faststream/confluent/publisher/usecase/BatchPublisher.md b/docs/docs/en/api/faststream/confluent/publisher/usecase/BatchPublisher.md new file mode 100644 index 0000000000..23e8baeed9 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/publisher/usecase/BatchPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.publisher.usecase.BatchPublisher diff --git a/docs/docs/en/api/faststream/confluent/publisher/usecase/DefaultPublisher.md b/docs/docs/en/api/faststream/confluent/publisher/usecase/DefaultPublisher.md new file mode 100644 index 0000000000..faa20eaa11 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/publisher/usecase/DefaultPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.publisher.usecase.DefaultPublisher diff --git a/docs/docs/en/api/faststream/confluent/publisher/usecase/LogicPublisher.md b/docs/docs/en/api/faststream/confluent/publisher/usecase/LogicPublisher.md new file mode 100644 index 0000000000..d9a8594d12 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/publisher/usecase/LogicPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.publisher.usecase.LogicPublisher diff --git a/docs/docs/en/api/faststream/confluent/response/KafkaResponse.md b/docs/docs/en/api/faststream/confluent/response/KafkaResponse.md new file mode 100644 index 0000000000..7fa5542613 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/response/KafkaResponse.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.response.KafkaResponse diff --git a/docs/docs/en/api/faststream/confluent/router/KafkaPublisher.md b/docs/docs/en/api/faststream/confluent/router/KafkaPublisher.md new file mode 100644 index 0000000000..ee1c818707 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/router/KafkaPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.router.KafkaPublisher diff --git a/docs/docs/en/api/faststream/confluent/router/KafkaRoute.md b/docs/docs/en/api/faststream/confluent/router/KafkaRoute.md new file mode 100644 index 0000000000..60d7bb1c99 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/router/KafkaRoute.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.router.KafkaRoute diff --git a/docs/docs/en/api/faststream/confluent/router/KafkaRouter.md b/docs/docs/en/api/faststream/confluent/router/KafkaRouter.md new file mode 100644 index 0000000000..dac6c1a646 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/router/KafkaRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.router.KafkaRouter diff --git a/docs/docs/en/api/faststream/confluent/schemas/params/ConsumerConnectionParams.md b/docs/docs/en/api/faststream/confluent/schemas/params/ConsumerConnectionParams.md new file mode 100644 index 0000000000..f4ed5b2004 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/schemas/params/ConsumerConnectionParams.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.schemas.params.ConsumerConnectionParams diff --git a/docs/docs/en/api/faststream/confluent/security/parse_security.md b/docs/docs/en/api/faststream/confluent/security/parse_security.md new file mode 100644 index 0000000000..1eb84ceed6 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/security/parse_security.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.security.parse_security diff --git a/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPIBatchSubscriber.md b/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPIBatchSubscriber.md new file mode 100644 index 0000000000..f6fc81226a --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPIBatchSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.subscriber.asyncapi.AsyncAPIBatchSubscriber diff --git a/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPIDefaultSubscriber.md b/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPIDefaultSubscriber.md new file mode 100644 index 0000000000..12641d32ce --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPIDefaultSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.subscriber.asyncapi.AsyncAPIDefaultSubscriber diff --git a/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPISubscriber.md b/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPISubscriber.md new file mode 100644 index 0000000000..b22facc06a --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/subscriber/asyncapi/AsyncAPISubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.subscriber.asyncapi.AsyncAPISubscriber diff --git a/docs/docs/en/api/faststream/confluent/subscriber/factory/create_subscriber.md b/docs/docs/en/api/faststream/confluent/subscriber/factory/create_subscriber.md new file mode 100644 index 0000000000..ce811a99d9 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/subscriber/factory/create_subscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.subscriber.factory.create_subscriber diff --git a/docs/docs/en/api/faststream/confluent/subscriber/usecase/BatchSubscriber.md b/docs/docs/en/api/faststream/confluent/subscriber/usecase/BatchSubscriber.md new file mode 100644 index 0000000000..4642abd4a8 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/subscriber/usecase/BatchSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.subscriber.usecase.BatchSubscriber diff --git a/docs/docs/en/api/faststream/confluent/subscriber/usecase/DefaultSubscriber.md b/docs/docs/en/api/faststream/confluent/subscriber/usecase/DefaultSubscriber.md new file mode 100644 index 0000000000..c2d7ed227e --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/subscriber/usecase/DefaultSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.subscriber.usecase.DefaultSubscriber diff --git a/docs/docs/en/api/faststream/confluent/subscriber/usecase/LogicSubscriber.md b/docs/docs/en/api/faststream/confluent/subscriber/usecase/LogicSubscriber.md new file mode 100644 index 0000000000..c47daf891f --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/subscriber/usecase/LogicSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.subscriber.usecase.LogicSubscriber diff --git a/docs/docs/en/api/faststream/confluent/testing/FakeProducer.md b/docs/docs/en/api/faststream/confluent/testing/FakeProducer.md new file mode 100644 index 0000000000..aeaee2a2d7 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/testing/FakeProducer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.testing.FakeProducer diff --git a/docs/docs/en/api/faststream/confluent/testing/MockConfluentMessage.md b/docs/docs/en/api/faststream/confluent/testing/MockConfluentMessage.md new file mode 100644 index 0000000000..78791486ab --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/testing/MockConfluentMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.testing.MockConfluentMessage diff --git a/docs/docs/en/api/faststream/confluent/testing/TestKafkaBroker.md b/docs/docs/en/api/faststream/confluent/testing/TestKafkaBroker.md new file mode 100644 index 0000000000..53dfed8f24 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/testing/TestKafkaBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.testing.TestKafkaBroker diff --git a/docs/docs/en/api/faststream/confluent/testing/build_message.md b/docs/docs/en/api/faststream/confluent/testing/build_message.md new file mode 100644 index 0000000000..75787a13b3 --- /dev/null +++ b/docs/docs/en/api/faststream/confluent/testing/build_message.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.confluent.testing.build_message diff --git a/docs/docs/en/api/faststream/constants/ContentTypes.md b/docs/docs/en/api/faststream/constants/ContentTypes.md new file mode 100644 index 0000000000..28d62bdcd7 --- /dev/null +++ b/docs/docs/en/api/faststream/constants/ContentTypes.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.constants.ContentTypes diff --git a/docs/docs/en/api/faststream/exceptions/AckMessage.md b/docs/docs/en/api/faststream/exceptions/AckMessage.md new file mode 100644 index 0000000000..175efc68ed --- /dev/null +++ b/docs/docs/en/api/faststream/exceptions/AckMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.exceptions.AckMessage diff --git a/docs/docs/en/api/faststream/exceptions/FastStreamException.md b/docs/docs/en/api/faststream/exceptions/FastStreamException.md new file mode 100644 index 0000000000..bd988e9332 --- /dev/null +++ b/docs/docs/en/api/faststream/exceptions/FastStreamException.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.exceptions.FastStreamException diff --git a/docs/docs/en/api/faststream/exceptions/HandlerException.md b/docs/docs/en/api/faststream/exceptions/HandlerException.md new file mode 100644 index 0000000000..64495519a4 --- /dev/null +++ b/docs/docs/en/api/faststream/exceptions/HandlerException.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.exceptions.HandlerException diff --git a/docs/docs/en/api/faststream/exceptions/IgnoredException.md b/docs/docs/en/api/faststream/exceptions/IgnoredException.md new file mode 100644 index 0000000000..18452057c1 --- /dev/null +++ b/docs/docs/en/api/faststream/exceptions/IgnoredException.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.exceptions.IgnoredException diff --git a/docs/docs/en/api/faststream/exceptions/NackMessage.md b/docs/docs/en/api/faststream/exceptions/NackMessage.md new file mode 100644 index 0000000000..05502ca14d --- /dev/null +++ b/docs/docs/en/api/faststream/exceptions/NackMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.exceptions.NackMessage diff --git a/docs/docs/en/api/faststream/exceptions/RejectMessage.md b/docs/docs/en/api/faststream/exceptions/RejectMessage.md new file mode 100644 index 0000000000..be491d89c1 --- /dev/null +++ b/docs/docs/en/api/faststream/exceptions/RejectMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.exceptions.RejectMessage diff --git a/docs/docs/en/api/faststream/exceptions/SetupError.md b/docs/docs/en/api/faststream/exceptions/SetupError.md new file mode 100644 index 0000000000..588e66557f --- /dev/null +++ b/docs/docs/en/api/faststream/exceptions/SetupError.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.exceptions.SetupError diff --git a/docs/docs/en/api/faststream/exceptions/SkipMessage.md b/docs/docs/en/api/faststream/exceptions/SkipMessage.md new file mode 100644 index 0000000000..e2a6ac135e --- /dev/null +++ b/docs/docs/en/api/faststream/exceptions/SkipMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.exceptions.SkipMessage diff --git a/docs/docs/en/api/faststream/exceptions/StopApplication.md b/docs/docs/en/api/faststream/exceptions/StopApplication.md new file mode 100644 index 0000000000..12059837a4 --- /dev/null +++ b/docs/docs/en/api/faststream/exceptions/StopApplication.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.exceptions.StopApplication diff --git a/docs/docs/en/api/faststream/exceptions/StopConsume.md b/docs/docs/en/api/faststream/exceptions/StopConsume.md new file mode 100644 index 0000000000..9733dcc2e9 --- /dev/null +++ b/docs/docs/en/api/faststream/exceptions/StopConsume.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.exceptions.StopConsume diff --git a/docs/docs/en/api/faststream/exceptions/ValidationError.md b/docs/docs/en/api/faststream/exceptions/ValidationError.md new file mode 100644 index 0000000000..93dc0a73d1 --- /dev/null +++ b/docs/docs/en/api/faststream/exceptions/ValidationError.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.exceptions.ValidationError diff --git a/docs/docs/en/api/faststream/kafka/KafkaBroker.md b/docs/docs/en/api/faststream/kafka/KafkaBroker.md new file mode 100644 index 0000000000..7ee56a5e01 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/KafkaBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.KafkaBroker diff --git a/docs/docs/en/api/faststream/kafka/KafkaPublisher.md b/docs/docs/en/api/faststream/kafka/KafkaPublisher.md new file mode 100644 index 0000000000..c379528109 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/KafkaPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.KafkaPublisher diff --git a/docs/docs/en/api/faststream/kafka/KafkaResponse.md b/docs/docs/en/api/faststream/kafka/KafkaResponse.md new file mode 100644 index 0000000000..4aab0b965d --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/KafkaResponse.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.KafkaResponse diff --git a/docs/docs/en/api/faststream/kafka/KafkaRoute.md b/docs/docs/en/api/faststream/kafka/KafkaRoute.md new file mode 100644 index 0000000000..89a8d8cca1 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/KafkaRoute.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.KafkaRoute diff --git a/docs/docs/en/api/faststream/kafka/KafkaRouter.md b/docs/docs/en/api/faststream/kafka/KafkaRouter.md new file mode 100644 index 0000000000..c60f3ca6f4 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/KafkaRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.KafkaRouter diff --git a/docs/docs/en/api/faststream/kafka/TestApp.md b/docs/docs/en/api/faststream/kafka/TestApp.md new file mode 100644 index 0000000000..2468f3755c --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/TestApp.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.testing.app.TestApp diff --git a/docs/docs/en/api/faststream/kafka/TestKafkaBroker.md b/docs/docs/en/api/faststream/kafka/TestKafkaBroker.md new file mode 100644 index 0000000000..096df3b1d1 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/TestKafkaBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.TestKafkaBroker diff --git a/docs/docs/en/api/faststream/kafka/TopicPartition.md b/docs/docs/en/api/faststream/kafka/TopicPartition.md new file mode 100644 index 0000000000..41fbd7f624 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/TopicPartition.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: aiokafka.structs.TopicPartition diff --git a/docs/docs/en/api/faststream/kafka/broker/KafkaBroker.md b/docs/docs/en/api/faststream/kafka/broker/KafkaBroker.md new file mode 100644 index 0000000000..2cee711d14 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/broker/KafkaBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.broker.KafkaBroker diff --git a/docs/docs/en/api/faststream/kafka/broker/broker/KafkaBroker.md b/docs/docs/en/api/faststream/kafka/broker/broker/KafkaBroker.md new file mode 100644 index 0000000000..ca32dd3865 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/broker/broker/KafkaBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.broker.broker.KafkaBroker diff --git a/docs/docs/en/api/faststream/kafka/broker/logging/KafkaLoggingBroker.md b/docs/docs/en/api/faststream/kafka/broker/logging/KafkaLoggingBroker.md new file mode 100644 index 0000000000..1f8d5921b7 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/broker/logging/KafkaLoggingBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.broker.logging.KafkaLoggingBroker diff --git a/docs/docs/en/api/faststream/kafka/broker/registrator/KafkaRegistrator.md b/docs/docs/en/api/faststream/kafka/broker/registrator/KafkaRegistrator.md new file mode 100644 index 0000000000..aa06d38f65 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/broker/registrator/KafkaRegistrator.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.broker.registrator.KafkaRegistrator diff --git a/docs/docs/en/api/faststream/kafka/fastapi/Context.md b/docs/docs/en/api/faststream/kafka/fastapi/Context.md new file mode 100644 index 0000000000..f4240bb0da --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/fastapi/Context.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.fastapi.context.Context diff --git a/docs/docs/en/api/faststream/kafka/fastapi/KafkaRouter.md b/docs/docs/en/api/faststream/kafka/fastapi/KafkaRouter.md new file mode 100644 index 0000000000..2ab7254e79 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/fastapi/KafkaRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.fastapi.KafkaRouter diff --git a/docs/docs/en/api/faststream/kafka/fastapi/fastapi/KafkaRouter.md b/docs/docs/en/api/faststream/kafka/fastapi/fastapi/KafkaRouter.md new file mode 100644 index 0000000000..80fc17dd4a --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/fastapi/fastapi/KafkaRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.fastapi.fastapi.KafkaRouter diff --git a/docs/docs/en/api/faststream/kafka/message/ConsumerProtocol.md b/docs/docs/en/api/faststream/kafka/message/ConsumerProtocol.md new file mode 100644 index 0000000000..c9fd16a983 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/message/ConsumerProtocol.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.message.ConsumerProtocol diff --git a/docs/docs/en/api/faststream/kafka/message/FakeConsumer.md b/docs/docs/en/api/faststream/kafka/message/FakeConsumer.md new file mode 100644 index 0000000000..d41724b288 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/message/FakeConsumer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.message.FakeConsumer diff --git a/docs/docs/en/api/faststream/kafka/message/KafkaMessage.md b/docs/docs/en/api/faststream/kafka/message/KafkaMessage.md new file mode 100644 index 0000000000..7a7a30bae3 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/message/KafkaMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.message.KafkaMessage diff --git a/docs/docs/en/api/faststream/kafka/opentelemetry/KafkaTelemetryMiddleware.md b/docs/docs/en/api/faststream/kafka/opentelemetry/KafkaTelemetryMiddleware.md new file mode 100644 index 0000000000..02fb4805ac --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/opentelemetry/KafkaTelemetryMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.opentelemetry.KafkaTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/kafka/opentelemetry/middleware/KafkaTelemetryMiddleware.md b/docs/docs/en/api/faststream/kafka/opentelemetry/middleware/KafkaTelemetryMiddleware.md new file mode 100644 index 0000000000..aba78378f2 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/opentelemetry/middleware/KafkaTelemetryMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.opentelemetry.middleware.KafkaTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/kafka/opentelemetry/provider/BaseKafkaTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/kafka/opentelemetry/provider/BaseKafkaTelemetrySettingsProvider.md new file mode 100644 index 0000000000..5cb13be947 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/opentelemetry/provider/BaseKafkaTelemetrySettingsProvider.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.opentelemetry.provider.BaseKafkaTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/kafka/opentelemetry/provider/BatchKafkaTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/kafka/opentelemetry/provider/BatchKafkaTelemetrySettingsProvider.md new file mode 100644 index 0000000000..d3d7080509 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/opentelemetry/provider/BatchKafkaTelemetrySettingsProvider.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.opentelemetry.provider.BatchKafkaTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/kafka/opentelemetry/provider/KafkaTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/kafka/opentelemetry/provider/KafkaTelemetrySettingsProvider.md new file mode 100644 index 0000000000..0859c0df3d --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/opentelemetry/provider/KafkaTelemetrySettingsProvider.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.opentelemetry.provider.KafkaTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/kafka/opentelemetry/provider/telemetry_attributes_provider_factory.md b/docs/docs/en/api/faststream/kafka/opentelemetry/provider/telemetry_attributes_provider_factory.md new file mode 100644 index 0000000000..3b2a1ad394 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/opentelemetry/provider/telemetry_attributes_provider_factory.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.opentelemetry.provider.telemetry_attributes_provider_factory diff --git a/docs/docs/en/api/faststream/kafka/parser/AioKafkaParser.md b/docs/docs/en/api/faststream/kafka/parser/AioKafkaParser.md new file mode 100644 index 0000000000..e7e37cce97 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/parser/AioKafkaParser.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.parser.AioKafkaParser diff --git a/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIBatchPublisher.md b/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIBatchPublisher.md new file mode 100644 index 0000000000..8d796523e6 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIBatchPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.publisher.asyncapi.AsyncAPIBatchPublisher diff --git a/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIDefaultPublisher.md b/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIDefaultPublisher.md new file mode 100644 index 0000000000..7e4e54d030 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIDefaultPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.publisher.asyncapi.AsyncAPIDefaultPublisher diff --git a/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIPublisher.md b/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIPublisher.md new file mode 100644 index 0000000000..7d914809c2 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/publisher/asyncapi/AsyncAPIPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.publisher.asyncapi.AsyncAPIPublisher diff --git a/docs/docs/en/api/faststream/kafka/publisher/producer/AioKafkaFastProducer.md b/docs/docs/en/api/faststream/kafka/publisher/producer/AioKafkaFastProducer.md new file mode 100644 index 0000000000..83b116989b --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/publisher/producer/AioKafkaFastProducer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.publisher.producer.AioKafkaFastProducer diff --git a/docs/docs/en/api/faststream/kafka/publisher/usecase/BatchPublisher.md b/docs/docs/en/api/faststream/kafka/publisher/usecase/BatchPublisher.md new file mode 100644 index 0000000000..045cfbf45f --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/publisher/usecase/BatchPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.publisher.usecase.BatchPublisher diff --git a/docs/docs/en/api/faststream/kafka/publisher/usecase/DefaultPublisher.md b/docs/docs/en/api/faststream/kafka/publisher/usecase/DefaultPublisher.md new file mode 100644 index 0000000000..07518c75b3 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/publisher/usecase/DefaultPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.publisher.usecase.DefaultPublisher diff --git a/docs/docs/en/api/faststream/kafka/publisher/usecase/LogicPublisher.md b/docs/docs/en/api/faststream/kafka/publisher/usecase/LogicPublisher.md new file mode 100644 index 0000000000..615da58f90 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/publisher/usecase/LogicPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.publisher.usecase.LogicPublisher diff --git a/docs/docs/en/api/faststream/kafka/response/KafkaResponse.md b/docs/docs/en/api/faststream/kafka/response/KafkaResponse.md new file mode 100644 index 0000000000..05ecd69c2d --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/response/KafkaResponse.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.response.KafkaResponse diff --git a/docs/docs/en/api/faststream/kafka/router/KafkaPublisher.md b/docs/docs/en/api/faststream/kafka/router/KafkaPublisher.md new file mode 100644 index 0000000000..5027c18f20 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/router/KafkaPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.router.KafkaPublisher diff --git a/docs/docs/en/api/faststream/kafka/router/KafkaRoute.md b/docs/docs/en/api/faststream/kafka/router/KafkaRoute.md new file mode 100644 index 0000000000..e7e6184deb --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/router/KafkaRoute.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.router.KafkaRoute diff --git a/docs/docs/en/api/faststream/kafka/router/KafkaRouter.md b/docs/docs/en/api/faststream/kafka/router/KafkaRouter.md new file mode 100644 index 0000000000..5d7578bbfc --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/router/KafkaRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.router.KafkaRouter diff --git a/docs/docs/en/api/faststream/kafka/schemas/params/ConsumerConnectionParams.md b/docs/docs/en/api/faststream/kafka/schemas/params/ConsumerConnectionParams.md new file mode 100644 index 0000000000..b289e61e5a --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/schemas/params/ConsumerConnectionParams.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.schemas.params.ConsumerConnectionParams diff --git a/docs/docs/en/api/faststream/kafka/security/parse_security.md b/docs/docs/en/api/faststream/kafka/security/parse_security.md new file mode 100644 index 0000000000..e325a99ad8 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/security/parse_security.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.security.parse_security diff --git a/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPIBatchSubscriber.md b/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPIBatchSubscriber.md new file mode 100644 index 0000000000..3ce948d2e2 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPIBatchSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.subscriber.asyncapi.AsyncAPIBatchSubscriber diff --git a/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPIDefaultSubscriber.md b/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPIDefaultSubscriber.md new file mode 100644 index 0000000000..ef10b05e80 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPIDefaultSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.subscriber.asyncapi.AsyncAPIDefaultSubscriber diff --git a/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPISubscriber.md b/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPISubscriber.md new file mode 100644 index 0000000000..330a621bf5 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/subscriber/asyncapi/AsyncAPISubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.subscriber.asyncapi.AsyncAPISubscriber diff --git a/docs/docs/en/api/faststream/kafka/subscriber/factory/create_subscriber.md b/docs/docs/en/api/faststream/kafka/subscriber/factory/create_subscriber.md new file mode 100644 index 0000000000..d9e5fcb4a4 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/subscriber/factory/create_subscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.subscriber.factory.create_subscriber diff --git a/docs/docs/en/api/faststream/kafka/subscriber/usecase/BatchSubscriber.md b/docs/docs/en/api/faststream/kafka/subscriber/usecase/BatchSubscriber.md new file mode 100644 index 0000000000..6f8978f38b --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/subscriber/usecase/BatchSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.subscriber.usecase.BatchSubscriber diff --git a/docs/docs/en/api/faststream/kafka/subscriber/usecase/DefaultSubscriber.md b/docs/docs/en/api/faststream/kafka/subscriber/usecase/DefaultSubscriber.md new file mode 100644 index 0000000000..78949c27dd --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/subscriber/usecase/DefaultSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.subscriber.usecase.DefaultSubscriber diff --git a/docs/docs/en/api/faststream/kafka/subscriber/usecase/LogicSubscriber.md b/docs/docs/en/api/faststream/kafka/subscriber/usecase/LogicSubscriber.md new file mode 100644 index 0000000000..297013e037 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/subscriber/usecase/LogicSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.subscriber.usecase.LogicSubscriber diff --git a/docs/docs/en/api/faststream/kafka/testing/FakeProducer.md b/docs/docs/en/api/faststream/kafka/testing/FakeProducer.md new file mode 100644 index 0000000000..63eb94c3ca --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/testing/FakeProducer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.testing.FakeProducer diff --git a/docs/docs/en/api/faststream/kafka/testing/TestKafkaBroker.md b/docs/docs/en/api/faststream/kafka/testing/TestKafkaBroker.md new file mode 100644 index 0000000000..96f257a15f --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/testing/TestKafkaBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.testing.TestKafkaBroker diff --git a/docs/docs/en/api/faststream/kafka/testing/build_message.md b/docs/docs/en/api/faststream/kafka/testing/build_message.md new file mode 100644 index 0000000000..354d7a82f3 --- /dev/null +++ b/docs/docs/en/api/faststream/kafka/testing/build_message.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.kafka.testing.build_message diff --git a/docs/docs/en/api/faststream/log/formatter/ColourizedFormatter.md b/docs/docs/en/api/faststream/log/formatter/ColourizedFormatter.md new file mode 100644 index 0000000000..6e1aec157c --- /dev/null +++ b/docs/docs/en/api/faststream/log/formatter/ColourizedFormatter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.log.formatter.ColourizedFormatter diff --git a/docs/docs/en/api/faststream/log/formatter/expand_log_field.md b/docs/docs/en/api/faststream/log/formatter/expand_log_field.md new file mode 100644 index 0000000000..ce943209af --- /dev/null +++ b/docs/docs/en/api/faststream/log/formatter/expand_log_field.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.log.formatter.expand_log_field diff --git a/docs/docs/en/api/faststream/log/logging/ExtendedFilter.md b/docs/docs/en/api/faststream/log/logging/ExtendedFilter.md new file mode 100644 index 0000000000..bd8f017947 --- /dev/null +++ b/docs/docs/en/api/faststream/log/logging/ExtendedFilter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.log.logging.ExtendedFilter diff --git a/docs/docs/en/api/faststream/log/logging/get_broker_logger.md b/docs/docs/en/api/faststream/log/logging/get_broker_logger.md new file mode 100644 index 0000000000..e3433fc8dd --- /dev/null +++ b/docs/docs/en/api/faststream/log/logging/get_broker_logger.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.log.logging.get_broker_logger diff --git a/docs/docs/en/api/faststream/log/logging/set_logger_fmt.md b/docs/docs/en/api/faststream/log/logging/set_logger_fmt.md new file mode 100644 index 0000000000..a4af3d137f --- /dev/null +++ b/docs/docs/en/api/faststream/log/logging/set_logger_fmt.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.log.logging.set_logger_fmt diff --git a/docs/docs/en/api/faststream/nats/AckPolicy.md b/docs/docs/en/api/faststream/nats/AckPolicy.md new file mode 100644 index 0000000000..308d12ac63 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/AckPolicy.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: nats.js.api.AckPolicy diff --git a/docs/docs/en/api/faststream/nats/ConsumerConfig.md b/docs/docs/en/api/faststream/nats/ConsumerConfig.md new file mode 100644 index 0000000000..56c357cc07 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/ConsumerConfig.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: nats.js.api.ConsumerConfig diff --git a/docs/docs/en/api/faststream/nats/DeliverPolicy.md b/docs/docs/en/api/faststream/nats/DeliverPolicy.md new file mode 100644 index 0000000000..ebb664d0d9 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/DeliverPolicy.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: nats.js.api.DeliverPolicy diff --git a/docs/docs/en/api/faststream/nats/DiscardPolicy.md b/docs/docs/en/api/faststream/nats/DiscardPolicy.md new file mode 100644 index 0000000000..9eacd12198 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/DiscardPolicy.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: nats.js.api.DiscardPolicy diff --git a/docs/docs/en/api/faststream/nats/ExternalStream.md b/docs/docs/en/api/faststream/nats/ExternalStream.md new file mode 100644 index 0000000000..5ea0eacbbc --- /dev/null +++ b/docs/docs/en/api/faststream/nats/ExternalStream.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: nats.js.api.ExternalStream diff --git a/docs/docs/en/api/faststream/nats/JStream.md b/docs/docs/en/api/faststream/nats/JStream.md new file mode 100644 index 0000000000..70ca7cab69 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/JStream.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.JStream diff --git a/docs/docs/en/api/faststream/nats/KvWatch.md b/docs/docs/en/api/faststream/nats/KvWatch.md new file mode 100644 index 0000000000..1527be51fd --- /dev/null +++ b/docs/docs/en/api/faststream/nats/KvWatch.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.KvWatch diff --git a/docs/docs/en/api/faststream/nats/NatsBroker.md b/docs/docs/en/api/faststream/nats/NatsBroker.md new file mode 100644 index 0000000000..376231c4cd --- /dev/null +++ b/docs/docs/en/api/faststream/nats/NatsBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.NatsBroker diff --git a/docs/docs/en/api/faststream/nats/NatsPublisher.md b/docs/docs/en/api/faststream/nats/NatsPublisher.md new file mode 100644 index 0000000000..1f1ffbca2a --- /dev/null +++ b/docs/docs/en/api/faststream/nats/NatsPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.NatsPublisher diff --git a/docs/docs/en/api/faststream/nats/NatsResponse.md b/docs/docs/en/api/faststream/nats/NatsResponse.md new file mode 100644 index 0000000000..6b967b527a --- /dev/null +++ b/docs/docs/en/api/faststream/nats/NatsResponse.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.NatsResponse diff --git a/docs/docs/en/api/faststream/nats/NatsRoute.md b/docs/docs/en/api/faststream/nats/NatsRoute.md new file mode 100644 index 0000000000..b76a8481dc --- /dev/null +++ b/docs/docs/en/api/faststream/nats/NatsRoute.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.NatsRoute diff --git a/docs/docs/en/api/faststream/nats/NatsRouter.md b/docs/docs/en/api/faststream/nats/NatsRouter.md new file mode 100644 index 0000000000..89e975235b --- /dev/null +++ b/docs/docs/en/api/faststream/nats/NatsRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.NatsRouter diff --git a/docs/docs/en/api/faststream/nats/ObjWatch.md b/docs/docs/en/api/faststream/nats/ObjWatch.md new file mode 100644 index 0000000000..50102ecf31 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/ObjWatch.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.ObjWatch diff --git a/docs/docs/en/api/faststream/nats/Placement.md b/docs/docs/en/api/faststream/nats/Placement.md new file mode 100644 index 0000000000..bff8b3d4b8 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/Placement.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: nats.js.api.Placement diff --git a/docs/docs/en/api/faststream/nats/PullSub.md b/docs/docs/en/api/faststream/nats/PullSub.md new file mode 100644 index 0000000000..dbfaf68f54 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/PullSub.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.PullSub diff --git a/docs/docs/en/api/faststream/nats/RePublish.md b/docs/docs/en/api/faststream/nats/RePublish.md new file mode 100644 index 0000000000..35ad498def --- /dev/null +++ b/docs/docs/en/api/faststream/nats/RePublish.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: nats.js.api.RePublish diff --git a/docs/docs/en/api/faststream/nats/ReplayPolicy.md b/docs/docs/en/api/faststream/nats/ReplayPolicy.md new file mode 100644 index 0000000000..6430f0a22f --- /dev/null +++ b/docs/docs/en/api/faststream/nats/ReplayPolicy.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: nats.js.api.ReplayPolicy diff --git a/docs/docs/en/api/faststream/nats/RetentionPolicy.md b/docs/docs/en/api/faststream/nats/RetentionPolicy.md new file mode 100644 index 0000000000..919b818c9e --- /dev/null +++ b/docs/docs/en/api/faststream/nats/RetentionPolicy.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: nats.js.api.RetentionPolicy diff --git a/docs/docs/en/api/faststream/nats/StorageType.md b/docs/docs/en/api/faststream/nats/StorageType.md new file mode 100644 index 0000000000..78a6bc4d8f --- /dev/null +++ b/docs/docs/en/api/faststream/nats/StorageType.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: nats.js.api.StorageType diff --git a/docs/docs/en/api/faststream/nats/StreamConfig.md b/docs/docs/en/api/faststream/nats/StreamConfig.md new file mode 100644 index 0000000000..3bce18f7de --- /dev/null +++ b/docs/docs/en/api/faststream/nats/StreamConfig.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: nats.js.api.StreamConfig diff --git a/docs/docs/en/api/faststream/nats/StreamSource.md b/docs/docs/en/api/faststream/nats/StreamSource.md new file mode 100644 index 0000000000..4d85db37e5 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/StreamSource.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: nats.js.api.StreamSource diff --git a/docs/docs/en/api/faststream/nats/TestApp.md b/docs/docs/en/api/faststream/nats/TestApp.md new file mode 100644 index 0000000000..2468f3755c --- /dev/null +++ b/docs/docs/en/api/faststream/nats/TestApp.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.testing.app.TestApp diff --git a/docs/docs/en/api/faststream/nats/TestNatsBroker.md b/docs/docs/en/api/faststream/nats/TestNatsBroker.md new file mode 100644 index 0000000000..8557295619 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/TestNatsBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.TestNatsBroker diff --git a/docs/docs/en/api/faststream/nats/broker/NatsBroker.md b/docs/docs/en/api/faststream/nats/broker/NatsBroker.md new file mode 100644 index 0000000000..eeea31372b --- /dev/null +++ b/docs/docs/en/api/faststream/nats/broker/NatsBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.broker.NatsBroker diff --git a/docs/docs/en/api/faststream/nats/broker/broker/NatsBroker.md b/docs/docs/en/api/faststream/nats/broker/broker/NatsBroker.md new file mode 100644 index 0000000000..7aed0de1ec --- /dev/null +++ b/docs/docs/en/api/faststream/nats/broker/broker/NatsBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.broker.broker.NatsBroker diff --git a/docs/docs/en/api/faststream/nats/broker/logging/NatsLoggingBroker.md b/docs/docs/en/api/faststream/nats/broker/logging/NatsLoggingBroker.md new file mode 100644 index 0000000000..cd31396a61 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/broker/logging/NatsLoggingBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.broker.logging.NatsLoggingBroker diff --git a/docs/docs/en/api/faststream/nats/broker/registrator/NatsRegistrator.md b/docs/docs/en/api/faststream/nats/broker/registrator/NatsRegistrator.md new file mode 100644 index 0000000000..f7f313746a --- /dev/null +++ b/docs/docs/en/api/faststream/nats/broker/registrator/NatsRegistrator.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.broker.registrator.NatsRegistrator diff --git a/docs/docs/en/api/faststream/nats/fastapi/Context.md b/docs/docs/en/api/faststream/nats/fastapi/Context.md new file mode 100644 index 0000000000..f4240bb0da --- /dev/null +++ b/docs/docs/en/api/faststream/nats/fastapi/Context.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.fastapi.context.Context diff --git a/docs/docs/en/api/faststream/nats/fastapi/NatsRouter.md b/docs/docs/en/api/faststream/nats/fastapi/NatsRouter.md new file mode 100644 index 0000000000..53123192c2 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/fastapi/NatsRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.fastapi.NatsRouter diff --git a/docs/docs/en/api/faststream/nats/fastapi/fastapi/NatsRouter.md b/docs/docs/en/api/faststream/nats/fastapi/fastapi/NatsRouter.md new file mode 100644 index 0000000000..015f730b4f --- /dev/null +++ b/docs/docs/en/api/faststream/nats/fastapi/fastapi/NatsRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.fastapi.fastapi.NatsRouter diff --git a/docs/docs/en/api/faststream/nats/helpers/KVBucketDeclarer.md b/docs/docs/en/api/faststream/nats/helpers/KVBucketDeclarer.md new file mode 100644 index 0000000000..b24feaada6 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/helpers/KVBucketDeclarer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.helpers.KVBucketDeclarer diff --git a/docs/docs/en/api/faststream/nats/helpers/OSBucketDeclarer.md b/docs/docs/en/api/faststream/nats/helpers/OSBucketDeclarer.md new file mode 100644 index 0000000000..3ee16a3f24 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/helpers/OSBucketDeclarer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.helpers.OSBucketDeclarer diff --git a/docs/docs/en/api/faststream/nats/helpers/StreamBuilder.md b/docs/docs/en/api/faststream/nats/helpers/StreamBuilder.md new file mode 100644 index 0000000000..3b2a318598 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/helpers/StreamBuilder.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.helpers.StreamBuilder diff --git a/docs/docs/en/api/faststream/nats/helpers/bucket_declarer/KVBucketDeclarer.md b/docs/docs/en/api/faststream/nats/helpers/bucket_declarer/KVBucketDeclarer.md new file mode 100644 index 0000000000..fe0eaec17f --- /dev/null +++ b/docs/docs/en/api/faststream/nats/helpers/bucket_declarer/KVBucketDeclarer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.helpers.bucket_declarer.KVBucketDeclarer diff --git a/docs/docs/en/api/faststream/nats/helpers/obj_storage_declarer/OSBucketDeclarer.md b/docs/docs/en/api/faststream/nats/helpers/obj_storage_declarer/OSBucketDeclarer.md new file mode 100644 index 0000000000..b7663051c8 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/helpers/obj_storage_declarer/OSBucketDeclarer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.helpers.obj_storage_declarer.OSBucketDeclarer diff --git a/docs/docs/en/api/faststream/nats/helpers/object_builder/StreamBuilder.md b/docs/docs/en/api/faststream/nats/helpers/object_builder/StreamBuilder.md new file mode 100644 index 0000000000..024daf2d14 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/helpers/object_builder/StreamBuilder.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.helpers.object_builder.StreamBuilder diff --git a/docs/docs/en/api/faststream/nats/message/NatsBatchMessage.md b/docs/docs/en/api/faststream/nats/message/NatsBatchMessage.md new file mode 100644 index 0000000000..83017107ff --- /dev/null +++ b/docs/docs/en/api/faststream/nats/message/NatsBatchMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.message.NatsBatchMessage diff --git a/docs/docs/en/api/faststream/nats/message/NatsKvMessage.md b/docs/docs/en/api/faststream/nats/message/NatsKvMessage.md new file mode 100644 index 0000000000..5ac6ed9f41 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/message/NatsKvMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.message.NatsKvMessage diff --git a/docs/docs/en/api/faststream/nats/message/NatsMessage.md b/docs/docs/en/api/faststream/nats/message/NatsMessage.md new file mode 100644 index 0000000000..22d17ceb56 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/message/NatsMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.message.NatsMessage diff --git a/docs/docs/en/api/faststream/nats/message/NatsObjMessage.md b/docs/docs/en/api/faststream/nats/message/NatsObjMessage.md new file mode 100644 index 0000000000..3671628da4 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/message/NatsObjMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.message.NatsObjMessage diff --git a/docs/docs/en/api/faststream/nats/opentelemetry/NatsTelemetryMiddleware.md b/docs/docs/en/api/faststream/nats/opentelemetry/NatsTelemetryMiddleware.md new file mode 100644 index 0000000000..e72f2de8ab --- /dev/null +++ b/docs/docs/en/api/faststream/nats/opentelemetry/NatsTelemetryMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.opentelemetry.NatsTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/nats/opentelemetry/middleware/NatsTelemetryMiddleware.md b/docs/docs/en/api/faststream/nats/opentelemetry/middleware/NatsTelemetryMiddleware.md new file mode 100644 index 0000000000..b2bb226585 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/opentelemetry/middleware/NatsTelemetryMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.opentelemetry.middleware.NatsTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/nats/opentelemetry/provider/BaseNatsTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/nats/opentelemetry/provider/BaseNatsTelemetrySettingsProvider.md new file mode 100644 index 0000000000..d6626c537d --- /dev/null +++ b/docs/docs/en/api/faststream/nats/opentelemetry/provider/BaseNatsTelemetrySettingsProvider.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.opentelemetry.provider.BaseNatsTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/nats/opentelemetry/provider/NatsBatchTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/nats/opentelemetry/provider/NatsBatchTelemetrySettingsProvider.md new file mode 100644 index 0000000000..045996125a --- /dev/null +++ b/docs/docs/en/api/faststream/nats/opentelemetry/provider/NatsBatchTelemetrySettingsProvider.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.opentelemetry.provider.NatsBatchTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/nats/opentelemetry/provider/NatsTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/nats/opentelemetry/provider/NatsTelemetrySettingsProvider.md new file mode 100644 index 0000000000..b58590c4fa --- /dev/null +++ b/docs/docs/en/api/faststream/nats/opentelemetry/provider/NatsTelemetrySettingsProvider.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.opentelemetry.provider.NatsTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/nats/opentelemetry/provider/telemetry_attributes_provider_factory.md b/docs/docs/en/api/faststream/nats/opentelemetry/provider/telemetry_attributes_provider_factory.md new file mode 100644 index 0000000000..200d333e0b --- /dev/null +++ b/docs/docs/en/api/faststream/nats/opentelemetry/provider/telemetry_attributes_provider_factory.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.opentelemetry.provider.telemetry_attributes_provider_factory diff --git a/docs/docs/en/api/faststream/nats/parser/BatchParser.md b/docs/docs/en/api/faststream/nats/parser/BatchParser.md new file mode 100644 index 0000000000..03ad25f549 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/parser/BatchParser.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.parser.BatchParser diff --git a/docs/docs/en/api/faststream/nats/parser/JsParser.md b/docs/docs/en/api/faststream/nats/parser/JsParser.md new file mode 100644 index 0000000000..0cd283d36e --- /dev/null +++ b/docs/docs/en/api/faststream/nats/parser/JsParser.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.parser.JsParser diff --git a/docs/docs/en/api/faststream/nats/parser/KvParser.md b/docs/docs/en/api/faststream/nats/parser/KvParser.md new file mode 100644 index 0000000000..acba65e133 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/parser/KvParser.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.parser.KvParser diff --git a/docs/docs/en/api/faststream/nats/parser/NatsBaseParser.md b/docs/docs/en/api/faststream/nats/parser/NatsBaseParser.md new file mode 100644 index 0000000000..00b038738d --- /dev/null +++ b/docs/docs/en/api/faststream/nats/parser/NatsBaseParser.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.parser.NatsBaseParser diff --git a/docs/docs/en/api/faststream/nats/parser/NatsParser.md b/docs/docs/en/api/faststream/nats/parser/NatsParser.md new file mode 100644 index 0000000000..ceed3d0bdf --- /dev/null +++ b/docs/docs/en/api/faststream/nats/parser/NatsParser.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.parser.NatsParser diff --git a/docs/docs/en/api/faststream/nats/parser/ObjParser.md b/docs/docs/en/api/faststream/nats/parser/ObjParser.md new file mode 100644 index 0000000000..50ff5d0e18 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/parser/ObjParser.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.parser.ObjParser diff --git a/docs/docs/en/api/faststream/nats/publisher/asyncapi/AsyncAPIPublisher.md b/docs/docs/en/api/faststream/nats/publisher/asyncapi/AsyncAPIPublisher.md new file mode 100644 index 0000000000..6ea394db59 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/publisher/asyncapi/AsyncAPIPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.publisher.asyncapi.AsyncAPIPublisher diff --git a/docs/docs/en/api/faststream/nats/publisher/producer/NatsFastProducer.md b/docs/docs/en/api/faststream/nats/publisher/producer/NatsFastProducer.md new file mode 100644 index 0000000000..82ff491f16 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/publisher/producer/NatsFastProducer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.publisher.producer.NatsFastProducer diff --git a/docs/docs/en/api/faststream/nats/publisher/producer/NatsJSFastProducer.md b/docs/docs/en/api/faststream/nats/publisher/producer/NatsJSFastProducer.md new file mode 100644 index 0000000000..9c0e046e61 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/publisher/producer/NatsJSFastProducer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.publisher.producer.NatsJSFastProducer diff --git a/docs/docs/en/api/faststream/nats/publisher/usecase/LogicPublisher.md b/docs/docs/en/api/faststream/nats/publisher/usecase/LogicPublisher.md new file mode 100644 index 0000000000..08c7794545 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/publisher/usecase/LogicPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.publisher.usecase.LogicPublisher diff --git a/docs/docs/en/api/faststream/nats/response/NatsResponse.md b/docs/docs/en/api/faststream/nats/response/NatsResponse.md new file mode 100644 index 0000000000..8a7da66982 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/response/NatsResponse.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.response.NatsResponse diff --git a/docs/docs/en/api/faststream/nats/router/NatsPublisher.md b/docs/docs/en/api/faststream/nats/router/NatsPublisher.md new file mode 100644 index 0000000000..b025495e44 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/router/NatsPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.router.NatsPublisher diff --git a/docs/docs/en/api/faststream/nats/router/NatsRoute.md b/docs/docs/en/api/faststream/nats/router/NatsRoute.md new file mode 100644 index 0000000000..36df33c45e --- /dev/null +++ b/docs/docs/en/api/faststream/nats/router/NatsRoute.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.router.NatsRoute diff --git a/docs/docs/en/api/faststream/nats/router/NatsRouter.md b/docs/docs/en/api/faststream/nats/router/NatsRouter.md new file mode 100644 index 0000000000..4b6dfaaf7d --- /dev/null +++ b/docs/docs/en/api/faststream/nats/router/NatsRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.router.NatsRouter diff --git a/docs/docs/en/api/faststream/nats/schemas/JStream.md b/docs/docs/en/api/faststream/nats/schemas/JStream.md new file mode 100644 index 0000000000..51df9a02cc --- /dev/null +++ b/docs/docs/en/api/faststream/nats/schemas/JStream.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.schemas.JStream diff --git a/docs/docs/en/api/faststream/nats/schemas/KvWatch.md b/docs/docs/en/api/faststream/nats/schemas/KvWatch.md new file mode 100644 index 0000000000..ce99738043 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/schemas/KvWatch.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.schemas.KvWatch diff --git a/docs/docs/en/api/faststream/nats/schemas/ObjWatch.md b/docs/docs/en/api/faststream/nats/schemas/ObjWatch.md new file mode 100644 index 0000000000..51c3628e5e --- /dev/null +++ b/docs/docs/en/api/faststream/nats/schemas/ObjWatch.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.schemas.ObjWatch diff --git a/docs/docs/en/api/faststream/nats/schemas/PullSub.md b/docs/docs/en/api/faststream/nats/schemas/PullSub.md new file mode 100644 index 0000000000..cb7341340c --- /dev/null +++ b/docs/docs/en/api/faststream/nats/schemas/PullSub.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.schemas.PullSub diff --git a/docs/docs/en/api/faststream/nats/schemas/js_stream/JStream.md b/docs/docs/en/api/faststream/nats/schemas/js_stream/JStream.md new file mode 100644 index 0000000000..af375c116a --- /dev/null +++ b/docs/docs/en/api/faststream/nats/schemas/js_stream/JStream.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.schemas.js_stream.JStream diff --git a/docs/docs/en/api/faststream/nats/schemas/js_stream/compile_nats_wildcard.md b/docs/docs/en/api/faststream/nats/schemas/js_stream/compile_nats_wildcard.md new file mode 100644 index 0000000000..910f034eff --- /dev/null +++ b/docs/docs/en/api/faststream/nats/schemas/js_stream/compile_nats_wildcard.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.schemas.js_stream.compile_nats_wildcard diff --git a/docs/docs/en/api/faststream/nats/schemas/js_stream/is_subject_match_wildcard.md b/docs/docs/en/api/faststream/nats/schemas/js_stream/is_subject_match_wildcard.md new file mode 100644 index 0000000000..f9305b94e8 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/schemas/js_stream/is_subject_match_wildcard.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.schemas.js_stream.is_subject_match_wildcard diff --git a/docs/docs/en/api/faststream/nats/schemas/kv_watch/KvWatch.md b/docs/docs/en/api/faststream/nats/schemas/kv_watch/KvWatch.md new file mode 100644 index 0000000000..ce07fa305d --- /dev/null +++ b/docs/docs/en/api/faststream/nats/schemas/kv_watch/KvWatch.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.schemas.kv_watch.KvWatch diff --git a/docs/docs/en/api/faststream/nats/schemas/obj_watch/ObjWatch.md b/docs/docs/en/api/faststream/nats/schemas/obj_watch/ObjWatch.md new file mode 100644 index 0000000000..55831b8a6a --- /dev/null +++ b/docs/docs/en/api/faststream/nats/schemas/obj_watch/ObjWatch.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.schemas.obj_watch.ObjWatch diff --git a/docs/docs/en/api/faststream/nats/schemas/pull_sub/PullSub.md b/docs/docs/en/api/faststream/nats/schemas/pull_sub/PullSub.md new file mode 100644 index 0000000000..673a1e8ff6 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/schemas/pull_sub/PullSub.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.schemas.pull_sub.PullSub diff --git a/docs/docs/en/api/faststream/nats/security/parse_security.md b/docs/docs/en/api/faststream/nats/security/parse_security.md new file mode 100644 index 0000000000..d2fe5dd0c3 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/security/parse_security.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.security.parse_security diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIBatchPullStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIBatchPullStreamSubscriber.md new file mode 100644 index 0000000000..15bceeedbc --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIBatchPullStreamSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.asyncapi.AsyncAPIBatchPullStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentCoreSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentCoreSubscriber.md new file mode 100644 index 0000000000..f88e14f817 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentCoreSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.asyncapi.AsyncAPIConcurrentCoreSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentPullStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentPullStreamSubscriber.md new file mode 100644 index 0000000000..b5ebf86f93 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentPullStreamSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.asyncapi.AsyncAPIConcurrentPullStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentPushStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentPushStreamSubscriber.md new file mode 100644 index 0000000000..7bb4a6e088 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIConcurrentPushStreamSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.asyncapi.AsyncAPIConcurrentPushStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPICoreSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPICoreSubscriber.md new file mode 100644 index 0000000000..8819adebab --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPICoreSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.asyncapi.AsyncAPICoreSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIKeyValueWatchSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIKeyValueWatchSubscriber.md new file mode 100644 index 0000000000..b006854b0b --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIKeyValueWatchSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.asyncapi.AsyncAPIKeyValueWatchSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIObjStoreWatchSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIObjStoreWatchSubscriber.md new file mode 100644 index 0000000000..0a9157ed55 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIObjStoreWatchSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.asyncapi.AsyncAPIObjStoreWatchSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIPullStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIPullStreamSubscriber.md new file mode 100644 index 0000000000..e9650bef94 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIPullStreamSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.asyncapi.AsyncAPIPullStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIStreamSubscriber.md new file mode 100644 index 0000000000..6d448d3af5 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPIStreamSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.asyncapi.AsyncAPIStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPISubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPISubscriber.md new file mode 100644 index 0000000000..4fcbab6ea6 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/asyncapi/AsyncAPISubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.asyncapi.AsyncAPISubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/factory/create_subscriber.md b/docs/docs/en/api/faststream/nats/subscriber/factory/create_subscriber.md new file mode 100644 index 0000000000..0e132c3394 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/factory/create_subscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.factory.create_subscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/subscription/UnsubscribeAdapter.md b/docs/docs/en/api/faststream/nats/subscriber/subscription/UnsubscribeAdapter.md new file mode 100644 index 0000000000..455885671f --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/subscription/UnsubscribeAdapter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.subscription.UnsubscribeAdapter diff --git a/docs/docs/en/api/faststream/nats/subscriber/subscription/Unsubscriptable.md b/docs/docs/en/api/faststream/nats/subscriber/subscription/Unsubscriptable.md new file mode 100644 index 0000000000..c94cb1b731 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/subscription/Unsubscriptable.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.subscription.Unsubscriptable diff --git a/docs/docs/en/api/faststream/nats/subscriber/subscription/Watchable.md b/docs/docs/en/api/faststream/nats/subscriber/subscription/Watchable.md new file mode 100644 index 0000000000..67638258ea --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/subscription/Watchable.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.subscription.Watchable diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/BatchPullStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/BatchPullStreamSubscriber.md new file mode 100644 index 0000000000..dfb1c43575 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/usecase/BatchPullStreamSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.usecase.BatchPullStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentCoreSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentCoreSubscriber.md new file mode 100644 index 0000000000..e1f100c043 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentCoreSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.usecase.ConcurrentCoreSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentPullStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentPullStreamSubscriber.md new file mode 100644 index 0000000000..c1b7207285 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentPullStreamSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.usecase.ConcurrentPullStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentPushStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentPushStreamSubscriber.md new file mode 100644 index 0000000000..ffa2e0c37b --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/usecase/ConcurrentPushStreamSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.usecase.ConcurrentPushStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/CoreSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/CoreSubscriber.md new file mode 100644 index 0000000000..8ddb0b8c04 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/usecase/CoreSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.usecase.CoreSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/KeyValueWatchSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/KeyValueWatchSubscriber.md new file mode 100644 index 0000000000..778557ee2b --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/usecase/KeyValueWatchSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.usecase.KeyValueWatchSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/LogicSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/LogicSubscriber.md new file mode 100644 index 0000000000..100db07bbe --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/usecase/LogicSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.usecase.LogicSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/ObjStoreWatchSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/ObjStoreWatchSubscriber.md new file mode 100644 index 0000000000..ad15f32931 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/usecase/ObjStoreWatchSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.usecase.ObjStoreWatchSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/PullStreamSubscriber.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/PullStreamSubscriber.md new file mode 100644 index 0000000000..30f30a893f --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/usecase/PullStreamSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.usecase.PullStreamSubscriber diff --git a/docs/docs/en/api/faststream/nats/subscriber/usecase/PushStreamSubscription.md b/docs/docs/en/api/faststream/nats/subscriber/usecase/PushStreamSubscription.md new file mode 100644 index 0000000000..bb29bbb9c2 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/subscriber/usecase/PushStreamSubscription.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.subscriber.usecase.PushStreamSubscription diff --git a/docs/docs/en/api/faststream/nats/testing/FakeProducer.md b/docs/docs/en/api/faststream/nats/testing/FakeProducer.md new file mode 100644 index 0000000000..f2615aeb36 --- /dev/null +++ b/docs/docs/en/api/faststream/nats/testing/FakeProducer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.testing.FakeProducer diff --git a/docs/docs/en/api/faststream/nats/testing/PatchedMessage.md b/docs/docs/en/api/faststream/nats/testing/PatchedMessage.md new file mode 100644 index 0000000000..e32802d4dd --- /dev/null +++ b/docs/docs/en/api/faststream/nats/testing/PatchedMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.testing.PatchedMessage diff --git a/docs/docs/en/api/faststream/nats/testing/TestNatsBroker.md b/docs/docs/en/api/faststream/nats/testing/TestNatsBroker.md new file mode 100644 index 0000000000..2abcf7f06d --- /dev/null +++ b/docs/docs/en/api/faststream/nats/testing/TestNatsBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.testing.TestNatsBroker diff --git a/docs/docs/en/api/faststream/nats/testing/build_message.md b/docs/docs/en/api/faststream/nats/testing/build_message.md new file mode 100644 index 0000000000..160977893d --- /dev/null +++ b/docs/docs/en/api/faststream/nats/testing/build_message.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.nats.testing.build_message diff --git a/docs/docs/en/api/faststream/opentelemetry/TelemetryMiddleware.md b/docs/docs/en/api/faststream/opentelemetry/TelemetryMiddleware.md new file mode 100644 index 0000000000..914f134e60 --- /dev/null +++ b/docs/docs/en/api/faststream/opentelemetry/TelemetryMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.opentelemetry.TelemetryMiddleware diff --git a/docs/docs/en/api/faststream/opentelemetry/TelemetrySettingsProvider.md b/docs/docs/en/api/faststream/opentelemetry/TelemetrySettingsProvider.md new file mode 100644 index 0000000000..7ca8b2cb6d --- /dev/null +++ b/docs/docs/en/api/faststream/opentelemetry/TelemetrySettingsProvider.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.opentelemetry.TelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/opentelemetry/consts/MessageAction.md b/docs/docs/en/api/faststream/opentelemetry/consts/MessageAction.md new file mode 100644 index 0000000000..cd58706774 --- /dev/null +++ b/docs/docs/en/api/faststream/opentelemetry/consts/MessageAction.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.opentelemetry.consts.MessageAction diff --git a/docs/docs/en/api/faststream/opentelemetry/middleware/BaseTelemetryMiddleware.md b/docs/docs/en/api/faststream/opentelemetry/middleware/BaseTelemetryMiddleware.md new file mode 100644 index 0000000000..64a7b4a501 --- /dev/null +++ b/docs/docs/en/api/faststream/opentelemetry/middleware/BaseTelemetryMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.opentelemetry.middleware.BaseTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/opentelemetry/middleware/TelemetryMiddleware.md b/docs/docs/en/api/faststream/opentelemetry/middleware/TelemetryMiddleware.md new file mode 100644 index 0000000000..f019b3ad61 --- /dev/null +++ b/docs/docs/en/api/faststream/opentelemetry/middleware/TelemetryMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.opentelemetry.middleware.TelemetryMiddleware diff --git a/docs/docs/en/api/faststream/opentelemetry/provider/TelemetrySettingsProvider.md b/docs/docs/en/api/faststream/opentelemetry/provider/TelemetrySettingsProvider.md new file mode 100644 index 0000000000..0fefe1c0ef --- /dev/null +++ b/docs/docs/en/api/faststream/opentelemetry/provider/TelemetrySettingsProvider.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.opentelemetry.provider.TelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/rabbit/ExchangeType.md b/docs/docs/en/api/faststream/rabbit/ExchangeType.md new file mode 100644 index 0000000000..9b299b951d --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/ExchangeType.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.ExchangeType diff --git a/docs/docs/en/api/faststream/rabbit/RabbitBroker.md b/docs/docs/en/api/faststream/rabbit/RabbitBroker.md new file mode 100644 index 0000000000..f48b2b5e78 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/RabbitBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.RabbitBroker diff --git a/docs/docs/en/api/faststream/rabbit/RabbitExchange.md b/docs/docs/en/api/faststream/rabbit/RabbitExchange.md new file mode 100644 index 0000000000..bbf9676e72 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/RabbitExchange.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.RabbitExchange diff --git a/docs/docs/en/api/faststream/rabbit/RabbitPublisher.md b/docs/docs/en/api/faststream/rabbit/RabbitPublisher.md new file mode 100644 index 0000000000..7e0d3f674b --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/RabbitPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.RabbitPublisher diff --git a/docs/docs/en/api/faststream/rabbit/RabbitQueue.md b/docs/docs/en/api/faststream/rabbit/RabbitQueue.md new file mode 100644 index 0000000000..97945b6408 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/RabbitQueue.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.RabbitQueue diff --git a/docs/docs/en/api/faststream/rabbit/RabbitResponse.md b/docs/docs/en/api/faststream/rabbit/RabbitResponse.md new file mode 100644 index 0000000000..4d20d82b0e --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/RabbitResponse.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.RabbitResponse diff --git a/docs/docs/en/api/faststream/rabbit/RabbitRoute.md b/docs/docs/en/api/faststream/rabbit/RabbitRoute.md new file mode 100644 index 0000000000..e11a9f058d --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/RabbitRoute.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.RabbitRoute diff --git a/docs/docs/en/api/faststream/rabbit/RabbitRouter.md b/docs/docs/en/api/faststream/rabbit/RabbitRouter.md new file mode 100644 index 0000000000..133880fc50 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/RabbitRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.RabbitRouter diff --git a/docs/docs/en/api/faststream/rabbit/ReplyConfig.md b/docs/docs/en/api/faststream/rabbit/ReplyConfig.md new file mode 100644 index 0000000000..013bd2f986 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/ReplyConfig.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.ReplyConfig diff --git a/docs/docs/en/api/faststream/rabbit/TestApp.md b/docs/docs/en/api/faststream/rabbit/TestApp.md new file mode 100644 index 0000000000..2468f3755c --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/TestApp.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.testing.app.TestApp diff --git a/docs/docs/en/api/faststream/rabbit/TestRabbitBroker.md b/docs/docs/en/api/faststream/rabbit/TestRabbitBroker.md new file mode 100644 index 0000000000..c4519d58b8 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/TestRabbitBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.TestRabbitBroker diff --git a/docs/docs/en/api/faststream/rabbit/broker/RabbitBroker.md b/docs/docs/en/api/faststream/rabbit/broker/RabbitBroker.md new file mode 100644 index 0000000000..ac72ec0ae9 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/broker/RabbitBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.broker.RabbitBroker diff --git a/docs/docs/en/api/faststream/rabbit/broker/broker/RabbitBroker.md b/docs/docs/en/api/faststream/rabbit/broker/broker/RabbitBroker.md new file mode 100644 index 0000000000..9ed9170ead --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/broker/broker/RabbitBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.broker.broker.RabbitBroker diff --git a/docs/docs/en/api/faststream/rabbit/broker/logging/RabbitLoggingBroker.md b/docs/docs/en/api/faststream/rabbit/broker/logging/RabbitLoggingBroker.md new file mode 100644 index 0000000000..a3b3151d4b --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/broker/logging/RabbitLoggingBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.broker.logging.RabbitLoggingBroker diff --git a/docs/docs/en/api/faststream/rabbit/broker/registrator/RabbitRegistrator.md b/docs/docs/en/api/faststream/rabbit/broker/registrator/RabbitRegistrator.md new file mode 100644 index 0000000000..f22385f512 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/broker/registrator/RabbitRegistrator.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.broker.registrator.RabbitRegistrator diff --git a/docs/docs/en/api/faststream/rabbit/fastapi/Context.md b/docs/docs/en/api/faststream/rabbit/fastapi/Context.md new file mode 100644 index 0000000000..f4240bb0da --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/fastapi/Context.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.fastapi.context.Context diff --git a/docs/docs/en/api/faststream/rabbit/fastapi/RabbitRouter.md b/docs/docs/en/api/faststream/rabbit/fastapi/RabbitRouter.md new file mode 100644 index 0000000000..72f0a90072 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/fastapi/RabbitRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.fastapi.RabbitRouter diff --git a/docs/docs/en/api/faststream/rabbit/fastapi/router/RabbitRouter.md b/docs/docs/en/api/faststream/rabbit/fastapi/router/RabbitRouter.md new file mode 100644 index 0000000000..36dda03314 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/fastapi/router/RabbitRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.fastapi.router.RabbitRouter diff --git a/docs/docs/en/api/faststream/rabbit/message/RabbitMessage.md b/docs/docs/en/api/faststream/rabbit/message/RabbitMessage.md new file mode 100644 index 0000000000..598d43f818 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/message/RabbitMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.message.RabbitMessage diff --git a/docs/docs/en/api/faststream/rabbit/opentelemetry/RabbitTelemetryMiddleware.md b/docs/docs/en/api/faststream/rabbit/opentelemetry/RabbitTelemetryMiddleware.md new file mode 100644 index 0000000000..7d5ef3de27 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/opentelemetry/RabbitTelemetryMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.opentelemetry.RabbitTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/rabbit/opentelemetry/middleware/RabbitTelemetryMiddleware.md b/docs/docs/en/api/faststream/rabbit/opentelemetry/middleware/RabbitTelemetryMiddleware.md new file mode 100644 index 0000000000..e86771a8ba --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/opentelemetry/middleware/RabbitTelemetryMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.opentelemetry.middleware.RabbitTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/rabbit/opentelemetry/provider/RabbitTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/rabbit/opentelemetry/provider/RabbitTelemetrySettingsProvider.md new file mode 100644 index 0000000000..ba6742ac90 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/opentelemetry/provider/RabbitTelemetrySettingsProvider.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.opentelemetry.provider.RabbitTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/rabbit/parser/AioPikaParser.md b/docs/docs/en/api/faststream/rabbit/parser/AioPikaParser.md new file mode 100644 index 0000000000..0a02d90270 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/parser/AioPikaParser.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.parser.AioPikaParser diff --git a/docs/docs/en/api/faststream/rabbit/publisher/asyncapi/AsyncAPIPublisher.md b/docs/docs/en/api/faststream/rabbit/publisher/asyncapi/AsyncAPIPublisher.md new file mode 100644 index 0000000000..6ece65cfed --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/publisher/asyncapi/AsyncAPIPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.publisher.asyncapi.AsyncAPIPublisher diff --git a/docs/docs/en/api/faststream/rabbit/publisher/producer/AioPikaFastProducer.md b/docs/docs/en/api/faststream/rabbit/publisher/producer/AioPikaFastProducer.md new file mode 100644 index 0000000000..527cc5604c --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/publisher/producer/AioPikaFastProducer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.publisher.producer.AioPikaFastProducer diff --git a/docs/docs/en/api/faststream/rabbit/publisher/usecase/LogicPublisher.md b/docs/docs/en/api/faststream/rabbit/publisher/usecase/LogicPublisher.md new file mode 100644 index 0000000000..1ef927866e --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/publisher/usecase/LogicPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.publisher.usecase.LogicPublisher diff --git a/docs/docs/en/api/faststream/rabbit/publisher/usecase/PublishKwargs.md b/docs/docs/en/api/faststream/rabbit/publisher/usecase/PublishKwargs.md new file mode 100644 index 0000000000..3d917891cd --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/publisher/usecase/PublishKwargs.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.publisher.usecase.PublishKwargs diff --git a/docs/docs/en/api/faststream/rabbit/response/RabbitResponse.md b/docs/docs/en/api/faststream/rabbit/response/RabbitResponse.md new file mode 100644 index 0000000000..477cfb9861 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/response/RabbitResponse.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.response.RabbitResponse diff --git a/docs/docs/en/api/faststream/rabbit/router/RabbitPublisher.md b/docs/docs/en/api/faststream/rabbit/router/RabbitPublisher.md new file mode 100644 index 0000000000..befbec9103 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/router/RabbitPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.router.RabbitPublisher diff --git a/docs/docs/en/api/faststream/rabbit/router/RabbitRoute.md b/docs/docs/en/api/faststream/rabbit/router/RabbitRoute.md new file mode 100644 index 0000000000..8e8b0fbb6c --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/router/RabbitRoute.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.router.RabbitRoute diff --git a/docs/docs/en/api/faststream/rabbit/router/RabbitRouter.md b/docs/docs/en/api/faststream/rabbit/router/RabbitRouter.md new file mode 100644 index 0000000000..eff5f6169a --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/router/RabbitRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.router.RabbitRouter diff --git a/docs/docs/en/api/faststream/rabbit/schemas/BaseRMQInformation.md b/docs/docs/en/api/faststream/rabbit/schemas/BaseRMQInformation.md new file mode 100644 index 0000000000..7ff32d2cd2 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/schemas/BaseRMQInformation.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.schemas.BaseRMQInformation diff --git a/docs/docs/en/api/faststream/rabbit/schemas/ExchangeType.md b/docs/docs/en/api/faststream/rabbit/schemas/ExchangeType.md new file mode 100644 index 0000000000..c6c2ef8a28 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/schemas/ExchangeType.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.schemas.ExchangeType diff --git a/docs/docs/en/api/faststream/rabbit/schemas/RabbitExchange.md b/docs/docs/en/api/faststream/rabbit/schemas/RabbitExchange.md new file mode 100644 index 0000000000..4e60ed96f5 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/schemas/RabbitExchange.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.schemas.RabbitExchange diff --git a/docs/docs/en/api/faststream/rabbit/schemas/RabbitQueue.md b/docs/docs/en/api/faststream/rabbit/schemas/RabbitQueue.md new file mode 100644 index 0000000000..947238b788 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/schemas/RabbitQueue.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.schemas.RabbitQueue diff --git a/docs/docs/en/api/faststream/rabbit/schemas/ReplyConfig.md b/docs/docs/en/api/faststream/rabbit/schemas/ReplyConfig.md new file mode 100644 index 0000000000..239c4f9d6e --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/schemas/ReplyConfig.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.schemas.ReplyConfig diff --git a/docs/docs/en/api/faststream/rabbit/schemas/constants/ExchangeType.md b/docs/docs/en/api/faststream/rabbit/schemas/constants/ExchangeType.md new file mode 100644 index 0000000000..11705f35ac --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/schemas/constants/ExchangeType.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.schemas.constants.ExchangeType diff --git a/docs/docs/en/api/faststream/rabbit/schemas/exchange/RabbitExchange.md b/docs/docs/en/api/faststream/rabbit/schemas/exchange/RabbitExchange.md new file mode 100644 index 0000000000..ebcb211714 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/schemas/exchange/RabbitExchange.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.schemas.exchange.RabbitExchange diff --git a/docs/docs/en/api/faststream/rabbit/schemas/proto/BaseRMQInformation.md b/docs/docs/en/api/faststream/rabbit/schemas/proto/BaseRMQInformation.md new file mode 100644 index 0000000000..1eca00071b --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/schemas/proto/BaseRMQInformation.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.schemas.proto.BaseRMQInformation diff --git a/docs/docs/en/api/faststream/rabbit/schemas/queue/RabbitQueue.md b/docs/docs/en/api/faststream/rabbit/schemas/queue/RabbitQueue.md new file mode 100644 index 0000000000..83bc15e02f --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/schemas/queue/RabbitQueue.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.schemas.queue.RabbitQueue diff --git a/docs/docs/en/api/faststream/rabbit/schemas/reply/ReplyConfig.md b/docs/docs/en/api/faststream/rabbit/schemas/reply/ReplyConfig.md new file mode 100644 index 0000000000..1aeb941ff5 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/schemas/reply/ReplyConfig.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.schemas.reply.ReplyConfig diff --git a/docs/docs/en/api/faststream/rabbit/security/parse_security.md b/docs/docs/en/api/faststream/rabbit/security/parse_security.md new file mode 100644 index 0000000000..0b19ee5ee2 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/security/parse_security.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.security.parse_security diff --git a/docs/docs/en/api/faststream/rabbit/subscriber/asyncapi/AsyncAPISubscriber.md b/docs/docs/en/api/faststream/rabbit/subscriber/asyncapi/AsyncAPISubscriber.md new file mode 100644 index 0000000000..4d11c4b8e0 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/subscriber/asyncapi/AsyncAPISubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.subscriber.asyncapi.AsyncAPISubscriber diff --git a/docs/docs/en/api/faststream/rabbit/subscriber/factory/create_subscriber.md b/docs/docs/en/api/faststream/rabbit/subscriber/factory/create_subscriber.md new file mode 100644 index 0000000000..79c7082931 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/subscriber/factory/create_subscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.subscriber.factory.create_subscriber diff --git a/docs/docs/en/api/faststream/rabbit/subscriber/usecase/LogicSubscriber.md b/docs/docs/en/api/faststream/rabbit/subscriber/usecase/LogicSubscriber.md new file mode 100644 index 0000000000..56ef70dd0d --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/subscriber/usecase/LogicSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.subscriber.usecase.LogicSubscriber diff --git a/docs/docs/en/api/faststream/rabbit/testing/FakeProducer.md b/docs/docs/en/api/faststream/rabbit/testing/FakeProducer.md new file mode 100644 index 0000000000..7fa3603f60 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/testing/FakeProducer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.testing.FakeProducer diff --git a/docs/docs/en/api/faststream/rabbit/testing/PatchedMessage.md b/docs/docs/en/api/faststream/rabbit/testing/PatchedMessage.md new file mode 100644 index 0000000000..f58c1140c2 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/testing/PatchedMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.testing.PatchedMessage diff --git a/docs/docs/en/api/faststream/rabbit/testing/TestRabbitBroker.md b/docs/docs/en/api/faststream/rabbit/testing/TestRabbitBroker.md new file mode 100644 index 0000000000..ab2c088b39 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/testing/TestRabbitBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.testing.TestRabbitBroker diff --git a/docs/docs/en/api/faststream/rabbit/testing/apply_pattern.md b/docs/docs/en/api/faststream/rabbit/testing/apply_pattern.md new file mode 100644 index 0000000000..02ffd305ef --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/testing/apply_pattern.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.testing.apply_pattern diff --git a/docs/docs/en/api/faststream/rabbit/testing/build_message.md b/docs/docs/en/api/faststream/rabbit/testing/build_message.md new file mode 100644 index 0000000000..296715e46a --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/testing/build_message.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.testing.build_message diff --git a/docs/docs/en/api/faststream/rabbit/utils/RabbitDeclarer.md b/docs/docs/en/api/faststream/rabbit/utils/RabbitDeclarer.md new file mode 100644 index 0000000000..28a5a6b7c5 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/utils/RabbitDeclarer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.utils.RabbitDeclarer diff --git a/docs/docs/en/api/faststream/rabbit/utils/build_url.md b/docs/docs/en/api/faststream/rabbit/utils/build_url.md new file mode 100644 index 0000000000..ffb6555837 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/utils/build_url.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.utils.build_url diff --git a/docs/docs/en/api/faststream/rabbit/utils/is_routing_exchange.md b/docs/docs/en/api/faststream/rabbit/utils/is_routing_exchange.md new file mode 100644 index 0000000000..4ef1481a69 --- /dev/null +++ b/docs/docs/en/api/faststream/rabbit/utils/is_routing_exchange.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.rabbit.utils.is_routing_exchange diff --git a/docs/docs/en/api/faststream/redis/ListSub.md b/docs/docs/en/api/faststream/redis/ListSub.md new file mode 100644 index 0000000000..9c97a0afcd --- /dev/null +++ b/docs/docs/en/api/faststream/redis/ListSub.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.ListSub diff --git a/docs/docs/en/api/faststream/redis/PubSub.md b/docs/docs/en/api/faststream/redis/PubSub.md new file mode 100644 index 0000000000..d2fba00014 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/PubSub.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.PubSub diff --git a/docs/docs/en/api/faststream/redis/RedisBroker.md b/docs/docs/en/api/faststream/redis/RedisBroker.md new file mode 100644 index 0000000000..7275bfb60a --- /dev/null +++ b/docs/docs/en/api/faststream/redis/RedisBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.RedisBroker diff --git a/docs/docs/en/api/faststream/redis/RedisPublisher.md b/docs/docs/en/api/faststream/redis/RedisPublisher.md new file mode 100644 index 0000000000..565d857810 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/RedisPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.RedisPublisher diff --git a/docs/docs/en/api/faststream/redis/RedisResponse.md b/docs/docs/en/api/faststream/redis/RedisResponse.md new file mode 100644 index 0000000000..eedecf1ea3 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/RedisResponse.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.RedisResponse diff --git a/docs/docs/en/api/faststream/redis/RedisRoute.md b/docs/docs/en/api/faststream/redis/RedisRoute.md new file mode 100644 index 0000000000..14b4416ed4 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/RedisRoute.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.RedisRoute diff --git a/docs/docs/en/api/faststream/redis/RedisRouter.md b/docs/docs/en/api/faststream/redis/RedisRouter.md new file mode 100644 index 0000000000..9b7292e703 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/RedisRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.RedisRouter diff --git a/docs/docs/en/api/faststream/redis/StreamSub.md b/docs/docs/en/api/faststream/redis/StreamSub.md new file mode 100644 index 0000000000..d1244238b6 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/StreamSub.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.StreamSub diff --git a/docs/docs/en/api/faststream/redis/TestApp.md b/docs/docs/en/api/faststream/redis/TestApp.md new file mode 100644 index 0000000000..2468f3755c --- /dev/null +++ b/docs/docs/en/api/faststream/redis/TestApp.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.testing.app.TestApp diff --git a/docs/docs/en/api/faststream/redis/TestRedisBroker.md b/docs/docs/en/api/faststream/redis/TestRedisBroker.md new file mode 100644 index 0000000000..703490c302 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/TestRedisBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.TestRedisBroker diff --git a/docs/docs/en/api/faststream/redis/broker/broker/RedisBroker.md b/docs/docs/en/api/faststream/redis/broker/broker/RedisBroker.md new file mode 100644 index 0000000000..fdc177e868 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/broker/broker/RedisBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.broker.broker.RedisBroker diff --git a/docs/docs/en/api/faststream/redis/broker/logging/RedisLoggingBroker.md b/docs/docs/en/api/faststream/redis/broker/logging/RedisLoggingBroker.md new file mode 100644 index 0000000000..58500b3c1f --- /dev/null +++ b/docs/docs/en/api/faststream/redis/broker/logging/RedisLoggingBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.broker.logging.RedisLoggingBroker diff --git a/docs/docs/en/api/faststream/redis/broker/registrator/RedisRegistrator.md b/docs/docs/en/api/faststream/redis/broker/registrator/RedisRegistrator.md new file mode 100644 index 0000000000..8d040533d7 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/broker/registrator/RedisRegistrator.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.broker.registrator.RedisRegistrator diff --git a/docs/docs/en/api/faststream/redis/fastapi/Context.md b/docs/docs/en/api/faststream/redis/fastapi/Context.md new file mode 100644 index 0000000000..f4240bb0da --- /dev/null +++ b/docs/docs/en/api/faststream/redis/fastapi/Context.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.broker.fastapi.context.Context diff --git a/docs/docs/en/api/faststream/redis/fastapi/RedisRouter.md b/docs/docs/en/api/faststream/redis/fastapi/RedisRouter.md new file mode 100644 index 0000000000..7894f88728 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/fastapi/RedisRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.fastapi.RedisRouter diff --git a/docs/docs/en/api/faststream/redis/fastapi/fastapi/RedisRouter.md b/docs/docs/en/api/faststream/redis/fastapi/fastapi/RedisRouter.md new file mode 100644 index 0000000000..858c951f61 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/fastapi/fastapi/RedisRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.fastapi.fastapi.RedisRouter diff --git a/docs/docs/en/api/faststream/redis/message/BatchListMessage.md b/docs/docs/en/api/faststream/redis/message/BatchListMessage.md new file mode 100644 index 0000000000..c510fa09b9 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/message/BatchListMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.message.BatchListMessage diff --git a/docs/docs/en/api/faststream/redis/message/BatchStreamMessage.md b/docs/docs/en/api/faststream/redis/message/BatchStreamMessage.md new file mode 100644 index 0000000000..16885fd028 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/message/BatchStreamMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.message.BatchStreamMessage diff --git a/docs/docs/en/api/faststream/redis/message/DefaultListMessage.md b/docs/docs/en/api/faststream/redis/message/DefaultListMessage.md new file mode 100644 index 0000000000..8f38b34cae --- /dev/null +++ b/docs/docs/en/api/faststream/redis/message/DefaultListMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.message.DefaultListMessage diff --git a/docs/docs/en/api/faststream/redis/message/DefaultStreamMessage.md b/docs/docs/en/api/faststream/redis/message/DefaultStreamMessage.md new file mode 100644 index 0000000000..6016bb624e --- /dev/null +++ b/docs/docs/en/api/faststream/redis/message/DefaultStreamMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.message.DefaultStreamMessage diff --git a/docs/docs/en/api/faststream/redis/message/ListMessage.md b/docs/docs/en/api/faststream/redis/message/ListMessage.md new file mode 100644 index 0000000000..5e81a9f727 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/message/ListMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.message.ListMessage diff --git a/docs/docs/en/api/faststream/redis/message/PubSubMessage.md b/docs/docs/en/api/faststream/redis/message/PubSubMessage.md new file mode 100644 index 0000000000..795cecb12e --- /dev/null +++ b/docs/docs/en/api/faststream/redis/message/PubSubMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.message.PubSubMessage diff --git a/docs/docs/en/api/faststream/redis/message/RedisBatchListMessage.md b/docs/docs/en/api/faststream/redis/message/RedisBatchListMessage.md new file mode 100644 index 0000000000..ec7d3983bd --- /dev/null +++ b/docs/docs/en/api/faststream/redis/message/RedisBatchListMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.message.RedisBatchListMessage diff --git a/docs/docs/en/api/faststream/redis/message/RedisBatchStreamMessage.md b/docs/docs/en/api/faststream/redis/message/RedisBatchStreamMessage.md new file mode 100644 index 0000000000..2c66613eb7 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/message/RedisBatchStreamMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.message.RedisBatchStreamMessage diff --git a/docs/docs/en/api/faststream/redis/message/RedisListMessage.md b/docs/docs/en/api/faststream/redis/message/RedisListMessage.md new file mode 100644 index 0000000000..8c996cb7f0 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/message/RedisListMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.message.RedisListMessage diff --git a/docs/docs/en/api/faststream/redis/message/RedisMessage.md b/docs/docs/en/api/faststream/redis/message/RedisMessage.md new file mode 100644 index 0000000000..1b0654e7ce --- /dev/null +++ b/docs/docs/en/api/faststream/redis/message/RedisMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.message.RedisMessage diff --git a/docs/docs/en/api/faststream/redis/message/RedisStreamMessage.md b/docs/docs/en/api/faststream/redis/message/RedisStreamMessage.md new file mode 100644 index 0000000000..c36385a141 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/message/RedisStreamMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.message.RedisStreamMessage diff --git a/docs/docs/en/api/faststream/redis/message/StreamMessage.md b/docs/docs/en/api/faststream/redis/message/StreamMessage.md new file mode 100644 index 0000000000..f4e6a5d57e --- /dev/null +++ b/docs/docs/en/api/faststream/redis/message/StreamMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.message.StreamMessage diff --git a/docs/docs/en/api/faststream/redis/message/UnifyRedisDict.md b/docs/docs/en/api/faststream/redis/message/UnifyRedisDict.md new file mode 100644 index 0000000000..9485ca2848 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/message/UnifyRedisDict.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.message.UnifyRedisDict diff --git a/docs/docs/en/api/faststream/redis/message/UnifyRedisMessage.md b/docs/docs/en/api/faststream/redis/message/UnifyRedisMessage.md new file mode 100644 index 0000000000..dee09d1657 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/message/UnifyRedisMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.message.UnifyRedisMessage diff --git a/docs/docs/en/api/faststream/redis/opentelemetry/RedisTelemetryMiddleware.md b/docs/docs/en/api/faststream/redis/opentelemetry/RedisTelemetryMiddleware.md new file mode 100644 index 0000000000..537a2dc7b9 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/opentelemetry/RedisTelemetryMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.opentelemetry.RedisTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/redis/opentelemetry/middleware/RedisTelemetryMiddleware.md b/docs/docs/en/api/faststream/redis/opentelemetry/middleware/RedisTelemetryMiddleware.md new file mode 100644 index 0000000000..4c0febf261 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/opentelemetry/middleware/RedisTelemetryMiddleware.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.opentelemetry.middleware.RedisTelemetryMiddleware diff --git a/docs/docs/en/api/faststream/redis/opentelemetry/provider/RedisTelemetrySettingsProvider.md b/docs/docs/en/api/faststream/redis/opentelemetry/provider/RedisTelemetrySettingsProvider.md new file mode 100644 index 0000000000..26e7859c34 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/opentelemetry/provider/RedisTelemetrySettingsProvider.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.opentelemetry.provider.RedisTelemetrySettingsProvider diff --git a/docs/docs/en/api/faststream/redis/parser/RawMessage.md b/docs/docs/en/api/faststream/redis/parser/RawMessage.md new file mode 100644 index 0000000000..4add7b37fd --- /dev/null +++ b/docs/docs/en/api/faststream/redis/parser/RawMessage.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.parser.RawMessage diff --git a/docs/docs/en/api/faststream/redis/parser/RedisBatchListParser.md b/docs/docs/en/api/faststream/redis/parser/RedisBatchListParser.md new file mode 100644 index 0000000000..e3a583eee8 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/parser/RedisBatchListParser.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.parser.RedisBatchListParser diff --git a/docs/docs/en/api/faststream/redis/parser/RedisBatchStreamParser.md b/docs/docs/en/api/faststream/redis/parser/RedisBatchStreamParser.md new file mode 100644 index 0000000000..28ed437573 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/parser/RedisBatchStreamParser.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.parser.RedisBatchStreamParser diff --git a/docs/docs/en/api/faststream/redis/parser/RedisListParser.md b/docs/docs/en/api/faststream/redis/parser/RedisListParser.md new file mode 100644 index 0000000000..fd0cf87991 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/parser/RedisListParser.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.parser.RedisListParser diff --git a/docs/docs/en/api/faststream/redis/parser/RedisPubSubParser.md b/docs/docs/en/api/faststream/redis/parser/RedisPubSubParser.md new file mode 100644 index 0000000000..93ab92cfdb --- /dev/null +++ b/docs/docs/en/api/faststream/redis/parser/RedisPubSubParser.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.parser.RedisPubSubParser diff --git a/docs/docs/en/api/faststream/redis/parser/RedisStreamParser.md b/docs/docs/en/api/faststream/redis/parser/RedisStreamParser.md new file mode 100644 index 0000000000..79633d06ad --- /dev/null +++ b/docs/docs/en/api/faststream/redis/parser/RedisStreamParser.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.parser.RedisStreamParser diff --git a/docs/docs/en/api/faststream/redis/parser/SimpleParser.md b/docs/docs/en/api/faststream/redis/parser/SimpleParser.md new file mode 100644 index 0000000000..239d3fda25 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/parser/SimpleParser.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.parser.SimpleParser diff --git a/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIChannelPublisher.md b/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIChannelPublisher.md new file mode 100644 index 0000000000..a3bef9a56c --- /dev/null +++ b/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIChannelPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.publisher.asyncapi.AsyncAPIChannelPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIListBatchPublisher.md b/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIListBatchPublisher.md new file mode 100644 index 0000000000..ab4361bd85 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIListBatchPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.publisher.asyncapi.AsyncAPIListBatchPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIListPublisher.md b/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIListPublisher.md new file mode 100644 index 0000000000..0c233cc74b --- /dev/null +++ b/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIListPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.publisher.asyncapi.AsyncAPIListPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIPublisher.md b/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIPublisher.md new file mode 100644 index 0000000000..4243308fb7 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.publisher.asyncapi.AsyncAPIPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIStreamPublisher.md b/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIStreamPublisher.md new file mode 100644 index 0000000000..29fb6329f3 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/publisher/asyncapi/AsyncAPIStreamPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.publisher.asyncapi.AsyncAPIStreamPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/producer/RedisFastProducer.md b/docs/docs/en/api/faststream/redis/publisher/producer/RedisFastProducer.md new file mode 100644 index 0000000000..3bc630cc42 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/publisher/producer/RedisFastProducer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.publisher.producer.RedisFastProducer diff --git a/docs/docs/en/api/faststream/redis/publisher/usecase/ChannelPublisher.md b/docs/docs/en/api/faststream/redis/publisher/usecase/ChannelPublisher.md new file mode 100644 index 0000000000..8aad760800 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/publisher/usecase/ChannelPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.publisher.usecase.ChannelPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/usecase/ListBatchPublisher.md b/docs/docs/en/api/faststream/redis/publisher/usecase/ListBatchPublisher.md new file mode 100644 index 0000000000..d7a1be63e4 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/publisher/usecase/ListBatchPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.publisher.usecase.ListBatchPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/usecase/ListPublisher.md b/docs/docs/en/api/faststream/redis/publisher/usecase/ListPublisher.md new file mode 100644 index 0000000000..59895dc001 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/publisher/usecase/ListPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.publisher.usecase.ListPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/usecase/LogicPublisher.md b/docs/docs/en/api/faststream/redis/publisher/usecase/LogicPublisher.md new file mode 100644 index 0000000000..c441bcc461 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/publisher/usecase/LogicPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.publisher.usecase.LogicPublisher diff --git a/docs/docs/en/api/faststream/redis/publisher/usecase/StreamPublisher.md b/docs/docs/en/api/faststream/redis/publisher/usecase/StreamPublisher.md new file mode 100644 index 0000000000..ea56c9d699 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/publisher/usecase/StreamPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.publisher.usecase.StreamPublisher diff --git a/docs/docs/en/api/faststream/redis/response/RedisResponse.md b/docs/docs/en/api/faststream/redis/response/RedisResponse.md new file mode 100644 index 0000000000..dd7fbe72eb --- /dev/null +++ b/docs/docs/en/api/faststream/redis/response/RedisResponse.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.response.RedisResponse diff --git a/docs/docs/en/api/faststream/redis/router/RedisPublisher.md b/docs/docs/en/api/faststream/redis/router/RedisPublisher.md new file mode 100644 index 0000000000..fd1cad4d37 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/router/RedisPublisher.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.router.RedisPublisher diff --git a/docs/docs/en/api/faststream/redis/router/RedisRoute.md b/docs/docs/en/api/faststream/redis/router/RedisRoute.md new file mode 100644 index 0000000000..d6e1f525a7 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/router/RedisRoute.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.router.RedisRoute diff --git a/docs/docs/en/api/faststream/redis/router/RedisRouter.md b/docs/docs/en/api/faststream/redis/router/RedisRouter.md new file mode 100644 index 0000000000..373ceea5a8 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/router/RedisRouter.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.router.RedisRouter diff --git a/docs/docs/en/api/faststream/redis/schemas/ListSub.md b/docs/docs/en/api/faststream/redis/schemas/ListSub.md new file mode 100644 index 0000000000..3e0b448229 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/schemas/ListSub.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.schemas.ListSub diff --git a/docs/docs/en/api/faststream/redis/schemas/PubSub.md b/docs/docs/en/api/faststream/redis/schemas/PubSub.md new file mode 100644 index 0000000000..078a8e2d8e --- /dev/null +++ b/docs/docs/en/api/faststream/redis/schemas/PubSub.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.schemas.PubSub diff --git a/docs/docs/en/api/faststream/redis/schemas/StreamSub.md b/docs/docs/en/api/faststream/redis/schemas/StreamSub.md new file mode 100644 index 0000000000..396e594c0b --- /dev/null +++ b/docs/docs/en/api/faststream/redis/schemas/StreamSub.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.schemas.StreamSub diff --git a/docs/docs/en/api/faststream/redis/schemas/list_sub/ListSub.md b/docs/docs/en/api/faststream/redis/schemas/list_sub/ListSub.md new file mode 100644 index 0000000000..f4b58ff4fb --- /dev/null +++ b/docs/docs/en/api/faststream/redis/schemas/list_sub/ListSub.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.schemas.list_sub.ListSub diff --git a/docs/docs/en/api/faststream/redis/schemas/proto/RedisAsyncAPIProtocol.md b/docs/docs/en/api/faststream/redis/schemas/proto/RedisAsyncAPIProtocol.md new file mode 100644 index 0000000000..7a9d46c451 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/schemas/proto/RedisAsyncAPIProtocol.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.schemas.proto.RedisAsyncAPIProtocol diff --git a/docs/docs/en/api/faststream/redis/schemas/proto/validate_options.md b/docs/docs/en/api/faststream/redis/schemas/proto/validate_options.md new file mode 100644 index 0000000000..7a5381120e --- /dev/null +++ b/docs/docs/en/api/faststream/redis/schemas/proto/validate_options.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.schemas.proto.validate_options diff --git a/docs/docs/en/api/faststream/redis/schemas/pub_sub/PubSub.md b/docs/docs/en/api/faststream/redis/schemas/pub_sub/PubSub.md new file mode 100644 index 0000000000..08552c7b8c --- /dev/null +++ b/docs/docs/en/api/faststream/redis/schemas/pub_sub/PubSub.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.schemas.pub_sub.PubSub diff --git a/docs/docs/en/api/faststream/redis/schemas/stream_sub/StreamSub.md b/docs/docs/en/api/faststream/redis/schemas/stream_sub/StreamSub.md new file mode 100644 index 0000000000..e1a8d44d4e --- /dev/null +++ b/docs/docs/en/api/faststream/redis/schemas/stream_sub/StreamSub.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.schemas.stream_sub.StreamSub diff --git a/docs/docs/en/api/faststream/redis/security/parse_security.md b/docs/docs/en/api/faststream/redis/security/parse_security.md new file mode 100644 index 0000000000..d3673649db --- /dev/null +++ b/docs/docs/en/api/faststream/redis/security/parse_security.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.security.parse_security diff --git a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIChannelSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIChannelSubscriber.md new file mode 100644 index 0000000000..7cb7260111 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIChannelSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.subscriber.asyncapi.AsyncAPIChannelSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIListBatchSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIListBatchSubscriber.md new file mode 100644 index 0000000000..26aa621262 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIListBatchSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.subscriber.asyncapi.AsyncAPIListBatchSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIListSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIListSubscriber.md new file mode 100644 index 0000000000..c65ba472d5 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIListSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.subscriber.asyncapi.AsyncAPIListSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIStreamBatchSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIStreamBatchSubscriber.md new file mode 100644 index 0000000000..099f0a4ff2 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIStreamBatchSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.subscriber.asyncapi.AsyncAPIStreamBatchSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIStreamSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIStreamSubscriber.md new file mode 100644 index 0000000000..3d85ce9587 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPIStreamSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.subscriber.asyncapi.AsyncAPIStreamSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPISubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPISubscriber.md new file mode 100644 index 0000000000..c957f32688 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/subscriber/asyncapi/AsyncAPISubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.subscriber.asyncapi.AsyncAPISubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/factory/create_subscriber.md b/docs/docs/en/api/faststream/redis/subscriber/factory/create_subscriber.md new file mode 100644 index 0000000000..d5cf7eadc8 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/subscriber/factory/create_subscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.subscriber.factory.create_subscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/usecase/BatchListSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/usecase/BatchListSubscriber.md new file mode 100644 index 0000000000..aee1b8aa9b --- /dev/null +++ b/docs/docs/en/api/faststream/redis/subscriber/usecase/BatchListSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.subscriber.usecase.BatchListSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/usecase/BatchStreamSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/usecase/BatchStreamSubscriber.md new file mode 100644 index 0000000000..0f8e4f2e1b --- /dev/null +++ b/docs/docs/en/api/faststream/redis/subscriber/usecase/BatchStreamSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.subscriber.usecase.BatchStreamSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/usecase/ChannelSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/usecase/ChannelSubscriber.md new file mode 100644 index 0000000000..3ab1fc045a --- /dev/null +++ b/docs/docs/en/api/faststream/redis/subscriber/usecase/ChannelSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.subscriber.usecase.ChannelSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/usecase/ListSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/usecase/ListSubscriber.md new file mode 100644 index 0000000000..f7c44e8be5 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/subscriber/usecase/ListSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.subscriber.usecase.ListSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/usecase/LogicSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/usecase/LogicSubscriber.md new file mode 100644 index 0000000000..e3531e7dcc --- /dev/null +++ b/docs/docs/en/api/faststream/redis/subscriber/usecase/LogicSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.subscriber.usecase.LogicSubscriber diff --git a/docs/docs/en/api/faststream/redis/subscriber/usecase/StreamSubscriber.md b/docs/docs/en/api/faststream/redis/subscriber/usecase/StreamSubscriber.md new file mode 100644 index 0000000000..6e2ac31d7f --- /dev/null +++ b/docs/docs/en/api/faststream/redis/subscriber/usecase/StreamSubscriber.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.subscriber.usecase.StreamSubscriber diff --git a/docs/docs/en/api/faststream/redis/testing/FakeProducer.md b/docs/docs/en/api/faststream/redis/testing/FakeProducer.md new file mode 100644 index 0000000000..e05efb6448 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/testing/FakeProducer.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.testing.FakeProducer diff --git a/docs/docs/en/api/faststream/redis/testing/TestRedisBroker.md b/docs/docs/en/api/faststream/redis/testing/TestRedisBroker.md new file mode 100644 index 0000000000..22946e09f8 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/testing/TestRedisBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.testing.TestRedisBroker diff --git a/docs/docs/en/api/faststream/redis/testing/build_message.md b/docs/docs/en/api/faststream/redis/testing/build_message.md new file mode 100644 index 0000000000..b2265905c6 --- /dev/null +++ b/docs/docs/en/api/faststream/redis/testing/build_message.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.redis.testing.build_message diff --git a/docs/docs/en/api/faststream/security/BaseSecurity.md b/docs/docs/en/api/faststream/security/BaseSecurity.md new file mode 100644 index 0000000000..0e5abb09ae --- /dev/null +++ b/docs/docs/en/api/faststream/security/BaseSecurity.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.security.BaseSecurity diff --git a/docs/docs/en/api/faststream/security/SASLPlaintext.md b/docs/docs/en/api/faststream/security/SASLPlaintext.md new file mode 100644 index 0000000000..b4b5165f27 --- /dev/null +++ b/docs/docs/en/api/faststream/security/SASLPlaintext.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.security.SASLPlaintext diff --git a/docs/docs/en/api/faststream/security/SASLScram256.md b/docs/docs/en/api/faststream/security/SASLScram256.md new file mode 100644 index 0000000000..4d50681fa9 --- /dev/null +++ b/docs/docs/en/api/faststream/security/SASLScram256.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.security.SASLScram256 diff --git a/docs/docs/en/api/faststream/security/SASLScram512.md b/docs/docs/en/api/faststream/security/SASLScram512.md new file mode 100644 index 0000000000..115645cc8c --- /dev/null +++ b/docs/docs/en/api/faststream/security/SASLScram512.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.security.SASLScram512 diff --git a/docs/docs/en/api/faststream/testing/TestApp.md b/docs/docs/en/api/faststream/testing/TestApp.md new file mode 100644 index 0000000000..3d8f650f0f --- /dev/null +++ b/docs/docs/en/api/faststream/testing/TestApp.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.testing.TestApp diff --git a/docs/docs/en/api/faststream/testing/app/TestApp.md b/docs/docs/en/api/faststream/testing/app/TestApp.md new file mode 100644 index 0000000000..2468f3755c --- /dev/null +++ b/docs/docs/en/api/faststream/testing/app/TestApp.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.testing.app.TestApp diff --git a/docs/docs/en/api/faststream/testing/broker/TestBroker.md b/docs/docs/en/api/faststream/testing/broker/TestBroker.md new file mode 100644 index 0000000000..48e34a6ca3 --- /dev/null +++ b/docs/docs/en/api/faststream/testing/broker/TestBroker.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.testing.broker.TestBroker diff --git a/docs/docs/en/api/faststream/testing/broker/call_handler.md b/docs/docs/en/api/faststream/testing/broker/call_handler.md new file mode 100644 index 0000000000..fd11830902 --- /dev/null +++ b/docs/docs/en/api/faststream/testing/broker/call_handler.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.testing.broker.call_handler diff --git a/docs/docs/en/api/faststream/testing/broker/patch_broker_calls.md b/docs/docs/en/api/faststream/testing/broker/patch_broker_calls.md new file mode 100644 index 0000000000..12a6431765 --- /dev/null +++ b/docs/docs/en/api/faststream/testing/broker/patch_broker_calls.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.testing.broker.patch_broker_calls diff --git a/docs/docs/en/api/faststream/types/LoggerProto.md b/docs/docs/en/api/faststream/types/LoggerProto.md new file mode 100644 index 0000000000..064320bf42 --- /dev/null +++ b/docs/docs/en/api/faststream/types/LoggerProto.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.types.LoggerProto diff --git a/docs/docs/en/api/faststream/types/StandardDataclass.md b/docs/docs/en/api/faststream/types/StandardDataclass.md new file mode 100644 index 0000000000..5140818794 --- /dev/null +++ b/docs/docs/en/api/faststream/types/StandardDataclass.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.types.StandardDataclass diff --git a/docs/docs/en/api/faststream/utils/Context.md b/docs/docs/en/api/faststream/utils/Context.md new file mode 100644 index 0000000000..3e4f9f17c5 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/Context.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.Context diff --git a/docs/docs/en/api/faststream/utils/ContextRepo.md b/docs/docs/en/api/faststream/utils/ContextRepo.md new file mode 100644 index 0000000000..dd18ad81e4 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/ContextRepo.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.ContextRepo diff --git a/docs/docs/en/api/faststream/utils/Depends.md b/docs/docs/en/api/faststream/utils/Depends.md new file mode 100644 index 0000000000..c0704687e8 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/Depends.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: fast_depends.use.Depends diff --git a/docs/docs/en/api/faststream/utils/Header.md b/docs/docs/en/api/faststream/utils/Header.md new file mode 100644 index 0000000000..10e6ccaec7 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/Header.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.Header diff --git a/docs/docs/en/api/faststream/utils/NoCast.md b/docs/docs/en/api/faststream/utils/NoCast.md new file mode 100644 index 0000000000..606a31e563 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/NoCast.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.NoCast diff --git a/docs/docs/en/api/faststream/utils/Path.md b/docs/docs/en/api/faststream/utils/Path.md new file mode 100644 index 0000000000..b311930841 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/Path.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.Path diff --git a/docs/docs/en/api/faststream/utils/apply_types.md b/docs/docs/en/api/faststream/utils/apply_types.md new file mode 100644 index 0000000000..9dc4603bd2 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/apply_types.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: fast_depends.use.inject diff --git a/docs/docs/en/api/faststream/utils/ast/find_ast_node.md b/docs/docs/en/api/faststream/utils/ast/find_ast_node.md new file mode 100644 index 0000000000..228e6f058c --- /dev/null +++ b/docs/docs/en/api/faststream/utils/ast/find_ast_node.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.ast.find_ast_node diff --git a/docs/docs/en/api/faststream/utils/ast/find_withitems.md b/docs/docs/en/api/faststream/utils/ast/find_withitems.md new file mode 100644 index 0000000000..123acd71e4 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/ast/find_withitems.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.ast.find_withitems diff --git a/docs/docs/en/api/faststream/utils/ast/get_withitem_calls.md b/docs/docs/en/api/faststream/utils/ast/get_withitem_calls.md new file mode 100644 index 0000000000..c9d68c1ed2 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/ast/get_withitem_calls.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.ast.get_withitem_calls diff --git a/docs/docs/en/api/faststream/utils/ast/is_contains_context_name.md b/docs/docs/en/api/faststream/utils/ast/is_contains_context_name.md new file mode 100644 index 0000000000..61cf140ea6 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/ast/is_contains_context_name.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.ast.is_contains_context_name diff --git a/docs/docs/en/api/faststream/utils/classes/Singleton.md b/docs/docs/en/api/faststream/utils/classes/Singleton.md new file mode 100644 index 0000000000..c9751ee2bd --- /dev/null +++ b/docs/docs/en/api/faststream/utils/classes/Singleton.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.classes.Singleton diff --git a/docs/docs/en/api/faststream/utils/context/Context.md b/docs/docs/en/api/faststream/utils/context/Context.md new file mode 100644 index 0000000000..5669863fee --- /dev/null +++ b/docs/docs/en/api/faststream/utils/context/Context.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.context.Context diff --git a/docs/docs/en/api/faststream/utils/context/ContextRepo.md b/docs/docs/en/api/faststream/utils/context/ContextRepo.md new file mode 100644 index 0000000000..50a7133aeb --- /dev/null +++ b/docs/docs/en/api/faststream/utils/context/ContextRepo.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.context.ContextRepo diff --git a/docs/docs/en/api/faststream/utils/context/Header.md b/docs/docs/en/api/faststream/utils/context/Header.md new file mode 100644 index 0000000000..7e10284ec1 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/context/Header.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.context.Header diff --git a/docs/docs/en/api/faststream/utils/context/Path.md b/docs/docs/en/api/faststream/utils/context/Path.md new file mode 100644 index 0000000000..92c2ef36fe --- /dev/null +++ b/docs/docs/en/api/faststream/utils/context/Path.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.context.Path diff --git a/docs/docs/en/api/faststream/utils/context/builders/Context.md b/docs/docs/en/api/faststream/utils/context/builders/Context.md new file mode 100644 index 0000000000..6cdf6f36fe --- /dev/null +++ b/docs/docs/en/api/faststream/utils/context/builders/Context.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.context.builders.Context diff --git a/docs/docs/en/api/faststream/utils/context/builders/Header.md b/docs/docs/en/api/faststream/utils/context/builders/Header.md new file mode 100644 index 0000000000..e3f6e41ba6 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/context/builders/Header.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.context.builders.Header diff --git a/docs/docs/en/api/faststream/utils/context/builders/Path.md b/docs/docs/en/api/faststream/utils/context/builders/Path.md new file mode 100644 index 0000000000..5203903c45 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/context/builders/Path.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.context.builders.Path diff --git a/docs/docs/en/api/faststream/utils/context/repository/ContextRepo.md b/docs/docs/en/api/faststream/utils/context/repository/ContextRepo.md new file mode 100644 index 0000000000..ad968d8954 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/context/repository/ContextRepo.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.context.repository.ContextRepo diff --git a/docs/docs/en/api/faststream/utils/context/types/Context.md b/docs/docs/en/api/faststream/utils/context/types/Context.md new file mode 100644 index 0000000000..3ac9c51fad --- /dev/null +++ b/docs/docs/en/api/faststream/utils/context/types/Context.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.context.types.Context diff --git a/docs/docs/en/api/faststream/utils/context/types/resolve_context_by_name.md b/docs/docs/en/api/faststream/utils/context/types/resolve_context_by_name.md new file mode 100644 index 0000000000..60ab9fc23c --- /dev/null +++ b/docs/docs/en/api/faststream/utils/context/types/resolve_context_by_name.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.context.types.resolve_context_by_name diff --git a/docs/docs/en/api/faststream/utils/data/filter_by_dict.md b/docs/docs/en/api/faststream/utils/data/filter_by_dict.md new file mode 100644 index 0000000000..87d03b5288 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/data/filter_by_dict.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.data.filter_by_dict diff --git a/docs/docs/en/api/faststream/utils/functions/call_or_await.md b/docs/docs/en/api/faststream/utils/functions/call_or_await.md new file mode 100644 index 0000000000..9bb63aa18c --- /dev/null +++ b/docs/docs/en/api/faststream/utils/functions/call_or_await.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: fast_depends.utils.run_async diff --git a/docs/docs/en/api/faststream/utils/functions/drop_response_type.md b/docs/docs/en/api/faststream/utils/functions/drop_response_type.md new file mode 100644 index 0000000000..a39e8a2699 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/functions/drop_response_type.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.functions.drop_response_type diff --git a/docs/docs/en/api/faststream/utils/functions/fake_context.md b/docs/docs/en/api/faststream/utils/functions/fake_context.md new file mode 100644 index 0000000000..3943186ba4 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/functions/fake_context.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.functions.fake_context diff --git a/docs/docs/en/api/faststream/utils/functions/sync_fake_context.md b/docs/docs/en/api/faststream/utils/functions/sync_fake_context.md new file mode 100644 index 0000000000..0860846843 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/functions/sync_fake_context.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.functions.sync_fake_context diff --git a/docs/docs/en/api/faststream/utils/functions/timeout_scope.md b/docs/docs/en/api/faststream/utils/functions/timeout_scope.md new file mode 100644 index 0000000000..1577a7593a --- /dev/null +++ b/docs/docs/en/api/faststream/utils/functions/timeout_scope.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.functions.timeout_scope diff --git a/docs/docs/en/api/faststream/utils/functions/to_async.md b/docs/docs/en/api/faststream/utils/functions/to_async.md new file mode 100644 index 0000000000..715b43d3ac --- /dev/null +++ b/docs/docs/en/api/faststream/utils/functions/to_async.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.functions.to_async diff --git a/docs/docs/en/api/faststream/utils/no_cast/NoCast.md b/docs/docs/en/api/faststream/utils/no_cast/NoCast.md new file mode 100644 index 0000000000..4fcc6054ba --- /dev/null +++ b/docs/docs/en/api/faststream/utils/no_cast/NoCast.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.no_cast.NoCast diff --git a/docs/docs/en/api/faststream/utils/path/compile_path.md b/docs/docs/en/api/faststream/utils/path/compile_path.md new file mode 100644 index 0000000000..136d5ab1b9 --- /dev/null +++ b/docs/docs/en/api/faststream/utils/path/compile_path.md @@ -0,0 +1,11 @@ +--- +# 0.5 - API +# 2 - Release +# 3 - Contributing +# 5 - Template Page +# 10 - Default +search: + boost: 0.5 +--- + +::: faststream.utils.path.compile_path From e5dee88e8ded1b70ec89c72a14bd0453c3e281df Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Thu, 30 May 2024 21:16:13 +0300 Subject: [PATCH 17/24] chore: change GHA commit message --- .github/workflows/docs_update-references.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs_update-references.yaml b/.github/workflows/docs_update-references.yaml index f8c966d65f..92e306784e 100644 --- a/.github/workflows/docs_update-references.yaml +++ b/.github/workflows/docs_update-references.yaml @@ -7,10 +7,9 @@ on: - synchronize paths: - faststream/** - - docs/**/api/** -# permissions: -# contents: write +permissions: + contents: write jobs: check-docs-changes: @@ -31,3 +30,5 @@ jobs: run: bash scripts/build-docs.sh - name: Commit uses: stefanzweifel/git-auto-commit-action@v5 + with: + commit_message: "docs: generate API References" From bc8f19743923d0d17cbb1ea6b80fd073c36b7982 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Thu, 30 May 2024 21:21:31 +0300 Subject: [PATCH 18/24] chore: make extra trigger for tests --- .github/workflows/pr_tests.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/pr_tests.yaml b/.github/workflows/pr_tests.yaml index 3dff9f89c7..f90bcb4aea 100644 --- a/.github/workflows/pr_tests.yaml +++ b/.github/workflows/pr_tests.yaml @@ -1,6 +1,9 @@ name: Run all tests on: + pull_request: + types: + - review_requested pull_request: types: - opened From b5ccc970f02ff0129c97eba2a04d70ac227d422a Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Thu, 30 May 2024 21:24:14 +0300 Subject: [PATCH 19/24] chore: update tests triggers --- .github/workflows/pr_tests.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/pr_tests.yaml b/.github/workflows/pr_tests.yaml index f90bcb4aea..48f137c63a 100644 --- a/.github/workflows/pr_tests.yaml +++ b/.github/workflows/pr_tests.yaml @@ -1,14 +1,11 @@ name: Run all tests on: - pull_request: - types: - - review_requested + merge_group: pull_request: types: - opened - synchronize - - review_requested paths: - faststream/** - tests/** From d9bd7b2cbb58848459e04e69adaa0fafeaf22a88 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Fri, 31 May 2024 07:57:25 +0300 Subject: [PATCH 20/24] chore: run tests anyway --- .github/workflows/pr_tests.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/pr_tests.yaml b/.github/workflows/pr_tests.yaml index 48f137c63a..204dd3c30d 100644 --- a/.github/workflows/pr_tests.yaml +++ b/.github/workflows/pr_tests.yaml @@ -1,15 +1,10 @@ name: Run all tests on: - merge_group: pull_request: types: - opened - synchronize - paths: - - faststream/** - - tests/** - - docs/docs_src/** jobs: static_analysis: From 18fbe856c8511b9bbf899aef1ac834754bf97f14 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Mon, 3 Jun 2024 09:11:11 +0300 Subject: [PATCH 21/24] chore: add merge queue trigger to CI --- .github/workflows/pr_tests.yaml | 2 ++ faststream/broker/middlewares/base.py | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr_tests.yaml b/.github/workflows/pr_tests.yaml index 204dd3c30d..c144f059b8 100644 --- a/.github/workflows/pr_tests.yaml +++ b/.github/workflows/pr_tests.yaml @@ -5,6 +5,8 @@ on: types: - opened - synchronize + # https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-a-merge-queue#triggering-merge-group-checks-with-github-actions + merge_group: jobs: static_analysis: diff --git a/faststream/broker/middlewares/base.py b/faststream/broker/middlewares/base.py index ab8ccb7c4d..5710c8ec1c 100644 --- a/faststream/broker/middlewares/base.py +++ b/faststream/broker/middlewares/base.py @@ -97,7 +97,7 @@ async def publish_scope( **kwargs: Any, ) -> Any: """Publish a message and return an async iterator.""" - err: Optional[Exception] + err: Optional[Exception] = None try: result = await call_next( await self.on_publish(msg, *args, **kwargs), @@ -109,7 +109,6 @@ async def publish_scope( err = e else: - err = None return result finally: From cc52bd2e051f795831acb6aa1034bc73a18a583b Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Mon, 3 Jun 2024 09:31:56 +0300 Subject: [PATCH 22/24] chore: make real testsuites fail-fast --- .github/workflows/pr_tests.yaml | 74 ++++++++++++++++++++------------- 1 file changed, 45 insertions(+), 29 deletions(-) diff --git a/.github/workflows/pr_tests.yaml b/.github/workflows/pr_tests.yaml index c144f059b8..317ed97347 100644 --- a/.github/workflows/pr_tests.yaml +++ b/.github/workflows/pr_tests.yaml @@ -145,8 +145,28 @@ jobs: - name: Test run: bash scripts/test.sh -m "(slow and (not nats and not kafka and not confluent and not rabbit and not redis)) or (not nats and not kafka and not confluent and not rabbit and not redis)" + test-kafka-smoke: + if: github.event.pull_request.draft == false + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.12" + cache: "pip" + cache-dependency-path: pyproject.toml + - name: Install Dependencies + if: steps.cache.outputs.cache-hit != 'true' + run: pip install .[kafka,test-core] + - name: Test + run: bash scripts/test.sh -m "not kafka" tests/brokers/kafka/test_test_client.py + test-kafka-real: if: github.event.pull_request.draft == false + needs: + - test-basic + - test-kafka-smoke runs-on: ubuntu-latest services: kafka: @@ -188,7 +208,7 @@ jobs: path: coverage if-no-files-found: error - test-kafka-smoke: + test-confluent-smoke: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: @@ -201,12 +221,15 @@ jobs: cache-dependency-path: pyproject.toml - name: Install Dependencies if: steps.cache.outputs.cache-hit != 'true' - run: pip install .[kafka,test-core] + run: pip install .[confluent,test-core] - name: Test - run: bash scripts/test.sh -m "not kafka" tests/brokers/kafka/test_test_client.py + run: bash scripts/test.sh -m "not confluent" tests/brokers/confluent/test_test_client.py test-confluent-real: if: github.event.pull_request.draft == false + needs: + - test-basic + - test-confluent-smoke runs-on: ubuntu-latest services: kafka: @@ -248,7 +271,7 @@ jobs: path: coverage if-no-files-found: error - test-confluent-smoke: + test-rabbit-smoke: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: @@ -261,12 +284,15 @@ jobs: cache-dependency-path: pyproject.toml - name: Install Dependencies if: steps.cache.outputs.cache-hit != 'true' - run: pip install .[confluent,test-core] + run: pip install .[rabbit,test-core] - name: Test - run: bash scripts/test.sh -m "not confluent" tests/brokers/confluent/test_test_client.py + run: bash scripts/test.sh -m "not rabbit" tests/brokers/rabbit/test_test_client.py test-rabbit-real: if: github.event.pull_request.draft == false + needs: + - test-basic + - test-rabbit-smoke runs-on: ubuntu-latest services: rabbitmq: @@ -297,7 +323,7 @@ jobs: path: coverage if-no-files-found: error - test-rabbit-smoke: + test-nats-smoke: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: @@ -310,12 +336,15 @@ jobs: cache-dependency-path: pyproject.toml - name: Install Dependencies if: steps.cache.outputs.cache-hit != 'true' - run: pip install .[rabbit,test-core] + run: pip install .[nats,test-core] - name: Test - run: bash scripts/test.sh -m "not rabbit" tests/brokers/rabbit/test_test_client.py + run: bash scripts/test.sh -m "not nats" tests/brokers/nats/test_test_client.py test-nats-real: if: github.event.pull_request.draft == false + needs: + - test-basic + - test-nats-smoke runs-on: ubuntu-latest services: nats: @@ -346,7 +375,7 @@ jobs: path: coverage if-no-files-found: error - test-nats-smoke: + test-redis-smoke: if: github.event.pull_request.draft == false runs-on: ubuntu-latest steps: @@ -359,13 +388,16 @@ jobs: cache-dependency-path: pyproject.toml - name: Install Dependencies if: steps.cache.outputs.cache-hit != 'true' - run: pip install .[nats,test-core] + run: pip install .[redis,test-core] - name: Test - run: bash scripts/test.sh -m "not nats" tests/brokers/nats/test_test_client.py + run: bash scripts/test.sh -m "not redis" tests/brokers/redis/test_test_client.py test-redis-real: if: github.event.pull_request.draft == false runs-on: ubuntu-latest + needs: + - test-basic + - test-redis-smoke services: nats: image: redis:alpine @@ -395,23 +427,6 @@ jobs: path: coverage if-no-files-found: error - test-redis-smoke: - if: github.event.pull_request.draft == false - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: "3.12" - cache: "pip" - cache-dependency-path: pyproject.toml - - name: Install Dependencies - if: steps.cache.outputs.cache-hit != 'true' - run: pip install .[redis,test-core] - - name: Test - run: bash scripts/test.sh -m "not redis" tests/brokers/redis/test_test_client.py - coverage-combine: if: github.event.pull_request.draft == false needs: @@ -471,6 +486,7 @@ jobs: - test-nats-smoke - test-redis-real - test-redis-smoke + - test-orjson runs-on: ubuntu-latest From fa3c9224e0ef96f2918626224b8e0dcec09461de Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Mon, 3 Jun 2024 09:34:20 +0300 Subject: [PATCH 23/24] chore: remove useless conditions in CI --- .github/workflows/pr_tests.yaml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/pr_tests.yaml b/.github/workflows/pr_tests.yaml index 317ed97347..788837e2fa 100644 --- a/.github/workflows/pr_tests.yaml +++ b/.github/workflows/pr_tests.yaml @@ -476,16 +476,6 @@ jobs: - coverage-combine - test-macos-latest - test-windows-latest - - test-kafka-real - - test-kafka-smoke - - test-confluent-real - - test-confluent-smoke - - test-rabbit-real - - test-rabbit-smoke - - test-nats-real - - test-nats-smoke - - test-redis-real - - test-redis-smoke - test-orjson runs-on: ubuntu-latest From 12d53eca2e36493182c08e466941892720db75b0 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Mon, 3 Jun 2024 09:57:44 +0300 Subject: [PATCH 24/24] chore: specify MG trigger --- .github/workflows/pr_tests.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pr_tests.yaml b/.github/workflows/pr_tests.yaml index 788837e2fa..a68eacda8d 100644 --- a/.github/workflows/pr_tests.yaml +++ b/.github/workflows/pr_tests.yaml @@ -7,6 +7,8 @@ on: - synchronize # https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-a-merge-queue#triggering-merge-group-checks-with-github-actions merge_group: + types: + - checks_requested jobs: static_analysis: