jararaca 0.3.12a13__py3-none-any.whl → 0.3.12a15__py3-none-any.whl
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.
Potentially problematic release.
This version of jararaca might be problematic. Click here for more details.
- jararaca/__init__.py +7 -1
- jararaca/messagebus/worker.py +652 -193
- jararaca/scheduler/beat_worker.py +537 -86
- jararaca/tools/typescript/decorators.py +33 -0
- jararaca/tools/typescript/interface_parser.py +383 -63
- {jararaca-0.3.12a13.dist-info → jararaca-0.3.12a15.dist-info}/METADATA +1 -1
- {jararaca-0.3.12a13.dist-info → jararaca-0.3.12a15.dist-info}/RECORD +11 -11
- pyproject.toml +1 -1
- {jararaca-0.3.12a13.dist-info → jararaca-0.3.12a15.dist-info}/LICENSE +0 -0
- {jararaca-0.3.12a13.dist-info → jararaca-0.3.12a15.dist-info}/WHEEL +0 -0
- {jararaca-0.3.12a13.dist-info → jararaca-0.3.12a15.dist-info}/entry_points.txt +0 -0
jararaca/__init__.py
CHANGED
|
@@ -165,7 +165,11 @@ if TYPE_CHECKING:
|
|
|
165
165
|
from .presentation.websocket.websocket_interceptor import WebSocketInterceptor
|
|
166
166
|
from .scheduler.decorators import ScheduledAction
|
|
167
167
|
from .tools.app_config.interceptor import AppConfigurationInterceptor
|
|
168
|
-
from .tools.typescript.decorators import
|
|
168
|
+
from .tools.typescript.decorators import (
|
|
169
|
+
MutationEndpoint,
|
|
170
|
+
QueryEndpoint,
|
|
171
|
+
SplitInputOutput,
|
|
172
|
+
)
|
|
169
173
|
|
|
170
174
|
__all__ = [
|
|
171
175
|
"SetMetadata",
|
|
@@ -272,6 +276,7 @@ if TYPE_CHECKING:
|
|
|
272
276
|
"AppConfigurationInterceptor",
|
|
273
277
|
"QueryEndpoint",
|
|
274
278
|
"MutationEndpoint",
|
|
279
|
+
"SplitInputOutput",
|
|
275
280
|
"UseMiddleware",
|
|
276
281
|
"UseDependency",
|
|
277
282
|
"GlobalHttpErrorHandler",
|
|
@@ -501,6 +506,7 @@ _dynamic_imports: "dict[str, tuple[str, str, str | None]]" = {
|
|
|
501
506
|
),
|
|
502
507
|
"QueryEndpoint": (__SPEC_PARENT__, "tools.typescript.decorators", None),
|
|
503
508
|
"MutationEndpoint": (__SPEC_PARENT__, "tools.typescript.decorators", None),
|
|
509
|
+
"SplitInputOutput": (__SPEC_PARENT__, "tools.typescript.decorators", None),
|
|
504
510
|
"UseMiddleware": (__SPEC_PARENT__, "presentation.decorators", None),
|
|
505
511
|
"UseDependency": (__SPEC_PARENT__, "presentation.decorators", None),
|
|
506
512
|
"GlobalHttpErrorHandler": (__SPEC_PARENT__, "rpc.http.decorators", None),
|