omnibase_infra 0.3.1__py3-none-any.whl → 0.3.2__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.
Files changed (72) hide show
  1. omnibase_infra/__init__.py +1 -1
  2. omnibase_infra/enums/__init__.py +3 -0
  3. omnibase_infra/enums/enum_consumer_group_purpose.py +9 -0
  4. omnibase_infra/enums/enum_postgres_error_code.py +188 -0
  5. omnibase_infra/handlers/registration_storage/handler_registration_storage_postgres.py +29 -20
  6. omnibase_infra/mixins/__init__.py +14 -0
  7. omnibase_infra/mixins/mixin_postgres_error_response.py +314 -0
  8. omnibase_infra/mixins/mixin_postgres_op_executor.py +298 -0
  9. omnibase_infra/models/__init__.py +3 -0
  10. omnibase_infra/{nodes/effects/models → models}/model_backend_result.py +22 -6
  11. omnibase_infra/models/projection/__init__.py +11 -0
  12. omnibase_infra/models/projection/model_contract_projection.py +170 -0
  13. omnibase_infra/models/projection/model_topic_projection.py +148 -0
  14. omnibase_infra/nodes/contract_registry_reducer/__init__.py +5 -0
  15. omnibase_infra/nodes/contract_registry_reducer/contract_registration_event_router.py +689 -0
  16. omnibase_infra/nodes/effects/__init__.py +1 -1
  17. omnibase_infra/nodes/effects/models/__init__.py +6 -4
  18. omnibase_infra/nodes/effects/models/model_registry_response.py +1 -1
  19. omnibase_infra/nodes/effects/protocol_consul_client.py +1 -1
  20. omnibase_infra/nodes/effects/protocol_postgres_adapter.py +1 -1
  21. omnibase_infra/nodes/effects/registry_effect.py +1 -1
  22. omnibase_infra/nodes/node_contract_persistence_effect/__init__.py +101 -0
  23. omnibase_infra/nodes/node_contract_persistence_effect/contract.yaml +490 -0
  24. omnibase_infra/nodes/node_contract_persistence_effect/handlers/__init__.py +74 -0
  25. omnibase_infra/nodes/node_contract_persistence_effect/handlers/handler_postgres_cleanup_topics.py +217 -0
  26. omnibase_infra/nodes/node_contract_persistence_effect/handlers/handler_postgres_contract_upsert.py +242 -0
  27. omnibase_infra/nodes/node_contract_persistence_effect/handlers/handler_postgres_deactivate.py +194 -0
  28. omnibase_infra/nodes/node_contract_persistence_effect/handlers/handler_postgres_heartbeat.py +243 -0
  29. omnibase_infra/nodes/node_contract_persistence_effect/handlers/handler_postgres_mark_stale.py +208 -0
  30. omnibase_infra/nodes/node_contract_persistence_effect/handlers/handler_postgres_topic_update.py +298 -0
  31. omnibase_infra/nodes/node_contract_persistence_effect/models/__init__.py +15 -0
  32. omnibase_infra/nodes/node_contract_persistence_effect/models/model_persistence_result.py +52 -0
  33. omnibase_infra/nodes/node_contract_persistence_effect/node.py +114 -0
  34. omnibase_infra/nodes/node_contract_persistence_effect/registry/__init__.py +27 -0
  35. omnibase_infra/nodes/node_contract_persistence_effect/registry/registry_infra_contract_persistence_effect.py +220 -0
  36. omnibase_infra/nodes/node_registry_effect/models/__init__.py +2 -2
  37. omnibase_infra/projectors/__init__.py +6 -0
  38. omnibase_infra/projectors/projection_reader_contract.py +1301 -0
  39. omnibase_infra/runtime/__init__.py +5 -0
  40. omnibase_infra/runtime/contract_registration_event_router.py +500 -0
  41. omnibase_infra/runtime/db/__init__.py +4 -0
  42. omnibase_infra/runtime/db/models/__init__.py +15 -10
  43. omnibase_infra/runtime/db/models/model_db_operation.py +40 -0
  44. omnibase_infra/runtime/db/models/model_db_param.py +24 -0
  45. omnibase_infra/runtime/db/models/model_db_repository_contract.py +40 -0
  46. omnibase_infra/runtime/db/models/model_db_return.py +26 -0
  47. omnibase_infra/runtime/db/models/model_db_safety_policy.py +32 -0
  48. omnibase_infra/runtime/intent_execution_router.py +430 -0
  49. omnibase_infra/runtime/models/__init__.py +6 -0
  50. omnibase_infra/runtime/models/model_contract_registry_config.py +41 -0
  51. omnibase_infra/runtime/models/model_intent_execution_summary.py +79 -0
  52. omnibase_infra/runtime/models/model_runtime_config.py +8 -0
  53. omnibase_infra/runtime/protocols/__init__.py +16 -0
  54. omnibase_infra/runtime/protocols/protocol_intent_executor.py +107 -0
  55. omnibase_infra/runtime/request_response_wiring.py +785 -0
  56. omnibase_infra/runtime/service_kernel.py +295 -8
  57. omnibase_infra/services/registry_api/models/__init__.py +25 -0
  58. omnibase_infra/services/registry_api/models/model_contract_ref.py +44 -0
  59. omnibase_infra/services/registry_api/models/model_contract_view.py +81 -0
  60. omnibase_infra/services/registry_api/models/model_response_contracts.py +50 -0
  61. omnibase_infra/services/registry_api/models/model_response_topics.py +50 -0
  62. omnibase_infra/services/registry_api/models/model_topic_summary.py +57 -0
  63. omnibase_infra/services/registry_api/models/model_topic_view.py +63 -0
  64. omnibase_infra/services/registry_api/routes.py +205 -6
  65. omnibase_infra/services/registry_api/service.py +528 -1
  66. omnibase_infra/validation/infra_validators.py +3 -1
  67. omnibase_infra/validation/validation_exemptions.yaml +54 -0
  68. {omnibase_infra-0.3.1.dist-info → omnibase_infra-0.3.2.dist-info}/METADATA +3 -3
  69. {omnibase_infra-0.3.1.dist-info → omnibase_infra-0.3.2.dist-info}/RECORD +72 -34
  70. {omnibase_infra-0.3.1.dist-info → omnibase_infra-0.3.2.dist-info}/WHEEL +0 -0
  71. {omnibase_infra-0.3.1.dist-info → omnibase_infra-0.3.2.dist-info}/entry_points.txt +0 -0
  72. {omnibase_infra-0.3.1.dist-info → omnibase_infra-0.3.2.dist-info}/licenses/LICENSE +0 -0
@@ -1,4 +1,4 @@
1
- omnibase_infra/__init__.py,sha256=cUEvzmpkZWPGbrKvpI3JpMQ4HjR_YEF_9gOZePu-AQQ,3853
1
+ omnibase_infra/__init__.py,sha256=QQtJN1g3-NxuLt-hI13NOSMg3ok3yEdAOVBIa6yuF1w,3853
2
2
  omnibase_infra/adapters/adapter_onex_tool_execution.py,sha256=gKiRTr3pc7-DNAS9_bSmLWssOr1FDCiciwE16cQF3Ro,15377
3
3
  omnibase_infra/capabilities/__init__.py,sha256=O6qQjWNwe0ZQt5hpGMMLx4CgagdpxBJzMGVpowi8eKY,462
4
4
  omnibase_infra/capabilities/capability_inference_rules.py,sha256=2VDLhvBlDOYyi1eCQGSNB8eXf2JQ4cG9Xftsb3P2xm0,8166
@@ -20,7 +20,7 @@ omnibase_infra/dlq/models/enum_replay_status.py,sha256=Sq-FtWpdLCYM0Dx7gLU0sa0I1
20
20
  omnibase_infra/dlq/models/model_dlq_replay_record.py,sha256=8a25q0ZXGvU4kf585atSfVuLEmBopNj0qYrN4qUTvIA,4895
21
21
  omnibase_infra/dlq/models/model_dlq_tracking_config.py,sha256=z5uqNo6my3sUh00m0TEBbIJ_pLe3eBHxByFGi30hKdk,6647
22
22
  omnibase_infra/dlq/service_dlq_tracking.py,sha256=yiPYxj-Njvl_Nw0DjpS7dDQDYH0Xg7ahNvAqabc-bvw,25879
