tigrbl 0.3.17.dev7__tar.gz → 0.3.17.dev8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/PKG-INFO +1 -1
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/pyproject.toml +1 -1
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/docs/openapi/helpers.py +26 -7
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/LICENSE +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/README.md +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/README.md +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_base/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_base/_hook_base.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_base/_middleware_base.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_base/_op_base.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_base/_request_base.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_base/_response_base.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_base/_schema_base.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_base/_security_base.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_base/_session_abc.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_base/_session_base.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_base/_storage.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_base/_table_base.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_base/_table_registry_base.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_alias.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_app.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_background.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_body.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_column.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_cors_middleware.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_engine.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_file_response.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_headers.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_hook.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_html_response.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_httpx.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_json_response.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_middleware.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_op.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_op_registry.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_plain_text_response.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_redirect_response.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_request.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_request_adapters.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_response.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_route.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_router.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_routing.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_schema.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_security/api_key.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_security/http_bearer.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_security/mutual_tls.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_security/oauth2.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_security/openid_connect.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_session.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_storage.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_streaming_response.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_table.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/_table_registry.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/dependencies.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/tigrbl_app.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_concrete/tigrbl_router.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/alias_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/app_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/binding_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/column_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/engine_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/field_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/hook_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/io_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/middleware_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/op_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/request_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/response_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/response_types.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/router_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/schema_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/session_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/shortcuts_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/storage_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/table_registry_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/_spec/table_spec.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/column/README.md +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/column/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/column/infer/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/column/infer/core.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/column/infer/jsonhints.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/column/infer/planning.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/column/infer/types.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/column/infer/utils.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/config/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/config/constants.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/config/defaults.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/core/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/core/crud/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/core/crud/bulk.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/core/crud/helpers/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/core/crud/helpers/db.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/core/crud/helpers/enum.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/core/crud/helpers/filters.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/core/crud/helpers/model.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/core/crud/helpers/normalize.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/core/crud/ops.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/core/crud/params.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/ddl/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/decorators/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/decorators/engine.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/decorators/hook.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/decorators/middlewares.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/decorators/op.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/decorators/response.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/decorators/rest.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/decorators/router.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/decorators/schema.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/decorators/session.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/docs/column_specs.md +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/docs/session.md +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/docs/verbosity.md +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/engine/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/engine/bind.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/engine/builders.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/engine/capabilities.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/engine/collect.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/engine/docs/PLUGINS.md +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/engine/plugins.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/engine/registry.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/engine/resolver.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/hook/exceptions.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/hook/types.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/app_mro_collect.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/apply.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/collect.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/collect_decorated_schemas.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/column_mro_collect.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/columns.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/config_resolver.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/context.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/core_resolver.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/diagnostics.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/engine_resolver.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/handlers/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/handlers/builder.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/handlers/ctx.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/handlers/identifiers.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/handlers/namespaces.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/handlers/steps.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/hook_mro_collect.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/hooks.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/mapping_resolver.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/model.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/model_helpers.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/model_registry.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/op_mro_collect.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/op_resolver.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/passes.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/plan.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/precedence.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/responses_resolver.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/rest/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/rest/attach.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/rest/collection.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/rest/common.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/rest/helpers.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/rest/io.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/rest/io_headers.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/rest/member.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/rest/router.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/rest/routing.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/router/common.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/router/include.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/router/resource_proxy.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/router/rpc.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/router_mro_collect.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/rpc.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/runtime_routes.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/schemas/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/schemas/builder.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/schemas/defaults.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/schemas/utils.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/spec_normalization.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/table.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/table_mro_collect.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/mapping/traversal.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/middlewares/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/middlewares/compose.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/op/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/op/canonical.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/op/collect.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/op/types.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/_RowBound.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/bootstrappable.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/bound.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/edges.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/fields.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/hierarchy.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/key_digest.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/lifecycle.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/locks.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/markers.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/operations.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/ownable.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/principals.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/tenant_bound.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/upsertable.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/mixins/utils.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/tables/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/tables/_base.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/tables/audit.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/tables/client.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/tables/group.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/tables/org.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/tables/rbac.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/tables/status.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/tables/tenant.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/orm/tables/user.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/requests.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/rest/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/README.md +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/dep/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/dep/extra.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/dep/security.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/egress/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/egress/asgi_send.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/egress/envelope_apply.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/egress/headers_apply.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/egress/http_finalize.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/egress/out_dump.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/egress/result_normalize.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/egress/to_transport_response.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/emit/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/emit/paired_post.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/emit/paired_pre.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/emit/readtime_alias.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/ingress/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/ingress/attach_compiled.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/ingress/body_peek.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/ingress/body_read.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/ingress/ctx_init.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/ingress/headers_parse.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/ingress/method_extract.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/ingress/metrics_start.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/ingress/path_extract.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/ingress/query_parse.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/ingress/raw_from_scope.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/ingress/request_body_apply.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/ingress/request_from_scope.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/out/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/out/masking.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/refresh/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/refresh/demand.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/resolve/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/resolve/assemble.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/resolve/paired_gen.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/response/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/response/headers_from_payload.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/response/negotiate.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/response/negotiation.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/response/render.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/response/renderer.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/response/template.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/response/templates.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/route/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/route/binding_match.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/route/binding_policy_apply.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/route/ctx_finalize.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/route/op_resolve.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/route/params_normalize.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/route/path_params_extract.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/route/payload_select.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/route/plan_select.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/route/protocol_detect.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/route/rpc_envelope_parse.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/route/rpc_method_match.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/schema/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/schema/collect_in.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/schema/collect_out.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/storage/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/storage/to_stored.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/sys/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/sys/commit_tx.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/sys/handler_persistence.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/sys/start_tx.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/wire/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/wire/build_in.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/wire/build_out.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/wire/dump.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/atoms/wire/validate_in.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/context.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/events.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/exceptions.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/executor/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/executor/guards.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/executor/helpers.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/executor/invoke.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/executor/types.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/gw/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/gw/invoke.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/gw/raw.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/hook_types.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/kernel/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/kernel/atoms.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/kernel/cache.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/kernel/core.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/kernel/models.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/kernel/opview_compiler.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/kernel/payload.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/kernel.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/labels.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/opview.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/ordering.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/status/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/status/converters.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/status/exceptions.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/status/mappings.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/status/utils.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/system.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/runtime/trace.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/schema/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/schema/builder/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/schema/builder/build_schema.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/schema/builder/cache.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/schema/builder/extras.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/schema/builder/helpers.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/schema/builder/list_params.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/schema/builder/strip_parent_fields.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/schema/types.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/schema/utils.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/security/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/security/dependencies.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/shortcuts/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/shortcuts/app.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/shortcuts/column.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/shortcuts/engine.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/shortcuts/hook.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/shortcuts/op.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/shortcuts/responses.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/shortcuts/router.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/shortcuts/schema.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/shortcuts/table.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/specs.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/diagnostics/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/diagnostics/healthz.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/diagnostics/hookz.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/diagnostics/kernelz.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/diagnostics/methodz.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/diagnostics/router.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/diagnostics/utils.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/docs/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/docs/lens.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/docs/openapi/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/docs/openapi/metadata.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/docs/openapi/mount.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/docs/openapi/schema.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/docs/openrpc.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/docs/swagger.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/favicon/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/favicon/assets/favicon.svg +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/system/uvicorn.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/transport/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/transport/jsonrpc/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/transport/jsonrpc/helpers.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/transport/jsonrpc/models.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/transport/rest/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/transport/rest/aggregator.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/types/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/types/allow_anon_provider.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/types/authn_abc.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/types/nested_path_provider.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/types/op.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/types/op_config_provider.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/types/op_verb_alias_provider.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/types/request_extras_provider.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/types/response_extras_provider.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/types/table_config_provider.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/types/uuid.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/utils/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/utils/schema.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/vendor/__init__.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/vendor/jinja.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/vendor/pydantic.py +0 -0
- {tigrbl-0.3.17.dev7 → tigrbl-0.3.17.dev8}/tigrbl/vendor/sqlalchemy.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tigrbl
|
|
3
|
-
Version: 0.3.17.
|
|
3
|
+
Version: 0.3.17.dev8
|
|
4
4
|
Summary: A modern pure ASGI/WSGI Python framework for building schema-first REST and JSON-RPC APIs with SQLAlchemy models, typed validation, lifecycle hooks, and engine extension support.
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
License-File: LICENSE
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "tigrbl"
|
|
3
|
-
version = "0.3.17.
|
|
3
|
+
version = "0.3.17.dev8"
|
|
4
4
|
description = "A modern pure ASGI/WSGI Python framework for building schema-first REST and JSON-RPC APIs with SQLAlchemy models, typed validation, lifecycle hooks, and engine extension support."
|
|
5
5
|
license = "Apache-2.0"
|
|
6
6
|
readme = "README.md"
|
|
@@ -148,18 +148,24 @@ def _request_schema_from_handler(
|
|
|
148
148
|
def _security_from_dependencies(deps: Iterable[Any]) -> list[dict[str, list[str]]]:
|
|
149
149
|
security: list[dict[str, list[str]]] = []
|
|
150
150
|
for dependency in _extract_security_dependencies(deps):
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
151
|
+
security_dependency = _as_openapi_security_dependency(dependency)
|
|
152
|
+
if security_dependency is None:
|
|
153
|
+
continue
|
|
154
|
+
security.append(security_dependency.openapi_security_requirement())
|
|
154
155
|
return security
|
|
155
156
|
|
|
156
157
|
|
|
157
158
|
def _security_schemes_from_dependencies(deps: Iterable[Any]) -> dict[str, Any]:
|
|
158
159
|
schemes: dict[str, Any] = {}
|
|
159
160
|
for dependency in _extract_security_dependencies(deps):
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
161
|
+
security_dependency = _as_openapi_security_dependency(dependency)
|
|
162
|
+
if security_dependency is None:
|
|
163
|
+
continue
|
|
164
|
+
|
|
165
|
+
scheme_name = getattr(security_dependency, "scheme_name", None)
|
|
166
|
+
if not isinstance(scheme_name, str) or not scheme_name:
|
|
167
|
+
continue
|
|
168
|
+
schemes[scheme_name] = security_dependency.openapi_security_scheme()
|
|
163
169
|
return schemes
|
|
164
170
|
|
|
165
171
|
|
|
@@ -200,5 +206,18 @@ def _iter_security_dependencies(dep: Any, seen: set[int]) -> Iterable[Any]:
|
|
|
200
206
|
yield from _iter_security_dependencies(default, seen)
|
|
201
207
|
|
|
202
208
|
|
|
209
|
+
def _as_openapi_security_dependency(dep: Any) -> Any | None:
|
|
210
|
+
has_scheme = callable(getattr(dep, "openapi_security_scheme", None))
|
|
211
|
+
has_requirement = callable(getattr(dep, "openapi_security_requirement", None))
|
|
212
|
+
if has_scheme and has_requirement:
|
|
213
|
+
return dep
|
|
214
|
+
return None
|
|
215
|
+
|
|
216
|
+
|
|
203
217
|
def _is_http_bearer_dependency(dep: Any) -> bool:
|
|
204
|
-
|
|
218
|
+
security_dependency = _as_openapi_security_dependency(dep)
|
|
219
|
+
if security_dependency is None:
|
|
220
|
+
return False
|
|
221
|
+
|
|
222
|
+
scheme = security_dependency.openapi_security_scheme()
|
|
223
|
+
return scheme.get("type") == "http" and scheme.get("scheme") == "bearer"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|