tigrbl 0.3.17.dev2__tar.gz → 0.3.17.dev7__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.dev2 → tigrbl-0.3.17.dev7}/PKG-INFO +1 -1
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/pyproject.toml +1 -1
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/__init__.py +2 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/types/__init__.py +2 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/vendor/sqlalchemy.py +2 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/LICENSE +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/README.md +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/README.md +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_base/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_base/_hook_base.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_base/_middleware_base.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_base/_op_base.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_base/_request_base.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_base/_response_base.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_base/_schema_base.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_base/_security_base.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_base/_session_abc.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_base/_session_base.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_base/_storage.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_base/_table_base.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_base/_table_registry_base.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_alias.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_app.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_background.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_body.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_column.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_cors_middleware.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_engine.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_file_response.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_headers.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_hook.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_html_response.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_httpx.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_json_response.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_middleware.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_op.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_op_registry.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_plain_text_response.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_redirect_response.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_request.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_request_adapters.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_response.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_route.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_router.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_routing.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_schema.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_security/api_key.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_security/http_bearer.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_security/mutual_tls.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_security/oauth2.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_security/openid_connect.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_session.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_storage.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_streaming_response.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_table.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/_table_registry.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/dependencies.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/tigrbl_app.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_concrete/tigrbl_router.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/alias_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/app_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/binding_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/column_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/engine_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/field_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/hook_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/io_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/middleware_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/op_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/request_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/response_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/response_types.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/router_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/schema_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/session_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/shortcuts_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/storage_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/table_registry_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/_spec/table_spec.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/column/README.md +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/column/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/column/infer/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/column/infer/core.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/column/infer/jsonhints.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/column/infer/planning.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/column/infer/types.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/column/infer/utils.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/config/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/config/constants.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/config/defaults.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/core/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/core/crud/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/core/crud/bulk.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/core/crud/helpers/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/core/crud/helpers/db.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/core/crud/helpers/enum.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/core/crud/helpers/filters.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/core/crud/helpers/model.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/core/crud/helpers/normalize.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/core/crud/ops.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/core/crud/params.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/ddl/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/decorators/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/decorators/engine.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/decorators/hook.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/decorators/middlewares.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/decorators/op.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/decorators/response.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/decorators/rest.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/decorators/router.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/decorators/schema.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/decorators/session.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/docs/column_specs.md +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/docs/session.md +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/docs/verbosity.md +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/engine/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/engine/bind.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/engine/builders.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/engine/capabilities.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/engine/collect.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/engine/docs/PLUGINS.md +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/engine/plugins.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/engine/registry.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/engine/resolver.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/hook/exceptions.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/hook/types.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/app_mro_collect.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/apply.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/collect.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/collect_decorated_schemas.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/column_mro_collect.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/columns.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/config_resolver.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/context.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/core_resolver.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/diagnostics.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/engine_resolver.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/handlers/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/handlers/builder.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/handlers/ctx.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/handlers/identifiers.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/handlers/namespaces.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/handlers/steps.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/hook_mro_collect.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/hooks.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/mapping_resolver.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/model.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/model_helpers.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/model_registry.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/op_mro_collect.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/op_resolver.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/passes.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/plan.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/precedence.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/responses_resolver.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/rest/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/rest/attach.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/rest/collection.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/rest/common.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/rest/helpers.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/rest/io.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/rest/io_headers.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/rest/member.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/rest/router.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/rest/routing.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/router/common.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/router/include.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/router/resource_proxy.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/router/rpc.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/router_mro_collect.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/rpc.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/runtime_routes.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/schemas/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/schemas/builder.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/schemas/defaults.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/schemas/utils.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/spec_normalization.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/table.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/table_mro_collect.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/mapping/traversal.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/middlewares/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/middlewares/compose.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/op/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/op/canonical.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/op/collect.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/op/types.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/_RowBound.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/bootstrappable.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/bound.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/edges.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/fields.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/hierarchy.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/key_digest.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/lifecycle.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/locks.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/markers.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/operations.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/ownable.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/principals.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/tenant_bound.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/upsertable.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/mixins/utils.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/tables/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/tables/_base.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/tables/audit.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/tables/client.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/tables/group.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/tables/org.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/tables/rbac.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/tables/status.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/tables/tenant.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/orm/tables/user.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/requests.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/rest/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/README.md +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/dep/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/dep/extra.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/dep/security.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/egress/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/egress/asgi_send.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/egress/envelope_apply.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/egress/headers_apply.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/egress/http_finalize.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/egress/out_dump.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/egress/result_normalize.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/egress/to_transport_response.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/emit/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/emit/paired_post.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/emit/paired_pre.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/emit/readtime_alias.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/ingress/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/ingress/attach_compiled.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/ingress/body_peek.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/ingress/body_read.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/ingress/ctx_init.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/ingress/headers_parse.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/ingress/method_extract.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/ingress/metrics_start.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/ingress/path_extract.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/ingress/query_parse.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/ingress/raw_from_scope.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/ingress/request_body_apply.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/ingress/request_from_scope.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/out/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/out/masking.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/refresh/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/refresh/demand.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/resolve/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/resolve/assemble.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/resolve/paired_gen.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/response/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/response/headers_from_payload.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/response/negotiate.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/response/negotiation.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/response/render.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/response/renderer.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/response/template.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/response/templates.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/route/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/route/binding_match.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/route/binding_policy_apply.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/route/ctx_finalize.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/route/op_resolve.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/route/params_normalize.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/route/path_params_extract.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/route/payload_select.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/route/plan_select.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/route/protocol_detect.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/route/rpc_envelope_parse.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/route/rpc_method_match.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/schema/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/schema/collect_in.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/schema/collect_out.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/storage/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/storage/to_stored.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/sys/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/sys/commit_tx.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/sys/handler_persistence.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/sys/start_tx.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/wire/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/wire/build_in.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/wire/build_out.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/wire/dump.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/atoms/wire/validate_in.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/context.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/events.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/exceptions.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/executor/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/executor/guards.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/executor/helpers.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/executor/invoke.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/executor/types.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/gw/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/gw/invoke.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/gw/raw.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/hook_types.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/kernel/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/kernel/atoms.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/kernel/cache.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/kernel/core.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/kernel/models.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/kernel/opview_compiler.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/kernel/payload.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/kernel.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/labels.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/opview.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/ordering.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/status/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/status/converters.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/status/exceptions.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/status/mappings.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/status/utils.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/system.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/runtime/trace.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/schema/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/schema/builder/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/schema/builder/build_schema.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/schema/builder/cache.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/schema/builder/extras.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/schema/builder/helpers.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/schema/builder/list_params.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/schema/builder/strip_parent_fields.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/schema/types.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/schema/utils.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/security/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/security/dependencies.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/shortcuts/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/shortcuts/app.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/shortcuts/column.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/shortcuts/engine.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/shortcuts/hook.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/shortcuts/op.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/shortcuts/responses.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/shortcuts/router.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/shortcuts/schema.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/shortcuts/table.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/specs.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/diagnostics/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/diagnostics/healthz.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/diagnostics/hookz.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/diagnostics/kernelz.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/diagnostics/methodz.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/diagnostics/router.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/diagnostics/utils.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/docs/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/docs/lens.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/docs/openapi/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/docs/openapi/helpers.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/docs/openapi/metadata.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/docs/openapi/mount.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/docs/openapi/schema.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/docs/openrpc.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/docs/swagger.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/favicon/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/favicon/assets/favicon.svg +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/system/uvicorn.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/transport/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/transport/jsonrpc/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/transport/jsonrpc/helpers.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/transport/jsonrpc/models.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/transport/rest/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/transport/rest/aggregator.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/types/allow_anon_provider.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/types/authn_abc.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/types/nested_path_provider.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/types/op.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/types/op_config_provider.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/types/op_verb_alias_provider.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/types/request_extras_provider.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/types/response_extras_provider.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/types/table_config_provider.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/types/uuid.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/utils/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/utils/schema.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/vendor/__init__.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/vendor/jinja.py +0 -0
- {tigrbl-0.3.17.dev2 → tigrbl-0.3.17.dev7}/tigrbl/vendor/pydantic.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.dev7
|
|
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.dev7"
|
|
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"
|
|
@@ -57,6 +57,7 @@ from .schema import _build_schema, _build_list_params, get_schema
|
|
|
57
57
|
from ._concrete._request import Request
|
|
58
58
|
from .security import Depends
|
|
59
59
|
from ._concrete._json_response import JSONResponse
|
|
60
|
+
from ._concrete._background import BackgroundTask
|
|
60
61
|
from ._concrete._response import Response
|
|
61
62
|
from .system import mount_diagnostics
|
|
62
63
|
|
|
@@ -181,6 +182,7 @@ __all__ += [
|
|
|
181
182
|
"Depends",
|
|
182
183
|
"Response",
|
|
183
184
|
"JSONResponse",
|
|
185
|
+
"BackgroundTask",
|
|
184
186
|
"resolver",
|
|
185
187
|
]
|
|
186
188
|
__all__ += [
|
|
@@ -44,6 +44,7 @@ from ..vendor.sqlalchemy import (
|
|
|
44
44
|
MutableList,
|
|
45
45
|
hybrid_property,
|
|
46
46
|
StaticPool,
|
|
47
|
+
TypeDecorator,
|
|
47
48
|
)
|
|
48
49
|
|
|
49
50
|
|
|
@@ -145,6 +146,7 @@ __all__: list[str] = [
|
|
|
145
146
|
"MutableDict",
|
|
146
147
|
"MutableList",
|
|
147
148
|
"StaticPool",
|
|
149
|
+
"TypeDecorator",
|
|
148
150
|
# pydantic schema support (from deps.pydantic)
|
|
149
151
|
"BaseModel",
|
|
150
152
|
"Field",
|
|
@@ -43,6 +43,7 @@ from sqlalchemy.orm import (
|
|
|
43
43
|
)
|
|
44
44
|
|
|
45
45
|
from sqlalchemy.pool import StaticPool
|
|
46
|
+
from sqlalchemy.types import TypeDecorator
|
|
46
47
|
|
|
47
48
|
# ── SQLAlchemy Extensions ────────────────────────────────────────────────
|
|
48
49
|
from sqlalchemy.ext.mutable import MutableDict, MutableList
|
|
@@ -69,6 +70,7 @@ __all__ = [
|
|
|
69
70
|
"create_engine",
|
|
70
71
|
"StaticPool",
|
|
71
72
|
"event",
|
|
73
|
+
"TypeDecorator",
|
|
72
74
|
# PostgreSQL dialect
|
|
73
75
|
"ARRAY",
|
|
74
76
|
"PgEnum",
|
|
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
|
|
File without changes
|