23
- omnibase_infra/enums/__init__.py,sha256=QbCuFvO0cWlc8jD4u2t02xmdLm0cxS1QPYb5j20H6tc,7433
23
+ omnibase_infra/enums/__init__.py,sha256=4ngXItbj7bs-msd1ILEh3rrq46I9bKlGlk_9b42IMJk,7628
24
24
  omnibase_infra/enums/enum_any_type_violation.py,sha256=qpyzIuXPUlAclN4HMDxft6LfaeGkUpqO-PDwZa4s4oI,4338
25
25
  omnibase_infra/enums/enum_backend_type.py,sha256=7kvqJzmF3NEHaSUlEJG4yRImSljr8BGyidRi0872e6Y,683
26
26
  omnibase_infra/enums/enum_capture_outcome.py,sha256=4TOSxTzBAQHjwrPROSUNgu0xai1whzncUD4v-4RexJw,1165
@@ -28,7 +28,7 @@ omnibase_infra/enums/enum_capture_state.py,sha256=Ey4dH0G9Y_kp-_f4Z4kUIITyJ4_gaG
28
28
  omnibase_infra/enums/enum_chain_violation_type.py,sha256=FAza2mKH04qwQr5aDnChwOqomTwi7PUTdPe8mlvwGqg,4366
29
29
  omnibase_infra/enums/enum_circuit_state.py,sha256=NLKtyU_poEPV3oeG2HMzm2svphwN55n0DLVUw6iggWA,1568
30
30
  omnibase_infra/enums/enum_confirmation_event_type.py,sha256=cgL_yWetC7A1sIC0-iA73JFpR97vepKQwU59JpUugv0,816
31
- omnibase_infra/enums/enum_consumer_group_purpose.py,sha256=hrS3sb2t7FuFKQFB1m7cAU4wS_pCtjH8pjw4aH1UhBI,3204
31
+ omnibase_infra/enums/enum_consumer_group_purpose.py,sha256=2ZZoBLHXi8uLKRfekP11biVj_wKnQpeI_YeT4qiiDnc,3682
32
32
  omnibase_infra/enums/enum_contract_type.py,sha256=FeN6L79lRmWxKEPuqVe8Xs-UMB9jz8obzkmuFm7GplE,2898
33
33
  omnibase_infra/enums/enum_declarative_node_violation.py,sha256=rMCP0jt6CRrYMoNiZmq5yn2w6oxmmDBLafaYnBrCu0E,4314
34
34
  omnibase_infra/enums/enum_dedupe_strategy.py,sha256=lBAbY7nQnGmnUxKQ4vREIKdGyBMMrZ91WRSRChSU8KM,1237
@@ -49,6 +49,7 @@ omnibase_infra/enums/enum_node_archetype.py,sha256=qGt6jKjH7XFU_jU5FkKdtGaJmjL1M
49
49
  omnibase_infra/enums/enum_node_output_type.py,sha256=ENsaDPUX87Mua1loHWWdGiY2lJZnyFZ76hUEnNwnKic,7802
50
50
  omnibase_infra/enums/enum_non_retryable_error_category.py,sha256=1Asa56bVNrlbuVIqowgoLtRtrPNxzjMaCgijbPI_Zkc,8316
51
51
  omnibase_infra/enums/enum_policy_type.py,sha256=Jl3YZ1rUNaQxaeDxY-m7ZwV40RqcCEKC0iP7fRHV_bs,1090
52
+ omnibase_infra/enums/enum_postgres_error_code.py,sha256=2jT_2Dweka4Q5l7IQjVCBX_RdgzMOBaD8i6Wzvau8eI,7244
52
53
  omnibase_infra/enums/enum_registration_state.py,sha256=Hpbu2RP4A88EGxOvwQAvEGxTJoySVGMScVhJXcfcgSs,8964
53
54
  omnibase_infra/enums/enum_registration_status.py,sha256=rBb04YYovRPHUBao52fsOjKe9odAAwKz0kYWcbiqFc4,962
54
55
  omnibase_infra/enums/enum_registry_response_status.py,sha256=HJrgvH1xl0sYhv90LdwpqHBtncl9lX-PVFP2ob463MQ,733
@@ -209,7 +210,7 @@ omnibase_infra/handlers/models/vault/model_vault_write_payload.py,sha256=ESyZIiY
209
210
  omnibase_infra/handlers/models/vault/registry_payload_vault.py,sha256=uS70QPXX-TgPtkLOe4LJEiFzgC3o7OMp6mz9gzYzpLM,7821
210
211
  omnibase_infra/handlers/registration_storage/__init__.py,sha256=PEuDYeZsRrug85OKQokun96kiCehlMUVcodJgaufshI,1511
211
212
  omnibase_infra/handlers/registration_storage/handler_registration_storage_mock.py,sha256=viCx8dh92Zpe-aO4k68D9IsiWJG4s_wKTEdHQB86t4g,12371
212
- omnibase_infra/handlers/registration_storage/handler_registration_storage_postgres.py,sha256=Eq5QEwJZWctNA_JDAe9HRt8bSOFTw3ofAP1tD4qi6MI,34561
213
+ omnibase_infra/handlers/registration_storage/handler_registration_storage_postgres.py,sha256=isoxENLNopaBCAtWNPfKB5lB4cq4ujm6CgY8y52zfZo,35452
213
214
  omnibase_infra/handlers/registration_storage/models/__init__.py,sha256=-36QxUivbTWDaxT1s0G_TGU15LCgVsJzfH4--T-Smls,767
214
215
  omnibase_infra/handlers/registration_storage/models/model_delete_registration_request.py,sha256=HV1yjzbZ_Zm1WqPsz8S2Rmi-SLbbvmE2NOSwdqleiFg,1751
215
216
  omnibase_infra/handlers/registration_storage/models/model_update_registration_request.py,sha256=5bo5a0geYSW3gDv3IWogQwrBwqTJD_v3DsPpFBV2rLM,2424
@@ -236,14 +237,16 @@ omnibase_infra/idempotency/store_postgres.py,sha256=VcDNTicql_Lqk7y3Hl3IvKy61NEe
236
237
  omnibase_infra/infrastructure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
237
238
  omnibase_infra/migrations/001_create_event_ledger.sql,sha256=ZoCSq3sdimchFCzwog_6osXvynDGfgqOTOF5TAvZYp4,9027
238
239
  omnibase_infra/migrations/001_drop_event_ledger.sql,sha256=GtvvbqG_RG76ID0MS-n_zcfV6L2SY5jt9STTlrJVrYw,798
239
- omnibase_infra/mixins/__init__.py,sha256=BBq17P32MCtUP-RRnoRF8zyqmf0nQMnRM3y4cHscPg4,2980
240
+ omnibase_infra/mixins/__init__.py,sha256=b21fN7eoJRDG4WWxl1PO7C9bLW3vfbMKYBZRbaqn2pU,3602
240
241
  omnibase_infra/mixins/mixin_async_circuit_breaker.py,sha256=DF67bEZuRb8Kp2BJq8l0lc-aD1xi8DVxaAwnGeYCYx0,31875
241
242
  omnibase_infra/mixins/mixin_dict_like_accessors.py,sha256=qluJXw2YQhrj-14QVueHPAp8Gm5Hr8pvi5kna_qIauI,4510
242
243
  omnibase_infra/mixins/mixin_envelope_extraction.py,sha256=15ETxx5AHUtzG2TuFiHXi9kSUGqY_brYtNf0X5mL7dY,5043
243
244
  omnibase_infra/mixins/mixin_node_introspection.py,sha256=3r10ONspCGPcz0Hjsac3EQBC4k3vLNfLTLoLG-acuIg,109901
245
+ omnibase_infra/mixins/mixin_postgres_error_response.py,sha256=qe2XpHwHehD2e8_-X4xcPtZxeFC4f91I36q4-9t6vxU,12233
246
+ omnibase_infra/mixins/mixin_postgres_op_executor.py,sha256=lLzPMHSCGK-AfZ2PvdWpD0vsS_ng32PtNit5O-iF2Dc,11859
244
247
  omnibase_infra/mixins/mixin_retry_execution.py,sha256=OHpA_B9CTosWOoSm-HBcuvoZDaoatujcRxfHak5eqwk,14009
