omnibase_infra 0.2.1__py3-none-any.whl → 0.2.3__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.
- omnibase_infra/__init__.py +1 -1
- omnibase_infra/adapters/adapter_onex_tool_execution.py +451 -0
- omnibase_infra/capabilities/__init__.py +15 -0
- omnibase_infra/capabilities/capability_inference_rules.py +211 -0
- omnibase_infra/capabilities/contract_capability_extractor.py +221 -0
- omnibase_infra/capabilities/intent_type_extractor.py +160 -0
- omnibase_infra/cli/commands.py +1 -1
- omnibase_infra/configs/widget_mapping.yaml +176 -0
- omnibase_infra/contracts/handlers/filesystem/handler_contract.yaml +5 -2
- omnibase_infra/contracts/handlers/mcp/handler_contract.yaml +5 -2
- omnibase_infra/enums/__init__.py +6 -0
- omnibase_infra/enums/enum_handler_error_type.py +10 -0
- omnibase_infra/enums/enum_handler_source_mode.py +72 -0
- omnibase_infra/enums/enum_kafka_acks.py +99 -0
- omnibase_infra/errors/error_compute_registry.py +4 -1
- omnibase_infra/errors/error_event_bus_registry.py +4 -1
- omnibase_infra/errors/error_infra.py +3 -1
- omnibase_infra/errors/error_policy_registry.py +4 -1
- omnibase_infra/event_bus/event_bus_kafka.py +1 -1
- omnibase_infra/event_bus/models/config/model_kafka_event_bus_config.py +59 -10
- omnibase_infra/handlers/__init__.py +8 -1
- omnibase_infra/handlers/handler_consul.py +7 -1
- omnibase_infra/handlers/handler_db.py +10 -3
- omnibase_infra/handlers/handler_graph.py +10 -5
- omnibase_infra/handlers/handler_http.py +8 -2
- omnibase_infra/handlers/handler_intent.py +387 -0
- omnibase_infra/handlers/handler_mcp.py +745 -63
- omnibase_infra/handlers/handler_vault.py +11 -5
- omnibase_infra/handlers/mixins/mixin_consul_kv.py +4 -3
- omnibase_infra/handlers/mixins/mixin_consul_service.py +2 -1
- omnibase_infra/handlers/registration_storage/handler_registration_storage_postgres.py +7 -0
- omnibase_infra/handlers/service_discovery/handler_service_discovery_consul.py +308 -4
- omnibase_infra/handlers/service_discovery/models/model_service_info.py +10 -0
- omnibase_infra/mixins/mixin_async_circuit_breaker.py +3 -2
- omnibase_infra/mixins/mixin_node_introspection.py +42 -7
- omnibase_infra/mixins/mixin_retry_execution.py +1 -1
- omnibase_infra/models/discovery/model_introspection_config.py +11 -0
- omnibase_infra/models/handlers/__init__.py +48 -5
- omnibase_infra/models/handlers/model_bootstrap_handler_descriptor.py +162 -0
- omnibase_infra/models/handlers/model_contract_discovery_result.py +6 -4
- omnibase_infra/models/handlers/model_handler_descriptor.py +15 -0
- omnibase_infra/models/handlers/model_handler_source_config.py +220 -0
- omnibase_infra/models/mcp/__init__.py +15 -0
- omnibase_infra/models/mcp/model_mcp_contract_config.py +80 -0
- omnibase_infra/models/mcp/model_mcp_server_config.py +67 -0
- omnibase_infra/models/mcp/model_mcp_tool_definition.py +73 -0
- omnibase_infra/models/mcp/model_mcp_tool_parameter.py +35 -0
- omnibase_infra/models/registration/model_node_capabilities.py +11 -0
- omnibase_infra/models/registration/model_node_introspection_event.py +9 -0
- omnibase_infra/models/runtime/model_handler_contract.py +25 -9
- omnibase_infra/models/runtime/model_loaded_handler.py +9 -0
- omnibase_infra/nodes/architecture_validator/contract_architecture_validator.yaml +0 -5
- omnibase_infra/nodes/architecture_validator/registry/registry_infra_architecture_validator.py +17 -10
- omnibase_infra/nodes/effects/contract.yaml +0 -5
- omnibase_infra/nodes/node_registration_orchestrator/contract.yaml +7 -0
- omnibase_infra/nodes/node_registration_orchestrator/handlers/handler_node_introspected.py +86 -1
- omnibase_infra/nodes/node_registration_orchestrator/introspection_event_router.py +3 -3
- omnibase_infra/nodes/node_registration_orchestrator/plugin.py +1 -1
- omnibase_infra/nodes/node_registration_orchestrator/registry/registry_infra_node_registration_orchestrator.py +9 -8
- omnibase_infra/nodes/node_registration_orchestrator/timeout_coordinator.py +4 -3
- omnibase_infra/nodes/node_registration_orchestrator/wiring.py +14 -13
- omnibase_infra/nodes/node_registration_storage_effect/contract.yaml +0 -5
- omnibase_infra/nodes/node_registration_storage_effect/node.py +4 -1
- omnibase_infra/nodes/node_registration_storage_effect/registry/registry_infra_registration_storage.py +47 -26
- omnibase_infra/nodes/node_registry_effect/contract.yaml +0 -5
- omnibase_infra/nodes/node_registry_effect/handlers/handler_partial_retry.py +2 -1
- omnibase_infra/nodes/node_service_discovery_effect/registry/registry_infra_service_discovery.py +28 -20
- omnibase_infra/plugins/examples/plugin_json_normalizer.py +2 -2
- omnibase_infra/plugins/examples/plugin_json_normalizer_error_handling.py +2 -2
- omnibase_infra/plugins/plugin_compute_base.py +16 -2
- omnibase_infra/protocols/__init__.py +2 -0
- omnibase_infra/protocols/protocol_container_aware.py +200 -0
- omnibase_infra/protocols/protocol_event_projector.py +1 -1
- omnibase_infra/runtime/__init__.py +90 -1
- omnibase_infra/runtime/binding_config_resolver.py +102 -37
- omnibase_infra/runtime/constants_notification.py +75 -0
- omnibase_infra/runtime/contract_handler_discovery.py +6 -1
- omnibase_infra/runtime/handler_bootstrap_source.py +507 -0
- omnibase_infra/runtime/handler_contract_config_loader.py +603 -0
- omnibase_infra/runtime/handler_contract_source.py +267 -186
- omnibase_infra/runtime/handler_identity.py +81 -0
- omnibase_infra/runtime/handler_plugin_loader.py +19 -2
- omnibase_infra/runtime/handler_registry.py +11 -3
- omnibase_infra/runtime/handler_source_resolver.py +326 -0
- omnibase_infra/runtime/mixin_semver_cache.py +25 -1
- omnibase_infra/runtime/mixins/__init__.py +7 -0
- omnibase_infra/runtime/mixins/mixin_projector_notification_publishing.py +566 -0
- omnibase_infra/runtime/mixins/mixin_projector_sql_operations.py +31 -10
- omnibase_infra/runtime/models/__init__.py +24 -0
- omnibase_infra/runtime/models/model_health_check_result.py +2 -1
- omnibase_infra/runtime/models/model_projector_notification_config.py +171 -0
- omnibase_infra/runtime/models/model_transition_notification_outbox_config.py +112 -0
- omnibase_infra/runtime/models/model_transition_notification_outbox_metrics.py +140 -0
- omnibase_infra/runtime/models/model_transition_notification_publisher_metrics.py +357 -0
- omnibase_infra/runtime/projector_plugin_loader.py +1 -1
- omnibase_infra/runtime/projector_shell.py +229 -1
- omnibase_infra/runtime/protocol_lifecycle_executor.py +6 -6
- omnibase_infra/runtime/protocols/__init__.py +10 -0
- omnibase_infra/runtime/registry/registry_protocol_binding.py +16 -15
- omnibase_infra/runtime/registry_contract_source.py +693 -0
- omnibase_infra/runtime/registry_policy.py +9 -326
- omnibase_infra/runtime/secret_resolver.py +4 -2
- omnibase_infra/runtime/service_kernel.py +11 -3
- omnibase_infra/runtime/service_message_dispatch_engine.py +4 -2
- omnibase_infra/runtime/service_runtime_host_process.py +589 -106
- omnibase_infra/runtime/transition_notification_outbox.py +1190 -0
- omnibase_infra/runtime/transition_notification_publisher.py +764 -0
- omnibase_infra/runtime/util_container_wiring.py +6 -5
- omnibase_infra/runtime/util_wiring.py +17 -4
- omnibase_infra/schemas/schema_transition_notification_outbox.sql +245 -0
- omnibase_infra/services/__init__.py +21 -0
- omnibase_infra/services/corpus_capture.py +7 -1
- omnibase_infra/services/mcp/__init__.py +31 -0
- omnibase_infra/services/mcp/mcp_server_lifecycle.py +449 -0
- omnibase_infra/services/mcp/service_mcp_tool_discovery.py +411 -0
- omnibase_infra/services/mcp/service_mcp_tool_registry.py +329 -0
- omnibase_infra/services/mcp/service_mcp_tool_sync.py +547 -0
- omnibase_infra/services/registry_api/__init__.py +40 -0
- omnibase_infra/services/registry_api/main.py +261 -0
- omnibase_infra/services/registry_api/models/__init__.py +66 -0
- omnibase_infra/services/registry_api/models/model_capability_widget_mapping.py +38 -0
- omnibase_infra/services/registry_api/models/model_pagination_info.py +48 -0
- omnibase_infra/services/registry_api/models/model_registry_discovery_response.py +73 -0
- omnibase_infra/services/registry_api/models/model_registry_health_response.py +49 -0
- omnibase_infra/services/registry_api/models/model_registry_instance_view.py +88 -0
- omnibase_infra/services/registry_api/models/model_registry_node_view.py +88 -0
- omnibase_infra/services/registry_api/models/model_registry_summary.py +60 -0
- omnibase_infra/services/registry_api/models/model_response_list_instances.py +43 -0
- omnibase_infra/services/registry_api/models/model_response_list_nodes.py +51 -0
- omnibase_infra/services/registry_api/models/model_warning.py +49 -0
- omnibase_infra/services/registry_api/models/model_widget_defaults.py +28 -0
- omnibase_infra/services/registry_api/models/model_widget_mapping.py +51 -0
- omnibase_infra/services/registry_api/routes.py +371 -0
- omnibase_infra/services/registry_api/service.py +837 -0
- omnibase_infra/services/service_capability_query.py +4 -4
- omnibase_infra/services/service_health.py +3 -2
- omnibase_infra/services/service_timeout_emitter.py +20 -3
- omnibase_infra/services/service_timeout_scanner.py +7 -3
- omnibase_infra/services/session/__init__.py +56 -0
- omnibase_infra/services/session/config_consumer.py +120 -0
- omnibase_infra/services/session/config_store.py +139 -0
- omnibase_infra/services/session/consumer.py +1007 -0
- omnibase_infra/services/session/protocol_session_aggregator.py +117 -0
- omnibase_infra/services/session/store.py +997 -0
- omnibase_infra/utils/__init__.py +19 -0
- omnibase_infra/utils/util_atomic_file.py +261 -0
- omnibase_infra/utils/util_db_transaction.py +239 -0
- omnibase_infra/utils/util_dsn_validation.py +1 -1
- omnibase_infra/utils/util_retry_optimistic.py +281 -0
- omnibase_infra/validation/__init__.py +3 -19
- omnibase_infra/validation/contracts/security.validation.yaml +114 -0
- omnibase_infra/validation/infra_validators.py +35 -24
- omnibase_infra/validation/validation_exemptions.yaml +140 -9
- omnibase_infra/validation/validator_chain_propagation.py +2 -2
- omnibase_infra/validation/validator_runtime_shape.py +1 -1
- omnibase_infra/validation/validator_security.py +473 -370
- {omnibase_infra-0.2.1.dist-info → omnibase_infra-0.2.3.dist-info}/METADATA +3 -3
- {omnibase_infra-0.2.1.dist-info → omnibase_infra-0.2.3.dist-info}/RECORD +161 -98
- {omnibase_infra-0.2.1.dist-info → omnibase_infra-0.2.3.dist-info}/WHEEL +0 -0
- {omnibase_infra-0.2.1.dist-info → omnibase_infra-0.2.3.dist-info}/entry_points.txt +0 -0
- {omnibase_infra-0.2.1.dist-info → omnibase_infra-0.2.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,9 +1,15 @@
|
|
|
1
|
-
omnibase_infra/__init__.py,sha256=
|
|
1
|
+
omnibase_infra/__init__.py,sha256=SYMfGOWbNnPUN6_Sqbr6OV-JPukXSl0sqkDndF7FZL8,3853
|
|
2
|
+
omnibase_infra/adapters/adapter_onex_tool_execution.py,sha256=gKiRTr3pc7-DNAS9_bSmLWssOr1FDCiciwE16cQF3Ro,15377
|
|
3
|
+
omnibase_infra/capabilities/__init__.py,sha256=O6qQjWNwe0ZQt5hpGMMLx4CgagdpxBJzMGVpowi8eKY,462
|
|
4
|
+
omnibase_infra/capabilities/capability_inference_rules.py,sha256=2VDLhvBlDOYyi1eCQGSNB8eXf2JQ4cG9Xftsb3P2xm0,8166
|
|
5
|
+
omnibase_infra/capabilities/contract_capability_extractor.py,sha256=fO-5k_hw1QSZbHaDtWq7GhjUAW-gTjFjDcK0K96E498,8128
|
|
6
|
+
omnibase_infra/capabilities/intent_type_extractor.py,sha256=Zlj5mBAxnmhzRPVvs5uwGSDTAtwwYDkIHkuWCOBMA8w,5429
|
|
2
7
|
omnibase_infra/cli/__init__.py,sha256=xWQlnps3lptS2wtxYCQfoC6Jx8bs49SfmgWeFi9bWe0,31
|
|
3
|
-
omnibase_infra/cli/commands.py,sha256=
|
|
8
|
+
omnibase_infra/cli/commands.py,sha256=4ZSTToH5W1uM4wUOfso17jzQhz4Jro0HDMRaKF41L0U,7495
|
|
4
9
|
omnibase_infra/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
omnibase_infra/
|
|
6
|
-
omnibase_infra/contracts/handlers/
|
|
10
|
+
omnibase_infra/configs/widget_mapping.yaml,sha256=IKNUUwKNHCX-DBODcXhp6FiaUCVqP9bmczdhqTVszcc,4661
|
|
11
|
+
omnibase_infra/contracts/handlers/filesystem/handler_contract.yaml,sha256=jolMueFvy9CSjSgTg8fLi7odZcIHBttxtR48q8ylFCg,13179
|
|
12
|
+
omnibase_infra/contracts/handlers/mcp/handler_contract.yaml,sha256=Qv2J9x_YuTrh8efyg1f7sBz6G-Ys_vKN8da3jn8gD1c,5328
|
|
7
13
|
omnibase_infra/decorators/__init__.py,sha256=wbf6tlcghBDAGP0lJ0WGdV62eeKcBvqezQk4RaZ7070,837
|
|
8
14
|
omnibase_infra/decorators/allow_any.py,sha256=IMO7QpktCAKab5LaEZpkREf42bgGJkkDEuFoQO8vbkQ,3843
|
|
9
15
|
omnibase_infra/dlq/__init__.py,sha256=s0b9VhTj_3xetgmuKWkDcADZEjkjIR0nFQgKt3NXsVI,3128
|
|
@@ -13,7 +19,7 @@ omnibase_infra/dlq/models/enum_replay_status.py,sha256=Sq-FtWpdLCYM0Dx7gLU0sa0I1
|
|
|
13
19
|
omnibase_infra/dlq/models/model_dlq_replay_record.py,sha256=8a25q0ZXGvU4kf585atSfVuLEmBopNj0qYrN4qUTvIA,4895
|
|
14
20
|
omnibase_infra/dlq/models/model_dlq_tracking_config.py,sha256=z5uqNo6my3sUh00m0TEBbIJ_pLe3eBHxByFGi30hKdk,6647
|
|
15
21
|
omnibase_infra/dlq/service_dlq_tracking.py,sha256=yiPYxj-Njvl_Nw0DjpS7dDQDYH0Xg7ahNvAqabc-bvw,25879
|
|
16
|
-
omnibase_infra/enums/__init__.py,sha256=
|
|
22
|
+
omnibase_infra/enums/__init__.py,sha256=f_FGTswh6BEZKxx0zaDUFHxLPGJzYUn30R9VDb8dH5g,7073
|
|
17
23
|
omnibase_infra/enums/enum_any_type_violation.py,sha256=qpyzIuXPUlAclN4HMDxft6LfaeGkUpqO-PDwZa4s4oI,4338
|
|
18
24
|
omnibase_infra/enums/enum_backend_type.py,sha256=7kvqJzmF3NEHaSUlEJG4yRImSljr8BGyidRi0872e6Y,683
|
|
19
25
|
omnibase_infra/enums/enum_capture_outcome.py,sha256=4TOSxTzBAQHjwrPROSUNgu0xai1whzncUD4v-4RexJw,1165
|
|
@@ -26,13 +32,15 @@ omnibase_infra/enums/enum_dedupe_strategy.py,sha256=lBAbY7nQnGmnUxKQ4vREIKdGyBMM
|
|
|
26
32
|
omnibase_infra/enums/enum_dispatch_status.py,sha256=bVMkno_KITl73N6Md8AMcSaRFrfDADZFlws8R0sGzYE,6698
|
|
27
33
|
omnibase_infra/enums/enum_environment.py,sha256=KkoYdVPhmTfWbZ1JWIdvtAw02ZcLT-APg-c6Cs1ZVfg,1641
|
|
28
34
|
omnibase_infra/enums/enum_execution_shape_violation.py,sha256=2vJ02AXiCk2Gsq6LxLzbD3KbtyH0_w357l3-qzpcuuo,4857
|
|
29
|
-
omnibase_infra/enums/enum_handler_error_type.py,sha256=
|
|
35
|
+
omnibase_infra/enums/enum_handler_error_type.py,sha256=PMPpy1MzMXHgsxP6ePt4_5CuTRKFVTpm4yf4f_sUto0,4903
|
|
30
36
|
omnibase_infra/enums/enum_handler_loader_error.py,sha256=_YXlNtJPDc0lmDr3xx2TZ33D7mevPL5qDPQeEtUiIXM,7547
|
|
37
|
+
omnibase_infra/enums/enum_handler_source_mode.py,sha256=rS8DazNp8uaGuz73UrhCaOgj6u5I1hoKda1DfFYRUBE,3483
|
|
31
38
|
omnibase_infra/enums/enum_handler_source_type.py,sha256=ro1iP8yzlX8OWwBwsgTVbqQ88XmihZ1lbjZmRjh42uo,3940
|
|
32
39
|
omnibase_infra/enums/enum_handler_type.py,sha256=eD1blksG1xUp_HnD7kJOSrk3ZXIJKPLcKY-Hk6IS-nI,3852
|
|
33
40
|
omnibase_infra/enums/enum_handler_type_category.py,sha256=SiA4xw2ji-CGMavGkFYqefymvnEpfEHLbPmDyY2sJns,2822
|
|
34
41
|
omnibase_infra/enums/enum_infra_transport_type.py,sha256=n0x3e7xFGfIvk9x8_JakxvZMXUnQnsvh-_TvmjPPGbA,2771
|
|
35
42
|
omnibase_infra/enums/enum_introspection_reason.py,sha256=TsRxiCokJT1KwSkGE4UXlJlWjM_w4w596AaCvP-jzxI,4897
|
|
43
|
+
omnibase_infra/enums/enum_kafka_acks.py,sha256=Z2q52JsZYhNkfCB2YLe-eISS69nShpXRmFIV2LUM1hM,3370
|
|
36
44
|
omnibase_infra/enums/enum_message_category.py,sha256=ON6tZlETwmoZcnyKQ24h9xIaGLox6xU9R_Qp0sPJBHw,7935
|
|
37
45
|
omnibase_infra/enums/enum_node_archetype.py,sha256=qGt6jKjH7XFU_jU5FkKdtGaJmjL1MrnovaBg97LkB5g,3475
|
|
38
46
|
omnibase_infra/enums/enum_node_output_type.py,sha256=ENsaDPUX87Mua1loHWWdGiY2lJZnyFZ76hUEnNwnKic,7802
|
|
@@ -50,51 +58,52 @@ omnibase_infra/enums/enum_validation_severity.py,sha256=Dl6zVgIS13bA-QeNK44YJfVx
|
|
|
50
58
|
omnibase_infra/errors/__init__.py,sha256=3E7y0d9ADrygQr0Gzn3XC8Rh6NSXMKZQja6yILFmxQE,6003
|
|
51
59
|
omnibase_infra/errors/error_architecture_violation.py,sha256=2Q6r3pqDifdBiMhZdkdImnwfJIZM_fZP1TyoHZ2aUJA,5849
|
|
52
60
|
omnibase_infra/errors/error_chain_propagation.py,sha256=k8A5H7lYvyGiCBqYw2gRHUjlYWMF0NGJu2mtvGQCBoo,6663
|
|
53
|
-
omnibase_infra/errors/error_compute_registry.py,sha256=
|
|
61
|
+
omnibase_infra/errors/error_compute_registry.py,sha256=YMXAK2el_4J47t3i54R6krrEx346RFgsjqf1_OWyhsY,3424
|
|
54
62
|
omnibase_infra/errors/error_consul.py,sha256=eqJOveExQdV0icrX9Pw8J08HfnfegYLZohwCgIV5HnE,5135
|
|
55
63
|
omnibase_infra/errors/error_container_wiring.py,sha256=pmheQlXu6VyeRKh0WKXenT2FWwhvDvhHq33AvV6fT_g,7769
|
|
56
|
-
omnibase_infra/errors/error_event_bus_registry.py,sha256=
|
|
57
|
-
omnibase_infra/errors/error_infra.py,sha256=
|
|
64
|
+
omnibase_infra/errors/error_event_bus_registry.py,sha256=mBK5WqJMT2m94XeH2Hnd3mv4gYxxiFYiP6IIxJvFY98,3802
|
|
65
|
+
omnibase_infra/errors/error_infra.py,sha256=LizVnhvT9QyRTJu2p-KLpaOQP653XrKNrcM7S8EqAh4,22458
|
|
58
66
|
omnibase_infra/errors/error_message_type_registry.py,sha256=2lnv0g51JdjJKNBjxWV1LCsPboApNz9gKBoNUyxZoJY,3566
|
|
59
|
-
omnibase_infra/errors/error_policy_registry.py,sha256=
|
|
67
|
+
omnibase_infra/errors/error_policy_registry.py,sha256=_tOy4OvYEmS0UuntEZZipuYd7UTfEJSbACRVp-9J9Go,4400
|
|
60
68
|
omnibase_infra/errors/error_vault.py,sha256=eS9wa_NWj3iVRFKz8GSkqaYW_O1DYdCQTaDDAyATgls,4686
|
|
61
69
|
omnibase_infra/event_bus/__init__.py,sha256=aVcWzLBHWwwEbv5N7m2DQggnkQAjXnnk3_CfbLp_XjE,2410
|
|
62
70
|
omnibase_infra/event_bus/configs/kafka_event_bus_config.yaml,sha256=ZcjPv0f4RxQUF8tmvOU7Ki31fUnfgyDDLfIaOTE-wVQ,4687
|
|
63
71
|
omnibase_infra/event_bus/event_bus_inmemory.py,sha256=l4zw_g3dpfF4frDTzJ_LW74qzyoAEfdiFZhwn6L1KyM,27179
|
|
64
|
-
omnibase_infra/event_bus/event_bus_kafka.py,sha256=
|
|
72
|
+
omnibase_infra/event_bus/event_bus_kafka.py,sha256=ADD64hMYjL664yjwsVlmbsEDl-z36ZpermJLxh5UL7g,63459
|
|
65
73
|
omnibase_infra/event_bus/mixin_kafka_broadcast.py,sha256=awW4ZdUekvOPbQEd2MBdIFxIqqaWi35j-Ep6aMY0G-8,5791
|
|
66
74
|
omnibase_infra/event_bus/mixin_kafka_dlq.py,sha256=u6VlUgkglIMNkhmZY-KgnjA_03feAEiXI2kmHN4w_js,30328
|
|
67
75
|
omnibase_infra/event_bus/models/__init__.py,sha256=Gk0eB5Il6rGkNSHtC8MEt-aHSgFy-sdKiSRzvN2k_yU,1159
|
|
68
76
|
omnibase_infra/event_bus/models/config/__init__.py,sha256=QSFMNUuIjeSQXov3qLiAw0Lu0y2qvelLdS1xAGnC1DI,575
|
|
69
|
-
omnibase_infra/event_bus/models/config/model_kafka_event_bus_config.py,sha256=
|
|
77
|
+
omnibase_infra/event_bus/models/config/model_kafka_event_bus_config.py,sha256=ye-yXky5YkWvs7lXwp4ourh7_pzzATSB8EMFY-6uYtA,29063
|
|
70
78
|
omnibase_infra/event_bus/models/model_dlq_event.py,sha256=uU2Xi0Bgyg0nRoLgGdby1pYSKAk2QclRsxfxa9rdskA,7439
|
|
71
79
|
omnibase_infra/event_bus/models/model_dlq_metrics.py,sha256=C7SQ0HWQEW2AyHLPTQVLDR7P9ZAc7ISKu-a5dZYckTg,10146
|
|
72
80
|
omnibase_infra/event_bus/models/model_event_headers.py,sha256=cNpnSgZP6ZaxntOJr50gite2MGm4IIu2XYydZky_I6U,4690
|
|
73
81
|
omnibase_infra/event_bus/models/model_event_message.py,sha256=qQV5VYgll1L0Ls8YQzsNtNDJErTChFVwrSwE1lUPI9E,1976
|
|
74
82
|
omnibase_infra/event_bus/topic_constants.py,sha256=Z6oOG5ezYdYJkL69vaYVMG2UYOHp7fnAWYec_fnrbiU,13349
|
|
75
|
-
omnibase_infra/handlers/__init__.py,sha256=
|
|
83
|
+
omnibase_infra/handlers/__init__.py,sha256=c5uWm-IKFyhPzv3WPwZZsjDb_K2ki4cHei748LZt9KU,3259
|
|
76
84
|
omnibase_infra/handlers/filesystem/__init__.py,sha256=ZZUaVKMU0nlACyGXl2I4xzoVdb7uaV06Ba5Qc82qDb4,1494
|
|
77
85
|
omnibase_infra/handlers/filesystem/enum_file_system_operation.py,sha256=xuX95LdgWGIIm9jGBqpftP7gQcX5ECcri2QDF5585qo,950
|
|
78
86
|
omnibase_infra/handlers/filesystem/model_file_system_request.py,sha256=qgyxXYgZMreWdVqIoQa_IlcfqwCQJhzwpBQlANybIu8,11088
|
|
79
87
|
omnibase_infra/handlers/filesystem/model_file_system_result.py,sha256=qrQyZCuxHiQx3St51-bIScC0aMtocYmryd-I5OvxV7U,5702
|
|
80
|
-
omnibase_infra/handlers/handler_consul.py,sha256=
|
|
81
|
-
omnibase_infra/handlers/handler_db.py,sha256=
|
|
88
|
+
omnibase_infra/handlers/handler_consul.py,sha256=F2u4-f8eW8Nli5drg1oH6sZJkw3EfuaycnvzmEXeOQI,31409
|
|
89
|
+
omnibase_infra/handlers/handler_db.py,sha256=toaT1DS-J76J47isXsRSkcB7QFD5-8SaDbOqVEIhMmQ,44871
|
|
82
90
|
omnibase_infra/handlers/handler_filesystem.py,sha256=J71cMTmWpQP4Y2h2nxy4jLmDKbvg9Xwbubjb-_ZFqGo,58333
|
|
83
|
-
omnibase_infra/handlers/handler_graph.py,sha256=
|
|
84
|
-
omnibase_infra/handlers/handler_http.py,sha256=
|
|
91
|
+
omnibase_infra/handlers/handler_graph.py,sha256=12Nulsm-xIuFJZP61IilS-SuNupRFhHWWYAtLbQzwhs,44692
|
|
92
|
+
omnibase_infra/handlers/handler_http.py,sha256=1HAl26wtTpql1GNlLw9ZwjhOm32Oif4TOguAam16y5s,37899
|
|
93
|
+
omnibase_infra/handlers/handler_intent.py,sha256=aoX8Prgum2GbqI-exNA2e2kASA1b8cVpeXcR6JtuMIg,13992
|
|
85
94
|
omnibase_infra/handlers/handler_manifest_persistence.contract.yaml,sha256=kkkcDL88RcmK0ZaAa4eDcSajKwwU4iia0LN7o_zqRD8,6397
|
|
86
95
|
omnibase_infra/handlers/handler_manifest_persistence.py,sha256=dLyqhLaKLvnnGrvsAzpK2a--c4B0P2lduOjz_1nGNTw,65400
|
|
87
|
-
omnibase_infra/handlers/handler_mcp.py,sha256=
|
|
96
|
+
omnibase_infra/handlers/handler_mcp.py,sha256=DdirNNqcXVN7lBZY25MtamNd84WtaYx0gBIHd3qC7G8,57255
|
|
88
97
|
omnibase_infra/handlers/handler_qdrant.py,sha256=dwGg60jyNHDbKnkJxBViyC9_Irw4CahUxVdeP2PL-o8,39941
|
|
89
|
-
omnibase_infra/handlers/handler_vault.py,sha256
|
|
98
|
+
omnibase_infra/handlers/handler_vault.py,sha256=-6c3UIf1YIZA8R2A4CTnyY8rVeSw6G0zp39ioDpFFnw,17745
|
|
90
99
|
omnibase_infra/handlers/mcp/__init__.py,sha256=INHEU8bIsuwehaqwM-33T4hlCyD2kSIrZYiiOsMd6tA,556
|
|
91
100
|
omnibase_infra/handlers/mcp/adapter_onex_to_mcp.py,sha256=AMA8tEpOhv12IX_KtfnhzSFErVWsPwAOhyQOJP7jR6M,14886
|
|
92
101
|
omnibase_infra/handlers/mcp/protocols.py,sha256=yY-bxnuSoA-NEF9tFrEN-38JWPl_fBD-jhwZT38ZVMk,6906
|
|
93
102
|
omnibase_infra/handlers/mcp/transport_streamable_http.py,sha256=FB868udKKrbz2dF1wxeDEBJGUJRAID8ez969x052_s0,12892
|
|
94
103
|
omnibase_infra/handlers/mixins/__init__.py,sha256=A4nIiy6KmvYQeXVgGi9B1u9bx0bzd2KeGKMLF97rszc,1592
|
|
95
104
|
omnibase_infra/handlers/mixins/mixin_consul_initialization.py,sha256=V11FNDa6ddB3MukwpqcXgj2UTwyMI03lVdgwW7yPBTk,11676
|
|
96
|
-
omnibase_infra/handlers/mixins/mixin_consul_kv.py,sha256
|
|
97
|
-
omnibase_infra/handlers/mixins/mixin_consul_service.py,sha256=
|
|
105
|
+
omnibase_infra/handlers/mixins/mixin_consul_kv.py,sha256=1eYbTmOck0mgIp0egvACTr89-f0PZTGLsqwt0JcILcw,11990
|
|
106
|
+
omnibase_infra/handlers/mixins/mixin_consul_service.py,sha256=r1MNzyjqun55kXY8O5Gx6gZJS-y6tjWch5CnVjKy9k4,9454
|
|
98
107
|
omnibase_infra/handlers/mixins/mixin_vault_initialization.py,sha256=2XJpqtwruVMCU1aWXNsJ2wyn4wIjLZri_i6J6OktJws,12101
|
|
99
108
|
omnibase_infra/handlers/mixins/mixin_vault_retry.py,sha256=2p1QBvOm0flwoZxolc--f-T1Z0upA8ngh0j11m4vNLU,14881
|
|
100
109
|
omnibase_infra/handlers/mixins/mixin_vault_secrets.py,sha256=C5BRgztM76-wElCTr9B0-D0kSF_EMhHxz2UFF1Cqq-Y,16536
|
|
@@ -188,18 +197,18 @@ omnibase_infra/handlers/models/vault/model_vault_write_payload.py,sha256=ESyZIiY
|
|
|
188
197
|
omnibase_infra/handlers/models/vault/registry_payload_vault.py,sha256=uS70QPXX-TgPtkLOe4LJEiFzgC3o7OMp6mz9gzYzpLM,7821
|
|
189
198
|
omnibase_infra/handlers/registration_storage/__init__.py,sha256=PEuDYeZsRrug85OKQokun96kiCehlMUVcodJgaufshI,1511
|
|
190
199
|
omnibase_infra/handlers/registration_storage/handler_registration_storage_mock.py,sha256=viCx8dh92Zpe-aO4k68D9IsiWJG4s_wKTEdHQB86t4g,12371
|
|
191
|
-
omnibase_infra/handlers/registration_storage/handler_registration_storage_postgres.py,sha256=
|
|
200
|
+
omnibase_infra/handlers/registration_storage/handler_registration_storage_postgres.py,sha256=Eq5QEwJZWctNA_JDAe9HRt8bSOFTw3ofAP1tD4qi6MI,34561
|
|
192
201
|
omnibase_infra/handlers/registration_storage/models/__init__.py,sha256=-36QxUivbTWDaxT1s0G_TGU15LCgVsJzfH4--T-Smls,767
|
|
193
202
|
omnibase_infra/handlers/registration_storage/models/model_delete_registration_request.py,sha256=HV1yjzbZ_Zm1WqPsz8S2Rmi-SLbbvmE2NOSwdqleiFg,1751
|
|
194
203
|
omnibase_infra/handlers/registration_storage/models/model_update_registration_request.py,sha256=5bo5a0geYSW3gDv3IWogQwrBwqTJD_v3DsPpFBV2rLM,2424
|
|
195
204
|
omnibase_infra/handlers/registration_storage/protocol_registration_persistence.py,sha256=C-IeLsn4bZIowMLIXyK54Wm6E43aHJgim4wlpfTIkwI,6500
|
|
196
205
|
omnibase_infra/handlers/service_discovery/__init__.py,sha256=KQP3RJVqoKWxw3Tzi4sjU9XNpd3TgNOQCCrK8H8RoZs,1420
|
|
197
|
-
omnibase_infra/handlers/service_discovery/handler_service_discovery_consul.py,sha256=
|
|
206
|
+
omnibase_infra/handlers/service_discovery/handler_service_discovery_consul.py,sha256=en9se8t4B8t0p-KdCh1Ur7D8LWwwnWvAbxS2EK1fiOo,43147
|
|
198
207
|
omnibase_infra/handlers/service_discovery/handler_service_discovery_mock.py,sha256=Jd-JJAg4sXYOBq-EMVO3uCeo89cpYUpy8lPmGWANWFA,8181
|
|
199
208
|
omnibase_infra/handlers/service_discovery/models/__init__.py,sha256=cS9jLb1HRlPyCNhja_tYnVexmZKF0pE2K9RZXljjNqc,621
|
|
200
209
|
omnibase_infra/handlers/service_discovery/models/model_discovery_result.py,sha256=4ZIYOf3ND6vqI-P47ujXZWBC7U8RoaYLWBnL-PN-178,1936
|
|
201
210
|
omnibase_infra/handlers/service_discovery/models/model_registration_result.py,sha256=xSAJzAgs937N8tUJrlyBT5Yyh2_GaG-MEvcvOoTVkpU,4838
|
|
202
|
-
omnibase_infra/handlers/service_discovery/models/model_service_info.py,sha256=
|
|
211
|
+
omnibase_infra/handlers/service_discovery/models/model_service_info.py,sha256=1ex1dqx_T4iBYR4qLke6exTWkqHBgkxtiWH8soxMmr0,3853
|
|
203
212
|
omnibase_infra/handlers/service_discovery/protocol_discovery_operations.py,sha256=cOwyRI2grn4zO8fZ0F60OTWHaXwvjLnIRjRMvjx5aws,5931
|
|
204
213
|
omnibase_infra/idempotency/__init__.py,sha256=5SYsGJoqCZpFlJjYGISt1wgN-C3V8BQbmmEVqC8x8RM,3311
|
|
205
214
|
omnibase_infra/idempotency/models/__init__.py,sha256=so8PAiObxTRwiU7CWB9zeqHXavDbEQlsxYo1t9SJ5EE,1666
|
|
@@ -214,11 +223,11 @@ omnibase_infra/idempotency/store_inmemory.py,sha256=xwhDpyIEf9QGj5xNdcdJVWCDoYbt
|
|
|
214
223
|
omnibase_infra/idempotency/store_postgres.py,sha256=VcDNTicql_Lqk7y3Hl3IvKy61NEeu5l6LJ2mcQXD_-E,38232
|
|
215
224
|
omnibase_infra/infrastructure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
216
225
|
omnibase_infra/mixins/__init__.py,sha256=BBq17P32MCtUP-RRnoRF8zyqmf0nQMnRM3y4cHscPg4,2980
|
|
217
|
-
omnibase_infra/mixins/mixin_async_circuit_breaker.py,sha256=
|
|
226
|
+
omnibase_infra/mixins/mixin_async_circuit_breaker.py,sha256=RNdr-gs1CXWZi2x4cQ5WUL8xuCEJGVYqPx1p-kUT6xA,26337
|
|
218
227
|
omnibase_infra/mixins/mixin_dict_like_accessors.py,sha256=qluJXw2YQhrj-14QVueHPAp8Gm5Hr8pvi5kna_qIauI,4510
|
|
219
228
|
omnibase_infra/mixins/mixin_envelope_extraction.py,sha256=15ETxx5AHUtzG2TuFiHXi9kSUGqY_brYtNf0X5mL7dY,5043
|
|
220
|
-
omnibase_infra/mixins/mixin_node_introspection.py,sha256=
|
|
221
|
-
omnibase_infra/mixins/mixin_retry_execution.py,sha256=
|
|
229
|
+
omnibase_infra/mixins/mixin_node_introspection.py,sha256=mdTaDoWxUXmecv1Nq3_fH4mwJWgm5V1u89azgXoy3Ig,102224
|
|
230
|
+
omnibase_infra/mixins/mixin_retry_execution.py,sha256=OHpA_B9CTosWOoSm-HBcuvoZDaoatujcRxfHak5eqwk,14009
|
|
222
231
|
omnibase_infra/mixins/protocol_circuit_breaker_aware.py,sha256=U5ciOCOIXBX5rjnX50UgOV0RdDiGFPafXDK9wWcr4Ro,4793
|
|
223
232
|
omnibase_infra/models/__init__.py,sha256=tA6sGtudG5wj7_zXkqOy8SqyBHPDfMxX2gjJrIsxw8g,3995
|
|
224
233
|
omnibase_infra/models/corpus/__init__.py,sha256=6mVq17d_UF-qA6idRcGQ6qyT-rWJm9aSQ7wkfHuApQ8,429
|
|
@@ -227,7 +236,7 @@ omnibase_infra/models/corpus/model_capture_result.py,sha256=F_F4d5cqorVn2dTXdgGP
|
|
|
227
236
|
omnibase_infra/models/discovery/__init__.py,sha256=pJ9bcyuPYYl8RiO5G97E_5tnqabutF9QO0M0WHlP7m8,1394
|
|
228
237
|
omnibase_infra/models/discovery/model_dependency_spec.py,sha256=HfqFUQTZGuIvbDMSZtmqrYplmjL333kqgLzxVzK-ZN8,11582
|
|
229
238
|
omnibase_infra/models/discovery/model_discovered_capabilities.py,sha256=Wy-lx2oli_3kONO5QU-C9EW1BiJ3ovtzc3oExEUeUWc,1761
|
|
230
|
-
omnibase_infra/models/discovery/model_introspection_config.py,sha256=
|
|
239
|
+
omnibase_infra/models/discovery/model_introspection_config.py,sha256=fW6mrb7yxZtYYhRpMP_WSXOD8FmEVGgGnPM1Vn4peo8,13029
|
|
231
240
|
omnibase_infra/models/discovery/model_introspection_performance_metrics.py,sha256=0CLrzI-wS1G2LNQjr5ywEcDNXd5ll9NCtfZA_rBWqSQ,6128
|
|
232
241
|
omnibase_infra/models/discovery/model_introspection_task_config.py,sha256=aXysWbA06kNsEtWed5_p24cFNgtJBBGNiTtjlt6qmlE,4296
|
|
233
242
|
omnibase_infra/models/dispatch/__init__.py,sha256=5Bc37zTab6GzMUmYoKRr3iSNp8B6Bab4ubUff_xOv6c,6254
|
|
@@ -250,15 +259,22 @@ omnibase_infra/models/errors/model_handler_validation_error.py,sha256=U_VCdSv92N
|
|
|
250
259
|
omnibase_infra/models/errors/model_infra_error_context.py,sha256=7tg3JdaXgWtEfdzRCnf9EoatBTbcZ698az0PITWKUUs,3681
|
|
251
260
|
omnibase_infra/models/errors/model_message_type_registry_error_context.py,sha256=Q5Zaj_JTk3qBCC7qmdJ3gNPLO66_9sAMTHZPd1VO4vM,2416
|
|
252
261
|
omnibase_infra/models/errors/model_timeout_error_context.py,sha256=LI9N9tfoHp5rux5_ILsDBuRLeZuyAwn38lM7FPxk8ko,4386
|
|
253
|
-
omnibase_infra/models/handlers/__init__.py,sha256=
|
|
254
|
-
omnibase_infra/models/handlers/
|
|
255
|
-
omnibase_infra/models/handlers/
|
|
262
|
+
omnibase_infra/models/handlers/__init__.py,sha256=fW24PtW5ldBjwbgKIdck9-35zas7fx5cuVkouAvrqkA,3528
|
|
263
|
+
omnibase_infra/models/handlers/model_bootstrap_handler_descriptor.py,sha256=MMtPGnG-qSws7hxlILMhQWrI4VExs1b3KrHk1PWxN8k,6805
|
|
264
|
+
omnibase_infra/models/handlers/model_contract_discovery_result.py,sha256=tVCCuqqR4Uau9QTgncRkQ3rQqRWpqlcHs5xC1LQLQjk,2847
|
|
265
|
+
omnibase_infra/models/handlers/model_handler_descriptor.py,sha256=l-URCEmlv5Qt66u9ZMBL0QN4vK8ylaDrF0n1naH785A,7643
|
|
256
266
|
omnibase_infra/models/handlers/model_handler_identifier.py,sha256=jzrP--oULkPAPTr1YUFU6wC8kLP7OmBokvHQjivoUas,7863
|
|
267
|
+
omnibase_infra/models/handlers/model_handler_source_config.py,sha256=rLFco-FmJtSkclB52NPR42Gs-3bhbiNUkRrKVKirHt8,8877
|
|
257
268
|
omnibase_infra/models/health/__init__.py,sha256=qAXecdeiZwpE6EyCokpUnrPZqSxvpPf41eYVQOoRf5M,261
|
|
258
269
|
omnibase_infra/models/health/model_health_check_result.py,sha256=6fje78ccUUxqeVkkOZ8EbCrOCgv27x_b_za5-nqPUno,1150
|
|
259
270
|
omnibase_infra/models/lifecycle/__init__.py,sha256=KOhKZvc7-SoS_6STn-xvLu6uXsCv5ryuGv5BUD0ltKM,1392
|
|
260
271
|
omnibase_infra/models/logging/__init__.py,sha256=6usNRAvCaXu-yOlqcwMqRoZjnGCVGWAGApunRGDDI1E,1632
|
|
261
272
|
omnibase_infra/models/logging/model_log_context.py,sha256=raLaCyKqK3ynGKWUTab_sKTzQ12aWQMy-L9vWrlGnFg,24533
|
|
273
|
+
omnibase_infra/models/mcp/__init__.py,sha256=HxtzfiEjL-P4nMEhApdx7BsMteGYrRgBAL5aNaSymPc,598
|
|
274
|
+
omnibase_infra/models/mcp/model_mcp_contract_config.py,sha256=fcQ4QgjBeR7Fl7qbESLgctlZiHjcefskYnAwO_hwxhA,2847
|
|
275
|
+
omnibase_infra/models/mcp/model_mcp_server_config.py,sha256=clOg3AiuKUtdGuhG5IMedS6vKwpR4rqBNXvwpFxZUGs,2482
|
|
276
|
+
omnibase_infra/models/mcp/model_mcp_tool_definition.py,sha256=hCQ2evE7x-XMStFEZPRqluHKAXSvNs7z2bT-3XrHzQk,2912
|
|
277
|
+
omnibase_infra/models/mcp/model_mcp_tool_parameter.py,sha256=MTJsq4iPGlFuAKvuw8SrWgNaZzigxTbQz20eIeLu8lQ,1140
|
|
262
278
|
omnibase_infra/models/model_retry_error_classification.py,sha256=szwDjr32Ws107tWYaORSA3ZwewnDUeP3XhC1i8BKSVE,2699
|
|
263
279
|
omnibase_infra/models/projection/__init__.py,sha256=oCvnmSyplggfmYkQaqhz_WJAuyYX4fY0IOIyzR-v25w,1634
|
|
264
280
|
omnibase_infra/models/projection/model_capability_fields.py,sha256=cyb-k1pFPvUOcHF9o6HnJIsNVWqAKNT5MTcsPIqCwDk,4153
|
|
@@ -285,9 +301,9 @@ omnibase_infra/models/registration/events/model_node_registration_ack_timed_out.
|
|
|
285
301
|
omnibase_infra/models/registration/events/model_node_registration_initiated.py,sha256=33n37hygGnDvuLfhJRADicIuizhPmfislzQjeHe8lpE,3862
|
|
286
302
|
omnibase_infra/models/registration/events/model_node_registration_rejected.py,sha256=Z6xW89JOaPNrtdaZrlxbaTKSoMNXOcI--IUsIdcxx3I,3493
|
|
287
303
|
omnibase_infra/models/registration/model_introspection_metrics.py,sha256=wb0zvtyPX0zdGt4TtLsFxa_rIL8Wq7-S6g9wBl-qcA4,9665
|
|
288
|
-
omnibase_infra/models/registration/model_node_capabilities.py,sha256=
|
|
304
|
+
omnibase_infra/models/registration/model_node_capabilities.py,sha256=u4lm8R_jb6V6qF44WPhfwx1rk1FkkOeQRQPH0xhAx_M,6761
|
|
289
305
|
omnibase_infra/models/registration/model_node_heartbeat_event.py,sha256=-SjI5oJLuTSkc0LmCgvXE1VDQzv-2DyAgakzxseNf5s,4687
|
|
290
|
-
omnibase_infra/models/registration/model_node_introspection_event.py,sha256=
|
|
306
|
+
omnibase_infra/models/registration/model_node_introspection_event.py,sha256=sRFdodXaR4jocwoOigPrItyTt6BD4oUY1Xmwmnlf2ck,7060
|
|
291
307
|
omnibase_infra/models/registration/model_node_metadata.py,sha256=In47WMV3G-8jQhLGUd_oPIDtIy-7D-FVetZdIHHlUpw,2865
|
|
292
308
|
omnibase_infra/models/registration/model_node_registration.py,sha256=iB_tQApKu8gGnUjv5pexyYiZTItSwMFwMiJvQx-r8dk,6316
|
|
293
309
|
omnibase_infra/models/registration/model_node_registration_record.py,sha256=-oZFU6XtlObUXKcf_vKPYdsT4MWmASt2-rLFGJ6L7Hk,6426
|
|
@@ -305,8 +321,8 @@ omnibase_infra/models/runtime/model_discovery_error.py,sha256=pMu7mU5EpC79oyU5Rm
|
|
|
305
321
|
omnibase_infra/models/runtime/model_discovery_result.py,sha256=5cnhfErTv-tuxTIsPT89XGWT7yMnIhgcB7ip4F7oeoo,5191
|
|
306
322
|
omnibase_infra/models/runtime/model_discovery_warning.py,sha256=3pVyqYcMdSX3W-E_4i1SdvYkQFpgMzdtS6eFqqIuo_I,2186
|
|
307
323
|
omnibase_infra/models/runtime/model_failed_plugin_load.py,sha256=S5u13j4JlI3aikSGlJKLYSOouRnUYW9fpCg-jj8rf_w,1819
|
|
308
|
-
omnibase_infra/models/runtime/model_handler_contract.py,sha256=
|
|
309
|
-
omnibase_infra/models/runtime/model_loaded_handler.py,sha256=
|
|
324
|
+
omnibase_infra/models/runtime/model_handler_contract.py,sha256=HXlR0qH1Y2Kw_6QefliULAbeFewHFVR4m45MnWip4hw,11087
|
|
325
|
+
omnibase_infra/models/runtime/model_loaded_handler.py,sha256=4dOWEmSvvzt0D83iEJ5xDMJN43KDS6uaIVNPrAevR64,4889
|
|
310
326
|
omnibase_infra/models/runtime/model_plugin_load_context.py,sha256=xVWqubXSRB1M78E525qHsCZY98q52RSldiFc4KDkQ2A,3228
|
|
311
327
|
omnibase_infra/models/runtime/model_plugin_load_summary.py,sha256=QLS0dRvQ0iagRPaCqs-YSmWVVZOnXP58CWoDkjjEHwA,3955
|
|
312
328
|
omnibase_infra/models/security/__init__.py,sha256=VXsQ_BMyVDQbizSleSf-6tDRtnC_kosz-JD-rjWsC-k,1678
|
|
@@ -341,7 +357,7 @@ omnibase_infra/models/validation/model_validation_outcome.py,sha256=a0AnSBr-XI6M
|
|
|
341
357
|
omnibase_infra/nodes/__init__.py,sha256=zUXF6wRddO0ti6blXvgWw7WOhq2h9F6ZJ26L2YrIXMw,1732
|
|
342
358
|
omnibase_infra/nodes/architecture_validator/__init__.py,sha256=JtNhbIUAsD34wjimbgQSW3MWc_v9jHQ8DZeLLaTgq8c,2704
|
|
343
359
|
omnibase_infra/nodes/architecture_validator/contract.yaml,sha256=_B0ZuZYPJixWKztY9LruQV_I94lCJUCsVNLioMPwObw,9630
|
|
344
|
-
omnibase_infra/nodes/architecture_validator/contract_architecture_validator.yaml,sha256=
|
|
360
|
+
omnibase_infra/nodes/architecture_validator/contract_architecture_validator.yaml,sha256=c5JkLwppjHUuSswlx8dsWhSj199PAdeihbbOE0a_VzA,6780
|
|
345
361
|
omnibase_infra/nodes/architecture_validator/mixins/__init__.py,sha256=jnSquS6bzBUyn_v5M8HrXaqOS7JVFNagDpP8ouC8bnc,489
|
|
346
362
|
omnibase_infra/nodes/architecture_validator/mixins/mixin_file_path_rule.py,sha256=9kSagZpgDqkkeo8zbLKFea0nV8lGKh4j8RZSlU2Gtxg,3246
|
|
347
363
|
omnibase_infra/nodes/architecture_validator/models/__init__.py,sha256=xuFes-5K2n8deDVM0EybfzvQLCXJ7S2eTWjwpu9lMeg,1303
|
|
@@ -356,14 +372,14 @@ omnibase_infra/nodes/architecture_validator/node_architecture_validator.py,sha25
|
|
|
356
372
|
omnibase_infra/nodes/architecture_validator/protocols/__init__.py,sha256=Zwn-DmnXWCwExdYaZ5KNSBIF50Qz98PwlKh7lOjOpyQ,283
|
|
357
373
|
omnibase_infra/nodes/architecture_validator/protocols/protocol_architecture_rule.py,sha256=WiMaw9j-TkKkj2ERmc4Ij9NSzdmIHyj7nGWguUsTTVo,7831
|
|
358
374
|
omnibase_infra/nodes/architecture_validator/registry/__init__.py,sha256=rbdR836LLVA9YED82g4q7Xb4vWM9-qAG2tXcjIp3Djg,855
|
|
359
|
-
omnibase_infra/nodes/architecture_validator/registry/registry_infra_architecture_validator.py,sha256=
|
|
375
|
+
omnibase_infra/nodes/architecture_validator/registry/registry_infra_architecture_validator.py,sha256=1pBPwvt7dihJeTsFhd-QPbu0pHCIrCpvm2NADNYLYRM,3822
|
|
360
376
|
omnibase_infra/nodes/architecture_validator/validators/__init__.py,sha256=12NUXGNIozEMQg2z7OIA7aleum30UJluFbzCOcTgeiQ,3798
|
|
361
377
|
omnibase_infra/nodes/architecture_validator/validators/validator_no_direct_dispatch.py,sha256=xQVKqYYqegghNMWtpu51IGfcscel60_3sNGGuT1hSys,14866
|
|
362
378
|
omnibase_infra/nodes/architecture_validator/validators/validator_no_handler_publishing.py,sha256=Y4q3r6J10oVdcMaGMPECEHOdEs3Vi5L8eH_ILtY1a5E,17644
|
|
363
379
|
omnibase_infra/nodes/architecture_validator/validators/validator_no_orchestrator_fsm.py,sha256=c7T1s0pdYxhurh-SGIoC06LsiPZtSsMXBy7OzZqoRiw,17668
|
|
364
380
|
omnibase_infra/nodes/effects/README.md,sha256=p0Go_-GuZRnp9MD7u6TX3mF2HcqEQruq4ZQmJNiAsR4,12500
|
|
365
381
|
omnibase_infra/nodes/effects/__init__.py,sha256=NMe-_IDsE3bzbeO2ubXIX_B4OpAuhDdQ4fflcyJ6p2w,779
|
|
366
|
-
omnibase_infra/nodes/effects/contract.yaml,sha256=
|
|
382
|
+
omnibase_infra/nodes/effects/contract.yaml,sha256=PkhjCe0cgKglC__PaWpzZuyrjDBnKcfdB2on2UTexzs,5240
|
|
367
383
|
omnibase_infra/nodes/effects/models/__init__.py,sha256=J0vsyY7w6h2BAffxB2umyjaIAyZh-VEeGOKbjbAmYzw,1024
|
|
368
384
|
omnibase_infra/nodes/effects/models/model_backend_result.py,sha256=x3jLd_L2rjCzeaquUuNnJwh4n5qJcl_2OhSUQAmixHk,7357
|
|
369
385
|
omnibase_infra/nodes/effects/models/model_effect_idempotency_config.py,sha256=CNwHZpatqtVj9K-prvV91-D-m9ivA3FZkAHWUGifE1Y,3156
|
|
@@ -376,17 +392,17 @@ omnibase_infra/nodes/effects/registry_effect.py,sha256=dSoqw_9hF7GiYQ6a9KtF7bgEX
|
|
|
376
392
|
omnibase_infra/nodes/effects/store_effect_idempotency_inmemory.py,sha256=6WXK7ZcWqPdpGLVpXbFzu-uIuc6vxCAgEpWTNHOy2Is,15566
|
|
377
393
|
omnibase_infra/nodes/node_registration_orchestrator/README.md,sha256=DgmzwS7EkNi1ein4O1fG5FzIE_85fHCuN39J3N_3Wbk,18217
|
|
378
394
|
omnibase_infra/nodes/node_registration_orchestrator/__init__.py,sha256=TEmJpSvnjYR4rO0xm-V7roVSZwEQDf6X_NIryXPiHLc,4545
|
|
379
|
-
omnibase_infra/nodes/node_registration_orchestrator/contract.yaml,sha256=
|
|
395
|
+
omnibase_infra/nodes/node_registration_orchestrator/contract.yaml,sha256=4amAy5T7LZgLx2-hODJ0UvKJpGNLttnGuAXWgO4pycs,26212
|
|
380
396
|
omnibase_infra/nodes/node_registration_orchestrator/dispatchers/__init__.py,sha256=qC1zQyWQlyliOR6bk3h-azKNBT3Pj7c9YhhZOlPla6s,2081
|
|
381
397
|
omnibase_infra/nodes/node_registration_orchestrator/dispatchers/dispatcher_node_introspected.py,sha256=M2SpIEbEtcozagf3BcsRlEwaLCns-UFYVITHny2d61M,15028
|
|
382
398
|
omnibase_infra/nodes/node_registration_orchestrator/dispatchers/dispatcher_node_registration_acked.py,sha256=6HtTIvsf_PqgicE1F1Q7IWE-QXAiG6TJYCau7a9xv7A,15165
|
|
383
399
|
omnibase_infra/nodes/node_registration_orchestrator/dispatchers/dispatcher_runtime_tick.py,sha256=5gwtcGXuyAIQbRCnahHhTgLSxLE4RmoJXGuXhiuOQzc,14722
|
|
384
400
|
omnibase_infra/nodes/node_registration_orchestrator/handlers/__init__.py,sha256=8byBO6gu-yHgk2ieYjKCTOPGwo1u9wN3mS6LiGQmvWM,2403
|
|
385
401
|
omnibase_infra/nodes/node_registration_orchestrator/handlers/handler_node_heartbeat.py,sha256=-ivCTPIdC9KfCOfAWTJBWmEGzbCl6dJPKhP-EJ-odUs,14759
|
|
386
|
-
omnibase_infra/nodes/node_registration_orchestrator/handlers/handler_node_introspected.py,sha256=
|
|
402
|
+
omnibase_infra/nodes/node_registration_orchestrator/handlers/handler_node_introspected.py,sha256=hxW4IVMOpETcFfKeo5Q0lTn0qzY1b8p62UD4pH6nSGE,29109
|
|
387
403
|
omnibase_infra/nodes/node_registration_orchestrator/handlers/handler_node_registration_acked.py,sha256=l3ZZpz5p8KIprX1t_g6MfGsr3w85iLYWcO8tP366v7w,16710
|
|
388
404
|
omnibase_infra/nodes/node_registration_orchestrator/handlers/handler_runtime_tick.py,sha256=PwpDGqzKnKIKp1UrXFYgbg3RuaXGWWJvBwur4leUgzM,13730
|
|
389
|
-
omnibase_infra/nodes/node_registration_orchestrator/introspection_event_router.py,sha256=
|
|
405
|
+
omnibase_infra/nodes/node_registration_orchestrator/introspection_event_router.py,sha256=ruRtXY6A7f7JcedHo-8h051QDKK3094unOOFQPvZ1k0,23337
|
|
390
406
|
omnibase_infra/nodes/node_registration_orchestrator/models/__init__.py,sha256=yIHUctLuKJ6eYTEVzwQl2FKlfDfadSA7Hz8yyFB5FnA,2795
|
|
391
407
|
omnibase_infra/nodes/node_registration_orchestrator/models/model_consul_intent_payload.py,sha256=3Gu-YPAIO1m0R-xT5tIYLk4ajOZMgPKmH6tMvj0VgG8,7680
|
|
392
408
|
omnibase_infra/nodes/node_registration_orchestrator/models/model_consul_registration_intent.py,sha256=-IL0RgzX7SMiNk82yeaqxRv5g6g6zzGoqFiyMfNi6so,2040
|
|
@@ -402,12 +418,12 @@ omnibase_infra/nodes/node_registration_orchestrator/models/model_reducer_state.p
|
|
|
402
418
|
omnibase_infra/nodes/node_registration_orchestrator/models/model_registration_intent.py,sha256=N1F0VNif7gz3Khw365Rnh-A5n0EeViRS9GISZ3JcV00,6637
|
|
403
419
|
omnibase_infra/nodes/node_registration_orchestrator/models/model_registry_intent.py,sha256=YFMfEfU3LLnCE_bJBg6gCRoo8TwU-qoT8HAk_0FxhA0,8565
|
|
404
420
|
omnibase_infra/nodes/node_registration_orchestrator/node.py,sha256=y7khm6cyqNOCMDoHbQNbREfufdpqotm65Y0gx1d-xYM,7937
|
|
405
|
-
omnibase_infra/nodes/node_registration_orchestrator/plugin.py,sha256=
|
|
421
|
+
omnibase_infra/nodes/node_registration_orchestrator/plugin.py,sha256=Yzwer_Xfm3d3VJvRxg0GInCMne4DbvHIDrIdq3FxE5A,34313
|
|
406
422
|
omnibase_infra/nodes/node_registration_orchestrator/protocols.py,sha256=fWlvKnsloQoB8IxzhI3d0rwtTziq8ZbOLHC_KGp_9rY,18021
|
|
407
423
|
omnibase_infra/nodes/node_registration_orchestrator/registry/__init__.py,sha256=-4huaktsf6Q6DFJHROwEGKX0pWiNRmfXNnOjTtrw4GE,1554
|
|
408
|
-
omnibase_infra/nodes/node_registration_orchestrator/registry/registry_infra_node_registration_orchestrator.py,sha256=
|
|
409
|
-
omnibase_infra/nodes/node_registration_orchestrator/timeout_coordinator.py,sha256=
|
|
410
|
-
omnibase_infra/nodes/node_registration_orchestrator/wiring.py,sha256=
|
|
424
|
+
omnibase_infra/nodes/node_registration_orchestrator/registry/registry_infra_node_registration_orchestrator.py,sha256=qFfJY97EYkiS48E8clL6_H2ZjAFjdtSVgNfPkoekits,23894
|
|
425
|
+
omnibase_infra/nodes/node_registration_orchestrator/timeout_coordinator.py,sha256=8wr2Lmx4198JCSJC9Q8ybeliuzC_Qoc77iSm3HF10K0,14733
|
|
426
|
+
omnibase_infra/nodes/node_registration_orchestrator/wiring.py,sha256=qcq7EWNDl7W5uAmCdqvTomHi4TTgCM5QTz8cFdPuUFE,29138
|
|
411
427
|
omnibase_infra/nodes/node_registration_reducer/__init__.py,sha256=1Ye3uWT5vSM4ZpOzAWrsnvK9KkD6AnwZ4Aqqll1LLaM,564
|
|
412
428
|
omnibase_infra/nodes/node_registration_reducer/contract.yaml,sha256=DK_AlvL3uUxhspukSUjMzPK2hlvTt8lF4SUeQ8WCrfo,11360
|
|
413
429
|
omnibase_infra/nodes/node_registration_reducer/models/__init__.py,sha256=AgQ0KuNd9lF5r1ZNaBM1Xq8O3mbyc2Z3e2BVLjR0moE,1267
|
|
@@ -416,7 +432,7 @@ omnibase_infra/nodes/node_registration_reducer/node.py,sha256=HyoAM0syC3X60LYxy8
|
|
|
416
432
|
omnibase_infra/nodes/node_registration_reducer/registry/__init__.py,sha256=4--7JXgYpsQVgAyLaaV_owkhSXGefMRtmI9kWyM-n4w,325
|
|
417
433
|
omnibase_infra/nodes/node_registration_reducer/registry/registry_infra_node_registration_reducer.py,sha256=4ajACnGeuWaJWswGz8-PPPzXtR83d9RbUm9Mg2koXiw,2805
|
|
418
434
|
omnibase_infra/nodes/node_registration_storage_effect/__init__.py,sha256=CsVgJZO5shbmgYAIJOiB24ocD_7gz29199pYSjx8DyI,1508
|
|
419
|
-
omnibase_infra/nodes/node_registration_storage_effect/contract.yaml,sha256=
|
|
435
|
+
omnibase_infra/nodes/node_registration_storage_effect/contract.yaml,sha256=s6Az0TxdPneeh-3FStExT2PZX31J54NqRY9hqBG6WSs,7705
|
|
420
436
|
omnibase_infra/nodes/node_registration_storage_effect/models/__init__.py,sha256=il7I2Q6hgqXO8aW04mX7PXlW4EKdUaYLnX1IjIWZyyc,1706
|
|
421
437
|
omnibase_infra/nodes/node_registration_storage_effect/models/model_delete_result.py,sha256=xP45ydpL8n9zChMqbWKedDVZR3tilwKuzgMcmBReMbw,4389
|
|
422
438
|
omnibase_infra/nodes/node_registration_storage_effect/models/model_registration_record.py,sha256=PEp8CCM8maBWryqQH4-CODNz6kDXOUuzuWqYLXg-R7U,8182
|
|
@@ -426,17 +442,17 @@ omnibase_infra/nodes/node_registration_storage_effect/models/model_storage_healt
|
|
|
426
442
|
omnibase_infra/nodes/node_registration_storage_effect/models/model_storage_query.py,sha256=vVZSeJvnAKGyqJ74RHCS8OnEE5OzhPy_XcV31qGWYPQ,3228
|
|
427
443
|
omnibase_infra/nodes/node_registration_storage_effect/models/model_storage_result.py,sha256=OePVSeSE_5QgPMe-r22rJZEnwp4U5T3elWEohea0Tz0,4482
|
|
428
444
|
omnibase_infra/nodes/node_registration_storage_effect/models/model_upsert_result.py,sha256=P_EQCwHBrKG_epSBVv0QfZ8WP-kXb1vvR4UIS5Ed3rY,4124
|
|
429
|
-
omnibase_infra/nodes/node_registration_storage_effect/node.py,sha256=
|
|
445
|
+
omnibase_infra/nodes/node_registration_storage_effect/node.py,sha256=g-dTkoJTOVK3AQKwAON2h9R-AHhV4NZWU5GhpCWKTLY,4193
|
|
430
446
|
omnibase_infra/nodes/node_registration_storage_effect/protocols/__init__.py,sha256=FHxi6wAgy83bgSl27K-JIvRMZHuNeMMxlMgS1JHG1Xg,766
|
|
431
447
|
omnibase_infra/nodes/node_registration_storage_effect/protocols/protocol_registration_persistence.py,sha256=XmlD7_3_R4eY_vK2Y-WZidDZXvmDmIQkwPRscqzodSE,13039
|
|
432
448
|
omnibase_infra/nodes/node_registration_storage_effect/registry/__init__.py,sha256=e7SWY23Hw3_zJVMdktB-biAHZIQoAZhkyyCpT6Dhfn0,761
|
|
433
|
-
omnibase_infra/nodes/node_registration_storage_effect/registry/registry_infra_registration_storage.py,sha256=
|
|
449
|
+
omnibase_infra/nodes/node_registration_storage_effect/registry/registry_infra_registration_storage.py,sha256=nL5siEko6y3gyaAu502z9LrZZCmWqNJ85Die6WN7iaw,9284
|
|
434
450
|
omnibase_infra/nodes/node_registry_effect/__init__.py,sha256=7mcr4rgcWYMWRVW5-nTsXwe4q0-CRS-lPMG1l7LHJN4,2929
|
|
435
|
-
omnibase_infra/nodes/node_registry_effect/contract.yaml,sha256=
|
|
451
|
+
omnibase_infra/nodes/node_registry_effect/contract.yaml,sha256=B2jPKpxd6weOPt16hNJGK1du0_u55F1LwwymYUW5oOk,28050
|
|
436
452
|
omnibase_infra/nodes/node_registry_effect/handlers/__init__.py,sha256=9vCW7wsahSL-PEJilkZRWbmvpeVGsKpnFE1i7AaKk5I,2853
|
|
437
453
|
omnibase_infra/nodes/node_registry_effect/handlers/handler_consul_deregister.py,sha256=mimi-3CN08Y5kC5LNylbFcDEAH-VFla6cLpsa1jAE3M,8323
|
|
438
454
|
omnibase_infra/nodes/node_registry_effect/handlers/handler_consul_register.py,sha256=ZU_g0ph0mMwSm8iqw_BGqyY996ZsH57nZ0C1lc-ryxs,8457
|
|
439
|
-
omnibase_infra/nodes/node_registry_effect/handlers/handler_partial_retry.py,sha256=
|
|
455
|
+
omnibase_infra/nodes/node_registry_effect/handlers/handler_partial_retry.py,sha256=bkE26WS85QLZimLAMOTQHXyNqQMn26pZI1NS63zJabw,17391
|
|
440
456
|
omnibase_infra/nodes/node_registry_effect/handlers/handler_postgres_deactivate.py,sha256=u4S-YiW5Y41R7PPRl1gML8RmS4suj-UASmfwr1PIRg0,8583
|
|
441
457
|
omnibase_infra/nodes/node_registry_effect/handlers/handler_postgres_upsert.py,sha256=a2hI1eJw4irGCWSeLjmezejnfeFYOidNiWsWEfR7LR0,8164
|
|
442
458
|
omnibase_infra/nodes/node_registry_effect/models/__init__.py,sha256=TyzVu1RMPiiIDfbUBgFim0pECLysKZObYE5FpJ_h4vc,1295
|
|
@@ -462,7 +478,7 @@ omnibase_infra/nodes/node_service_discovery_effect/node.py,sha256=sfQClNTaTsanxv
|
|
|
462
478
|
omnibase_infra/nodes/node_service_discovery_effect/protocols/__init__.py,sha256=wjJAfoKQfAnWMKOPaxXdJ1Rf9uxGEe0MN5EloKBAhfA,434
|
|
463
479
|
omnibase_infra/nodes/node_service_discovery_effect/protocols/protocol_discovery_operations.py,sha256=VHf-7FCXhRu522uclOyMj9h-X_Vc3xvZf0ZAqrBcsAs,10047
|
|
464
480
|
omnibase_infra/nodes/node_service_discovery_effect/registry/__init__.py,sha256=pxPe989qftKpmO0Ua2BRV0UVmbLduHPwea5dCplo7j0,404
|
|
465
|
-
omnibase_infra/nodes/node_service_discovery_effect/registry/registry_infra_service_discovery.py,sha256=
|
|
481
|
+
omnibase_infra/nodes/node_service_discovery_effect/registry/registry_infra_service_discovery.py,sha256=agycJSFrDS3r4lIRUbSK5_PSaycb-TmxHPtgZRan9GM,8644
|
|
466
482
|
omnibase_infra/nodes/reducers/__init__.py,sha256=jgN2f4zChOwl0IsFPkQMN67H2Oa27aRsIZl5SJ78NqA,955
|
|
467
483
|
omnibase_infra/nodes/reducers/models/__init__.py,sha256=ktDsgPZQbN0tRUmcJRDt8C8dO9XhSYjy9PMc24zSoEM,1168
|
|
468
484
|
omnibase_infra/nodes/reducers/models/model_payload_consul_register.py,sha256=OCSP6Z9KrPTAOd8Ry4kqR4ziu_XpjspadYD9YjOCgp0,2343
|
|
@@ -493,23 +509,24 @@ omnibase_infra/observability/sinks/sink_logging_structured.py,sha256=I85PPxfzycA
|
|
|
493
509
|
omnibase_infra/observability/sinks/sink_metrics_prometheus.py,sha256=ngb5EavXtzh2L-LAiEIzfpDiR1407yya67BDE8LBQFg,28647
|
|
494
510
|
omnibase_infra/plugins/__init__.py,sha256=mrbSMW1UJq0uPPHnKU9sJ1K-zRoeyfPpDbIrPTQK0sc,874
|
|
495
511
|
omnibase_infra/plugins/examples/__init__.py,sha256=XWIgXCQuGsWCJ_9SzWNNm6PW09vEQFr-OdiWIH5Zi7U,737
|
|
496
|
-
omnibase_infra/plugins/examples/plugin_json_normalizer.py,sha256=
|
|
497
|
-
omnibase_infra/plugins/examples/plugin_json_normalizer_error_handling.py,sha256=
|
|
512
|
+
omnibase_infra/plugins/examples/plugin_json_normalizer.py,sha256=XG2zpQy1wMI1W8qM8OtXpXLfCzOjY1OSNEVvdPpQCsk,11053
|
|
513
|
+
omnibase_infra/plugins/examples/plugin_json_normalizer_error_handling.py,sha256=MiEJlfWff7TZlXMtmFNaH69MBkk0hVngxCUi4Pu6Jr0,8448
|
|
498
514
|
omnibase_infra/plugins/models/__init__.py,sha256=ZAHvV6eVCwyr-1UrfIeoAs68dIZDbJ2Bz6ZRs7hHNzY,791
|
|
499
515
|
omnibase_infra/plugins/models/model_plugin_context.py,sha256=uWdntDN5bfQlm2HROMJYadu0YMpMyCd_vAoamNAsfiU,2750
|
|
500
516
|
omnibase_infra/plugins/models/model_plugin_input_data.py,sha256=LL4pOtZh-rZQxpJTvXN9cW7CEwEk_jW0PRyR1HnTiwQ,1828
|
|
501
517
|
omnibase_infra/plugins/models/model_plugin_output_data.py,sha256=8glXQ77pVWduSvcAIBpCgklM415WKU5RTpbyZ11uV3Y,1913
|
|
502
|
-
omnibase_infra/plugins/plugin_compute_base.py,sha256=
|
|
518
|
+
omnibase_infra/plugins/plugin_compute_base.py,sha256=bH22R_vwjVa_kleAk_s02ara_QPr5BV_5Irhqr9zO8Y,19198
|
|
503
519
|
omnibase_infra/projectors/__init__.py,sha256=qMRv7VvD6EhtM-J5o_iR9fVf7ji2PkmiWBzn5owIRFY,987
|
|
504
520
|
omnibase_infra/projectors/contracts/__init__.py,sha256=RwpsCbhryj8Q6eqn0P8E-cbs4Xk_NzM5Qr3TOw6e2zI,2128
|
|
505
521
|
omnibase_infra/projectors/contracts/registration_projector.yaml,sha256=IYmV93JvvjWCY1eQUzxvYS1PlBXFC-m8Vi0nGJxT7H8,14848
|
|
506
522
|
omnibase_infra/projectors/projection_reader_registration.py,sha256=0JG81-r1alBmMbVeDP1c7fypKesPhHiErAT3NtIp4Wg,61237
|
|
507
523
|
omnibase_infra/projectors/snapshot_publisher_registration.py,sha256=lY-HE3d0Dt6VKseR7MwkxPuVSTdL2iz56dQ20huy-SU,52269
|
|
508
|
-
omnibase_infra/protocols/__init__.py,sha256=
|
|
524
|
+
omnibase_infra/protocols/__init__.py,sha256=2wjX1IEpo8oGiNtr9LENnrRyrNxIlBVRGk87fybhX2E,4197
|
|
509
525
|
omnibase_infra/protocols/protocol_capability_projection.py,sha256=Avy5fNbJ4azhqTrttDgRH6HBCjETbBvUokx92kMRq1A,9606
|
|
510
526
|
omnibase_infra/protocols/protocol_capability_query.py,sha256=dj80c-ogKj8Pe6Ew3SYcT1DiieLwB6jjiN5GyHbgtNY,10404
|
|
527
|
+
omnibase_infra/protocols/protocol_container_aware.py,sha256=J7FRILD1H0pPdzi1UxzfqSituZMFVbFSTcZyUsNv69c,7247
|
|
511
528
|
omnibase_infra/protocols/protocol_event_bus_like.py,sha256=LC8bWjW5dnIKXts8ZE3cOerMbOZa4Z7IJHWkMOxQC6I,4727
|
|
512
|
-
omnibase_infra/protocols/protocol_event_projector.py,sha256=
|
|
529
|
+
omnibase_infra/protocols/protocol_event_projector.py,sha256=tYXRQx2brq2dpVlPnbpDYGFWqPWPelMS_URr4IN926Y,2740
|
|
513
530
|
omnibase_infra/protocols/protocol_idempotency_store.py,sha256=OEtpv9IAm5CPUOs1QkCVO_Q5MqhoyyF7jfnvjz_Twgc,4869
|
|
514
531
|
omnibase_infra/protocols/protocol_message_dispatcher.py,sha256=ZzvD7S62Myme79MXBpuwTzB10xF943-nn3BbpM07ahw,9778
|
|
515
532
|
omnibase_infra/protocols/protocol_message_type_registry.py,sha256=8zU8huOsTrkQYvft-oirbOn7tl7KPsmGxt4Clkw2Ci4,9071
|
|
@@ -518,10 +535,11 @@ omnibase_infra/protocols/protocol_projector_schema_validator.py,sha256=8WT49CaWA
|
|
|
518
535
|
omnibase_infra/protocols/protocol_registry_metrics.py,sha256=H8jZ55qk7DfUStPU9Tt7Q5LO2Gqg2LvtEFeLBWa-FR0,7445
|
|
519
536
|
omnibase_infra/protocols/protocol_snapshot_publisher.py,sha256=ClZFzjRkazCuF0I4C36xoRUDVwgBx2uqpUqVyZ6DTAs,15148
|
|
520
537
|
omnibase_infra/protocols/protocol_snapshot_store.py,sha256=v3HFSnqJaH21jE3XrDXAKfE9nXhVb28Vj3m75Xy3hAU,21422
|
|
521
|
-
omnibase_infra/runtime/__init__.py,sha256=
|
|
522
|
-
omnibase_infra/runtime/binding_config_resolver.py,sha256=
|
|
538
|
+
omnibase_infra/runtime/__init__.py,sha256=WJVT-Gx-W11wCPLFhDt2o1tnotl2VuWAKcHW4qZa68I,13564
|
|
539
|
+
omnibase_infra/runtime/binding_config_resolver.py,sha256=wz6lAq2DUT2KcxvHoVeJA2mPo3WtgwAh2DAkufc5pc8,115864
|
|
523
540
|
omnibase_infra/runtime/chain_aware_dispatch.py,sha256=Q05CEwBcfLF0NbArD8_WBEIocQNxcOktP026VnqgtO8,18101
|
|
524
|
-
omnibase_infra/runtime/
|
|
541
|
+
omnibase_infra/runtime/constants_notification.py,sha256=nbbeQFVhCCJ_cx1FO2OIUUIN0O18iqfi1vz8Ype_n2s,3049
|
|
542
|
+
omnibase_infra/runtime/contract_handler_discovery.py,sha256=1LrZHKkHcpdyaMDXxK3dQS7LeT19p1RSzR8g7aFpaC0,25528
|
|
525
543
|
omnibase_infra/runtime/contract_loaders/__init__.py,sha256=SW8LgZBChKULG6m94l7hqwPmye-4fzl5o1yQ4GTS_h8,1336
|
|
526
544
|
omnibase_infra/runtime/contract_loaders/handler_routing_loader.py,sha256=bvvZIxjl3mJw9TknRBwPa9ybXXl1J6r7PFkSkdPPLYk,17313
|
|
527
545
|
omnibase_infra/runtime/dispatch_context_enforcer.py,sha256=44McRbtsqkGTiz7dQTOtV4AmisYOlVKKhI_1n5Jwziw,16620
|
|
@@ -529,16 +547,21 @@ omnibase_infra/runtime/enums/__init__.py,sha256=2ZzEcaRUMjYjNNz8JuD__z7mihfXFtPI
|
|
|
529
547
|
omnibase_infra/runtime/enums/enum_config_ref_scheme.py,sha256=AKZF60anIGruY1H3uTnP1DpFxDLZF8qXShCYrneJuZk,816
|
|
530
548
|
omnibase_infra/runtime/enums/enum_scheduler_status.py,sha256=0gDglH7tsrs3PKDM2dFYsC_W1EQkF5nsnJEHfLCUe2E,5333
|
|
531
549
|
omnibase_infra/runtime/envelope_validator.py,sha256=LGHEm8ePxYH7OTAp7ZgezvIoGvirvRnyyj5vJNxffLs,6098
|
|
532
|
-
omnibase_infra/runtime/
|
|
533
|
-
omnibase_infra/runtime/
|
|
534
|
-
omnibase_infra/runtime/
|
|
550
|
+
omnibase_infra/runtime/handler_bootstrap_source.py,sha256=peJ_U2_MwJKwFPXVaZumCGvMIUl7PZBhJEJCekAna04,22416
|
|
551
|
+
omnibase_infra/runtime/handler_contract_config_loader.py,sha256=28a1rkM_1QgjxL0q8ngR8iZGKCEii1LeCamR7T4jOtk,23164
|
|
552
|
+
omnibase_infra/runtime/handler_contract_source.py,sha256=9x60t_0OgP_P17VVfLC7Lelv_6AcC_NQ7EL-3tkq_ik,31119
|
|
553
|
+
omnibase_infra/runtime/handler_identity.py,sha256=JmBj3Z_nxCRdmOgvyuxdDJBiNno1SKbrJBKGTD_0YgU,3067
|
|
554
|
+
omnibase_infra/runtime/handler_plugin_loader.py,sha256=x1HWJZ09hrS5NmLHmY-hxJFOd1sTTDvAkIrk4wQ-sjI,90613
|
|
555
|
+
omnibase_infra/runtime/handler_registry.py,sha256=2f7Lav0yUW31eks9dp7jUfKuY6ZdF_1g1Hw_P-BOll4,11490
|
|
556
|
+
omnibase_infra/runtime/handler_source_resolver.py,sha256=SLp5YEQxXnZmbcbAJB-BRXawbW5KMrZPk7Dxe2_9YZ4,13704
|
|
535
557
|
omnibase_infra/runtime/invocation_security_enforcer.py,sha256=655igxUO2pHoABtaLngwf_hiXfx8ASDmg0rl_hl35Bw,17005
|
|
536
558
|
omnibase_infra/runtime/kernel.py,sha256=Oifnxdg1qlGgngWMttH1P0OhhI6_y0zoTamzCf4GOjc,1192
|
|
537
559
|
omnibase_infra/runtime/mixin_policy_validation.py,sha256=_BV43X6lvX9Q8BtWd_ybK6SClngRc3WfFULhAP2lSSg,22737
|
|
538
|
-
omnibase_infra/runtime/mixin_semver_cache.py,sha256=
|
|
539
|
-
omnibase_infra/runtime/mixins/__init__.py,sha256=
|
|
540
|
-
omnibase_infra/runtime/mixins/
|
|
541
|
-
omnibase_infra/runtime/
|
|
560
|
+
omnibase_infra/runtime/mixin_semver_cache.py,sha256=mB4y_W8QY6cG_6dZSc4V9-H1lxNNEMGh9d_k_OigEXs,18319
|
|
561
|
+
omnibase_infra/runtime/mixins/__init__.py,sha256=E67jea1leBMnxYfm94cq6eBpG4W95W2o0JmL8INN-dE,795
|
|
562
|
+
omnibase_infra/runtime/mixins/mixin_projector_notification_publishing.py,sha256=RYBuzbFH3Fnr6gtL25AG0GMe3Pm5xqVsiLYmRGeQusU,21781
|
|
563
|
+
omnibase_infra/runtime/mixins/mixin_projector_sql_operations.py,sha256=b9t7v7MEhPro3uREHq8wQ6G5aU6Ch0MHBlvnIzLgBzc,29866
|
|
564
|
+
omnibase_infra/runtime/models/__init__.py,sha256=mDhuP0RkP8YAHpJmsYVVCAgek7lN5oXdu7bLiPtz-YY,10240
|
|
542
565
|
omnibase_infra/runtime/models/model_batch_lifecycle_result.py,sha256=Bg2UCKJyhcSQWAo9BvheczvdHp-jfrYHWnKI65bdLvM,7040
|
|
543
566
|
omnibase_infra/runtime/models/model_binding_config.py,sha256=IQZcKEoy5KfOoQbvcjQNfL8Ty3tN44t06VTKk8Cikvc,5786
|
|
544
567
|
omnibase_infra/runtime/models/model_binding_config_cache_stats.py,sha256=a8P4HsyByPEBlXUlfnuZwEaYBpT2BUv0lA6kIwIHq_I,4187
|
|
@@ -556,7 +579,7 @@ omnibase_infra/runtime/models/model_enabled_protocols_config.py,sha256=Z4lxYf6mD
|
|
|
556
579
|
omnibase_infra/runtime/models/model_event_bus_config.py,sha256=dCpiijGEWbVU9yfGI_V2f2xYaRd6XeZIxu3X1Is4cv4,1443
|
|
557
580
|
omnibase_infra/runtime/models/model_failed_component.py,sha256=YOXoM4aBuxitl7oG48WybJsegz3F0IuAOD9T7Tbhhe4,1500
|
|
558
581
|
omnibase_infra/runtime/models/model_health_check_response.py,sha256=BhaFLCpJAUClsoWRnuSOFfxvQwOj7INWQkeInUheIbM,5263
|
|
559
|
-
omnibase_infra/runtime/models/model_health_check_result.py,sha256=
|
|
582
|
+
omnibase_infra/runtime/models/model_health_check_result.py,sha256=_JGj0qzYeDgVuMuL9Idcn3NTc0YewL_aX9sMyQrVP5Q,6996
|
|
560
583
|
omnibase_infra/runtime/models/model_lifecycle_result.py,sha256=oNPH8NIoF0ID1LQu-cVTdeUTrsp5nuZ_FQS8MDrqDvg,8033
|
|
561
584
|
omnibase_infra/runtime/models/model_logging_config.py,sha256=g_Ye2R3aFLK0obaBu1p2-fVay24Xbe4MThkP0kGIics,1063
|
|
562
585
|
omnibase_infra/runtime/models/model_optional_correlation_id.py,sha256=ZwMonnqdJjio4ZN3usBjseauYr7fhwczkAgd4xH2Mts,5712
|
|
@@ -567,6 +590,7 @@ omnibase_infra/runtime/models/model_policy_key.py,sha256=barG65nK7Pk_0j-5LtVJvXC
|
|
|
567
590
|
omnibase_infra/runtime/models/model_policy_registration.py,sha256=Ohjzam0u0Q7rmCG6tU3Rj_iTZ1HQeytIKJreRzYQckU,5344
|
|
568
591
|
omnibase_infra/runtime/models/model_policy_result.py,sha256=SVRWSScHvzxcNzA1hiwoYNJ6pDPMcfBCakK5IZYU5xc,3484
|
|
569
592
|
omnibase_infra/runtime/models/model_policy_type_filter.py,sha256=wwu0XFvmcLM9UP2Pwv4kbOPQPF7Hljtki2_ij6GBHvI,5150
|
|
593
|
+
omnibase_infra/runtime/models/model_projector_notification_config.py,sha256=2vcB5IoyvybGy5iDKqwLZzbqLwPx8NWENjfVNwzoeDc,7175
|
|
570
594
|
omnibase_infra/runtime/models/model_projector_plugin_loader_config.py,sha256=NkYI1PKJ7kdSRyYxCwsbLMzEWUEO9cxZlYqMfqr4Y9o,1713
|
|
571
595
|
omnibase_infra/runtime/models/model_protocol_registration_config.py,sha256=_pBdCDTyCdK-H2g56JeNMWXW6E8VL_Ne6EuK7Lcqi-8,2100
|
|
572
596
|
omnibase_infra/runtime/models/model_retry_policy.py,sha256=noqilu5nOhvbtP5XUFofa4n9PDEriUxnOHWGcZUFC70,3244
|
|
@@ -582,45 +606,80 @@ omnibase_infra/runtime/models/model_secret_source_info.py,sha256=liYtA0iWjXQR4Fx
|
|
|
582
606
|
omnibase_infra/runtime/models/model_secret_source_spec.py,sha256=C4w4E_V_KbKxeJW2EzZ37N6vKhwmAfOcDzra2u18cbE,1866
|
|
583
607
|
omnibase_infra/runtime/models/model_shutdown_batch_result.py,sha256=se1Yzl665B0zAVUCae3ZkEztp37CjbOZvHxnRV_XAnc,2454
|
|
584
608
|
omnibase_infra/runtime/models/model_shutdown_config.py,sha256=5ufuYNe2nm0kjG5prynnEe-PsC6HabMvtuZUP3NDAco,3407
|
|
585
|
-
omnibase_infra/runtime/
|
|
609
|
+
omnibase_infra/runtime/models/model_transition_notification_outbox_config.py,sha256=z2jFyYAWNdjXHcaAjT5Oaq6DtU6EOG3bKLiCHcJaW0E,3854
|
|
610
|
+
omnibase_infra/runtime/models/model_transition_notification_outbox_metrics.py,sha256=kxee9K2zkqPpmzK3FZNa-RNU5DmZq-p6i3fU1rfConI,6004
|
|
611
|
+
omnibase_infra/runtime/models/model_transition_notification_publisher_metrics.py,sha256=WAKfIpLCG_4P-gce6aXO2Bya38qsXIElsj1nUV0cGIs,14574
|
|
612
|
+
omnibase_infra/runtime/projector_plugin_loader.py,sha256=7GOt_ijKK3J4PUWe0ii3XYBAzB3UUG29bni2iO3sSVQ,61860
|
|
586
613
|
omnibase_infra/runtime/projector_schema_manager.py,sha256=tHBN6kzQzXhDKVmgxoeT7mG2fqhDxRR1AcB-J2D4Hs4,20556
|
|
587
|
-
omnibase_infra/runtime/projector_shell.py,sha256=
|
|
614
|
+
omnibase_infra/runtime/projector_shell.py,sha256=JJchFfRN14V3YzlEdVICG9VLYRhoCW0H-e-DzZ1ILbM,55855
|
|
588
615
|
omnibase_infra/runtime/protocol_contract_descriptor.py,sha256=yyWC1I9rxjeDVta-dkU90JPrcbgqJfPhIzce-2EthyI,2644
|
|
589
616
|
omnibase_infra/runtime/protocol_contract_source.py,sha256=xOtkRuSIScTwwUKs75oUu78eL1K8vsx_WfDA4ZQ3Xas,3608
|
|
590
617
|
omnibase_infra/runtime/protocol_domain_plugin.py,sha256=jh-Iy8rn8Xd_vVnJDx44rqHGSCj9_QD3RrnVwpnLyJg,16800
|
|
591
618
|
omnibase_infra/runtime/protocol_handler_discovery.py,sha256=HQwm-E-0lW_L_x-5dLxlWG0K1pJQ5BXoA8NOLgWabaU,8698
|
|
592
619
|
omnibase_infra/runtime/protocol_handler_plugin_loader.py,sha256=dhw8pD60n52gmwQvSGOlWGYcTq4kznjOa3ogXsYW7QM,13378
|
|
593
|
-
omnibase_infra/runtime/protocol_lifecycle_executor.py,sha256=
|
|
620
|
+
omnibase_infra/runtime/protocol_lifecycle_executor.py,sha256=h6CDRhxa2RZXzC3dAFmfx_SMMPK1Jo6zU7f_SIG3P7A,16879
|
|
594
621
|
omnibase_infra/runtime/protocol_policy.py,sha256=Bo8W_zEN5oWFlEuA-5tDBQ0C9WFxpFp5CABQHlbNCSc,13935
|
|
595
|
-
omnibase_infra/runtime/protocols/__init__.py,sha256=
|
|
622
|
+
omnibase_infra/runtime/protocols/__init__.py,sha256=AfeUEoShpiq6XVH8ZkTEREJEK00EzQtYYm8vUqgmZi0,1346
|
|
596
623
|
omnibase_infra/runtime/protocols/protocol_runtime_scheduler.py,sha256=kI3GKVhkPrw76DExrmEwokLlfRmI3NYuNwJpVjpfl-4,18205
|
|
597
624
|
omnibase_infra/runtime/registry/__init__.py,sha256=VwU2J-D2lbORXBw_1Cq7jDUjwH1RaDEHhqY-2oohAg8,3225
|
|
598
625
|
omnibase_infra/runtime/registry/mixin_message_type_query.py,sha256=6TZiydlmDviitV7TNgCTf736jZ_HhXP6JwxwcMvTFB4,10910
|
|
599
626
|
omnibase_infra/runtime/registry/mixin_message_type_registration.py,sha256=c-Wlk4X0Ecu7Qpc9iB2Oi_6C0MxlahFBC2v4IFMtF3E,13526
|
|
600
627
|
omnibase_infra/runtime/registry/registry_event_bus_binding.py,sha256=oZ6uz1maMH29DGKHg5TvCBscR2_4Dl1QkYCadRiRe6I,10178
|
|
601
628
|
omnibase_infra/runtime/registry/registry_message_type.py,sha256=K8cEX2L-LOCeHSa_n3GO8zH40ARaSjGSmYpjbdWLHU8,19551
|
|
602
|
-
omnibase_infra/runtime/registry/registry_protocol_binding.py,sha256=
|
|
629
|
+
omnibase_infra/runtime/registry/registry_protocol_binding.py,sha256=d6Fgo7vhXlIBXPh-5Cp61YLl_wKOjKUZL5YwpXjdOoc,16549
|
|
603
630
|
omnibase_infra/runtime/registry_compute.py,sha256=WZIiPteOwA3SY1Rl6Pr-zC57d5-3r63ILwfKtqKBNto,49350
|
|
631
|
+
omnibase_infra/runtime/registry_contract_source.py,sha256=ub1K-CAgND3lpbtptHOxxwKSU9nP-k6amJR9vh7o4Rs,23741
|
|
604
632
|
omnibase_infra/runtime/registry_dispatcher.py,sha256=81eb_-2FMXGekDx_PD7wBsoVmjmCIHLtTosLz4kYSmQ,25007
|
|
605
|
-
omnibase_infra/runtime/registry_policy.py,sha256=
|
|
633
|
+
omnibase_infra/runtime/registry_policy.py,sha256=iwp0DXK6XDRoK7drd0cyGu33vRVC8YDomb9Y5SUSvMA,51648
|
|
606
634
|
omnibase_infra/runtime/runtime_scheduler.py,sha256=D5b69cBuGGxAoLedQd51lq0FoQfN6vM5xDDRoc2CG6E,41861
|
|
607
|
-
omnibase_infra/runtime/secret_resolver.py,sha256=
|
|
635
|
+
omnibase_infra/runtime/secret_resolver.py,sha256=WxyfuvtGQ5tbzswsuQ7nn2QKpa0-wLd9cJgHj83vfQM,88059
|
|
608
636
|
omnibase_infra/runtime/security_metadata_validator.py,sha256=q9EJzU3mTWxD6belMeC2vvX7JCPrbxy8Rjvz134yukU,30435
|
|
609
|
-
omnibase_infra/runtime/service_kernel.py,sha256=
|
|
610
|
-
omnibase_infra/runtime/service_message_dispatch_engine.py,sha256=
|
|
611
|
-
omnibase_infra/runtime/service_runtime_host_process.py,sha256=
|
|
612
|
-
omnibase_infra/runtime/
|
|
637
|
+
omnibase_infra/runtime/service_kernel.py,sha256=bv8UQVIf2p0CZOBI2gU-XMQOT-9v3NMAFTCfIXdJPuA,70769
|
|
638
|
+
omnibase_infra/runtime/service_message_dispatch_engine.py,sha256=tniQzhUNipPdVYXV0HwmjM_-ixiDH-ZMq5MYXCetNgg,79818
|
|
639
|
+
omnibase_infra/runtime/service_runtime_host_process.py,sha256=hU6yZs1-vcOECJDsVWC8a99mhYBUVrStJY9IoIITM9g,119443
|
|
640
|
+
omnibase_infra/runtime/transition_notification_outbox.py,sha256=4O1M-WEGq9qlATYkKe8xmBiis09IlHvlg2j1udQtXHo,48916
|
|
641
|
+
omnibase_infra/runtime/transition_notification_publisher.py,sha256=NCMeH46DcNUFhoPgOxGcNWtBJ19Daen15NEn_ucufyI,32066
|
|
642
|
+
omnibase_infra/runtime/util_container_wiring.py,sha256=FJdvGJxboIWHIWp-KCEBFRFImcrWlixOoaGR1jdAfGs,44900
|
|
613
643
|
omnibase_infra/runtime/util_validation.py,sha256=RtqHXkvUJcVegkaBMptWFHXDqalcNOzwiBfXCp7lkMQ,12508
|
|
614
644
|
omnibase_infra/runtime/util_version.py,sha256=4m7SJalA4s-denrX-6WR2f7HRpOw19Ra-oEVxjdhQkg,3216
|
|
615
|
-
omnibase_infra/runtime/util_wiring.py,sha256=
|
|
645
|
+
omnibase_infra/runtime/util_wiring.py,sha256=CChJ-czj9MmF28oF6U5vQiZ9JdjsM1IlTBlEAef5sbs,23042
|
|
616
646
|
omnibase_infra/schemas/schema_registration_projection.sql,sha256=CS69H77z0dFpD5qF6sACATD1Aqi8hA5XpmWZSUQqDCg,15276
|
|
617
|
-
omnibase_infra/
|
|
618
|
-
omnibase_infra/services/
|
|
619
|
-
omnibase_infra/services/
|
|
620
|
-
omnibase_infra/services/
|
|
647
|
+
omnibase_infra/schemas/schema_transition_notification_outbox.sql,sha256=8NDilgLdudMRzDYiB_C2_uoI85dMViVmplg62VTvkuk,11054
|
|
648
|
+
omnibase_infra/services/__init__.py,sha256=S-S2w5-ZsaE-rim0OyUOKQisRZvy_UR7l0muSDtm2IM,3118
|
|
649
|
+
omnibase_infra/services/corpus_capture.py,sha256=sCXhN3hqGSwtoEbh8Mlw2luceaeFxLM0ZVkRsYd1NCQ,24062
|
|
650
|
+
omnibase_infra/services/mcp/__init__.py,sha256=ZUcss880RiGcAod5gmgBOXvKbMGaH2Epsn4MvjbKRbs,1064
|
|
651
|
+
omnibase_infra/services/mcp/mcp_server_lifecycle.py,sha256=LrwXobWcFUnqT_SOTdW1CO6hBmMuWvMKrq25WUPJ5mY,15781
|
|
652
|
+
omnibase_infra/services/mcp/service_mcp_tool_discovery.py,sha256=EuREDknFfDAMWff_Cc2JC3rI6Tt9wF18l2CXvKkSqxA,15854
|
|
653
|
+
omnibase_infra/services/mcp/service_mcp_tool_registry.py,sha256=tFfuYXcsa7zp41xcrQnPbxILyu-LFgWC6nObmkNDVWU,11626
|
|
654
|
+
omnibase_infra/services/mcp/service_mcp_tool_sync.py,sha256=TLwW0co3CwnycCfAnJIgjSFyvinui8CKmZLFbRCYBAI,18487
|
|
655
|
+
omnibase_infra/services/registry_api/__init__.py,sha256=o03lZchx9hVkHbzQciUpmR_O8NviZa-E30kB2iUNMs4,1192
|
|
656
|
+
omnibase_infra/services/registry_api/main.py,sha256=fUWqg1p0mLFeRa-1KcBiGyb7H-ZNZUgjNu2XLLyeDag,8626
|
|
657
|
+
omnibase_infra/services/registry_api/models/__init__.py,sha256=wdSWcsOE3o7x2LHLSp6e4twJj42fswxIHoMY25dxmXQ,2284
|
|
658
|
+
omnibase_infra/services/registry_api/models/model_capability_widget_mapping.py,sha256=q0MZ7HhuS8g07101oR2IWVsSWAlw1eewUBFwHNXL5-4,988
|
|
659
|
+
omnibase_infra/services/registry_api/models/model_pagination_info.py,sha256=aitTcnG1GJhM9snSxM73hYISBoXzbXsiVantknIF1dk,1116
|
|
660
|
+
omnibase_infra/services/registry_api/models/model_registry_discovery_response.py,sha256=GKuM7kxTMbB-ASFfj0FJTXP3Mn_G1hJEgJ6WLCyMnTI,2308
|
|
661
|
+
omnibase_infra/services/registry_api/models/model_registry_health_response.py,sha256=gJWos7ofty0bRHBo4M8bvfVo81UD1vXfZ8QUgbCpnQU,1325
|
|
662
|
+
omnibase_infra/services/registry_api/models/model_registry_instance_view.py,sha256=kjtC5MEWWnss92obMCqTni51wndf-h8vDxBIOXZabZ4,2669
|
|
663
|
+
omnibase_infra/services/registry_api/models/model_registry_node_view.py,sha256=gmLctF4v--XkaQygFa-wPlury7tPZrNhyOnCte1KlG4,2825
|
|
664
|
+
omnibase_infra/services/registry_api/models/model_registry_summary.py,sha256=Jg18br2Uqan45vRsv9mE8_9k3KRIGituSovQrPUFFz4,1662
|
|
665
|
+
omnibase_infra/services/registry_api/models/model_response_list_instances.py,sha256=Tt3oXIdepSkZmRfO_4-zZLcMw9K1-dIYCwyUFg4SpFM,1318
|
|
666
|
+
omnibase_infra/services/registry_api/models/model_response_list_nodes.py,sha256=7CN0J3a1kXTLhPw7GAH5jHtMSGWlBZf2PjBpMcNAU90,1589
|
|
667
|
+
omnibase_infra/services/registry_api/models/model_warning.py,sha256=0sFWUOuPPGv-9Be41leYEjlLfMrhANQ67hYpj0bP3vM,1268
|
|
668
|
+
omnibase_infra/services/registry_api/models/model_widget_defaults.py,sha256=Po8YWS5D_JZ7Lg6FinrAxyQNYSq9eOqOF4U3Hp2_Ffc,699
|
|
669
|
+
omnibase_infra/services/registry_api/models/model_widget_mapping.py,sha256=y6ScB3D1btHsuabcH2rJ1083PHbRREcpfQ_p0Tr9flQ,1592
|
|
670
|
+
omnibase_infra/services/registry_api/routes.py,sha256=pixbm-uzjofZ48c9y3kFaZbouRst9DjEnhPpKVxQaK0,12301
|
|
671
|
+
omnibase_infra/services/registry_api/service.py,sha256=Fb_6Cfqs2Nc1bklUb5zsgU8cpofKiCWwXD73wAlKvag,32740
|
|
672
|
+
omnibase_infra/services/service_capability_query.py,sha256=pJlyMcf35xVsUUL0ViWFMWD85tEmoMLPr8aMO5aMXj0,37828
|
|
673
|
+
omnibase_infra/services/service_health.py,sha256=Czxsitf81ptQq5XD0KKnXnDDQPvaobaf9KXJQuTs58A,37451
|
|
621
674
|
omnibase_infra/services/service_node_selector.py,sha256=bcK1fYhFREOfTmrLhXV9g90tNb-5PVsRRSzH-ijxPos,21033
|
|
622
|
-
omnibase_infra/services/service_timeout_emitter.py,sha256=
|
|
623
|
-
omnibase_infra/services/service_timeout_scanner.py,sha256=
|
|
675
|
+
omnibase_infra/services/service_timeout_emitter.py,sha256=hnTFafHFVxgwqVpK5psWRyNRrUN3JQ4NUmmBN88U8Rw,27632
|
|
676
|
+
omnibase_infra/services/service_timeout_scanner.py,sha256=m9vrgllk-HtWv5n3Sm9pQDXSX4BOIKmBmnjj9MA59Os,14496
|
|
677
|
+
omnibase_infra/services/session/__init__.py,sha256=8vrDgtNVzQubo8Rz3IYZ3l8NlbaVNwtq40mLXmXfyx0,1789
|
|
678
|
+
omnibase_infra/services/session/config_consumer.py,sha256=cAzVpcPGgdUC1S5KJdpCEzF2-QVDKf3H7ly4KigfaIA,3805
|
|
679
|
+
omnibase_infra/services/session/config_store.py,sha256=SrFmz2iJ4T03mxLJd5YRBYFt7Z1HqIhR1WXdlGoSf1c,4031
|
|
680
|
+
omnibase_infra/services/session/consumer.py,sha256=iT8F4fsuAhF9uLIFm49TbGOKa2FSquTkwQwmiRDv9bo,36507
|
|
681
|
+
omnibase_infra/services/session/protocol_session_aggregator.py,sha256=afdaxzauSB9HjhoOGVCqS68g6o3wRIeJi5nc1s0kaRE,3453
|
|
682
|
+
omnibase_infra/services/session/store.py,sha256=iW_Co8Zg0l-78UG8DeQQiSIDxpn7tvKUoj2-MqD3QNM,33898
|
|
624
683
|
omnibase_infra/services/snapshot/__init__.py,sha256=gKvjichyMPv6RQ429hlvze_t0MMAJvQSoU3Agm_JOig,1071
|
|
625
684
|
omnibase_infra/services/snapshot/service_snapshot.py,sha256=IvXv2U89YB_xvk2bGw550NwpdKBQRGl2CqWFMl3Z5hI,24023
|
|
626
685
|
omnibase_infra/services/snapshot/store_inmemory.py,sha256=aH7AtMzGDW-ZIIaTzbaMyJLlCeLLWfL0B2cos7wK3G4,25362
|
|
@@ -636,18 +695,22 @@ omnibase_infra/types/typed_dict/__init__.py,sha256=xyZwQGG7aYqBrJXAObs9PJxPJECWr
|
|
|
636
695
|
omnibase_infra/types/typed_dict/typed_dict_introspection_cache.py,sha256=tgIs7CtLGRxdRuikZ-m1JzQWHuhF_x8LWFQcG-a6iVw,5466
|
|
637
696
|
omnibase_infra/types/typed_dict/typed_dict_performance_metrics_cache.py,sha256=1BbjHa9_radDboXP_oen3oWJNEOTMDEw0fSD6sVCqE4,5876
|
|
638
697
|
omnibase_infra/types/typed_dict_capabilities.py,sha256=_uwGArcMrUyqius2ExAXpvunDztrDB7ohzyJy_msLmU,2697
|
|
639
|
-
omnibase_infra/utils/__init__.py,sha256=
|
|
698
|
+
omnibase_infra/utils/__init__.py,sha256=XmeD5jXhyZUt8Jzu5euTDXKf5ukRE-5v9LtYRSG-Q38,3499
|
|
640
699
|
omnibase_infra/utils/correlation.py,sha256=PFKbXRrxLhZ6OixzAe-3zGzq3ZCb7NyEzfMwjXckLv0,7152
|
|
700
|
+
omnibase_infra/utils/util_atomic_file.py,sha256=IlEq4sJjK9tlU74X4XgAO1ydxietdieqb_cn_D9_020,9111
|
|
641
701
|
omnibase_infra/utils/util_datetime.py,sha256=bZD7OoFjM3-XHwNHqY1_DswXTFLaKMeioxoJwFfVKVI,13882
|
|
642
|
-
omnibase_infra/utils/
|
|
702
|
+
omnibase_infra/utils/util_db_transaction.py,sha256=L-JiGDT3ggIv8fJsk-7Ofxm1RzSwrnTSe4AN6xdm4yA,9601
|
|
703
|
+
omnibase_infra/utils/util_dsn_validation.py,sha256=ENp5mtM4nWFsd9EhYNIjftMpGgSWOX-KTezEZZ-jZZo,12093
|
|
643
704
|
omnibase_infra/utils/util_env_parsing.py,sha256=sXTbMcWFgjyvjEg6bnMV5vOYMcaw7LBxC4-nPpD2-j4,9255
|
|
644
705
|
omnibase_infra/utils/util_error_sanitization.py,sha256=FxoHw40HCu9SO83jXuGQ5L349HyANNZ1yXv60BAdnzI,14616
|
|
645
706
|
omnibase_infra/utils/util_pydantic_validators.py,sha256=7i8mgUyy-ObUCw0ICVY_N_sSoxIFfDkGsk182riQUqo,16271
|
|
707
|
+
omnibase_infra/utils/util_retry_optimistic.py,sha256=hSCUGNJgECaKN3PBf44r3Y7Lh0m8BQPDk0YTSJyWtOo,10967
|
|
646
708
|
omnibase_infra/utils/util_semver.py,sha256=ceTeLo753aAkyyI847XlceajdMvBIn3XJq1X1Fkfz78,7661
|
|
647
|
-
omnibase_infra/validation/__init__.py,sha256=
|
|
709
|
+
omnibase_infra/validation/__init__.py,sha256=Ws8xI8hQ-0D87gxrWRoUwYMO1jHRPJuHgK7hzit9tXs,12640
|
|
710
|
+
omnibase_infra/validation/contracts/security.validation.yaml,sha256=NixKgUo7KliQr1yJBY65j2WaxJv_XKoUSCA6pB77DiQ,3858
|
|
648
711
|
omnibase_infra/validation/enums/__init__.py,sha256=J4vRP14R2lHaixXCk1MH5Bzh3Vd0pZmySpN8PkqJc4c,278
|
|
649
712
|
omnibase_infra/validation/enums/enum_contract_violation_severity.py,sha256=beR4vRNXtQ7ckOSOYZHn3NAacZBNTX1csG9_Y6SPd7M,414
|
|
650
|
-
omnibase_infra/validation/infra_validators.py,sha256=
|
|
713
|
+
omnibase_infra/validation/infra_validators.py,sha256=SGIT8042X3vaugFiAA1M5JXScbzk8lmUszsnSg78e4E,59857
|
|
651
714
|
omnibase_infra/validation/linter_contract.py,sha256=Lv6UkyXx7WFm7Yxwwt8ahXRl-QWfY980Ge7OABUcE5s,33629
|
|
652
715
|
omnibase_infra/validation/mixin_any_type_classification.py,sha256=F1WoGIR_RzZpiHPOVIr-6gOLzD2qWJBnYoqPrLCIiVU,3957
|
|
653
716
|
omnibase_infra/validation/mixin_any_type_exemption.py,sha256=KmKZC8znLuqOuT9vWsUjUF5Lb3aqoI3XgJLXTNNYqIU,23002
|
|
@@ -658,18 +721,18 @@ omnibase_infra/validation/models/__init__.py,sha256=p-8vUFXuk-BeJYaWXBbk5DrHq9DZ
|
|
|
658
721
|
omnibase_infra/validation/models/model_contract_lint_result.py,sha256=Td6OH1VIV7JHPTTZN_iKLM1BQRCtxsjZIMR_DrNau-k,3343
|
|
659
722
|
omnibase_infra/validation/models/model_contract_violation.py,sha256=xRYr-waBuwNVmcHS-ZqoD4g0iLzwtZiibb-Sc4BibaU,1362
|
|
660
723
|
omnibase_infra/validation/service_validation_aggregator.py,sha256=pm7kvtch85hc0ajSKMZ_DPVVsBKZ7JaVYSJsQfpQHr4,14019
|
|
661
|
-
omnibase_infra/validation/validation_exemptions.yaml,sha256=
|
|
724
|
+
omnibase_infra/validation/validation_exemptions.yaml,sha256=YZbWzo_zk7jocc8ZrwhWZn8G5_M9nLVAu83CmLV9b-k,106753
|
|
662
725
|
omnibase_infra/validation/validator_any_type.py,sha256=m89Ae6ctmS920yjy6yUvARMcTMVsMnrGby9VlaLRVVw,26285
|
|
663
|
-
omnibase_infra/validation/validator_chain_propagation.py,sha256=
|
|
726
|
+
omnibase_infra/validation/validator_chain_propagation.py,sha256=JmoYAAH9E0Z_HWh2AGG1WS5zc3lPtq46CjQmmm7IYck,35686
|
|
664
727
|
omnibase_infra/validation/validator_execution_shape.py,sha256=ctKz-NhUNXssRs3L7FEXLUHEwGsKE0yXuq_Ns-Psnbw,19600
|
|
665
728
|
omnibase_infra/validation/validator_localhandler.py,sha256=5l2tts62SRPqFtqesrUDFtAj2TW09-uq5qskI1ztARs,8576
|
|
666
729
|
omnibase_infra/validation/validator_registration_security.py,sha256=71EW3Gmlj1u6brJQKS9IvyASOeYYxegmsJk6fSPGWPo,16351
|
|
667
730
|
omnibase_infra/validation/validator_routing_coverage.py,sha256=51vYEi5NhU6wqohk2FXu_ZnRp2fWMsMcR9xEnvPf-HA,39062
|
|
668
|
-
omnibase_infra/validation/validator_runtime_shape.py,sha256=
|
|
669
|
-
omnibase_infra/validation/validator_security.py,sha256=
|
|
731
|
+
omnibase_infra/validation/validator_runtime_shape.py,sha256=9Xl37_dNDinT7nr-BoJ9fG3O5cT1_j6N-C7bojwQi3g,39033
|
|
732
|
+
omnibase_infra/validation/validator_security.py,sha256=Yn_kwxBtPzEj1GzrW0OafL-bR-FgoqdeFzseQqF2_B8,20622
|
|
670
733
|
omnibase_infra/validation/validator_topic_category.py,sha256=1y6STpSNIJsE2AmX5f8PVzPuOfoQmedgocSbEqOdtrM,48798
|
|
671
|
-
omnibase_infra-0.2.
|
|
672
|
-
omnibase_infra-0.2.
|
|
673
|
-
omnibase_infra-0.2.
|
|
674
|
-
omnibase_infra-0.2.
|
|
675
|
-
omnibase_infra-0.2.
|
|
734
|
+
omnibase_infra-0.2.3.dist-info/METADATA,sha256=H7cdWfmx6qcKKqLO9H9wR73cQhNcLopSeAjpNHnqwus,7553
|
|
735
|
+
omnibase_infra-0.2.3.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
736
|
+
omnibase_infra-0.2.3.dist-info/entry_points.txt,sha256=NlZEQIMp4I5S2f0l286hLyA48oQB92S0ISrn1rfFP30,110
|
|
737
|
+
omnibase_infra-0.2.3.dist-info/licenses/LICENSE,sha256=CwYWppeN0neFHYdbbUdHbR4_PiyTYnmk6ufFWuVsL7I,1070
|
|
738
|
+
omnibase_infra-0.2.3.dist-info/RECORD,,
|
|
File without changes
|