tigrbl 0.4.4.dev7__tar.gz → 0.4.4.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.4.4.dev7 → tigrbl-0.4.4.dev8}/PKG-INFO +1 -1
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/pyproject.toml +1 -1
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/LICENSE +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/NOTICE +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/README.md +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/__main__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/canonical_json.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/cli.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/config/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/config/constants.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/config/defaults.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/ddl/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/decorators/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/decorators/allow_anon.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/decorators/engine.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/decorators/hook.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/decorators/middlewares.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/decorators/op.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/decorators/response.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/decorators/rest.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/decorators/schema.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/decorators/session.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/engine/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/engine/bind.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/engine/builders.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/engine/capabilities.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/engine/collect.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/engine/plugins.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/engine/registry.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/engine/resolver.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/factories/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/factories/app.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/factories/column.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/factories/engine.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/factories/hook.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/factories/op.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/factories/responses.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/factories/router.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/factories/schema.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/factories/table.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/hook/exceptions.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/hook/types.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/middlewares/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/middlewares/compose.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/op/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/op/canonical.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/op/collect.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/op/types.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/orm/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/requests.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/rest/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/schema/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/schema/builder/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/schema/builder/build_schema.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/schema/builder/cache.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/schema/builder/extras.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/schema/builder/helpers.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/schema/builder/list_params.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/schema/builder/strip_parent_fields.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/schema/jsonrpc.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/schema/utils.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/security/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/security/dependencies.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/session/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/session/base.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/session/spec.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/shortcuts/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/shortcuts/app.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/shortcuts/column.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/shortcuts/engine.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/shortcuts/hook.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/shortcuts/op.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/shortcuts/responses.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/shortcuts/rest.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/shortcuts/router.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/shortcuts/schema.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/shortcuts/table.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/specs.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/diagnostics/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/diagnostics/healthz.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/diagnostics/hookz.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/diagnostics/kernelz.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/diagnostics/methodz.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/diagnostics/router.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/diagnostics/utils.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/docs/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/docs/lens.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/docs/openapi/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/docs/openapi/helpers.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/docs/openapi/metadata.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/docs/openapi/mount.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/docs/openapi/schema.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/docs/openrpc.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/docs/swagger.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/favicon/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/favicon/assets/favicon.svg +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/system/uvicorn.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/transport/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/transport/jsonrpc/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/transport/jsonrpc/helpers.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/transport/jsonrpc/models.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/transport/rest/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/transport/rest/aggregator.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/types/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/utils/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/utils/schema.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/vendor/__init__.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/vendor/jinja.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/vendor/pydantic.py +0 -0
- {tigrbl-0.4.4.dev7 → tigrbl-0.4.4.dev8}/tigrbl/vendor/sqlalchemy.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tigrbl
|
|
3
|
-
Version: 0.4.4.
|
|
3
|
+
Version: 0.4.4.dev8
|
|
4
4
|
Summary: Schema-first ASGI framework for REST, JSON-RPC, streaming, SSE, WebSocket, runtime plans, hooks, diagnostics, and engine plugins.
|
|
5
5
|
License: Apache License
|
|
6
6
|
Version 2.0, January 2004
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "tigrbl"
|
|
3
|
-
version = "0.4.4.
|
|
3
|
+
version = "0.4.4.dev8"
|
|
4
4
|
description = "Schema-first ASGI framework for REST, JSON-RPC, streaming, SSE, WebSocket, runtime plans, hooks, diagnostics, and engine plugins."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { file = "LICENSE" }
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|