245
248
  omnibase_infra/mixins/protocol_circuit_breaker_aware.py,sha256=U5ciOCOIXBX5rjnX50UgOV0RdDiGFPafXDK9wWcr4Ro,4793
246
- omnibase_infra/models/__init__.py,sha256=ybnLN9qCwaxgb7ATXFmx4bg6w3qH7tPDnaW_JpnAq-A,4487
249
+ omnibase_infra/models/__init__.py,sha256=pFjfloOKXsGn8W7PzpZlafNoB4zRZX9YVSmV4-odKoQ,4615
247
250
  omnibase_infra/models/bindings/__init__.py,sha256=SJXZj3pXd9GHaHqTHrXfIHrpn4mkbUZDV9RWxtG3xFs,1767
248
251
  omnibase_infra/models/bindings/constants.py,sha256=-8LmHmQ-J5zQreB55Q_XZop2Mk0zP5OEg6Y8M6nBue4,5007
249
252
  omnibase_infra/models/bindings/model_binding_resolution_result.py,sha256=mX5UdM4opciLYQnR7LiqDldVIs_6WIEtjUVhZE_KM40,3419
@@ -302,14 +305,17 @@ omnibase_infra/models/mcp/model_mcp_contract_config.py,sha256=fcQ4QgjBeR7Fl7qbES
302
305
  omnibase_infra/models/mcp/model_mcp_server_config.py,sha256=clOg3AiuKUtdGuhG5IMedS6vKwpR4rqBNXvwpFxZUGs,2482
303
306
  omnibase_infra/models/mcp/model_mcp_tool_definition.py,sha256=hCQ2evE7x-XMStFEZPRqluHKAXSvNs7z2bT-3XrHzQk,2912
304
307
  omnibase_infra/models/mcp/model_mcp_tool_parameter.py,sha256=MTJsq4iPGlFuAKvuw8SrWgNaZzigxTbQz20eIeLu8lQ,1140
308
+ omnibase_infra/models/model_backend_result.py,sha256=z6x0fFvhzS7NJSe18d7Zki-nr_sM7cUELgTBN46bEVU,8185
305
309
  omnibase_infra/models/model_node_identity.py,sha256=sOx1BHTaII3eQPnv-LwbdFUvlB-PbNtWy3Hd6lsCXqs,4718
306
310
  omnibase_infra/models/model_retry_error_classification.py,sha256=szwDjr32Ws107tWYaORSA3ZwewnDUeP3XhC1i8BKSVE,2699
307
- omnibase_infra/models/projection/__init__.py,sha256=oCvnmSyplggfmYkQaqhz_WJAuyYX4fY0IOIyzR-v25w,1634
311
+ omnibase_infra/models/projection/__init__.py,sha256=MXiHhWtT25D7iQhawjF4QAacPlnfzN8ttZI9TXaMFww,2112
308
312
  omnibase_infra/models/projection/model_capability_fields.py,sha256=cyb-k1pFPvUOcHF9o6HnJIsNVWqAKNT5MTcsPIqCwDk,4153
313
+ omnibase_infra/models/projection/model_contract_projection.py,sha256=S3PEngLCsHrMIZ7dcqQc9Cpk0O00cw7rY42A7pCaNq4,5753
309
314
  omnibase_infra/models/projection/model_registration_projection.py,sha256=LomkQ24g_EvwmhlVbkSXmJ5Zx4-Xv3AUYZhNWObLA1o,16355
310
315
  omnibase_infra/models/projection/model_registration_snapshot.py,sha256=JkBTmNJ-lYB4YqiAc0EUUcDyaD2z23MkDWmTW6PrBWc,12072
311
316
  omnibase_infra/models/projection/model_sequence_info.py,sha256=vqfZNlqQBnR3teDaHRp0bvDi1-7qCHQP5nOFm9_EoTo,6173
312
317
  omnibase_infra/models/projection/model_snapshot_topic_config.py,sha256=95_9scey626fZMgcPkiLcOSWsqLtDWuBOOeBBmrNQvk,21750
318
+ omnibase_infra/models/projection/model_topic_projection.py,sha256=yxofg3W70YjpVjXlmp7v3uTXi8kPgB0_B2-or0ygHmo,4921
313
319
  omnibase_infra/models/projectors/__init__.py,sha256=7Ilug2Nbw_0Of2w_-5HjYz_SAXctbFVaHNY9CsUB8jQ,1577
314
320
  omnibase_infra/models/projectors/model_projector_column.py,sha256=b3jPiK5BA1knvlMgLicAn4h9RyLEZ1StYStziVvT_Nc,9778
315
321
  omnibase_infra/models/projectors/model_projector_discovery_result.py,sha256=80JHuvjCR6CqQgcrCKqQn2SstH70mB8Zpf-eR510vyk,2076
@@ -413,8 +419,9 @@ omnibase_infra/nodes/architecture_validator/validators/__init__.py,sha256=12NUXG
413
419
  omnibase_infra/nodes/architecture_validator/validators/validator_no_direct_dispatch.py,sha256=xQVKqYYqegghNMWtpu51IGfcscel60_3sNGGuT1hSys,14866
414
420
  omnibase_infra/nodes/architecture_validator/validators/validator_no_handler_publishing.py,sha256=Y4q3r6J10oVdcMaGMPECEHOdEs3Vi5L8eH_ILtY1a5E,17644
415
421
  omnibase_infra/nodes/architecture_validator/validators/validator_no_orchestrator_fsm.py,sha256=c7T1s0pdYxhurh-SGIoC06LsiPZtSsMXBy7OzZqoRiw,17668
416
- omnibase_infra/nodes/contract_registry_reducer/__init__.py,sha256=qTESQjd_nqmLA8_GSgYrfL88C-WJl4puXGuVTJfT__0,906
422
+ omnibase_infra/nodes/contract_registry_reducer/__init__.py,sha256=RMvcxdbqzH7xozJrP4X6IEHUxVk-J4OyR4NRogq3B_U,1150
417
423
  omnibase_infra/nodes/contract_registry_reducer/contract.yaml,sha256=HDT2d8tW5k9rVSd2lB-QwP3udKu3D-1ddsgNEoM9YR8,10698
424
+ omnibase_infra/nodes/contract_registry_reducer/contract_registration_event_router.py,sha256=gXkm_6JklK0bOF0zPGTE_KkJ6cYBr2pg0GvwA9ZJmjg,27189
418
425
  omnibase_infra/nodes/contract_registry_reducer/models/__init__.py,sha256=rQvojXbtZXp_jm22FRmeSnosi97Cy2nfGjyO6buzGhs,1408
419
426
  omnibase_infra/nodes/contract_registry_reducer/models/model_contract_registry_state.py,sha256=plj2SNs7SB0miUWikQ7Pn2jiLXORPus0OXeXuFJ5j5Y,10454
420
427
  omnibase_infra/nodes/contract_registry_reducer/models/model_payload_cleanup_topic_references.py,sha256=EugJl1Pqpck_1-oZXsGOZAZCK0fFyyF6uZEYcXx3gwQ,1964
@@ -428,17 +435,16 @@ omnibase_infra/nodes/contract_registry_reducer/reducer.py,sha256=qAba8_yTAZf3It6
428
435
  omnibase_infra/nodes/contract_registry_reducer/registry/__init__.py,sha256=_Stta6Gviw7hTN0LNn_Dr_mpMjkNkfFoHXsS390fVEA,329
429
436
  omnibase_infra/nodes/contract_registry_reducer/registry/registry_infra_contract_registry_reducer.py,sha256=zW1EX-I704DNDqmsh4Lz6KFPV_my1ffFWCqPRMilwyE,3617
430
437
  omnibase_infra/nodes/effects/README.md,sha256=p0Go_-GuZRnp9MD7u6TX3mF2HcqEQruq4ZQmJNiAsR4,12500
431
- omnibase_infra/nodes/effects/__init__.py,sha256=NMe-_IDsE3bzbeO2ubXIX_B4OpAuhDdQ4fflcyJ6p2w,779
438
+ omnibase_infra/nodes/effects/__init__.py,sha256=lvnSJrqfXXoBFlok8JWFcpd4vIhiSsQe9Xx8zbofSnM,829
432
439
  omnibase_infra/nodes/effects/contract.yaml,sha256=PkhjCe0cgKglC__PaWpzZuyrjDBnKcfdB2on2UTexzs,5240
433
- omnibase_infra/nodes/effects/models/__init__.py,sha256=J0vsyY7w6h2BAffxB2umyjaIAyZh-VEeGOKbjbAmYzw,1024
434
- omnibase_infra/nodes/effects/models/model_backend_result.py,sha256=x3jLd_L2rjCzeaquUuNnJwh4n5qJcl_2OhSUQAmixHk,7357
440
+ omnibase_infra/nodes/effects/models/__init__.py,sha256=QCeVAreeKALbsKgCEo8UYz-GgjtO0MFDfgm5Pw7ijmA,1160
435
441
  omnibase_infra/nodes/effects/models/model_effect_idempotency_config.py,sha256=CNwHZpatqtVj9K-prvV91-D-m9ivA3FZkAHWUGifE1Y,3156
436
442
  omnibase_infra/nodes/effects/models/model_registry_request.py,sha256=rODMCLXdTAo5KbNZ6LsdJVgi3UtiG4tDG2qaHffPj6o,4986
437
- omnibase_infra/nodes/effects/models/model_registry_response.py,sha256=ba5UZVVyk3fc06H5SWPX8gf4n8EPl9ial32eFoIPLKA,9873
438
- omnibase_infra/nodes/effects/protocol_consul_client.py,sha256=OrAWG3Q8uq2PL-oHF8c41LTGAYK64oFcr6A4iiewRr0,2985
443
+ omnibase_infra/nodes/effects/models/model_registry_response.py,sha256=7vhGcB5d83l1Nb2_CoVynKbQSaNb75MIaqytco_BmGg,9859
444
+ omnibase_infra/nodes/effects/protocol_consul_client.py,sha256=iOWP1YkIeI_NT0hwJHGAznFIZ__iPyB_McDSC88kd3g,2971
439
445
  omnibase_infra/nodes/effects/protocol_effect_idempotency_store.py,sha256=cGJmDLSBMDEy7GnXS8OVauR2emmhFNa_B0uavOjCoiM,5163
440
- omnibase_infra/nodes/effects/protocol_postgres_adapter.py,sha256=foLR6ZRv1EqfrZVxo9DTM5uunhkdCncnAr-6gqSEw8M,3198
441
- omnibase_infra/nodes/effects/registry_effect.py,sha256=dSoqw_9hF7GiYQ6a9KtF7bgEXCW2FqH5b3Ud3b5CQaM,20975
446
+ omnibase_infra/nodes/effects/protocol_postgres_adapter.py,sha256=KnFoIjqwRq99iS_HZoyc3vDX5K3rooblrrY0ZOrN5UI,3184
447
+ omnibase_infra/nodes/effects/registry_effect.py,sha256=aSeozSVuUNrfZPbgfVZ-2GQhX7BN6X5p4-Xr3BAJKmw,20961
442
448
  omnibase_infra/nodes/effects/store_effect_idempotency_inmemory.py,sha256=6WXK7ZcWqPdpGLVpXbFzu-uIuc6vxCAgEpWTNHOy2Is,15566
443
449
  omnibase_infra/nodes/handlers/consul/contract.yaml,sha256=oBVUYP3tOD4uSbiKyAlG__U2CxyJKqkx5SjCEpeL69Q,2440
444
450
  omnibase_infra/nodes/handlers/db/contract.yaml,sha256=qe_hfEKuRNUXs8QZx4ByUUpZ5iog15o9hFP1iFbwPOA,2262
@@ -447,6 +453,20 @@ omnibase_infra/nodes/handlers/http/contract.yaml,sha256=pNAJVj5b3Xjsmg4YkGvRDk8K
447
453
  omnibase_infra/nodes/handlers/intent/contract.yaml,sha256=YAuhR4SWSH5i8w5UNgBfYpigim4Bgdo1hXZd0KenoN0,2079
448
454
  omnibase_infra/nodes/handlers/mcp/contract.yaml,sha256=2OVZU36-XuXRDmFlXE-VX6WPvgmxqUpELfuBfp-Pdvw,2070
449
455
  omnibase_infra/nodes/handlers/vault/contract.yaml,sha256=OUkwN7avF5vlo1qToFzRIU3MQDD9XjVcyLJgwnDu2QY,2739
456
+ omnibase_infra/nodes/node_contract_persistence_effect/__init__.py,sha256=qdkOIGcFqcLjQNkVwDPS0ocbXSLhl2JgfFzuBQxYhSE,3581
457
+ omnibase_infra/nodes/node_contract_persistence_effect/contract.yaml,sha256=BAf5k3C1biXFGpwR_w6BsipBpffEtDtwfexw-A2n7f0,20951
458
+ omnibase_infra/nodes/node_contract_persistence_effect/handlers/__init__.py,sha256=578BbmD5Pdvn1AE6DEJu2l3LNkRJXGj0KTC__maTuJA,3026
459
+ omnibase_infra/nodes/node_contract_persistence_effect/handlers/handler_postgres_cleanup_topics.py,sha256=Pwz_x4_6iqYpZoDFTF_ZHsVAhyGT_oqQg9m7L2uMSew,8075
460
+ omnibase_infra/nodes/node_contract_persistence_effect/handlers/handler_postgres_contract_upsert.py,sha256=l6f2S8VhTg8LSQ_-t6tDJ_q-3pc-W4lZeD2DYGhFR_g,8937
461
+ omnibase_infra/nodes/node_contract_persistence_effect/handlers/handler_postgres_deactivate.py,sha256=vPoBFGBBmVGSLjPqkx6NIJwFBQFL1ARsrzUYkeVq8Qk,7100
462
+ omnibase_infra/nodes/node_contract_persistence_effect/handlers/handler_postgres_heartbeat.py,sha256=zLicSl-ZZ1du2R5gYKcN4WQwDJoekJ03dDIMJJJSVvU,9228
463
+ omnibase_infra/nodes/node_contract_persistence_effect/handlers/handler_postgres_mark_stale.py,sha256=VU_PwCLHZUsVVrIIXAbCfCp0IWg3wN1-Agzw2EX66R8,7674
464
+ omnibase_infra/nodes/node_contract_persistence_effect/handlers/handler_postgres_topic_update.py,sha256=Mlj4_wdxvW6rTcwSbBKfXA647k_jxasZl27Z7EmtHMk,11446
465
+ omnibase_infra/nodes/node_contract_persistence_effect/models/__init__.py,sha256=OMVxCw3VcwdEUwppsOlRz9G-HoCcyesdYA7SVV_d_go,391
466
+ omnibase_infra/nodes/node_contract_persistence_effect/models/model_persistence_result.py,sha256=fNuPzSx_CfrnCtA___US8OifbFu3rXGmlqVka6KjvUA,1851
467
+ omnibase_infra/nodes/node_contract_persistence_effect/node.py,sha256=2UrQYGKrCpBYVU4BpC3QDRY9my4S5MyxU6zzWNMl8U8,4609
468
+ omnibase_infra/nodes/node_contract_persistence_effect/registry/__init__.py,sha256=uBxwk1ZwJI4j3jDURdRM-6Lru0isgnyCppPn09UbcCY,945
469
+ omnibase_infra/nodes/node_contract_persistence_effect/registry/registry_infra_contract_persistence_effect.py,sha256=vMzdffk7msX_6zkJAY6yR4IHs0V7K76K7j92LpPZZ3s,7084
450
470
  omnibase_infra/nodes/node_intent_storage_effect/__init__.py,sha256=CVxx3WtXt_BcSgEG5496N5n7ZCK8FZFmx4jt9sPwUjE,1864
451
471
  omnibase_infra/nodes/node_intent_storage_effect/contract.yaml,sha256=GSECd-8WAxytIwUQQTnP7167S0bD-1roAGaI08e_K9Q,6642
452
472
  omnibase_infra/nodes/node_intent_storage_effect/models/__init__.py,sha256=XZ6L3PLHjNvnxRmJnDtVVWCsmZVfKdxnrenQWdJ1_D8,778
@@ -543,7 +563,7 @@ omnibase_infra/nodes/node_registry_effect/handlers/handler_consul_register.py,sh
543
563
  omnibase_infra/nodes/node_registry_effect/handlers/handler_partial_retry.py,sha256=bkE26WS85QLZimLAMOTQHXyNqQMn26pZI1NS63zJabw,17391
544
564
  omnibase_infra/nodes/node_registry_effect/handlers/handler_postgres_deactivate.py,sha256=u4S-YiW5Y41R7PPRl1gML8RmS4suj-UASmfwr1PIRg0,8583
545
565
  omnibase_infra/nodes/node_registry_effect/handlers/handler_postgres_upsert.py,sha256=a2hI1eJw4irGCWSeLjmezejnfeFYOidNiWsWEfR7LR0,8164
546
- omnibase_infra/nodes/node_registry_effect/models/__init__.py,sha256=TyzVu1RMPiiIDfbUBgFim0pECLysKZObYE5FpJ_h4vc,1295
566
+ omnibase_infra/nodes/node_registry_effect/models/__init__.py,sha256=5dHsE0Yw7TFHRb3JxTKMAm1WWtbG9gIWomdFU2iZWz0,1317
547
567
  omnibase_infra/nodes/node_registry_effect/models/model_partial_retry_request.py,sha256=RmWC9oSGnHaDIfDiyB13xlUFHICMOlelyd6UZmwz9oc,3265
548
568
  omnibase_infra/nodes/node_registry_effect/node.py,sha256=50roUBWmSmZ-OOzSTGAaj_2MVlnA_0FntZB2t7Gc9j0,4759
549
569
  omnibase_infra/nodes/node_registry_effect/registry/__init__.py,sha256=v3CwlgWv-Ack7lqp5zuToY7Pm7CEY4heq633VCQKmHM,821
@@ -605,9 +625,10 @@ omnibase_infra/plugins/models/model_plugin_context.py,sha256=uWdntDN5bfQlm2HROMJ
605
625
  omnibase_infra/plugins/models/model_plugin_input_data.py,sha256=LL4pOtZh-rZQxpJTvXN9cW7CEwEk_jW0PRyR1HnTiwQ,1828
606
626
  omnibase_infra/plugins/models/model_plugin_output_data.py,sha256=8glXQ77pVWduSvcAIBpCgklM415WKU5RTpbyZ11uV3Y,1913
607
627
  omnibase_infra/plugins/plugin_compute_base.py,sha256=bH22R_vwjVa_kleAk_s02ara_QPr5BV_5Irhqr9zO8Y,19198
608
- omnibase_infra/projectors/__init__.py,sha256=qMRv7VvD6EhtM-J5o_iR9fVf7ji2PkmiWBzn5owIRFY,987
628
+ omnibase_infra/projectors/__init__.py,sha256=acmy26NsDUD30Pb3GgfCp9HceV1VVco7-afnF-f4zZ4,1273
609
629
  omnibase_infra/projectors/contracts/__init__.py,sha256=RwpsCbhryj8Q6eqn0P8E-cbs4Xk_NzM5Qr3TOw6e2zI,2128
610
630
  omnibase_infra/projectors/contracts/registration_projector.yaml,sha256=IYmV93JvvjWCY1eQUzxvYS1PlBXFC-m8Vi0nGJxT7H8,14848
631
+ omnibase_infra/projectors/projection_reader_contract.py,sha256=Em4eqt-a5j7k9eoFi2-DPbQ4t3tMMqliSQIftHHMhro,47982
611
632
  omnibase_infra/projectors/projection_reader_registration.py,sha256=0JG81-r1alBmMbVeDP1c7fypKesPhHiErAT3NtIp4Wg,61237
612
633
  omnibase_infra/projectors/snapshot_publisher_registration.py,sha256=lY-HE3d0Dt6VKseR7MwkxPuVSTdL2iz56dQ20huy-SU,52269
613
634
  omnibase_infra/protocols/__init__.py,sha256=7overzMVoFRZPBVhyyD7kCMMBdmwTVoSWbtmXapwGVQ,4381
@@ -625,7 +646,7 @@ omnibase_infra/protocols/protocol_projector_schema_validator.py,sha256=8WT49CaWA
625
646
  omnibase_infra/protocols/protocol_registry_metrics.py,sha256=H8jZ55qk7DfUStPU9Tt7Q5LO2Gqg2LvtEFeLBWa-FR0,7445
626
647
  omnibase_infra/protocols/protocol_snapshot_publisher.py,sha256=ClZFzjRkazCuF0I4C36xoRUDVwgBx2uqpUqVyZ6DTAs,15148
627
648
  omnibase_infra/protocols/protocol_snapshot_store.py,sha256=v3HFSnqJaH21jE3XrDXAKfE9nXhVb28Vj3m75Xy3hAU,21422
628
- omnibase_infra/runtime/__init__.py,sha256=0L1cDIPkAqC3vjyXzTzLHloujmgBJ0p1zrGseRTSwPk,15774
649
+ omnibase_infra/runtime/__init__.py,sha256=7OtBGRXlR2JdXfJxa9i1STqtFxq0KAzxTmSuSHc2i28,15963
629
650
  omnibase_infra/runtime/baseline_subscriptions.py,sha256=RSQSEarP0SvFoUkGFGgDWuZUhVY8HQYTo7UtlwIxNqQ,5278
630
651
  omnibase_infra/runtime/binding_config_resolver.py,sha256=wz6lAq2DUT2KcxvHoVeJA2mPo3WtgwAh2DAkufc5pc8,115864
631
652
  omnibase_infra/runtime/binding_resolver.py,sha256=SyiSC-5h5rGAVAi9zzH7FED_8lbXJlbrj0MLrMaBH8Q,28080
@@ -636,8 +657,14 @@ omnibase_infra/runtime/contract_handler_discovery.py,sha256=1LrZHKkHcpdyaMDXxK3d
636
657
  omnibase_infra/runtime/contract_loaders/__init__.py,sha256=Ake8OEryHodK1SxmEBIuqVAH3Uw3ySSsAxqvSaDfRyY,1758
637
658
  omnibase_infra/runtime/contract_loaders/handler_routing_loader.py,sha256=bvvZIxjl3mJw9TknRBwPa9ybXXl1J6r7PFkSkdPPLYk,17313
638
659
  omnibase_infra/runtime/contract_loaders/operation_bindings_loader.py,sha256=TaOsLzdejsuIH-lZ-oY7eA_U_KMVyIc044oXU26MH6s,29808
639
- omnibase_infra/runtime/db/__init__.py,sha256=WZLFf7XIXAefkUIiA1sg3Npw120P9zaqK6862mq7wgM,2380
640
- omnibase_infra/runtime/db/models/__init__.py,sha256=ENQ696584GQHSvbVN85PgEo3Agij5Oo10Vz7-FoVYBE,1377
660
+ omnibase_infra/runtime/contract_registration_event_router.py,sha256=Q9cN4138QR6wN0gPxNF6wbQYeHxoQ4Ni9IJkFG6ukQ8,19322
661
+ omnibase_infra/runtime/db/__init__.py,sha256=cfouNum_H4-aLc-Dm6rmCfNmiQlhDp8_NNbbYlk0ZVk,2470
662
+ omnibase_infra/runtime/db/models/__init__.py,sha256=vl2377CkSMIbGeZi_S-L6z6B7wODvc4gyzai2IDsdvo,1747
663
+ omnibase_infra/runtime/db/models/model_db_operation.py,sha256=vBZOMm1kI4lL__NLU91q6TnwwPoZIwKIiGN_MNm8hxA,1448
664
+ omnibase_infra/runtime/db/models/model_db_param.py,sha256=IhnOKpvvuJRn0ZUtWY_u0aGq8onQSwJV_tKQvzckffg,666
665
+ omnibase_infra/runtime/db/models/model_db_repository_contract.py,sha256=s8M-bGMCAYU7nVpJjHCqhOO6YS4Y00ND-IJLbprPXqk,1497
666
+ omnibase_infra/runtime/db/models/model_db_return.py,sha256=BlN0NV0n2WxVuMWluq7bpjUbw3El7smhxfYYmzWJutU,755
667
+ omnibase_infra/runtime/db/models/model_db_safety_policy.py,sha256=4qiVNMmQdlM19vn9aMqJItHv2Qn1UAZXZ0XXjGDZsOc,1019
641
668
  omnibase_infra/runtime/db/models/model_repository_runtime_config.py,sha256=4X231FUSe8UywlFIhb4cuyEBk2G0FiJP7-X5-f8Zop0,7826
642
669
  omnibase_infra/runtime/db/postgres_repository_runtime.py,sha256=cijrpfrK1vwt6RqqHIi1PTfqPxfQ3IQT82dDx4eGQAE,21673
643
670
  omnibase_infra/runtime/dispatch_context_enforcer.py,sha256=44McRbtsqkGTiz7dQTOtV4AmisYOlVKKhI_1n5Jwziw,16620
@@ -662,6 +689,7 @@ omnibase_infra/runtime/handler_identity.py,sha256=JmBj3Z_nxCRdmOgvyuxdDJBiNno1SK
662
689
  omnibase_infra/runtime/handler_plugin_loader.py,sha256=x1HWJZ09hrS5NmLHmY-hxJFOd1sTTDvAkIrk4wQ-sjI,90613
663
690
  omnibase_infra/runtime/handler_registry.py,sha256=2f7Lav0yUW31eks9dp7jUfKuY6ZdF_1g1Hw_P-BOll4,11490
664
691
  omnibase_infra/runtime/handler_source_resolver.py,sha256=s3qdByzR_3xufqeETpz_foJmcLqYZC1kRzUHUj2Xyao,15525
692
+ omnibase_infra/runtime/intent_execution_router.py,sha256=eRJrg8Yp6Yzh57xuq6I1A7hplXZ2iMXHLUB5yDgP4w8,17116
665
693
  omnibase_infra/runtime/invocation_security_enforcer.py,sha256=655igxUO2pHoABtaLngwf_hiXfx8ASDmg0rl_hl35Bw,17005
666
694
  omnibase_infra/runtime/kafka_contract_source.py,sha256=YV_cSI-24jAJbT8QbPkHCH69_91mmouC9FFFXOABvbo,36605
667
695
  omnibase_infra/runtime/kernel.py,sha256=Oifnxdg1qlGgngWMttH1P0OhhI6_y0zoTamzCf4GOjc,1192
@@ -670,7 +698,7 @@ omnibase_infra/runtime/mixin_semver_cache.py,sha256=mB4y_W8QY6cG_6dZSc4V9-H1lxNN
670
698
  omnibase_infra/runtime/mixins/__init__.py,sha256=E67jea1leBMnxYfm94cq6eBpG4W95W2o0JmL8INN-dE,795
671
699
  omnibase_infra/runtime/mixins/mixin_projector_notification_publishing.py,sha256=RYBuzbFH3Fnr6gtL25AG0GMe3Pm5xqVsiLYmRGeQusU,21781
672
700
  omnibase_infra/runtime/mixins/mixin_projector_sql_operations.py,sha256=b9t7v7MEhPro3uREHq8wQ6G5aU6Ch0MHBlvnIzLgBzc,29866
673
- omnibase_infra/runtime/models/__init__.py,sha256=Hh9CpAu7P4aAtA4WH2cChszaa6bPi0Qp7Rua5tmM86o,10790
701
+ omnibase_infra/runtime/models/__init__.py,sha256=JJFzTwwqKfE-0jX_YWo5jBHu9jn9xioMrtJX99yneuo,11178
674
702
  omnibase_infra/runtime/models/model_batch_lifecycle_result.py,sha256=Bg2UCKJyhcSQWAo9BvheczvdHp-jfrYHWnKI65bdLvM,7040
675
703
  omnibase_infra/runtime/models/model_binding_config.py,sha256=IQZcKEoy5KfOoQbvcjQNfL8Ty3tN44t06VTKk8Cikvc,5786
676
704
  omnibase_infra/runtime/models/model_binding_config_cache_stats.py,sha256=a8P4HsyByPEBlXUlfnuZwEaYBpT2BUv0lA6kIwIHq_I,4187
@@ -682,6 +710,7 @@ omnibase_infra/runtime/models/model_config_cache_entry.py,sha256=PVeq2bTQ13vlgtZ
682
710
  omnibase_infra/runtime/models/model_config_ref.py,sha256=UVo0rQhotUegOhZOQn1aug5AUzycu5zADgBTsi0CyS0,11905
683
711
  omnibase_infra/runtime/models/model_config_ref_parse_result.py,sha256=tecVn9p_cMCDKbnwE-K7b6SkwtWHOnYRJwNnjvwvCq0,4202
684
712
  omnibase_infra/runtime/models/model_contract_load_result.py,sha256=TsE3J1ELhTq8jNTpyXDlSTmjeg7VNQaTfwoqS5i98LU,7303
713
+ omnibase_infra/runtime/models/model_contract_registry_config.py,sha256=PYbZ_JLULTwtVvRkuXKBZoTu1ydGDTtl89R6ZwQOgFw,1301
685
714
  omnibase_infra/runtime/models/model_domain_plugin_config.py,sha256=BcC5J3UrZ1aHoFH7q5SSzZzzCbjbCz3xyvkE0uuyyE4,3111
686
715
  omnibase_infra/runtime/models/model_domain_plugin_result.py,sha256=2VqEcey28FeU2l4CHCJmvRv81kIghq7N-7WMOprCSMc,9046
687
716
  omnibase_infra/runtime/models/model_duplicate_response.py,sha256=x6NSukfpRmw-IBEnB4YE_OnmoZdRw6ZqVXaciIBUzE8,1772
@@ -690,6 +719,7 @@ omnibase_infra/runtime/models/model_event_bus_config.py,sha256=dCpiijGEWbVU9yfGI
690
719
  omnibase_infra/runtime/models/model_failed_component.py,sha256=YOXoM4aBuxitl7oG48WybJsegz3F0IuAOD9T7Tbhhe4,1500
691
720
  omnibase_infra/runtime/models/model_health_check_response.py,sha256=BhaFLCpJAUClsoWRnuSOFfxvQwOj7INWQkeInUheIbM,5263
692
721
  omnibase_infra/runtime/models/model_health_check_result.py,sha256=_JGj0qzYeDgVuMuL9Idcn3NTc0YewL_aX9sMyQrVP5Q,6996
722
+ omnibase_infra/runtime/models/model_intent_execution_summary.py,sha256=ABDAc-31qff-cgHkuqnGyi76R-YRMN75XEkG73tXs5M,2880
693
723
  omnibase_infra/runtime/models/model_lifecycle_result.py,sha256=oNPH8NIoF0ID1LQu-cVTdeUTrsp5nuZ_FQS8MDrqDvg,8033
694
724
  omnibase_infra/runtime/models/model_logging_config.py,sha256=g_Ye2R3aFLK0obaBu1p2-fVay24Xbe4MThkP0kGIics,1063
695
725
  omnibase_infra/runtime/models/model_optional_correlation_id.py,sha256=ZwMonnqdJjio4ZN3usBjseauYr7fhwczkAgd4xH2Mts,5712
@@ -704,7 +734,7 @@ omnibase_infra/runtime/models/model_projector_notification_config.py,sha256=2vcB
704
734
  omnibase_infra/runtime/models/model_projector_plugin_loader_config.py,sha256=NkYI1PKJ7kdSRyYxCwsbLMzEWUEO9cxZlYqMfqr4Y9o,1713
705
735
  omnibase_infra/runtime/models/model_protocol_registration_config.py,sha256=_pBdCDTyCdK-H2g56JeNMWXW6E8VL_Ne6EuK7Lcqi-8,2100
706
736
  omnibase_infra/runtime/models/model_retry_policy.py,sha256=noqilu5nOhvbtP5XUFofa4n9PDEriUxnOHWGcZUFC70,3244
707
- omnibase_infra/runtime/models/model_runtime_config.py,sha256=cDZej313ilqj0pU1HgJ6HUa4nkNVmZLLMThIJy0JQqg,5825
737
+ omnibase_infra/runtime/models/model_runtime_config.py,sha256=0iiii5dB7GxgfTKFXLQXGlWa8HgjCtj6V-OzgI2ABow,6177
708
738
  omnibase_infra/runtime/models/model_runtime_contract_config.py,sha256=EinP52kpzzXbqOepmffF5WWg_Y4wc8hW3ZGX-g2j75I,8811
709
739
  omnibase_infra/runtime/models/model_runtime_scheduler_config.py,sha256=Gm3aH3i9gdX36kchRJjADlNSJRCobf1crQ6qtnIbhbo,23042
710
740
  omnibase_infra/runtime/models/model_runtime_scheduler_metrics.py,sha256=lqnNoMF8IPxD2U70KDcPLC4eIdIC93NZxuNUWsVDfQQ,7501
@@ -731,7 +761,8 @@ omnibase_infra/runtime/protocol_handler_discovery.py,sha256=HQwm-E-0lW_L_x-5dLxl
731
761
  omnibase_infra/runtime/protocol_handler_plugin_loader.py,sha256=dhw8pD60n52gmwQvSGOlWGYcTq4kznjOa3ogXsYW7QM,13378
732
762
  omnibase_infra/runtime/protocol_lifecycle_executor.py,sha256=h6CDRhxa2RZXzC3dAFmfx_SMMPK1Jo6zU7f_SIG3P7A,16879
733
763
  omnibase_infra/runtime/protocol_policy.py,sha256=Bo8W_zEN5oWFlEuA-5tDBQ0C9WFxpFp5CABQHlbNCSc,13935
734
- omnibase_infra/runtime/protocols/__init__.py,sha256=AfeUEoShpiq6XVH8ZkTEREJEK00EzQtYYm8vUqgmZi0,1346
764
+ omnibase_infra/runtime/protocols/__init__.py,sha256=9TgLzK3NLT1Iy_lgjEt9yqtOIvAHnMj-ma98TRymJpo,1913
765
+ omnibase_infra/runtime/protocols/protocol_intent_executor.py,sha256=uXhuuuiFMpPxa9AOscKCIM0xIkU3PQIc2gn_4-MPq40,3965
735
766
  omnibase_infra/runtime/protocols/protocol_runtime_scheduler.py,sha256=kI3GKVhkPrw76DExrmEwokLlfRmI3NYuNwJpVjpfl-4,18205
736
767
  omnibase_infra/runtime/publisher_topic_scoped.py,sha256=SIA1CESKu4O3adrE-DJm_e72FefE80IDt9ZwuQTUu8Y,10362
737
768
  omnibase_infra/runtime/registry/__init__.py,sha256=VwU2J-D2lbORXBw_1Cq7jDUjwH1RaDEHhqY-2oohAg8,3225
@@ -744,11 +775,12 @@ omnibase_infra/runtime/registry_compute.py,sha256=WZIiPteOwA3SY1Rl6Pr-zC57d5-3r6
744
775
  omnibase_infra/runtime/registry_contract_source.py,sha256=ub1K-CAgND3lpbtptHOxxwKSU9nP-k6amJR9vh7o4Rs,23741
745
776
  omnibase_infra/runtime/registry_dispatcher.py,sha256=81eb_-2FMXGekDx_PD7wBsoVmjmCIHLtTosLz4kYSmQ,25007
746
777
  omnibase_infra/runtime/registry_policy.py,sha256=iwp0DXK6XDRoK7drd0cyGu33vRVC8YDomb9Y5SUSvMA,51648
778
+ omnibase_infra/runtime/request_response_wiring.py,sha256=nx1BupQVrnv6xT6H0lpV3nnJ9ohDIoBcL7OXzxQpVgA,28407
747
779
  omnibase_infra/runtime/runtime_contract_config_loader.py,sha256=PwXLgL9w23a18fp9gmT4cptr9-t7pHgNAUuJuwwA640,15098
748
780
  omnibase_infra/runtime/runtime_scheduler.py,sha256=D5b69cBuGGxAoLedQd51lq0FoQfN6vM5xDDRoc2CG6E,41861
749
781
  omnibase_infra/runtime/secret_resolver.py,sha256=WxyfuvtGQ5tbzswsuQ7nn2QKpa0-wLd9cJgHj83vfQM,88059
750
782
  omnibase_infra/runtime/security_metadata_validator.py,sha256=q9EJzU3mTWxD6belMeC2vvX7JCPrbxy8Rjvz134yukU,30435
751
- omnibase_infra/runtime/service_kernel.py,sha256=ctxP20KsaIoi382kyiWFwLQMkItSMhEJdi9iyTrUex8,74605
783
+ omnibase_infra/runtime/service_kernel.py,sha256=_zAZgAT4m9WefDiM8yrXNh-AazOc15ttxfJFhDECI5A,88266
752
784
  omnibase_infra/runtime/service_message_dispatch_engine.py,sha256=lu1SygCH2Np_JNEtt2c__jnONt0K6PqY2nvOllwKc8I,109067
753
785
  omnibase_infra/runtime/service_runtime_host_process.py,sha256=86Vx9McpicW0exZnUCDWTD890dTpOlMz2Tr0CkiocxI,149670
754
786
  omnibase_infra/runtime/transition_notification_outbox.py,sha256=4O1M-WEGq9qlATYkKe8xmBiis09IlHvlg2j1udQtXHo,48916
@@ -800,21 +832,27 @@ omnibase_infra/services/observability/agent_actions/tests/test_writer.py,sha256=
800
832
  omnibase_infra/services/observability/agent_actions/writer_postgres.py,sha256=XaN29J8ZYp9iHPFaL447CHHpWjhgvQkiy3N78uCm2J8,34629
801
833
  omnibase_infra/services/registry_api/__init__.py,sha256=o03lZchx9hVkHbzQciUpmR_O8NviZa-E30kB2iUNMs4,1192
802
834
  omnibase_infra/services/registry_api/main.py,sha256=fUWqg1p0mLFeRa-1KcBiGyb7H-ZNZUgjNu2XLLyeDag,8626
803
- omnibase_infra/services/registry_api/models/__init__.py,sha256=wdSWcsOE3o7x2LHLSp6e4twJj42fswxIHoMY25dxmXQ,2284
835
+ omnibase_infra/services/registry_api/models/__init__.py,sha256=3TODWxMG-GlN9QgEuupHOi_Shwl7uYY0MVQMPmKKeRo,3123
804
836
  omnibase_infra/services/registry_api/models/model_capability_widget_mapping.py,sha256=q0MZ7HhuS8g07101oR2IWVsSWAlw1eewUBFwHNXL5-4,988
837
+ omnibase_infra/services/registry_api/models/model_contract_ref.py,sha256=cOyLa0-UlDD3cFattLA_rSEFHoyq1H6xhdI6SChHB10,1363
838
+ omnibase_infra/services/registry_api/models/model_contract_view.py,sha256=t9-QwrkNn4UXrJ_XYJ3rEr4GbTCi65hLy-DsgHu5Ftw,2855
805
839
  omnibase_infra/services/registry_api/models/model_pagination_info.py,sha256=aitTcnG1GJhM9snSxM73hYISBoXzbXsiVantknIF1dk,1116
806
840
  omnibase_infra/services/registry_api/models/model_registry_discovery_response.py,sha256=GKuM7kxTMbB-ASFfj0FJTXP3Mn_G1hJEgJ6WLCyMnTI,2308
807
841
  omnibase_infra/services/registry_api/models/model_registry_health_response.py,sha256=gJWos7ofty0bRHBo4M8bvfVo81UD1vXfZ8QUgbCpnQU,1325
808
842
  omnibase_infra/services/registry_api/models/model_registry_instance_view.py,sha256=kjtC5MEWWnss92obMCqTni51wndf-h8vDxBIOXZabZ4,2669
809
843
  omnibase_infra/services/registry_api/models/model_registry_node_view.py,sha256=gmLctF4v--XkaQygFa-wPlury7tPZrNhyOnCte1KlG4,2825
810
844
  omnibase_infra/services/registry_api/models/model_registry_summary.py,sha256=Jg18br2Uqan45vRsv9mE8_9k3KRIGituSovQrPUFFz4,1662
845
+ omnibase_infra/services/registry_api/models/model_response_contracts.py,sha256=tsj0xETv_TGx9EzaBhSwhIlEUMu8ZyjG0pT5-B1DEqM,1533
811
846
  omnibase_infra/services/registry_api/models/model_response_list_instances.py,sha256=Tt3oXIdepSkZmRfO_4-zZLcMw9K1-dIYCwyUFg4SpFM,1318
812
847
  omnibase_infra/services/registry_api/models/model_response_list_nodes.py,sha256=7CN0J3a1kXTLhPw7GAH5jHtMSGWlBZf2PjBpMcNAU90,1589
848
+ omnibase_infra/services/registry_api/models/model_response_topics.py,sha256=j21vb9TJYaYzwXqgYr0bILUAVS4OIIW2TIDPnEub-RM,1513
849
+ omnibase_infra/services/registry_api/models/model_topic_summary.py,sha256=79PjJy7T2H2bXcmIEWdOdRZhv1N_Q7ydMAs2T_t65x4,1671
850
+ omnibase_infra/services/registry_api/models/model_topic_view.py,sha256=w8Fr_gUqZwdAX4QBJ8te9Tau7TJvbykzLAPfDyL674c,1912
813
851
  omnibase_infra/services/registry_api/models/model_warning.py,sha256=0sFWUOuPPGv-9Be41leYEjlLfMrhANQ67hYpj0bP3vM,1268
814
852
  omnibase_infra/services/registry_api/models/model_widget_defaults.py,sha256=Po8YWS5D_JZ7Lg6FinrAxyQNYSq9eOqOF4U3Hp2_Ffc,699
815
853
  omnibase_infra/services/registry_api/models/model_widget_mapping.py,sha256=y6ScB3D1btHsuabcH2rJ1083PHbRREcpfQ_p0Tr9flQ,1592
816
- omnibase_infra/services/registry_api/routes.py,sha256=pixbm-uzjofZ48c9y3kFaZbouRst9DjEnhPpKVxQaK0,12301
817
- omnibase_infra/services/registry_api/service.py,sha256=Fb_6Cfqs2Nc1bklUb5zsgU8cpofKiCWwXD73wAlKvag,32740
854
+ omnibase_infra/services/registry_api/routes.py,sha256=sC9BqQX685EukrIzgKOJkkTqohdTogAo-B4-XeGA7DI,19234
855
+ omnibase_infra/services/registry_api/service.py,sha256=4HTyBQvV-NeitvJafDSUstwZ-NC00NGIu-vY0UTXo1U,53766
818
856
  omnibase_infra/services/service_capability_query.py,sha256=pJlyMcf35xVsUUL0ViWFMWD85tEmoMLPr8aMO5aMXj0,37828
819
857
  omnibase_infra/services/service_health.py,sha256=Czxsitf81ptQq5XD0KKnXnDDQPvaobaf9KXJQuTs58A,37451
820
858
  omnibase_infra/services/service_node_selector.py,sha256=bcK1fYhFREOfTmrLhXV9g90tNb-5PVsRRSzH-ijxPos,21033
@@ -862,7 +900,7 @@ omnibase_infra/validation/contracts/declarative_node.validation.yaml,sha256=bV2Y
862
900
  omnibase_infra/validation/contracts/security.validation.yaml,sha256=NixKgUo7KliQr1yJBY65j2WaxJv_XKoUSCA6pB77DiQ,3858
863
901
  omnibase_infra/validation/enums/__init__.py,sha256=J4vRP14R2lHaixXCk1MH5Bzh3Vd0pZmySpN8PkqJc4c,278
864
902
  omnibase_infra/validation/enums/enum_contract_violation_severity.py,sha256=beR4vRNXtQ7ckOSOYZHn3NAacZBNTX1csG9_Y6SPd7M,414
865
- omnibase_infra/validation/infra_validators.py,sha256=jK7b_6Sby9Fa_YTp93BQOfl1gbPbZnRq2Qjn6bUyOYU,61475
903
+ omnibase_infra/validation/infra_validators.py,sha256=weyM3xWu-Ai3iXX8ohodatJ6geman8eoPe_N6t4-9k8,61631
866
904
  omnibase_infra/validation/linter_contract.py,sha256=Lv6UkyXx7WFm7Yxwwt8ahXRl-QWfY980Ge7OABUcE5s,33629
867
905
  omnibase_infra/validation/mixin_any_type_classification.py,sha256=F1WoGIR_RzZpiHPOVIr-6gOLzD2qWJBnYoqPrLCIiVU,3957
868
906
  omnibase_infra/validation/mixin_any_type_exemption.py,sha256=KmKZC8znLuqOuT9vWsUjUF5Lb3aqoI3XgJLXTNNYqIU,23002
@@ -873,7 +911,7 @@ omnibase_infra/validation/models/__init__.py,sha256=p-8vUFXuk-BeJYaWXBbk5DrHq9DZ
873
911
  omnibase_infra/validation/models/model_contract_lint_result.py,sha256=Td6OH1VIV7JHPTTZN_iKLM1BQRCtxsjZIMR_DrNau-k,3343
874
912
  omnibase_infra/validation/models/model_contract_violation.py,sha256=xRYr-waBuwNVmcHS-ZqoD4g0iLzwtZiibb-Sc4BibaU,1362
875
913
  omnibase_infra/validation/service_validation_aggregator.py,sha256=pm7kvtch85hc0ajSKMZ_DPVVsBKZ7JaVYSJsQfpQHr4,14019
876
- omnibase_infra/validation/validation_exemptions.yaml,sha256=wIYYCFfi1NmB6b2lPD3G-Nyt4gO7zv3Wz11z3VsyJtk,125533
914
+ omnibase_infra/validation/validation_exemptions.yaml,sha256=_5AEE9AZXrstd_LIUpqWZ-yMel9W2J2oNlsClE_wghQ,127916
877
915
  omnibase_infra/validation/validator_any_type.py,sha256=m89Ae6ctmS920yjy6yUvARMcTMVsMnrGby9VlaLRVVw,26285
878
916
  omnibase_infra/validation/validator_chain_propagation.py,sha256=JmoYAAH9E0Z_HWh2AGG1WS5zc3lPtq46CjQmmm7IYck,35686
879
917
  omnibase_infra/validation/validator_declarative_node.py,sha256=dl8b1eZK9NpzyHZpx5_L_GAnGuaNl3HIRc_IdK1MmYo,31838
@@ -884,8 +922,8 @@ omnibase_infra/validation/validator_routing_coverage.py,sha256=51vYEi5NhU6wqohk2
884
922
  omnibase_infra/validation/validator_runtime_shape.py,sha256=9Xl37_dNDinT7nr-BoJ9fG3O5cT1_j6N-C7bojwQi3g,39033
885
923
  omnibase_infra/validation/validator_security.py,sha256=Yn_kwxBtPzEj1GzrW0OafL-bR-FgoqdeFzseQqF2_B8,20622
886
924
  omnibase_infra/validation/validator_topic_category.py,sha256=1y6STpSNIJsE2AmX5f8PVzPuOfoQmedgocSbEqOdtrM,48798
887
- omnibase_infra-0.3.1.dist-info/METADATA,sha256=Y2H_CE7DKXZubx6YDg4IIwvUG1cYsMuB0uJ1sAb7CEI,7554
888
- omnibase_infra-0.3.1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
889
- omnibase_infra-0.3.1.dist-info/entry_points.txt,sha256=8jORmczvjPYrahcGRwxtuVqh8KIFOfb04GgnRnQfNsQ,166
890
- omnibase_infra-0.3.1.dist-info/licenses/LICENSE,sha256=CwYWppeN0neFHYdbbUdHbR4_PiyTYnmk6ufFWuVsL7I,1070
891
- omnibase_infra-0.3.1.dist-info/RECORD,,
925
+ omnibase_infra-0.3.2.dist-info/METADATA,sha256=NwvJX0G_UA0B7D5Cj9E7Fu0Edb0rImvzxBq1ooKUTw8,7555
926
+ omnibase_infra-0.3.2.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
927
+ omnibase_infra-0.3.2.dist-info/entry_points.txt,sha256=8jORmczvjPYrahcGRwxtuVqh8KIFOfb04GgnRnQfNsQ,166
928
+ omnibase_infra-0.3.2.dist-info/licenses/LICENSE,sha256=CwYWppeN0neFHYdbbUdHbR4_PiyTYnmk6ufFWuVsL7I,1070
929
+ omnibase_infra-0.3.2.dist-info/RECORD,,