messagefoundry 0.2.15__tar.gz → 0.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1225) hide show
  1. messagefoundry-0.3.1/.gitignore +140 -0
  2. messagefoundry-0.3.1/CHANGELOG.md +978 -0
  3. messagefoundry-0.3.1/PKG-INFO +270 -0
  4. messagefoundry-0.3.1/README.md +189 -0
  5. messagefoundry-0.3.1/messagefoundry/__init__.py +204 -0
  6. messagefoundry-0.3.1/messagefoundry/__main__.py +4286 -0
  7. messagefoundry-0.3.1/messagefoundry/actions.py +315 -0
  8. messagefoundry-0.3.1/messagefoundry/anon/__init__.py +96 -0
  9. messagefoundry-0.3.1/messagefoundry/anon/leak.py +62 -0
  10. messagefoundry-0.3.1/messagefoundry/anon/surrogates.py +388 -0
  11. messagefoundry-0.3.1/messagefoundry/api/_ui_seam.py +201 -0
  12. messagefoundry-0.3.1/messagefoundry/api/app.py +5644 -0
  13. messagefoundry-0.3.1/messagefoundry/api/approvals.py +199 -0
  14. messagefoundry-0.3.1/messagefoundry/api/auth_models.py +260 -0
  15. messagefoundry-0.3.1/messagefoundry/api/auth_routes.py +1033 -0
  16. messagefoundry-0.3.1/messagefoundry/api/client_networks.py +287 -0
  17. messagefoundry-0.3.1/messagefoundry/api/field_authz.py +102 -0
  18. messagefoundry-0.3.1/messagefoundry/api/metrics.py +541 -0
  19. messagefoundry-0.3.1/messagefoundry/api/models.py +1208 -0
  20. messagefoundry-0.3.1/messagefoundry/api/multipart.py +127 -0
  21. messagefoundry-0.3.1/messagefoundry/api/security.py +807 -0
  22. messagefoundry-0.3.1/messagefoundry/api/tls.py +58 -0
  23. messagefoundry-0.3.1/messagefoundry/api/tls_client_cert.py +110 -0
  24. messagefoundry-0.3.1/messagefoundry/apiclient/__init__.py +18 -0
  25. messagefoundry-0.3.1/messagefoundry/apiclient/client.py +752 -0
  26. messagefoundry-0.3.1/messagefoundry/auth/identity.py +79 -0
  27. messagefoundry-0.3.1/messagefoundry/auth/ldap.py +364 -0
  28. messagefoundry-0.3.1/messagefoundry/auth/oidc/__init__.py +72 -0
  29. messagefoundry-0.3.1/messagefoundry/auth/oidc/claims.py +286 -0
  30. messagefoundry-0.3.1/messagefoundry/auth/oidc/flow.py +283 -0
  31. messagefoundry-0.3.1/messagefoundry/auth/oidc/jwks.py +225 -0
  32. messagefoundry-0.3.1/messagefoundry/auth/oidc_http.py +132 -0
  33. messagefoundry-0.3.1/messagefoundry/auth/permissions.py +246 -0
  34. messagefoundry-0.3.1/messagefoundry/auth/reconcile.py +220 -0
  35. messagefoundry-0.3.1/messagefoundry/auth/service.py +2818 -0
  36. messagefoundry-0.3.1/messagefoundry/auth/totp.py +187 -0
  37. messagefoundry-0.3.1/messagefoundry/auth/trust_anchors.py +357 -0
  38. messagefoundry-0.3.1/messagefoundry/auth/webauthn.py +346 -0
  39. messagefoundry-0.3.1/messagefoundry/checks.py +1419 -0
  40. messagefoundry-0.3.1/messagefoundry/config/ai_policy.py +170 -0
  41. messagefoundry-0.3.1/messagefoundry/config/alerts_edit.py +198 -0
  42. messagefoundry-0.3.1/messagefoundry/config/code_sets.py +609 -0
  43. messagefoundry-0.3.1/messagefoundry/config/codeset_edit.py +635 -0
  44. messagefoundry-0.3.1/messagefoundry/config/connection_schema.py +297 -0
  45. messagefoundry-0.3.1/messagefoundry/config/connections_edit.py +381 -0
  46. messagefoundry-0.3.1/messagefoundry/config/connections_file.py +402 -0
  47. messagefoundry-0.3.1/messagefoundry/config/fhir_lookup.py +153 -0
  48. messagefoundry-0.3.1/messagefoundry/config/graph.py +1193 -0
  49. messagefoundry-0.3.1/messagefoundry/config/impact.py +670 -0
  50. messagefoundry-0.3.1/messagefoundry/config/memory_encryption.py +248 -0
  51. messagefoundry-0.3.1/messagefoundry/config/models.py +602 -0
  52. messagefoundry-0.3.1/messagefoundry/config/reachability.py +144 -0
  53. messagefoundry-0.3.1/messagefoundry/config/run_context.py +181 -0
  54. messagefoundry-0.3.1/messagefoundry/config/secretprovider.py +183 -0
  55. messagefoundry-0.3.1/messagefoundry/config/secretprovider_vault.py +132 -0
  56. messagefoundry-0.3.1/messagefoundry/config/security_edit.py +110 -0
  57. messagefoundry-0.3.1/messagefoundry/config/send_snapshot.py +51 -0
  58. messagefoundry-0.3.1/messagefoundry/config/settings.py +4036 -0
  59. messagefoundry-0.3.1/messagefoundry/config/tls_policy.py +795 -0
  60. messagefoundry-0.3.1/messagefoundry/config/wiring.py +4195 -0
  61. messagefoundry-0.3.1/messagefoundry/corepoint_import.py +2065 -0
  62. messagefoundry-0.3.1/messagefoundry/crashdump.py +165 -0
  63. messagefoundry-0.3.1/messagefoundry/diagnostics.py +58 -0
  64. messagefoundry-0.3.1/messagefoundry/generators/_core.py +589 -0
  65. messagefoundry-0.3.1/messagefoundry/generators/adt.py +230 -0
  66. messagefoundry-0.3.1/messagefoundry/generators/all_types.py +26 -0
  67. messagefoundry-0.3.1/messagefoundry/generators/documents.py +81 -0
  68. messagefoundry-0.3.1/messagefoundry/generators/rde.py +54 -0
  69. messagefoundry-0.3.1/messagefoundry/hl7schema.py +75 -0
  70. messagefoundry-0.3.1/messagefoundry/hl7structures.py +230 -0
  71. messagefoundry-0.3.1/messagefoundry/integrity.py +351 -0
  72. messagefoundry-0.3.1/messagefoundry/lens.py +3520 -0
  73. messagefoundry-0.3.1/messagefoundry/logging_setup.py +502 -0
  74. messagefoundry-0.3.1/messagefoundry/netaddr.py +108 -0
  75. messagefoundry-0.3.1/messagefoundry/parsing/__init__.py +148 -0
  76. messagefoundry-0.3.1/messagefoundry/parsing/_backend.py +51 -0
  77. messagefoundry-0.3.1/messagefoundry/parsing/_builtin_hl7.py +991 -0
  78. messagefoundry-0.3.1/messagefoundry/parsing/binary.py +520 -0
  79. messagefoundry-0.3.1/messagefoundry/parsing/compression.py +219 -0
  80. messagefoundry-0.3.1/messagefoundry/parsing/dicom/__init__.py +45 -0
  81. messagefoundry-0.3.1/messagefoundry/parsing/dicom/_deps.py +60 -0
  82. messagefoundry-0.3.1/messagefoundry/parsing/dicom/_inflate.py +164 -0
  83. messagefoundry-0.3.1/messagefoundry/parsing/dicom/dataset.py +187 -0
  84. messagefoundry-0.3.1/messagefoundry/parsing/dicom/errors.py +44 -0
  85. messagefoundry-0.3.1/messagefoundry/parsing/dicom/hl7_map.py +171 -0
  86. messagefoundry-0.3.1/messagefoundry/parsing/dicom/peek.py +116 -0
  87. messagefoundry-0.3.1/messagefoundry/parsing/fhir/_deps.py +57 -0
  88. messagefoundry-0.3.1/messagefoundry/parsing/message.py +766 -0
  89. messagefoundry-0.3.1/messagefoundry/parsing/peek.py +351 -0
  90. messagefoundry-0.3.1/messagefoundry/parsing/sniff.py +203 -0
  91. messagefoundry-0.3.1/messagefoundry/parsing/split.py +167 -0
  92. messagefoundry-0.3.1/messagefoundry/parsing/tree.py +128 -0
  93. messagefoundry-0.3.1/messagefoundry/parsing/x12/delimiters.py +140 -0
  94. messagefoundry-0.3.1/messagefoundry/parsing/x12/validate.py +218 -0
  95. messagefoundry-0.3.1/messagefoundry/parsing/xml/__init__.py +64 -0
  96. messagefoundry-0.3.1/messagefoundry/parsing/xml/errors.py +69 -0
  97. messagefoundry-0.3.1/messagefoundry/parsing/xml/harden.py +103 -0
  98. messagefoundry-0.3.1/messagefoundry/parsing/xml/message.py +155 -0
  99. messagefoundry-0.3.1/messagefoundry/parsing/xml/schema.py +90 -0
  100. messagefoundry-0.3.1/messagefoundry/parsing/xml/signature.py +79 -0
  101. messagefoundry-0.3.1/messagefoundry/parsing/xml/wsdl.py +345 -0
  102. messagefoundry-0.3.1/messagefoundry/pipeline/_sandbox_worker.py +208 -0
  103. messagefoundry-0.3.1/messagefoundry/pipeline/alert_sinks.py +1153 -0
  104. messagefoundry-0.3.1/messagefoundry/pipeline/alerts.py +414 -0
  105. messagefoundry-0.3.1/messagefoundry/pipeline/cert_expiry.py +284 -0
  106. messagefoundry-0.3.1/messagefoundry/pipeline/cluster.py +1058 -0
  107. messagefoundry-0.3.1/messagefoundry/pipeline/cluster_sqlserver.py +554 -0
  108. messagefoundry-0.3.1/messagefoundry/pipeline/config_convergence.py +137 -0
  109. messagefoundry-0.3.1/messagefoundry/pipeline/dr.py +694 -0
  110. messagefoundry-0.3.1/messagefoundry/pipeline/dr_backup.py +966 -0
  111. messagefoundry-0.3.1/messagefoundry/pipeline/dryrun.py +828 -0
  112. messagefoundry-0.3.1/messagefoundry/pipeline/dryrun_trace.py +429 -0
  113. messagefoundry-0.3.1/messagefoundry/pipeline/engine.py +1759 -0
  114. messagefoundry-0.3.1/messagefoundry/pipeline/gcm_invocations.py +187 -0
  115. messagefoundry-0.3.1/messagefoundry/pipeline/leader_tasks.py +162 -0
  116. messagefoundry-0.3.1/messagefoundry/pipeline/phase_timing.py +429 -0
  117. messagefoundry-0.3.1/messagefoundry/pipeline/reference_sync.py +399 -0
  118. messagefoundry-0.3.1/messagefoundry/pipeline/retention.py +1010 -0
  119. messagefoundry-0.3.1/messagefoundry/pipeline/sandbox.py +383 -0
  120. messagefoundry-0.3.1/messagefoundry/pipeline/saturation.py +100 -0
  121. messagefoundry-0.3.1/messagefoundry/pipeline/secret_rotation.py +449 -0
  122. messagefoundry-0.3.1/messagefoundry/pipeline/security_notify.py +181 -0
  123. messagefoundry-0.3.1/messagefoundry/pipeline/sharding.py +194 -0
  124. messagefoundry-0.3.1/messagefoundry/pipeline/stage_dispatcher.py +1259 -0
  125. messagefoundry-0.3.1/messagefoundry/pipeline/state_convergence.py +143 -0
  126. messagefoundry-0.3.1/messagefoundry/pipeline/supervisor.py +348 -0
  127. messagefoundry-0.3.1/messagefoundry/pipeline/update_check.py +225 -0
  128. messagefoundry-0.3.1/messagefoundry/pipeline/wiring_runner.py +6486 -0
  129. messagefoundry-0.3.1/messagefoundry/pki.py +162 -0
  130. messagefoundry-0.3.1/messagefoundry/scaffold.py +396 -0
  131. messagefoundry-0.3.1/messagefoundry/secrets_dpapi.py +131 -0
  132. messagefoundry-0.3.1/messagefoundry/security/__init__.py +26 -0
  133. messagefoundry-0.3.1/messagefoundry/security/semgrep/handler-security.yml +163 -0
  134. messagefoundry-0.3.1/messagefoundry/service.py +271 -0
  135. messagefoundry-0.3.1/messagefoundry/service_status.py +90 -0
  136. messagefoundry-0.3.1/messagefoundry/spreadsheet.py +79 -0
  137. messagefoundry-0.3.1/messagefoundry/store/__init__.py +56 -0
  138. messagefoundry-0.3.1/messagefoundry/store/audit_tee.py +75 -0
  139. messagefoundry-0.3.1/messagefoundry/store/backup_codec.py +315 -0
  140. messagefoundry-0.3.1/messagefoundry/store/base.py +2016 -0
  141. messagefoundry-0.3.1/messagefoundry/store/content_search.py +131 -0
  142. messagefoundry-0.3.1/messagefoundry/store/crypto.py +842 -0
  143. messagefoundry-0.3.1/messagefoundry/store/crypto_transit.py +214 -0
  144. messagefoundry-0.3.1/messagefoundry/store/gcm_bound.py +115 -0
  145. messagefoundry-0.3.1/messagefoundry/store/keyprovider_vault.py +145 -0
  146. messagefoundry-0.3.1/messagefoundry/store/metadata.py +97 -0
  147. messagefoundry-0.3.1/messagefoundry/store/pool_metrics.py +163 -0
  148. messagefoundry-0.3.1/messagefoundry/store/postgres.py +6826 -0
  149. messagefoundry-0.3.1/messagefoundry/store/sqlserver.py +9316 -0
  150. messagefoundry-0.3.1/messagefoundry/store/store.py +9072 -0
  151. messagefoundry-0.3.1/messagefoundry/transports/__init__.py +57 -0
  152. messagefoundry-0.3.1/messagefoundry/transports/ai_broker.py +238 -0
  153. messagefoundry-0.3.1/messagefoundry/transports/base.py +382 -0
  154. messagefoundry-0.3.1/messagefoundry/transports/database.py +1063 -0
  155. messagefoundry-0.3.1/messagefoundry/transports/dicom.py +711 -0
  156. messagefoundry-0.3.1/messagefoundry/transports/dicomweb.py +355 -0
  157. messagefoundry-0.3.1/messagefoundry/transports/direct.py +373 -0
  158. messagefoundry-0.3.1/messagefoundry/transports/email.py +252 -0
  159. messagefoundry-0.3.1/messagefoundry/transports/fhir.py +909 -0
  160. messagefoundry-0.3.1/messagefoundry/transports/file.py +892 -0
  161. messagefoundry-0.3.1/messagefoundry/transports/framing.py +171 -0
  162. messagefoundry-0.3.1/messagefoundry/transports/http_auth.py +444 -0
  163. messagefoundry-0.3.1/messagefoundry/transports/http_listener.py +488 -0
  164. messagefoundry-0.3.1/messagefoundry/transports/loopback.py +53 -0
  165. messagefoundry-0.3.1/messagefoundry/transports/mllp.py +1460 -0
  166. messagefoundry-0.3.1/messagefoundry/transports/passthrough.py +68 -0
  167. messagefoundry-0.3.1/messagefoundry/transports/remotefile.py +974 -0
  168. messagefoundry-0.3.1/messagefoundry/transports/rest.py +1127 -0
  169. messagefoundry-0.3.1/messagefoundry/transports/signing.py +511 -0
  170. messagefoundry-0.3.1/messagefoundry/transports/smart.py +360 -0
  171. messagefoundry-0.3.1/messagefoundry/transports/soap.py +774 -0
  172. messagefoundry-0.3.1/messagefoundry/transports/tcp.py +564 -0
  173. messagefoundry-0.3.1/messagefoundry/transports/timer.py +341 -0
  174. messagefoundry-0.3.1/messagefoundry/transports/wincred.py +253 -0
  175. messagefoundry-0.3.1/messagefoundry/transports/x12.py +591 -0
  176. messagefoundry-0.3.1/messagefoundry/tray/__init__.py +28 -0
  177. messagefoundry-0.3.1/messagefoundry/tray/__main__.py +82 -0
  178. messagefoundry-0.3.1/messagefoundry/tray/actions.py +102 -0
  179. messagefoundry-0.3.1/messagefoundry/tray/app.py +154 -0
  180. messagefoundry-0.3.1/messagefoundry/tray/assets/foreign_dark.ico +0 -0
  181. messagefoundry-0.3.1/messagefoundry/tray/assets/foreign_light.ico +0 -0
  182. messagefoundry-0.3.1/messagefoundry/tray/assets/not_installed_dark.ico +0 -0
  183. messagefoundry-0.3.1/messagefoundry/tray/assets/not_installed_light.ico +0 -0
  184. messagefoundry-0.3.1/messagefoundry/tray/assets/running_dark.ico +0 -0
  185. messagefoundry-0.3.1/messagefoundry/tray/assets/running_light.ico +0 -0
  186. messagefoundry-0.3.1/messagefoundry/tray/assets/running_unmanaged_dark.ico +0 -0
  187. messagefoundry-0.3.1/messagefoundry/tray/assets/running_unmanaged_light.ico +0 -0
  188. messagefoundry-0.3.1/messagefoundry/tray/assets/starting_dark.ico +0 -0
  189. messagefoundry-0.3.1/messagefoundry/tray/assets/starting_light.ico +0 -0
  190. messagefoundry-0.3.1/messagefoundry/tray/assets/stopped_dark.ico +0 -0
  191. messagefoundry-0.3.1/messagefoundry/tray/assets/stopped_light.ico +0 -0
  192. messagefoundry-0.3.1/messagefoundry/tray/assets/stopping_dark.ico +0 -0
  193. messagefoundry-0.3.1/messagefoundry/tray/assets/stopping_light.ico +0 -0
  194. messagefoundry-0.3.1/messagefoundry/tray/assets/unknown_dark.ico +0 -0
  195. messagefoundry-0.3.1/messagefoundry/tray/assets/unknown_light.ico +0 -0
  196. messagefoundry-0.3.1/messagefoundry/tray/assets/wedged_dark.ico +0 -0
  197. messagefoundry-0.3.1/messagefoundry/tray/assets/wedged_light.ico +0 -0
  198. messagefoundry-0.3.1/messagefoundry/tray/autostart.py +64 -0
  199. messagefoundry-0.3.1/messagefoundry/tray/branding.py +354 -0
  200. messagefoundry-0.3.1/messagefoundry/tray/config.py +416 -0
  201. messagefoundry-0.3.1/messagefoundry/tray/control.py +48 -0
  202. messagefoundry-0.3.1/messagefoundry/tray/iconset.py +30 -0
  203. messagefoundry-0.3.1/messagefoundry/tray/instance.py +42 -0
  204. messagefoundry-0.3.1/messagefoundry/tray/menu.py +170 -0
  205. messagefoundry-0.3.1/messagefoundry/tray/poller.py +207 -0
  206. messagefoundry-0.3.1/messagefoundry/tray/probe.py +137 -0
  207. messagefoundry-0.3.1/messagefoundry/tray/state.py +217 -0
  208. messagefoundry-0.3.1/messagefoundry/tray/theme.py +47 -0
  209. messagefoundry-0.3.1/messagefoundry/tray/winshell.py +459 -0
  210. messagefoundry-0.3.1/messagefoundry/tray/winsvc.py +138 -0
  211. messagefoundry-0.3.1/messagefoundry/uploads.py +606 -0
  212. messagefoundry-0.3.1/messagefoundry/verify/checks.py +251 -0
  213. messagefoundry-0.3.1/messagefoundry/verify/federation.py +432 -0
  214. messagefoundry-0.3.1/messagefoundry/verify/model.py +33 -0
  215. messagefoundry-0.3.1/messagefoundry/verify/report.py +73 -0
  216. messagefoundry-0.3.1/messagefoundry/verify/runner.py +267 -0
  217. messagefoundry-0.3.1/messagefoundry/verify/smoke.py +292 -0
  218. messagefoundry-0.3.1/pyproject.toml +276 -0
  219. messagefoundry-0.2.15/.claude/settings.json +0 -81
  220. messagefoundry-0.2.15/.dockerignore +0 -45
  221. messagefoundry-0.2.15/.gitattributes +0 -5
  222. messagefoundry-0.2.15/.github/CODEOWNERS +0 -19
  223. messagefoundry-0.2.15/.github/ISSUE_TEMPLATE/bug_report.md +0 -41
  224. messagefoundry-0.2.15/.github/ISSUE_TEMPLATE/config.yml +0 -7
  225. messagefoundry-0.2.15/.github/ISSUE_TEMPLATE/feature_request.md +0 -24
  226. messagefoundry-0.2.15/.github/PULL_REQUEST_TEMPLATE.md +0 -29
  227. messagefoundry-0.2.15/.github/SECURITY.md +0 -84
  228. messagefoundry-0.2.15/.github/dependabot.yml +0 -68
  229. messagefoundry-0.2.15/.github/workflows/benchmark.yml +0 -217
  230. messagefoundry-0.2.15/.github/workflows/ci.yml +0 -1144
  231. messagefoundry-0.2.15/.github/workflows/cla.yml +0 -52
  232. messagefoundry-0.2.15/.github/workflows/codeql.yml +0 -67
  233. messagefoundry-0.2.15/.github/workflows/dependabot-auto-merge.yml +0 -165
  234. messagefoundry-0.2.15/.github/workflows/dependabot-lock-resync.yml +0 -95
  235. messagefoundry-0.2.15/.github/workflows/freethread-smoke.yml +0 -95
  236. messagefoundry-0.2.15/.github/workflows/manifest-lint.yml +0 -114
  237. messagefoundry-0.2.15/.github/workflows/release-sync-check.yml +0 -44
  238. messagefoundry-0.2.15/.github/workflows/release.yml +0 -246
  239. messagefoundry-0.2.15/.github/workflows/scorecard.yml +0 -59
  240. messagefoundry-0.2.15/.github/workflows/security.yml +0 -280
  241. messagefoundry-0.2.15/.github/workflows/selfhosted-win2025-sql.yml +0 -85
  242. messagefoundry-0.2.15/.github/workflows/vuln-metrics.yml +0 -40
  243. messagefoundry-0.2.15/.github/workflows/zizmor.yml +0 -47
  244. messagefoundry-0.2.15/.github/zizmor.yml +0 -31
  245. messagefoundry-0.2.15/.gitignore +0 -91
  246. messagefoundry-0.2.15/.gitleaks.toml +0 -14
  247. messagefoundry-0.2.15/.mefor-hooks/pre-commit +0 -25
  248. messagefoundry-0.2.15/.pre-commit-config.yaml +0 -49
  249. messagefoundry-0.2.15/.semgrep/messagefoundry.yml +0 -52
  250. messagefoundry-0.2.15/CHANGELOG.md +0 -822
  251. messagefoundry-0.2.15/CLA.md +0 -74
  252. messagefoundry-0.2.15/CLAUDE.md +0 -443
  253. messagefoundry-0.2.15/CODE_OF_CONDUCT.md +0 -42
  254. messagefoundry-0.2.15/COMMERCIAL-LICENSE.md +0 -67
  255. messagefoundry-0.2.15/CONTRIBUTING.md +0 -83
  256. messagefoundry-0.2.15/GOVERNANCE.md +0 -73
  257. messagefoundry-0.2.15/MAINTAINERS.md +0 -32
  258. messagefoundry-0.2.15/PKG-INFO +0 -263
  259. messagefoundry-0.2.15/README.md +0 -185
  260. messagefoundry-0.2.15/docker/Dockerfile +0 -121
  261. messagefoundry-0.2.15/docker/README.md +0 -136
  262. messagefoundry-0.2.15/docker/compose.yaml +0 -201
  263. messagefoundry-0.2.15/docker/k8s/ha-postgres.yaml +0 -242
  264. messagefoundry-0.2.15/docker/k8s/secret.example.yaml +0 -37
  265. messagefoundry-0.2.15/docker/k8s/statefulset.yaml +0 -132
  266. messagefoundry-0.2.15/docker/locks/requirements-core.lock +0 -370
  267. messagefoundry-0.2.15/docker/locks/requirements-sqlserver.lock +0 -395
  268. messagefoundry-0.2.15/docker/secrets.env.example +0 -15
  269. messagefoundry-0.2.15/docker/smoke/Dockerfile +0 -20
  270. messagefoundry-0.2.15/docker/smoke/config/IB_Test_ADT.py +0 -29
  271. messagefoundry-0.2.15/docker/smoke/send_adt.py +0 -62
  272. messagefoundry-0.2.15/docs/ADOPTER-CI.md +0 -183
  273. messagefoundry-0.2.15/docs/AI.md +0 -221
  274. messagefoundry-0.2.15/docs/ANTIVIRUS-FIREWALL.md +0 -219
  275. messagefoundry-0.2.15/docs/AOAG-DEPLOYMENT.md +0 -919
  276. messagefoundry-0.2.15/docs/ARCHITECTURE.md +0 -344
  277. messagefoundry-0.2.15/docs/BACKLOG.md +0 -3924
  278. messagefoundry-0.2.15/docs/BRAND.md +0 -103
  279. messagefoundry-0.2.15/docs/CI-QUALITY.md +0 -57
  280. messagefoundry-0.2.15/docs/CI-SELFHOSTED-RUNNER.md +0 -133
  281. messagefoundry-0.2.15/docs/CLOUD-DEPLOYMENT.md +0 -306
  282. messagefoundry-0.2.15/docs/CLOUD-PHI-HIPAA.md +0 -185
  283. messagefoundry-0.2.15/docs/CLUSTERING.md +0 -306
  284. messagefoundry-0.2.15/docs/CODESETS.md +0 -109
  285. messagefoundry-0.2.15/docs/CONFIGURATION.md +0 -869
  286. messagefoundry-0.2.15/docs/CONNECTIONS.md +0 -1354
  287. messagefoundry-0.2.15/docs/CONTAINER-EXPOSURE-EVALUATION.md +0 -349
  288. messagefoundry-0.2.15/docs/CONTRIBUTOR-FIRST-ISSUES.md +0 -73
  289. messagefoundry-0.2.15/docs/CONTRIBUTOR-PROGRAM-PLAN.md +0 -282
  290. messagefoundry-0.2.15/docs/COUNSEL-ENGAGEMENT-BRIEF.md +0 -268
  291. messagefoundry-0.2.15/docs/DEPLOY-SERVER-DB.md +0 -220
  292. messagefoundry-0.2.15/docs/DEPLOYMENT.md +0 -289
  293. messagefoundry-0.2.15/docs/DICOM.md +0 -141
  294. messagefoundry-0.2.15/docs/DUAL_LICENSING_PLAN.md +0 -67
  295. messagefoundry-0.2.15/docs/EARLY-ADOPTER-GUIDE.md +0 -854
  296. messagefoundry-0.2.15/docs/FEATURE-MAP.md +0 -220
  297. messagefoundry-0.2.15/docs/HL7-VALIDATION.md +0 -115
  298. messagefoundry-0.2.15/docs/INSTALL-GUIDE.md +0 -340
  299. messagefoundry-0.2.15/docs/LOAD-TESTING.md +0 -261
  300. messagefoundry-0.2.15/docs/MENTAL-MODEL.md +0 -494
  301. messagefoundry-0.2.15/docs/MessageFoundry-Mental-Model.docx +0 -0
  302. messagefoundry-0.2.15/docs/PHI.md +0 -688
  303. messagefoundry-0.2.15/docs/POSITIONING.md +0 -70
  304. messagefoundry-0.2.15/docs/REMOTE-CONSOLE-CUSTOMER-GUIDE.md +0 -176
  305. messagefoundry-0.2.15/docs/REMOTE-CONSOLE.md +0 -125
  306. messagefoundry-0.2.15/docs/SECURITY-REMEDIATION-LEDGER.md +0 -84
  307. messagefoundry-0.2.15/docs/SECURITY.md +0 -621
  308. messagefoundry-0.2.15/docs/SERVICE.md +0 -366
  309. messagefoundry-0.2.15/docs/SUPPORT-POLICY.md +0 -39
  310. messagefoundry-0.2.15/docs/SYSTEM-REQUIREMENTS.md +0 -176
  311. messagefoundry-0.2.15/docs/Secure_AI_Development_Standards.md +0 -597
  312. messagefoundry-0.2.15/docs/Secure_Development_Standards.md +0 -499
  313. messagefoundry-0.2.15/docs/TEE-RELAY.md +0 -126
  314. messagefoundry-0.2.15/docs/THROUGHPUT-IMPROVEMENTS.md +0 -197
  315. messagefoundry-0.2.15/docs/THROUGHPUT.md +0 -304
  316. messagefoundry-0.2.15/docs/USER-GUIDE.md +0 -625
  317. messagefoundry-0.2.15/docs/VERSION-CONTROL.md +0 -171
  318. messagefoundry-0.2.15/docs/WORKTREES.md +0 -97
  319. messagefoundry-0.2.15/docs/adr/0001-staged-pipeline-architecture.md +0 -250
  320. messagefoundry-0.2.15/docs/adr/0002-phase2-transport-security-and-strong-auth.md +0 -273
  321. messagefoundry-0.2.15/docs/adr/0003-non-hl7-transports-database-rest-soap.md +0 -185
  322. messagefoundry-0.2.15/docs/adr/0004-payload-agnostic-ingress.md +0 -161
  323. messagefoundry-0.2.15/docs/adr/0005-transform-accessible-state.md +0 -170
  324. messagefoundry-0.2.15/docs/adr/0006-external-data-lookups.md +0 -208
  325. messagefoundry-0.2.15/docs/adr/0007-gui-manageable-connections-toml.md +0 -160
  326. messagefoundry-0.2.15/docs/adr/0008-cluster-observability-api.md +0 -131
  327. messagefoundry-0.2.15/docs/adr/0009-run-scoped-context-providers.md +0 -91
  328. messagefoundry-0.2.15/docs/adr/0010-handler-callable-db-lookup.md +0 -90
  329. messagefoundry-0.2.15/docs/adr/0011-timer-scheduled-source.md +0 -116
  330. messagefoundry-0.2.15/docs/adr/0012-x12-edi-codec.md +0 -308
  331. messagefoundry-0.2.15/docs/adr/0013-increment-2-reingress-design.md +0 -931
  332. messagefoundry-0.2.15/docs/adr/0013-query-response-orchestration.md +0 -490
  333. messagefoundry-0.2.15/docs/adr/0014-alerting-rules-engine.md +0 -126
  334. messagefoundry-0.2.15/docs/adr/0015-ws-soap-outbound-mtls-wssecurity.md +0 -445
  335. messagefoundry-0.2.15/docs/adr/0016-synchronous-x12-request-response.md +0 -500
  336. messagefoundry-0.2.15/docs/adr/0017-consumer-deployment-model.md +0 -256
  337. messagefoundry-0.2.15/docs/adr/0018-per-message-signatures-accepted-risk.md +0 -130
  338. messagefoundry-0.2.15/docs/adr/0019-pluggable-keyprovider-hsm-kms-vault.md +0 -430
  339. messagefoundry-0.2.15/docs/adr/0020-protocol-diagnostic-capture.md +0 -90
  340. messagefoundry-0.2.15/docs/adr/0021-inbound-ack-nak-capture-response-sent.md +0 -172
  341. messagefoundry-0.2.15/docs/adr/0022-fhir-resource-codec-rest-client.md +0 -594
  342. messagefoundry-0.2.15/docs/adr/0023-inbound-http-listener.md +0 -326
  343. messagefoundry-0.2.15/docs/adr/0024-smart-backend-services-token-provider.md +0 -296
  344. messagefoundry-0.2.15/docs/adr/0025-dicom-codec-store-connectors.md +0 -835
  345. messagefoundry-0.2.15/docs/adr/0026-off-box-egress-update-check.md +0 -122
  346. messagefoundry-0.2.15/docs/adr/0027-per-connection-retention.md +0 -208
  347. messagefoundry-0.2.15/docs/adr/0028-base64-binary-carriage-codec.md +0 -174
  348. messagefoundry-0.2.15/docs/adr/0029-email-smtp-destination.md +0 -267
  349. messagefoundry-0.2.15/docs/adr/0030-anonymization-test-harness-tee.md +0 -399
  350. messagefoundry-0.2.15/docs/adr/0031-startup-connection-fault-isolation.md +0 -156
  351. messagefoundry-0.2.15/docs/adr/0032-console-desktop-launch.md +0 -402
  352. messagefoundry-0.2.15/docs/adr/0033-gui-manageable-code-sets.md +0 -212
  353. messagefoundry-0.2.15/docs/adr/0034-static-analysis-triage-policy-accepted-risk-register.md +0 -80
  354. messagefoundry-0.2.15/docs/adr/0035-ide-extension-workspace-trust-and-scope.md +0 -102
  355. messagefoundry-0.2.15/docs/adr/0036-windows-config-source-trust.md +0 -107
  356. messagefoundry-0.2.15/docs/adr/0037-multi-process-sharding-l3.md +0 -112
  357. messagefoundry-0.2.15/docs/adr/0038-internal-pass-through-connector.md +0 -111
  358. messagefoundry-0.2.15/docs/adr/0039-database-tier-sharding-l5.md +0 -110
  359. messagefoundry-0.2.15/docs/adr/0040-free-threaded-engine-support.md +0 -95
  360. messagefoundry-0.2.15/docs/adr/0041-load-path-attestation-and-change-attribution.md +0 -248
  361. messagefoundry-0.2.15/docs/adr/0042-embedded-document-pruning.md +0 -177
  362. messagefoundry-0.2.15/docs/adr/0043-fhir-read-lookup.md +0 -303
  363. messagefoundry-0.2.15/docs/adr/0044-operator-alert-state.md +0 -262
  364. messagefoundry-0.2.15/docs/adr/0045-custom-rbac-roles.md +0 -266
  365. messagefoundry-0.2.15/docs/adr/0046-message-content-search.md +0 -251
  366. messagefoundry-0.2.15/docs/adr/0047-cloud-kubernetes-ha-deployment-packaging.md +0 -325
  367. messagefoundry-0.2.15/docs/adr/0048-third-tier-disaster-recovery-standby.md +0 -648
  368. messagefoundry-0.2.15/docs/adr/0049-turnkey-dr-backup-restore-verify.md +0 -525
  369. messagefoundry-0.2.15/docs/adr/0050-single-project-root-config-anchoring.md +0 -404
  370. messagefoundry-0.2.15/docs/adr/0051-corepoint-throughput-parity-strategy.md +0 -183
  371. messagefoundry-0.2.15/docs/adr/0052-enterprise-scale-target.md +0 -101
  372. messagefoundry-0.2.15/docs/adr/0053-free-threaded-multicore-engine.md +0 -249
  373. messagefoundry-0.2.15/docs/adr/0054-low-allocation-builtins-hl7-parser.md +0 -221
  374. messagefoundry-0.2.15/docs/adr/0055-group-commit-durable-write.md +0 -152
  375. messagefoundry-0.2.15/docs/adr/0056-engine-managed-vip-failover.md +0 -643
  376. messagefoundry-0.2.15/docs/adr/0057-inline-step-a-fast-path.md +0 -184
  377. messagefoundry-0.2.15/docs/adr/0058-batch-claim-fifo-prefix.md +0 -251
  378. messagefoundry-0.2.15/docs/adr/0059-seq-only-fifo-ordering.md +0 -55
  379. messagefoundry-0.2.15/docs/adr/0060-rename-based-fifo-index-migration.md +0 -78
  380. messagefoundry-0.2.15/docs/adr/0061-per-lane-wake-events.md +0 -139
  381. messagefoundry-0.2.15/docs/adr/0062-default-store-pool-size.md +0 -137
  382. messagefoundry-0.2.15/docs/adr/0063-no-split-store-unified-store-for-sharding.md +0 -101
  383. messagefoundry-0.2.15/docs/adr/0064-schema-init-fastpath.md +0 -67
  384. messagefoundry-0.2.15/docs/adr/0065-web-ops-dashboard.md +0 -231
  385. messagefoundry-0.2.15/docs/adr/0066-pooled-stage-claimers.md +0 -437
  386. messagefoundry-0.2.15/docs/adr/0067-persistent-outbound-mllp.md +0 -128
  387. messagefoundry-0.2.15/docs/adr/0068-browser-webauthn-passkeys-offloopback.md +0 -402
  388. messagefoundry-0.2.15/docs/adr/0069-durable-write-throughput-lever.md +0 -82
  389. messagefoundry-0.2.15/docs/adr/0071-cut-executor-round-trips-b5.md +0 -164
  390. messagefoundry-0.2.15/docs/adr/README.md +0 -90
  391. messagefoundry-0.2.15/docs/adr/TEMPLATE.md +0 -51
  392. messagefoundry-0.2.15/docs/architecture-components.png +0 -0
  393. messagefoundry-0.2.15/docs/architecture-components.svg +0 -1
  394. messagefoundry-0.2.15/docs/architecture-config-graph.png +0 -0
  395. messagefoundry-0.2.15/docs/architecture-config-graph.svg +0 -1
  396. messagefoundry-0.2.15/docs/architecture-diagram.md +0 -269
  397. messagefoundry-0.2.15/docs/architecture-message-flow.png +0 -0
  398. messagefoundry-0.2.15/docs/architecture-message-flow.svg +0 -1
  399. messagefoundry-0.2.15/docs/architecture-topology.png +0 -0
  400. messagefoundry-0.2.15/docs/architecture-topology.svg +0 -1
  401. messagefoundry-0.2.15/docs/benchmarks/TUNING-BASELINE.md +0 -207
  402. messagefoundry-0.2.15/docs/benchmarks/adr0066-pooled-claimer-744.md +0 -167
  403. messagefoundry-0.2.15/docs/benchmarks/results/2026-06-16-ci-linux/environment.txt +0 -14
  404. messagefoundry-0.2.15/docs/benchmarks/results/2026-06-16-ci-linux/failover-postgres.json +0 -83
  405. messagefoundry-0.2.15/docs/benchmarks/results/2026-06-16-ci-linux/failover-sqlserver.json +0 -83
  406. messagefoundry-0.2.15/docs/benchmarks/results/2026-06-16-ci-linux/reference-postgres.json +0 -235
  407. messagefoundry-0.2.15/docs/benchmarks/results/2026-06-16-ci-linux/reference-sqlite.json +0 -235
  408. messagefoundry-0.2.15/docs/benchmarks/results/2026-06-16-ci-linux/reference-sqlserver.json +0 -235
  409. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/commit_storm.txt +0 -14
  410. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/environment.txt +0 -42
  411. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/perlane_pool128_r400.json +0 -86
  412. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/perlane_pool128_r800.json +0 -86
  413. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/pooled_ab_atscale.json +0 -572
  414. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/pooled_ab_atscale.txt +0 -36
  415. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/pooled_pool128_r150.json +0 -86
  416. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/pooled_pool128_r250.json +0 -86
  417. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/pooled_pool128_r350.json +0 -86
  418. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/pooled_pool128_r500.json +0 -86
  419. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/push_r100.json +0 -86
  420. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/push_r120.json +0 -86
  421. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/push_r160.json +0 -86
  422. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/push_r80.json +0 -86
  423. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/walk_console_perlane128.txt +0 -27
  424. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/walk_console_pool128.txt +0 -53
  425. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-03-adr0066-pooled-atscale/walk_console_pool40.txt +0 -53
  426. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-04-adr0071-b5-executor-marshaling/PROFILE_FINDINGS.md +0 -59
  427. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-04-adr0071-b5-executor-marshaling/README.md +0 -71
  428. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-04-adr0071-b5-executor-marshaling/b5_microbench.py +0 -617
  429. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-04-adr0071-b5-executor-marshaling/engine_flame.svg +0 -491
  430. messagefoundry-0.2.15/docs/benchmarks/results/2026-07-04-adr0071-b5-executor-marshaling/profile_run.json +0 -62
  431. messagefoundry-0.2.15/docs/benchmarks/step-b-write-amplification.md +0 -76
  432. messagefoundry-0.2.15/docs/design/dbshard.md +0 -289
  433. messagefoundry-0.2.15/docs/design/freethread-spike.md +0 -177
  434. messagefoundry-0.2.15/docs/design/freethread.md +0 -253
  435. messagefoundry-0.2.15/docs/design/multiproc.md +0 -53
  436. messagefoundry-0.2.15/docs/hl7-message-ordering-reference.md +0 -86
  437. messagefoundry-0.2.15/docs/message-ordering-design.md +0 -209
  438. messagefoundry-0.2.15/docs/releases/ASVS-OPTION-A-MULTISESSION-PLAN.md +0 -284
  439. messagefoundry-0.2.15/docs/releases/ASVS-PARTIALS-SWEEP-MULTISESSION-PLAN.md +0 -373
  440. messagefoundry-0.2.15/docs/releases/DELTA-SECURITY-FIXES-MULTISESSION-PLAN.md +0 -197
  441. messagefoundry-0.2.15/docs/releases/DOGFOOD-BACKLOG-MULTISESSION-PLAN.md +0 -178
  442. messagefoundry-0.2.15/docs/releases/MULTISESSION-PLAN-3.md +0 -348
  443. messagefoundry-0.2.15/docs/releases/MULTISESSION-PLAN-4.md +0 -167
  444. messagefoundry-0.2.15/docs/releases/MULTISESSION-PLAN-5.md +0 -453
  445. messagefoundry-0.2.15/docs/releases/MULTISESSION-PLAN-6.md +0 -258
  446. messagefoundry-0.2.15/docs/releases/MULTISESSION-PLAN-v0.2.md +0 -526
  447. messagefoundry-0.2.15/docs/releases/MULTISESSION-PLAN.md +0 -275
  448. messagefoundry-0.2.15/docs/releases/PLAN-3-LANE-HANDOFFS.md +0 -145
  449. messagefoundry-0.2.15/docs/releases/V0.2-LANE-HANDOFFS.md +0 -116
  450. messagefoundry-0.2.15/docs/releases/v0.1-EXECUTION-PLAN.md +0 -343
  451. messagefoundry-0.2.15/docs/releases/v0.1-PLAN.md +0 -503
  452. messagefoundry-0.2.15/docs/releases/v0.1.0-PRETAG-CHECKLIST.md +0 -59
  453. messagefoundry-0.2.15/docs/research/cloud-deployment-research-2026-06.md +0 -137
  454. messagefoundry-0.2.15/docs/research/config-ux-review.md +0 -235
  455. messagefoundry-0.2.15/docs/research/non-hl7-transform-components.md +0 -275
  456. messagefoundry-0.2.15/docs/reviews/DELTA-REVIEW-2026-07-01.md +0 -262
  457. messagefoundry-0.2.15/docs/reviews/DEPENDENCY-INFOSEC-POSTURE-2026-06-23.md +0 -175
  458. messagefoundry-0.2.15/docs/reviews/FULL-REVIEW-2026-06-10.md +0 -271
  459. messagefoundry-0.2.15/docs/security/ADVISORY-PROCESS.md +0 -35
  460. messagefoundry-0.2.15/docs/security/ASVS-FAILS-REMEDIATION-PLAN.md +0 -887
  461. messagefoundry-0.2.15/docs/security/ASVS-L2-PHASE0-CHANGES.md +0 -194
  462. messagefoundry-0.2.15/docs/security/ASVS-L2-REMEDIATION-PLAN.md +0 -256
  463. messagefoundry-0.2.15/docs/security/ASVS-L3-ASSESSMENT.md +0 -1050
  464. messagefoundry-0.2.15/docs/security/ASVS-L3-REMEDIATION-PLAN.md +0 -514
  465. messagefoundry-0.2.15/docs/security/ASVS-L3-STATUS.md +0 -131
  466. messagefoundry-0.2.15/docs/security/BEYOND-ASVS-L3-ONEPAGE.md +0 -23
  467. messagefoundry-0.2.15/docs/security/BEYOND-ASVS-L3-REMEDIATION-PLAN-ONEPAGE.md +0 -31
  468. messagefoundry-0.2.15/docs/security/BEYOND-ASVS-L3-REMEDIATION-PLAN.md +0 -930
  469. messagefoundry-0.2.15/docs/security/BEYOND-ASVS-L3.md +0 -133
  470. messagefoundry-0.2.15/docs/security/DEP-CVE-RUNBOOK.md +0 -96
  471. messagefoundry-0.2.15/docs/security/DEPENDENCY-METRICS.md +0 -47
  472. messagefoundry-0.2.15/docs/security/MEFOR-Code-Review-Checklist.xlsx +0 -0
  473. messagefoundry-0.2.15/docs/security/OFF-LOOPBACK-DEPLOYMENT.md +0 -235
  474. messagefoundry-0.2.15/docs/security/PHASE-8C-RBAC.md +0 -111
  475. messagefoundry-0.2.15/docs/security/PUBLISHING.md +0 -126
  476. messagefoundry-0.2.15/docs/security/RCA-TEMPLATE.md +0 -60
  477. messagefoundry-0.2.15/docs/security/RELEASE-GATE.md +0 -94
  478. messagefoundry-0.2.15/docs/security/REMEDIATION-PLAN.md +0 -172
  479. messagefoundry-0.2.15/docs/security/REVIEW-2026-06-07.md +0 -521
  480. messagefoundry-0.2.15/docs/security/SDS-CONFORMANCE-REVIEW-2026-06-12.md +0 -228
  481. messagefoundry-0.2.15/docs/security/SDS-REMEDIATION-PLAN.md +0 -93
  482. messagefoundry-0.2.15/docs/security/SECURITY-POSTURE.md +0 -164
  483. messagefoundry-0.2.15/docs/security/SOUP-DEPENDENCY-HANDLING.md +0 -133
  484. messagefoundry-0.2.15/docs/security/SOUP-REVIEW-2026-06-18.md +0 -82
  485. messagefoundry-0.2.15/docs/security/SOUP-REVIEW-PROCEDURE.md +0 -231
  486. messagefoundry-0.2.15/docs/security/THREAT-MODEL.md +0 -156
  487. messagefoundry-0.2.15/docs/testing/VERIFY.md +0 -83
  488. messagefoundry-0.2.15/docs/testing/WIN2025-ACCEPTANCE.md +0 -73
  489. messagefoundry-0.2.15/docs/testing/WIN2025-TEST-MATRIX.md +0 -109
  490. messagefoundry-0.2.15/docs/testing/WIN2025-TEST-PLAN.md +0 -1550
  491. messagefoundry-0.2.15/docs/throughput-build-plan.md +0 -201
  492. messagefoundry-0.2.15/docs/throughput-roadmap.md +0 -380
  493. messagefoundry-0.2.15/environments/dev.toml +0 -32
  494. messagefoundry-0.2.15/environments/prod.toml +0 -33
  495. messagefoundry-0.2.15/harness/README.md +0 -101
  496. messagefoundry-0.2.15/harness/__main__.py +0 -551
  497. messagefoundry-0.2.15/harness/acceptance/__init__.py +0 -21
  498. messagefoundry-0.2.15/harness/acceptance/__main__.py +0 -93
  499. messagefoundry-0.2.15/harness/acceptance/matrix.py +0 -528
  500. messagefoundry-0.2.15/harness/acceptance/probes.py +0 -220
  501. messagefoundry-0.2.15/harness/acceptance/report.py +0 -147
  502. messagefoundry-0.2.15/harness/acceptance/runner.py +0 -176
  503. messagefoundry-0.2.15/harness/compose.py +0 -225
  504. messagefoundry-0.2.15/harness/config/connscale/__init__.py +0 -4
  505. messagefoundry-0.2.15/harness/config/connscale/_shape.py +0 -141
  506. messagefoundry-0.2.15/harness/config/connscale/gen_toml.py +0 -106
  507. messagefoundry-0.2.15/harness/config/connscale/graph.py +0 -94
  508. messagefoundry-0.2.15/harness/config/coverage.py +0 -80
  509. messagefoundry-0.2.15/harness/config/load/_shape.py +0 -155
  510. messagefoundry-0.2.15/harness/config/load/graph.py +0 -99
  511. messagefoundry-0.2.15/harness/config/passthrough/graph.py +0 -68
  512. messagefoundry-0.2.15/harness/config/store_once/graph.py +0 -73
  513. messagefoundry-0.2.15/harness/file_panel.py +0 -250
  514. messagefoundry-0.2.15/harness/file_transport.py +0 -165
  515. messagefoundry-0.2.15/harness/load/__init__.py +0 -17
  516. messagefoundry-0.2.15/harness/load/connscale/__init__.py +0 -14
  517. messagefoundry-0.2.15/harness/load/connscale/compare.py +0 -1082
  518. messagefoundry-0.2.15/harness/load/connscale/driver.py +0 -135
  519. messagefoundry-0.2.15/harness/load/connscale/probe.py +0 -363
  520. messagefoundry-0.2.15/harness/load/connscale/profile.py +0 -487
  521. messagefoundry-0.2.15/harness/load/connscale/report.py +0 -383
  522. messagefoundry-0.2.15/harness/load/connscale/runner.py +0 -971
  523. messagefoundry-0.2.15/harness/load/corpus.py +0 -176
  524. messagefoundry-0.2.15/harness/load/correlator.py +0 -73
  525. messagefoundry-0.2.15/harness/load/enginepoll.py +0 -384
  526. messagefoundry-0.2.15/harness/load/failover.py +0 -830
  527. messagefoundry-0.2.15/harness/load/failover_track.py +0 -143
  528. messagefoundry-0.2.15/harness/load/governor.py +0 -109
  529. messagefoundry-0.2.15/harness/load/ids.py +0 -42
  530. messagefoundry-0.2.15/harness/load/metrics.py +0 -219
  531. messagefoundry-0.2.15/harness/load/multishard.py +0 -808
  532. messagefoundry-0.2.15/harness/load/profile.py +0 -633
  533. messagefoundry-0.2.15/harness/load/profiles/README.md +0 -34
  534. messagefoundry-0.2.15/harness/load/profiles/adt-fanout-stress.toml +0 -116
  535. messagefoundry-0.2.15/harness/load/profiles/closed-loop.toml +0 -100
  536. messagefoundry-0.2.15/harness/load/profiles/connscale-smoke.toml +0 -31
  537. messagefoundry-0.2.15/harness/load/profiles/connscale.toml +0 -35
  538. messagefoundry-0.2.15/harness/load/profiles/failover.toml +0 -55
  539. messagefoundry-0.2.15/harness/load/profiles/fanout-baseline.toml +0 -92
  540. messagefoundry-0.2.15/harness/load/profiles/fuse_ab.toml +0 -68
  541. messagefoundry-0.2.15/harness/load/profiles/malformed-load.toml +0 -44
  542. messagefoundry-0.2.15/harness/load/profiles/pooled_ab.toml +0 -51
  543. messagefoundry-0.2.15/harness/load/profiles/reference.toml +0 -148
  544. messagefoundry-0.2.15/harness/load/profiles/smoke-sqlserver.toml +0 -42
  545. messagefoundry-0.2.15/harness/load/profiles/smoke.toml +0 -36
  546. messagefoundry-0.2.15/harness/load/profiles/soak.toml +0 -45
  547. messagefoundry-0.2.15/harness/load/profiles/spike-burst.toml +0 -50
  548. messagefoundry-0.2.15/harness/load/profiles/sustained-overload.toml +0 -51
  549. messagefoundry-0.2.15/harness/load/profiles/writeamp.toml +0 -41
  550. messagefoundry-0.2.15/harness/load/report.py +0 -647
  551. messagefoundry-0.2.15/harness/load/runner.py +0 -199
  552. messagefoundry-0.2.15/harness/load/sender.py +0 -322
  553. messagefoundry-0.2.15/harness/load/sink.py +0 -136
  554. messagefoundry-0.2.15/harness/mllp.py +0 -271
  555. messagefoundry-0.2.15/harness/monitor.py +0 -547
  556. messagefoundry-0.2.15/harness/receive.py +0 -137
  557. messagefoundry-0.2.15/harness/reconcile/__init__.py +0 -49
  558. messagefoundry-0.2.15/harness/reconcile/__main__.py +0 -149
  559. messagefoundry-0.2.15/harness/reconcile/capture.py +0 -150
  560. messagefoundry-0.2.15/harness/reconcile/compare.py +0 -179
  561. messagefoundry-0.2.15/harness/reconcile/normalize.py +0 -234
  562. messagefoundry-0.2.15/harness/reconcile/report.py +0 -73
  563. messagefoundry-0.2.15/harness/scenarios.py +0 -195
  564. messagefoundry-0.2.15/harness/send.py +0 -175
  565. messagefoundry-0.2.15/harness/window.py +0 -52
  566. messagefoundry-0.2.15/ide/.gitignore +0 -7
  567. messagefoundry-0.2.15/ide/.vscodeignore +0 -12
  568. messagefoundry-0.2.15/ide/README.md +0 -152
  569. messagefoundry-0.2.15/ide/esbuild.js +0 -28
  570. messagefoundry-0.2.15/ide/media/hl7schema.json +0 -1
  571. messagefoundry-0.2.15/ide/media/icon-amber.svg +0 -5
  572. messagefoundry-0.2.15/ide/media/icon.png +0 -0
  573. messagefoundry-0.2.15/ide/media/icon.svg +0 -6
  574. messagefoundry-0.2.15/ide/package-lock.json +0 -5685
  575. messagefoundry-0.2.15/ide/package.json +0 -437
  576. messagefoundry-0.2.15/ide/snippets/messagefoundry.code-snippets +0 -145
  577. messagefoundry-0.2.15/ide/src/aiPolicy.ts +0 -136
  578. messagefoundry-0.2.15/ide/src/alertEditor.ts +0 -329
  579. messagefoundry-0.2.15/ide/src/auth.ts +0 -134
  580. messagefoundry-0.2.15/ide/src/chat.ts +0 -167
  581. messagefoundry-0.2.15/ide/src/cli.ts +0 -248
  582. messagefoundry-0.2.15/ide/src/codeSetEditor.ts +0 -459
  583. messagefoundry-0.2.15/ide/src/codesetsTree.ts +0 -109
  584. messagefoundry-0.2.15/ide/src/completion.ts +0 -157
  585. messagefoundry-0.2.15/ide/src/connectionEditor.ts +0 -402
  586. messagefoundry-0.2.15/ide/src/editorToolbar.ts +0 -122
  587. messagefoundry-0.2.15/ide/src/engineClient.ts +0 -143
  588. messagefoundry-0.2.15/ide/src/engineTarget.ts +0 -44
  589. messagefoundry-0.2.15/ide/src/extension.ts +0 -249
  590. messagefoundry-0.2.15/ide/src/generate.ts +0 -99
  591. messagefoundry-0.2.15/ide/src/git.ts +0 -76
  592. messagefoundry-0.2.15/ide/src/graphTree.ts +0 -215
  593. messagefoundry-0.2.15/ide/src/home.ts +0 -133
  594. messagefoundry-0.2.15/ide/src/insertElement.ts +0 -78
  595. messagefoundry-0.2.15/ide/src/newRoute.ts +0 -327
  596. messagefoundry-0.2.15/ide/src/promote.ts +0 -196
  597. messagefoundry-0.2.15/ide/src/promoteTarget.ts +0 -55
  598. messagefoundry-0.2.15/ide/src/sourceControl.ts +0 -448
  599. messagefoundry-0.2.15/ide/src/test/runTest.ts +0 -22
  600. messagefoundry-0.2.15/ide/src/test/suite/ai-policy.test.ts +0 -65
  601. messagefoundry-0.2.15/ide/src/test/suite/chat.test.ts +0 -81
  602. messagefoundry-0.2.15/ide/src/test/suite/editor-toolbar.test.ts +0 -101
  603. messagefoundry-0.2.15/ide/src/test/suite/engine-target.test.ts +0 -43
  604. messagefoundry-0.2.15/ide/src/test/suite/extension.test.ts +0 -70
  605. messagefoundry-0.2.15/ide/src/test/suite/index.ts +0 -31
  606. messagefoundry-0.2.15/ide/src/test/suite/insert-element.test.ts +0 -83
  607. messagefoundry-0.2.15/ide/src/test/suite/promote-target.test.ts +0 -85
  608. messagefoundry-0.2.15/ide/src/test/suite/pythonpath.test.ts +0 -79
  609. messagefoundry-0.2.15/ide/src/test/suite/settings-scope.test.ts +0 -37
  610. messagefoundry-0.2.15/ide/src/testBench.ts +0 -310
  611. messagefoundry-0.2.15/ide/src/validate.ts +0 -54
  612. messagefoundry-0.2.15/ide/tsconfig.json +0 -13
  613. messagefoundry-0.2.15/ide/tsconfig.test.json +0 -12
  614. messagefoundry-0.2.15/mefor.code-workspace +0 -6
  615. messagefoundry-0.2.15/messagefoundry/__init__.py +0 -140
  616. messagefoundry-0.2.15/messagefoundry/__main__.py +0 -2351
  617. messagefoundry-0.2.15/messagefoundry/anon/__init__.py +0 -96
  618. messagefoundry-0.2.15/messagefoundry/anon/leak.py +0 -62
  619. messagefoundry-0.2.15/messagefoundry/anon/surrogates.py +0 -299
  620. messagefoundry-0.2.15/messagefoundry/api/app.py +0 -3704
  621. messagefoundry-0.2.15/messagefoundry/api/approvals.py +0 -184
  622. messagefoundry-0.2.15/messagefoundry/api/auth_models.py +0 -235
  623. messagefoundry-0.2.15/messagefoundry/api/auth_routes.py +0 -1698
  624. messagefoundry-0.2.15/messagefoundry/api/field_authz.py +0 -102
  625. messagefoundry-0.2.15/messagefoundry/api/metrics.py +0 -320
  626. messagefoundry-0.2.15/messagefoundry/api/models.py +0 -649
  627. messagefoundry-0.2.15/messagefoundry/api/security.py +0 -251
  628. messagefoundry-0.2.15/messagefoundry/api/tls.py +0 -51
  629. messagefoundry-0.2.15/messagefoundry/api/webui/__init__.py +0 -63
  630. messagefoundry-0.2.15/messagefoundry/api/webui/_auth.py +0 -458
  631. messagefoundry-0.2.15/messagefoundry/api/webui/_html.py +0 -157
  632. messagefoundry-0.2.15/messagefoundry/api/webui/pages/__init__.py +0 -24
  633. messagefoundry-0.2.15/messagefoundry/api/webui/pages/_common.py +0 -21
  634. messagefoundry-0.2.15/messagefoundry/api/webui/pages/account.py +0 -637
  635. messagefoundry-0.2.15/messagefoundry/api/webui/pages/admin.py +0 -480
  636. messagefoundry-0.2.15/messagefoundry/api/webui/pages/audit.py +0 -67
  637. messagefoundry-0.2.15/messagefoundry/api/webui/pages/config.py +0 -112
  638. messagefoundry-0.2.15/messagefoundry/api/webui/pages/connections.py +0 -151
  639. messagefoundry-0.2.15/messagefoundry/api/webui/pages/messages.py +0 -359
  640. messagefoundry-0.2.15/messagefoundry/api/webui/pages/monitoring.py +0 -404
  641. messagefoundry-0.2.15/messagefoundry/api/webui/static/app.css +0 -95
  642. messagefoundry-0.2.15/messagefoundry/api/webui/static/app.js +0 -265
  643. messagefoundry-0.2.15/messagefoundry/auth/identity.py +0 -79
  644. messagefoundry-0.2.15/messagefoundry/auth/ldap.py +0 -320
  645. messagefoundry-0.2.15/messagefoundry/auth/permissions.py +0 -211
  646. messagefoundry-0.2.15/messagefoundry/auth/service.py +0 -1833
  647. messagefoundry-0.2.15/messagefoundry/auth/totp.py +0 -181
  648. messagefoundry-0.2.15/messagefoundry/auth/webauthn.py +0 -324
  649. messagefoundry-0.2.15/messagefoundry/checks.py +0 -390
  650. messagefoundry-0.2.15/messagefoundry/config/ai_policy.py +0 -140
  651. messagefoundry-0.2.15/messagefoundry/config/alerts_edit.py +0 -170
  652. messagefoundry-0.2.15/messagefoundry/config/code_sets.py +0 -260
  653. messagefoundry-0.2.15/messagefoundry/config/codeset_edit.py +0 -488
  654. messagefoundry-0.2.15/messagefoundry/config/connections_edit.py +0 -200
  655. messagefoundry-0.2.15/messagefoundry/config/connections_file.py +0 -340
  656. messagefoundry-0.2.15/messagefoundry/config/fhir_lookup.py +0 -132
  657. messagefoundry-0.2.15/messagefoundry/config/models.py +0 -318
  658. messagefoundry-0.2.15/messagefoundry/config/run_context.py +0 -153
  659. messagefoundry-0.2.15/messagefoundry/config/settings.py +0 -1982
  660. messagefoundry-0.2.15/messagefoundry/config/tls_policy.py +0 -110
  661. messagefoundry-0.2.15/messagefoundry/config/wiring.py +0 -3077
  662. messagefoundry-0.2.15/messagefoundry/console/__init__.py +0 -35
  663. messagefoundry-0.2.15/messagefoundry/console/__main__.py +0 -361
  664. messagefoundry-0.2.15/messagefoundry/console/_async.py +0 -107
  665. messagefoundry-0.2.15/messagefoundry/console/alerts_page.py +0 -324
  666. messagefoundry-0.2.15/messagefoundry/console/change_password.py +0 -111
  667. messagefoundry-0.2.15/messagefoundry/console/client.py +0 -733
  668. messagefoundry-0.2.15/messagefoundry/console/connections.py +0 -395
  669. messagefoundry-0.2.15/messagefoundry/console/dead_letters_page.py +0 -232
  670. messagefoundry-0.2.15/messagefoundry/console/delegates.py +0 -69
  671. messagefoundry-0.2.15/messagefoundry/console/event_log_page.py +0 -145
  672. messagefoundry-0.2.15/messagefoundry/console/icons/alerts.svg +0 -4
  673. messagefoundry-0.2.15/messagefoundry/console/icons/connections.svg +0 -5
  674. messagefoundry-0.2.15/messagefoundry/console/icons/dead-letters.svg +0 -4
  675. messagefoundry-0.2.15/messagefoundry/console/icons/engine-status.svg +0 -3
  676. messagefoundry-0.2.15/messagefoundry/console/icons/log-search.svg +0 -4
  677. messagefoundry-0.2.15/messagefoundry/console/icons/logo-lockup.svg +0 -33
  678. messagefoundry-0.2.15/messagefoundry/console/icons/users.svg +0 -4
  679. messagefoundry-0.2.15/messagefoundry/console/login.py +0 -107
  680. messagefoundry-0.2.15/messagefoundry/console/mfa.py +0 -205
  681. messagefoundry-0.2.15/messagefoundry/console/reauth.py +0 -94
  682. messagefoundry-0.2.15/messagefoundry/console/resources/README.md +0 -23
  683. messagefoundry-0.2.15/messagefoundry/console/resources/app.ico +0 -0
  684. messagefoundry-0.2.15/messagefoundry/console/resources/app.svg +0 -8
  685. messagefoundry-0.2.15/messagefoundry/console/search.py +0 -57
  686. messagefoundry-0.2.15/messagefoundry/console/service_control.py +0 -149
  687. messagefoundry-0.2.15/messagefoundry/console/sessions.py +0 -122
  688. messagefoundry-0.2.15/messagefoundry/console/shards.py +0 -224
  689. messagefoundry-0.2.15/messagefoundry/console/shell.py +0 -706
  690. messagefoundry-0.2.15/messagefoundry/console/status.py +0 -416
  691. messagefoundry-0.2.15/messagefoundry/console/theme.py +0 -268
  692. messagefoundry-0.2.15/messagefoundry/console/users_page.py +0 -282
  693. messagefoundry-0.2.15/messagefoundry/console/widgets.py +0 -612
  694. messagefoundry-0.2.15/messagefoundry/generators/_core.py +0 -589
  695. messagefoundry-0.2.15/messagefoundry/generators/adt.py +0 -286
  696. messagefoundry-0.2.15/messagefoundry/generators/all_types.py +0 -24
  697. messagefoundry-0.2.15/messagefoundry/generators/documents.py +0 -79
  698. messagefoundry-0.2.15/messagefoundry/generators/rde.py +0 -54
  699. messagefoundry-0.2.15/messagefoundry/hl7schema.py +0 -75
  700. messagefoundry-0.2.15/messagefoundry/integrity.py +0 -351
  701. messagefoundry-0.2.15/messagefoundry/logging_setup.py +0 -334
  702. messagefoundry-0.2.15/messagefoundry/parsing/__init__.py +0 -128
  703. messagefoundry-0.2.15/messagefoundry/parsing/_backend.py +0 -47
  704. messagefoundry-0.2.15/messagefoundry/parsing/_builtin_hl7.py +0 -707
  705. messagefoundry-0.2.15/messagefoundry/parsing/binary.py +0 -312
  706. messagefoundry-0.2.15/messagefoundry/parsing/dicom/__init__.py +0 -44
  707. messagefoundry-0.2.15/messagefoundry/parsing/dicom/_deps.py +0 -59
  708. messagefoundry-0.2.15/messagefoundry/parsing/dicom/dataset.py +0 -181
  709. messagefoundry-0.2.15/messagefoundry/parsing/dicom/errors.py +0 -36
  710. messagefoundry-0.2.15/messagefoundry/parsing/dicom/hl7_map.py +0 -170
  711. messagefoundry-0.2.15/messagefoundry/parsing/dicom/peek.py +0 -110
  712. messagefoundry-0.2.15/messagefoundry/parsing/fhir/_deps.py +0 -56
  713. messagefoundry-0.2.15/messagefoundry/parsing/message.py +0 -651
  714. messagefoundry-0.2.15/messagefoundry/parsing/peek.py +0 -292
  715. messagefoundry-0.2.15/messagefoundry/parsing/split.py +0 -120
  716. messagefoundry-0.2.15/messagefoundry/parsing/tree.py +0 -128
  717. messagefoundry-0.2.15/messagefoundry/parsing/x12/delimiters.py +0 -140
  718. messagefoundry-0.2.15/messagefoundry/parsing/x12/validate.py +0 -217
  719. messagefoundry-0.2.15/messagefoundry/parsing/xml/__init__.py +0 -50
  720. messagefoundry-0.2.15/messagefoundry/parsing/xml/errors.py +0 -52
  721. messagefoundry-0.2.15/messagefoundry/parsing/xml/harden.py +0 -73
  722. messagefoundry-0.2.15/messagefoundry/parsing/xml/message.py +0 -154
  723. messagefoundry-0.2.15/messagefoundry/parsing/xml/schema.py +0 -69
  724. messagefoundry-0.2.15/messagefoundry/parsing/xml/signature.py +0 -80
  725. messagefoundry-0.2.15/messagefoundry/pipeline/alert_sinks.py +0 -644
  726. messagefoundry-0.2.15/messagefoundry/pipeline/alerts.py +0 -224
  727. messagefoundry-0.2.15/messagefoundry/pipeline/cert_expiry.py +0 -219
  728. messagefoundry-0.2.15/messagefoundry/pipeline/cluster.py +0 -961
  729. messagefoundry-0.2.15/messagefoundry/pipeline/cluster_sqlserver.py +0 -483
  730. messagefoundry-0.2.15/messagefoundry/pipeline/config_convergence.py +0 -137
  731. messagefoundry-0.2.15/messagefoundry/pipeline/dr.py +0 -459
  732. messagefoundry-0.2.15/messagefoundry/pipeline/dr_backup.py +0 -872
  733. messagefoundry-0.2.15/messagefoundry/pipeline/dryrun.py +0 -518
  734. messagefoundry-0.2.15/messagefoundry/pipeline/engine.py +0 -1261
  735. messagefoundry-0.2.15/messagefoundry/pipeline/leader_tasks.py +0 -162
  736. messagefoundry-0.2.15/messagefoundry/pipeline/reference_sync.py +0 -369
  737. messagefoundry-0.2.15/messagefoundry/pipeline/retention.py +0 -504
  738. messagefoundry-0.2.15/messagefoundry/pipeline/security_notify.py +0 -168
  739. messagefoundry-0.2.15/messagefoundry/pipeline/sharding.py +0 -129
  740. messagefoundry-0.2.15/messagefoundry/pipeline/stage_dispatcher.py +0 -930
  741. messagefoundry-0.2.15/messagefoundry/pipeline/state_convergence.py +0 -143
  742. messagefoundry-0.2.15/messagefoundry/pipeline/supervisor.py +0 -348
  743. messagefoundry-0.2.15/messagefoundry/pipeline/update_check.py +0 -225
  744. messagefoundry-0.2.15/messagefoundry/pipeline/wiring_runner.py +0 -4095
  745. messagefoundry-0.2.15/messagefoundry/scaffold.py +0 -393
  746. messagefoundry-0.2.15/messagefoundry/secrets_dpapi.py +0 -131
  747. messagefoundry-0.2.15/messagefoundry/service_status.py +0 -90
  748. messagefoundry-0.2.15/messagefoundry/store/__init__.py +0 -50
  749. messagefoundry-0.2.15/messagefoundry/store/audit_tee.py +0 -67
  750. messagefoundry-0.2.15/messagefoundry/store/backup_codec.py +0 -290
  751. messagefoundry-0.2.15/messagefoundry/store/base.py +0 -1521
  752. messagefoundry-0.2.15/messagefoundry/store/content_search.py +0 -131
  753. messagefoundry-0.2.15/messagefoundry/store/crypto.py +0 -271
  754. messagefoundry-0.2.15/messagefoundry/store/pool_metrics.py +0 -145
  755. messagefoundry-0.2.15/messagefoundry/store/postgres.py +0 -4974
  756. messagefoundry-0.2.15/messagefoundry/store/sqlserver.py +0 -5579
  757. messagefoundry-0.2.15/messagefoundry/store/store.py +0 -6193
  758. messagefoundry-0.2.15/messagefoundry/transports/__init__.py +0 -56
  759. messagefoundry-0.2.15/messagefoundry/transports/base.py +0 -284
  760. messagefoundry-0.2.15/messagefoundry/transports/database.py +0 -761
  761. messagefoundry-0.2.15/messagefoundry/transports/dicom.py +0 -585
  762. messagefoundry-0.2.15/messagefoundry/transports/dicomweb.py +0 -308
  763. messagefoundry-0.2.15/messagefoundry/transports/email.py +0 -196
  764. messagefoundry-0.2.15/messagefoundry/transports/fhir.py +0 -710
  765. messagefoundry-0.2.15/messagefoundry/transports/file.py +0 -554
  766. messagefoundry-0.2.15/messagefoundry/transports/framing.py +0 -171
  767. messagefoundry-0.2.15/messagefoundry/transports/http_listener.py +0 -488
  768. messagefoundry-0.2.15/messagefoundry/transports/loopback.py +0 -53
  769. messagefoundry-0.2.15/messagefoundry/transports/mllp.py +0 -1020
  770. messagefoundry-0.2.15/messagefoundry/transports/passthrough.py +0 -68
  771. messagefoundry-0.2.15/messagefoundry/transports/remotefile.py +0 -718
  772. messagefoundry-0.2.15/messagefoundry/transports/rest.py +0 -317
  773. messagefoundry-0.2.15/messagefoundry/transports/signing.py +0 -396
  774. messagefoundry-0.2.15/messagefoundry/transports/smart.py +0 -327
  775. messagefoundry-0.2.15/messagefoundry/transports/soap.py +0 -507
  776. messagefoundry-0.2.15/messagefoundry/transports/tcp.py +0 -350
  777. messagefoundry-0.2.15/messagefoundry/transports/timer.py +0 -146
  778. messagefoundry-0.2.15/messagefoundry/transports/x12.py +0 -344
  779. messagefoundry-0.2.15/messagefoundry/verify/checks.py +0 -248
  780. messagefoundry-0.2.15/messagefoundry/verify/model.py +0 -33
  781. messagefoundry-0.2.15/messagefoundry/verify/report.py +0 -73
  782. messagefoundry-0.2.15/messagefoundry/verify/runner.py +0 -199
  783. messagefoundry-0.2.15/messagefoundry/verify/smoke.py +0 -284
  784. messagefoundry-0.2.15/packaging/messagefoundry-harness/README.md +0 -30
  785. messagefoundry-0.2.15/packaging/messagefoundry-harness/pyproject.toml +0 -54
  786. messagefoundry-0.2.15/pyproject.toml +0 -184
  787. messagefoundry-0.2.15/requirements.lock +0 -999
  788. messagefoundry-0.2.15/samples/config/IB_ACME_ADT.py +0 -29
  789. messagefoundry-0.2.15/samples/config/IB_FHIR_INTAKE.py +0 -56
  790. messagefoundry-0.2.15/samples/config/IB_IMMUNIZATION_VXU.py +0 -63
  791. messagefoundry-0.2.15/samples/config/IB_PARTNER_X12.py +0 -47
  792. messagefoundry-0.2.15/samples/config/IB_RADIOLOGY_SR.py +0 -87
  793. messagefoundry-0.2.15/samples/config/IB_RTE_ELIGIBILITY.py +0 -87
  794. messagefoundry-0.2.15/samples/config/adt.py +0 -53
  795. messagefoundry-0.2.15/samples/config/codesets/event_labels.csv +0 -4
  796. messagefoundry-0.2.15/samples/config/codesets/facility_mnemonics.toml +0 -4
  797. messagefoundry-0.2.15/samples/config/connections.toml +0 -28
  798. messagefoundry-0.2.15/samples/consistency/validated_adt.py +0 -62
  799. messagefoundry-0.2.15/samples/dicom/generate_sr_sample.py +0 -118
  800. messagefoundry-0.2.15/samples/messages/adt_a01.hl7 +0 -4
  801. messagefoundry-0.2.15/samples/messages/adt_batch.hl7 +0 -18
  802. messagefoundry-0.2.15/samples/messages/hapi-hl7v2/.gitattributes +0 -5
  803. messagefoundry-0.2.15/samples/messages/hapi-hl7v2/README.md +0 -39
  804. messagefoundry-0.2.15/samples/messages/hapi-hl7v2/adt_a01.txt +0 -1
  805. messagefoundry-0.2.15/samples/messages/hapi-hl7v2/adt_a03.txt +0 -5
  806. messagefoundry-0.2.15/samples/messages/hapi-hl7v2/batch_18_messages.txt +0 -133
  807. messagefoundry-0.2.15/samples/messages/hapi-hl7v2/erp_z99_v231.hl7 +0 -7
  808. messagefoundry-0.2.15/samples/messages/hapi-hl7v2/omd_o03.txt +0 -1
  809. messagefoundry-0.2.15/samples/messages/hapi-hl7v2/omd_o03_rep.txt +0 -1
  810. messagefoundry-0.2.15/samples/messages/hapi-hl7v2/oml_o21.hl7 +0 -1
  811. messagefoundry-0.2.15/samples/messages/x12_270_eligibility.edi +0 -1
  812. messagefoundry-0.2.15/samples/results_relay/README.md +0 -44
  813. messagefoundry-0.2.15/samples/results_relay/codesets/test_codes.csv +0 -4
  814. messagefoundry-0.2.15/samples/results_relay/messages/oru_all_cancelled.hl7 +0 -4
  815. messagefoundry-0.2.15/samples/results_relay/messages/oru_results.hl7 +0 -7
  816. messagefoundry-0.2.15/samples/results_relay/results_relay.py +0 -124
  817. messagefoundry-0.2.15/samples/send_mllp.py +0 -61
  818. messagefoundry-0.2.15/scripts/console/install-console-shortcut.ps1 +0 -134
  819. messagefoundry-0.2.15/scripts/console/pack_ico.py +0 -55
  820. messagefoundry-0.2.15/scripts/console/uninstall-console-shortcut.ps1 +0 -47
  821. messagefoundry-0.2.15/scripts/dev/postgres.ps1 +0 -60
  822. messagefoundry-0.2.15/scripts/dev/sqlserver-docker.ps1 +0 -191
  823. messagefoundry-0.2.15/scripts/dev/sqlserver.ps1 +0 -80
  824. messagefoundry-0.2.15/scripts/hooks/block-blanket-git-stage.ps1 +0 -53
  825. messagefoundry-0.2.15/scripts/publish/check_release_sync.py +0 -258
  826. messagefoundry-0.2.15/scripts/publish/publish-denylist.txt +0 -33
  827. messagefoundry-0.2.15/scripts/publish/publish.ps1 +0 -264
  828. messagefoundry-0.2.15/scripts/publish/scan_forbidden.py +0 -294
  829. messagefoundry-0.2.15/scripts/security/crypto_inventory_check.py +0 -197
  830. messagefoundry-0.2.15/scripts/security/vuln_metrics.py +0 -321
  831. messagefoundry-0.2.15/scripts/service/import-db-ca.ps1 +0 -97
  832. messagefoundry-0.2.15/scripts/service/install-service.ps1 +0 -296
  833. messagefoundry-0.2.15/scripts/service/uninstall-service.ps1 +0 -55
  834. messagefoundry-0.2.15/scripts/trace_icon.py +0 -128
  835. messagefoundry-0.2.15/scripts/worktree/new.ps1 +0 -131
  836. messagefoundry-0.2.15/scripts/worktree/prune-merged.ps1 +0 -128
  837. messagefoundry-0.2.15/scripts/worktree/remove.ps1 +0 -52
  838. messagefoundry-0.2.15/scripts/worktree/session-context.ps1 +0 -79
  839. messagefoundry-0.2.15/scripts/worktree/spawn.ps1 +0 -51
  840. messagefoundry-0.2.15/tee/__init__.py +0 -20
  841. messagefoundry-0.2.15/tee/__main__.py +0 -568
  842. messagefoundry-0.2.15/tee/anon/__init__.py +0 -80
  843. messagefoundry-0.2.15/tee/anon/_hl7data.py +0 -428
  844. messagefoundry-0.2.15/tee/anon/_pools.py +0 -30
  845. messagefoundry-0.2.15/tee/anon/hl7.py +0 -71
  846. messagefoundry-0.2.15/tee/anon/keying.py +0 -67
  847. messagefoundry-0.2.15/tee/anon/leak.py +0 -100
  848. messagefoundry-0.2.15/tee/anon/rules.py +0 -219
  849. messagefoundry-0.2.15/tee/anon/surrogates.py +0 -299
  850. messagefoundry-0.2.15/tee/compare.py +0 -152
  851. messagefoundry-0.2.15/tee/correlate.py +0 -286
  852. messagefoundry-0.2.15/tee/hl7_fields.py +0 -95
  853. messagefoundry-0.2.15/tee/mefor_api.py +0 -116
  854. messagefoundry-0.2.15/tee/mllp.py +0 -181
  855. messagefoundry-0.2.15/tee/relay.py +0 -530
  856. messagefoundry-0.2.15/tee/report.py +0 -80
  857. messagefoundry-0.2.15/tee/store.py +0 -382
  858. messagefoundry-0.2.15/tests/_dicom_sample.py +0 -85
  859. messagefoundry-0.2.15/tests/_failover_load_support.py +0 -209
  860. messagefoundry-0.2.15/tests/_fhir_fixtures.py +0 -77
  861. messagefoundry-0.2.15/tests/_soft_webauthn.py +0 -138
  862. messagefoundry-0.2.15/tests/_webauthn_store_contract.py +0 -183
  863. messagefoundry-0.2.15/tests/conftest.py +0 -199
  864. messagefoundry-0.2.15/tests/test_acceptance_framework.py +0 -144
  865. messagefoundry-0.2.15/tests/test_ack_capture_runner.py +0 -101
  866. messagefoundry-0.2.15/tests/test_ack_sent_store.py +0 -156
  867. messagefoundry-0.2.15/tests/test_active_environment.py +0 -103
  868. messagefoundry-0.2.15/tests/test_ad_group_scope.py +0 -148
  869. messagefoundry-0.2.15/tests/test_admin_new_ip.py +0 -333
  870. messagefoundry-0.2.15/tests/test_adr0071_crossing_count.py +0 -162
  871. messagefoundry-0.2.15/tests/test_adr0071_dispatch_wiring.py +0 -525
  872. messagefoundry-0.2.15/tests/test_adr0071_dispatch_wiring_sqlserver.py +0 -537
  873. messagefoundry-0.2.15/tests/test_adr0071_fused_callables_sqlserver.py +0 -297
  874. messagefoundry-0.2.15/tests/test_adr0071_fusion_wiring.py +0 -400
  875. messagefoundry-0.2.15/tests/test_adr_analyze.py +0 -104
  876. messagefoundry-0.2.15/tests/test_ai_policy.py +0 -400
  877. messagefoundry-0.2.15/tests/test_alert_rules.py +0 -343
  878. messagefoundry-0.2.15/tests/test_alert_sinks.py +0 -243
  879. messagefoundry-0.2.15/tests/test_alert_state.py +0 -459
  880. messagefoundry-0.2.15/tests/test_alerts_edit.py +0 -146
  881. messagefoundry-0.2.15/tests/test_alerts_rules_api.py +0 -255
  882. messagefoundry-0.2.15/tests/test_anon_core.py +0 -262
  883. messagefoundry-0.2.15/tests/test_anon_integration.py +0 -189
  884. messagefoundry-0.2.15/tests/test_anon_parity.py +0 -133
  885. messagefoundry-0.2.15/tests/test_api.py +0 -749
  886. messagefoundry-0.2.15/tests/test_api_alerts.py +0 -247
  887. messagefoundry-0.2.15/tests/test_api_auth.py +0 -768
  888. messagefoundry-0.2.15/tests/test_api_reload.py +0 -219
  889. messagefoundry-0.2.15/tests/test_api_tls.py +0 -211
  890. messagefoundry-0.2.15/tests/test_approvals.py +0 -179
  891. messagefoundry-0.2.15/tests/test_asvs_phase0.py +0 -242
  892. messagefoundry-0.2.15/tests/test_audit_integrity.py +0 -104
  893. messagefoundry-0.2.15/tests/test_audit_offbox_tee.py +0 -176
  894. messagefoundry-0.2.15/tests/test_auth_core.py +0 -153
  895. messagefoundry-0.2.15/tests/test_auth_entry_hardening.py +0 -104
  896. messagefoundry-0.2.15/tests/test_auth_hardening.py +0 -524
  897. messagefoundry-0.2.15/tests/test_auth_service.py +0 -475
  898. messagefoundry-0.2.15/tests/test_auth_session_lifecycle.py +0 -190
  899. messagefoundry-0.2.15/tests/test_auth_store.py +0 -136
  900. messagefoundry-0.2.15/tests/test_backup_crypto.py +0 -144
  901. messagefoundry-0.2.15/tests/test_backup_restore_atleastonce.py +0 -76
  902. messagefoundry-0.2.15/tests/test_backup_runner.py +0 -373
  903. messagefoundry-0.2.15/tests/test_batch_claim_fifo.py +0 -371
  904. messagefoundry-0.2.15/tests/test_batch_claim_locking.py +0 -799
  905. messagefoundry-0.2.15/tests/test_batch_claim_worker.py +0 -154
  906. messagefoundry-0.2.15/tests/test_binary_carriage.py +0 -307
  907. messagefoundry-0.2.15/tests/test_bootstrap_admin_perms.py +0 -77
  908. messagefoundry-0.2.15/tests/test_builtin_hl7_hardening.py +0 -87
  909. messagefoundry-0.2.15/tests/test_builtin_hl7_parity.py +0 -620
  910. messagefoundry-0.2.15/tests/test_cert_expiry.py +0 -254
  911. messagefoundry-0.2.15/tests/test_channel_rbac.py +0 -211
  912. messagefoundry-0.2.15/tests/test_checks.py +0 -441
  913. messagefoundry-0.2.15/tests/test_checks_lint.py +0 -66
  914. messagefoundry-0.2.15/tests/test_claim_fifo_heads.py +0 -522
  915. messagefoundry-0.2.15/tests/test_cli.py +0 -811
  916. messagefoundry-0.2.15/tests/test_cli_offline_resolution.py +0 -250
  917. messagefoundry-0.2.15/tests/test_cluster.py +0 -1038
  918. messagefoundry-0.2.15/tests/test_cluster_failover_postgres.py +0 -241
  919. messagefoundry-0.2.15/tests/test_cluster_failover_sqlserver.py +0 -235
  920. messagefoundry-0.2.15/tests/test_cluster_graph_gating.py +0 -343
  921. messagefoundry-0.2.15/tests/test_cluster_lease.py +0 -338
  922. messagefoundry-0.2.15/tests/test_code_sets.py +0 -306
  923. messagefoundry-0.2.15/tests/test_codeset_edit.py +0 -641
  924. messagefoundry-0.2.15/tests/test_config_anchoring.py +0 -481
  925. messagefoundry-0.2.15/tests/test_config_fingerprint.py +0 -124
  926. messagefoundry-0.2.15/tests/test_config_provenance.py +0 -157
  927. messagefoundry-0.2.15/tests/test_config_source_trust.py +0 -224
  928. messagefoundry-0.2.15/tests/test_connection_api.py +0 -368
  929. messagefoundry-0.2.15/tests/test_connection_event_api.py +0 -83
  930. messagefoundry-0.2.15/tests/test_connection_event_emit.py +0 -229
  931. messagefoundry-0.2.15/tests/test_connection_event_outbound.py +0 -102
  932. messagefoundry-0.2.15/tests/test_connection_event_scope.py +0 -255
  933. messagefoundry-0.2.15/tests/test_connection_event_store.py +0 -208
  934. messagefoundry-0.2.15/tests/test_connection_resilience.py +0 -164
  935. messagefoundry-0.2.15/tests/test_connections_cli.py +0 -228
  936. messagefoundry-0.2.15/tests/test_connections_file.py +0 -445
  937. messagefoundry-0.2.15/tests/test_connscale_compare.py +0 -238
  938. messagefoundry-0.2.15/tests/test_connscale_config.py +0 -85
  939. messagefoundry-0.2.15/tests/test_connscale_driver.py +0 -105
  940. messagefoundry-0.2.15/tests/test_connscale_fuse.py +0 -468
  941. messagefoundry-0.2.15/tests/test_connscale_postgres.py +0 -110
  942. messagefoundry-0.2.15/tests/test_connscale_profile.py +0 -218
  943. messagefoundry-0.2.15/tests/test_connscale_report.py +0 -181
  944. messagefoundry-0.2.15/tests/test_connscale_smoke.py +0 -150
  945. messagefoundry-0.2.15/tests/test_consistency.py +0 -125
  946. messagefoundry-0.2.15/tests/test_console_alerts.py +0 -329
  947. messagefoundry-0.2.15/tests/test_console_auth.py +0 -144
  948. messagefoundry-0.2.15/tests/test_console_client.py +0 -393
  949. messagefoundry-0.2.15/tests/test_console_dead_letters.py +0 -276
  950. messagefoundry-0.2.15/tests/test_console_event_log.py +0 -141
  951. messagefoundry-0.2.15/tests/test_console_hardening.py +0 -109
  952. messagefoundry-0.2.15/tests/test_console_icon.py +0 -72
  953. messagefoundry-0.2.15/tests/test_console_password.py +0 -419
  954. messagefoundry-0.2.15/tests/test_console_sessions.py +0 -167
  955. messagefoundry-0.2.15/tests/test_console_shards.py +0 -257
  956. messagefoundry-0.2.15/tests/test_console_status.py +0 -416
  957. messagefoundry-0.2.15/tests/test_console_step_up.py +0 -193
  958. messagefoundry-0.2.15/tests/test_console_theme.py +0 -86
  959. messagefoundry-0.2.15/tests/test_console_users.py +0 -191
  960. messagefoundry-0.2.15/tests/test_console_widgets.py +0 -1034
  961. messagefoundry-0.2.15/tests/test_content_search.py +0 -378
  962. messagefoundry-0.2.15/tests/test_custom_roles.py +0 -417
  963. messagefoundry-0.2.15/tests/test_database_connector_integration.py +0 -138
  964. messagefoundry-0.2.15/tests/test_database_transport.py +0 -646
  965. messagefoundry-0.2.15/tests/test_db_lookup.py +0 -372
  966. messagefoundry-0.2.15/tests/test_db_lookup_live_runner.py +0 -282
  967. messagefoundry-0.2.15/tests/test_delivery_settings.py +0 -199
  968. messagefoundry-0.2.15/tests/test_dependabot_automerge_guardrails.py +0 -108
  969. messagefoundry-0.2.15/tests/test_dependency_boundaries.py +0 -54
  970. messagefoundry-0.2.15/tests/test_dicom_codec.py +0 -235
  971. messagefoundry-0.2.15/tests/test_dicom_scp.py +0 -248
  972. messagefoundry-0.2.15/tests/test_dicom_scp_security.py +0 -197
  973. messagefoundry-0.2.15/tests/test_dicom_scu.py +0 -172
  974. messagefoundry-0.2.15/tests/test_dicom_wiring.py +0 -220
  975. messagefoundry-0.2.15/tests/test_dicomweb.py +0 -291
  976. messagefoundry-0.2.15/tests/test_docs_runbooks.py +0 -102
  977. messagefoundry-0.2.15/tests/test_dr_activation.py +0 -187
  978. messagefoundry-0.2.15/tests/test_dr_api_status.py +0 -94
  979. messagefoundry-0.2.15/tests/test_dr_failback.py +0 -114
  980. messagefoundry-0.2.15/tests/test_dr_rbac.py +0 -143
  981. messagefoundry-0.2.15/tests/test_dr_run_profile.py +0 -183
  982. messagefoundry-0.2.15/tests/test_dr_seeding.py +0 -216
  983. messagefoundry-0.2.15/tests/test_dryrun.py +0 -334
  984. messagefoundry-0.2.15/tests/test_dual_control_reload.py +0 -190
  985. messagefoundry-0.2.15/tests/test_ed_documents.py +0 -74
  986. messagefoundry-0.2.15/tests/test_ed_documents_e2e.py +0 -253
  987. messagefoundry-0.2.15/tests/test_egress_allowlist.py +0 -160
  988. messagefoundry-0.2.15/tests/test_email_destination.py +0 -313
  989. messagefoundry-0.2.15/tests/test_embedded_document_pruning.py +0 -367
  990. messagefoundry-0.2.15/tests/test_enginepoll_aggregate.py +0 -154
  991. messagefoundry-0.2.15/tests/test_environments.py +0 -326
  992. messagefoundry-0.2.15/tests/test_fhir_lookup.py +0 -438
  993. messagefoundry-0.2.15/tests/test_fhir_parsing.py +0 -159
  994. messagefoundry-0.2.15/tests/test_fhir_resource.py +0 -96
  995. messagefoundry-0.2.15/tests/test_fhir_transport.py +0 -405
  996. messagefoundry-0.2.15/tests/test_field_authz.py +0 -167
  997. messagefoundry-0.2.15/tests/test_field_authz_metadata.py +0 -116
  998. messagefoundry-0.2.15/tests/test_fifo_index_migration.py +0 -433
  999. messagefoundry-0.2.15/tests/test_fifo_ordering.py +0 -121
  1000. messagefoundry-0.2.15/tests/test_generate_cli.py +0 -78
  1001. messagefoundry-0.2.15/tests/test_generated_adt.py +0 -177
  1002. messagefoundry-0.2.15/tests/test_generators_core.py +0 -57
  1003. messagefoundry-0.2.15/tests/test_generators_types.py +0 -42
  1004. messagefoundry-0.2.15/tests/test_group_commit.py +0 -625
  1005. messagefoundry-0.2.15/tests/test_groups.py +0 -267
  1006. messagefoundry-0.2.15/tests/test_harness.py +0 -145
  1007. messagefoundry-0.2.15/tests/test_harness_compose.py +0 -130
  1008. messagefoundry-0.2.15/tests/test_harness_config.py +0 -72
  1009. messagefoundry-0.2.15/tests/test_harness_faults.py +0 -113
  1010. messagefoundry-0.2.15/tests/test_harness_file.py +0 -77
  1011. messagefoundry-0.2.15/tests/test_harness_monitor.py +0 -186
  1012. messagefoundry-0.2.15/tests/test_harness_reconcile.py +0 -230
  1013. messagefoundry-0.2.15/tests/test_harness_scenarios.py +0 -195
  1014. messagefoundry-0.2.15/tests/test_hl7_core_features.py +0 -250
  1015. messagefoundry-0.2.15/tests/test_hl7schema.py +0 -48
  1016. messagefoundry-0.2.15/tests/test_idle_backstop_retry_wake.py +0 -172
  1017. messagefoundry-0.2.15/tests/test_inbound_bind.py +0 -110
  1018. messagefoundry-0.2.15/tests/test_inbound_http_source.py +0 -464
  1019. messagefoundry-0.2.15/tests/test_ingest_time.py +0 -103
  1020. messagefoundry-0.2.15/tests/test_inline_fast_path.py +0 -534
  1021. messagefoundry-0.2.15/tests/test_keyprovider.py +0 -274
  1022. messagefoundry-0.2.15/tests/test_last_admin_guard.py +0 -150
  1023. messagefoundry-0.2.15/tests/test_last_resort.py +0 -104
  1024. messagefoundry-0.2.15/tests/test_leader_tasks.py +0 -228
  1025. messagefoundry-0.2.15/tests/test_listener_tls_exposure.py +0 -60
  1026. messagefoundry-0.2.15/tests/test_load_config.py +0 -239
  1027. messagefoundry-0.2.15/tests/test_load_corpus.py +0 -91
  1028. messagefoundry-0.2.15/tests/test_load_failover_postgres.py +0 -85
  1029. messagefoundry-0.2.15/tests/test_load_failover_sqlserver.py +0 -83
  1030. messagefoundry-0.2.15/tests/test_load_failover_unit.py +0 -462
  1031. messagefoundry-0.2.15/tests/test_load_metrics.py +0 -124
  1032. messagefoundry-0.2.15/tests/test_load_profile.py +0 -237
  1033. messagefoundry-0.2.15/tests/test_load_report.py +0 -258
  1034. messagefoundry-0.2.15/tests/test_load_runner.py +0 -227
  1035. messagefoundry-0.2.15/tests/test_load_sender.py +0 -130
  1036. messagefoundry-0.2.15/tests/test_load_sink.py +0 -158
  1037. messagefoundry-0.2.15/tests/test_logging.py +0 -424
  1038. messagefoundry-0.2.15/tests/test_message.py +0 -363
  1039. messagefoundry-0.2.15/tests/test_message_split.py +0 -316
  1040. messagefoundry-0.2.15/tests/test_message_timestamps.py +0 -79
  1041. messagefoundry-0.2.15/tests/test_metrics_exporter.py +0 -288
  1042. messagefoundry-0.2.15/tests/test_mfa.py +0 -281
  1043. messagefoundry-0.2.15/tests/test_mllp_delivery_error_detail.py +0 -67
  1044. messagefoundry-0.2.15/tests/test_mllp_encoding_override.py +0 -249
  1045. messagefoundry-0.2.15/tests/test_mllp_persistent.py +0 -799
  1046. messagefoundry-0.2.15/tests/test_mllp_tls.py +0 -328
  1047. messagefoundry-0.2.15/tests/test_multishard_record.py +0 -94
  1048. messagefoundry-0.2.15/tests/test_multishard_smoke.py +0 -157
  1049. messagefoundry-0.2.15/tests/test_nonhl7_ingress_size_cap.py +0 -145
  1050. messagefoundry-0.2.15/tests/test_operability_config.py +0 -382
  1051. messagefoundry-0.2.15/tests/test_outbound_signing.py +0 -387
  1052. messagefoundry-0.2.15/tests/test_outbound_simulate.py +0 -355
  1053. messagefoundry-0.2.15/tests/test_packaging.py +0 -23
  1054. messagefoundry-0.2.15/tests/test_parse_tree.py +0 -73
  1055. messagefoundry-0.2.15/tests/test_parsing.py +0 -202
  1056. messagefoundry-0.2.15/tests/test_passthrough.py +0 -674
  1057. messagefoundry-0.2.15/tests/test_passthrough_graph.py +0 -64
  1058. messagefoundry-0.2.15/tests/test_payload_agnostic_ingress.py +0 -240
  1059. messagefoundry-0.2.15/tests/test_per_connection_retention.py +0 -373
  1060. messagefoundry-0.2.15/tests/test_per_lane_wake.py +0 -324
  1061. messagefoundry-0.2.15/tests/test_pool_warm.py +0 -395
  1062. messagefoundry-0.2.15/tests/test_pooled_rider.py +0 -971
  1063. messagefoundry-0.2.15/tests/test_pooled_runner.py +0 -199
  1064. messagefoundry-0.2.15/tests/test_postgres_store.py +0 -1912
  1065. messagefoundry-0.2.15/tests/test_priority_resolution.py +0 -128
  1066. messagefoundry-0.2.15/tests/test_reconcile_capture.py +0 -118
  1067. messagefoundry-0.2.15/tests/test_reconcile_compare.py +0 -102
  1068. messagefoundry-0.2.15/tests/test_reconcile_harness.py +0 -128
  1069. messagefoundry-0.2.15/tests/test_redaction.py +0 -123
  1070. messagefoundry-0.2.15/tests/test_reference_sets.py +0 -538
  1071. messagefoundry-0.2.15/tests/test_reingress.py +0 -510
  1072. messagefoundry-0.2.15/tests/test_remotefile_transport.py +0 -781
  1073. messagefoundry-0.2.15/tests/test_response_capture.py +0 -561
  1074. messagefoundry-0.2.15/tests/test_rest_transport.py +0 -209
  1075. messagefoundry-0.2.15/tests/test_restore_verify.py +0 -102
  1076. messagefoundry-0.2.15/tests/test_retention.py +0 -432
  1077. messagefoundry-0.2.15/tests/test_run_context.py +0 -103
  1078. messagefoundry-0.2.15/tests/test_scaffold.py +0 -139
  1079. messagefoundry-0.2.15/tests/test_scaffold_requirements.py +0 -54
  1080. messagefoundry-0.2.15/tests/test_scan_forbidden.py +0 -160
  1081. messagefoundry-0.2.15/tests/test_secrets_dpapi.py +0 -101
  1082. messagefoundry-0.2.15/tests/test_security_notify.py +0 -88
  1083. messagefoundry-0.2.15/tests/test_security_static.py +0 -136
  1084. messagefoundry-0.2.15/tests/test_seq_only_fifo.py +0 -463
  1085. messagefoundry-0.2.15/tests/test_service_control.py +0 -53
  1086. messagefoundry-0.2.15/tests/test_service_status.py +0 -136
  1087. messagefoundry-0.2.15/tests/test_settings.py +0 -786
  1088. messagefoundry-0.2.15/tests/test_sharding.py +0 -257
  1089. messagefoundry-0.2.15/tests/test_sibling_helper_finder.py +0 -98
  1090. messagefoundry-0.2.15/tests/test_smart_backend.py +0 -455
  1091. messagefoundry-0.2.15/tests/test_soap_transport.py +0 -206
  1092. messagefoundry-0.2.15/tests/test_soap_wssecurity.py +0 -330
  1093. messagefoundry-0.2.15/tests/test_sqlserver_coordinator.py +0 -180
  1094. messagefoundry-0.2.15/tests/test_sqlserver_cursor_close.py +0 -162
  1095. messagefoundry-0.2.15/tests/test_sqlserver_schema_init.py +0 -189
  1096. messagefoundry-0.2.15/tests/test_sqlserver_store.py +0 -1643
  1097. messagefoundry-0.2.15/tests/test_sqlserver_sync_handoff.py +0 -333
  1098. messagefoundry-0.2.15/tests/test_sqlserver_sync_handoff_offline.py +0 -398
  1099. messagefoundry-0.2.15/tests/test_stage_dispatcher.py +0 -1435
  1100. messagefoundry-0.2.15/tests/test_staged_pipeline.py +0 -979
  1101. messagefoundry-0.2.15/tests/test_startup_attestation.py +0 -254
  1102. messagefoundry-0.2.15/tests/test_startup_fault_isolation.py +0 -319
  1103. messagefoundry-0.2.15/tests/test_stats_reset.py +0 -238
  1104. messagefoundry-0.2.15/tests/test_step_up.py +0 -206
  1105. messagefoundry-0.2.15/tests/test_store.py +0 -753
  1106. messagefoundry-0.2.15/tests/test_store_backend.py +0 -103
  1107. messagefoundry-0.2.15/tests/test_store_encryption.py +0 -593
  1108. messagefoundry-0.2.15/tests/test_store_file_hardening.py +0 -94
  1109. messagefoundry-0.2.15/tests/test_store_once_deliver_many.py +0 -285
  1110. messagefoundry-0.2.15/tests/test_store_once_graph.py +0 -68
  1111. messagefoundry-0.2.15/tests/test_store_read_pool.py +0 -145
  1112. messagefoundry-0.2.15/tests/test_store_schema_hash.py +0 -42
  1113. messagefoundry-0.2.15/tests/test_store_ssl.py +0 -76
  1114. messagefoundry-0.2.15/tests/test_summary.py +0 -33
  1115. messagefoundry-0.2.15/tests/test_supervisor.py +0 -275
  1116. messagefoundry-0.2.15/tests/test_support_bundle.py +0 -236
  1117. messagefoundry-0.2.15/tests/test_synchronous_baseline.py +0 -190
  1118. messagefoundry-0.2.15/tests/test_task_resilience.py +0 -152
  1119. messagefoundry-0.2.15/tests/test_tcp_transport.py +0 -341
  1120. messagefoundry-0.2.15/tests/test_tee_cli.py +0 -203
  1121. messagefoundry-0.2.15/tests/test_tee_compare.py +0 -78
  1122. messagefoundry-0.2.15/tests/test_tee_correlate.py +0 -226
  1123. messagefoundry-0.2.15/tests/test_tee_hl7_fields.py +0 -84
  1124. messagefoundry-0.2.15/tests/test_tee_mefor_api.py +0 -107
  1125. messagefoundry-0.2.15/tests/test_tee_mllp.py +0 -98
  1126. messagefoundry-0.2.15/tests/test_tee_relay.py +0 -523
  1127. messagefoundry-0.2.15/tests/test_tee_report.py +0 -86
  1128. messagefoundry-0.2.15/tests/test_tee_store.py +0 -220
  1129. messagefoundry-0.2.15/tests/test_timer_source.py +0 -285
  1130. messagefoundry-0.2.15/tests/test_timezone.py +0 -278
  1131. messagefoundry-0.2.15/tests/test_tls_policy.py +0 -101
  1132. messagefoundry-0.2.15/tests/test_totp.py +0 -93
  1133. messagefoundry-0.2.15/tests/test_totp_window.py +0 -75
  1134. messagefoundry-0.2.15/tests/test_transform_offloop.py +0 -202
  1135. messagefoundry-0.2.15/tests/test_transform_state.py +0 -528
  1136. messagefoundry-0.2.15/tests/test_transports.py +0 -1002
  1137. messagefoundry-0.2.15/tests/test_update_check.py +0 -199
  1138. messagefoundry-0.2.15/tests/test_verify.py +0 -331
  1139. messagefoundry-0.2.15/tests/test_version.py +0 -33
  1140. messagefoundry-0.2.15/tests/test_webauthn.py +0 -490
  1141. messagefoundry-0.2.15/tests/test_webauthn_store.py +0 -84
  1142. messagefoundry-0.2.15/tests/test_webui.py +0 -3630
  1143. messagefoundry-0.2.15/tests/test_win2025_acceptance.py +0 -73
  1144. messagefoundry-0.2.15/tests/test_wiring.py +0 -445
  1145. messagefoundry-0.2.15/tests/test_wiring_engine.py +0 -1312
  1146. messagefoundry-0.2.15/tests/test_wiring_reload.py +0 -516
  1147. messagefoundry-0.2.15/tests/test_wiring_serve.py +0 -107
  1148. messagefoundry-0.2.15/tests/test_ws_stats_revalidation.py +0 -155
  1149. messagefoundry-0.2.15/tests/test_x12_parsing.py +0 -462
  1150. messagefoundry-0.2.15/tests/test_x12_rte.py +0 -212
  1151. messagefoundry-0.2.15/tests/test_x12_source_ip_allowlist.py +0 -170
  1152. messagefoundry-0.2.15/tests/test_x12_transport.py +0 -379
  1153. messagefoundry-0.2.15/tests/test_x12_validate.py +0 -110
  1154. messagefoundry-0.2.15/tests/test_xml_message.py +0 -169
  1155. messagefoundry-0.2.15/tests/test_xml_schema_signature.py +0 -66
  1156. messagefoundry-0.2.15/tests/test_xml_signature_anchor.py +0 -44
  1157. messagefoundry-0.2.15/uv.lock +0 -1789
  1158. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/LICENSE +0 -0
  1159. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/NOTICE +0 -0
  1160. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/adr_analyze.py +0 -0
  1161. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/anon/_pools.py +0 -0
  1162. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/anon/hl7.py +0 -0
  1163. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/anon/keying.py +0 -0
  1164. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/anon/rules.py +0 -0
  1165. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/api/__init__.py +0 -0
  1166. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/auth/__init__.py +0 -0
  1167. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/auth/data/common_passwords.NOTICE +0 -0
  1168. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/auth/data/common_passwords.txt +0 -0
  1169. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/auth/notifications.py +0 -0
  1170. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/auth/passwords.py +0 -0
  1171. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/auth/policy.py +0 -0
  1172. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/auth/ratelimit.py +0 -0
  1173. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/auth/tokens.py +0 -0
  1174. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/config/__init__.py +0 -0
  1175. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/config/active_environment.py +0 -0
  1176. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/config/anchor.py +0 -0
  1177. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/config/db_lookup.py +0 -0
  1178. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/config/environments.py +0 -0
  1179. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/config/fingerprint.py +0 -0
  1180. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/config/ingest_time.py +0 -0
  1181. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/config/reference.py +0 -0
  1182. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/config/response.py +0 -0
  1183. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/config/state.py +0 -0
  1184. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/generators/README.md +0 -0
  1185. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/generators/__init__.py +0 -0
  1186. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/generators/_hl7data.py +0 -0
  1187. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/generators/bar.py +0 -0
  1188. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/generators/dft.py +0 -0
  1189. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/generators/mdm.py +0 -0
  1190. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/generators/mfn.py +0 -0
  1191. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/generators/oml.py +0 -0
  1192. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/generators/orl.py +0 -0
  1193. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/generators/orm.py +0 -0
  1194. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/generators/oru.py +0 -0
  1195. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/generators/ras.py +0 -0
  1196. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/generators/siu.py +0 -0
  1197. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/generators/vxu.py +0 -0
  1198. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/last_resort.py +0 -0
  1199. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/parsing/consistency.py +0 -0
  1200. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/parsing/dicom/_util.py +0 -0
  1201. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/parsing/fhir/__init__.py +0 -0
  1202. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/parsing/fhir/errors.py +0 -0
  1203. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/parsing/fhir/peek.py +0 -0
  1204. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/parsing/fhir/resource.py +0 -0
  1205. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/parsing/groups.py +0 -0
  1206. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/parsing/summary.py +0 -0
  1207. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/parsing/validate.py +0 -0
  1208. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/parsing/x12/__init__.py +0 -0
  1209. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/parsing/x12/_deps.py +0 -0
  1210. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/parsing/x12/errors.py +0 -0
  1211. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/parsing/x12/interchange.py +0 -0
  1212. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/parsing/x12/message.py +0 -0
  1213. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/parsing/x12/peek.py +0 -0
  1214. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/parsing/xml/_deps.py +0 -0
  1215. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/pipeline/__init__.py +0 -0
  1216. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/pipeline/connscale_shim.py +0 -0
  1217. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/py.typed +0 -0
  1218. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/redaction.py +0 -0
  1219. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/store/document_strip.py +0 -0
  1220. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/store/keyprovider.py +0 -0
  1221. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/support/__init__.py +0 -0
  1222. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/support/bundle.py +0 -0
  1223. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/support/redact.py +0 -0
  1224. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/timezone.py +0 -0
  1225. {messagefoundry-0.2.15 → messagefoundry-0.3.1}/messagefoundry/verify/__init__.py +0 -0
@@ -0,0 +1,140 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ .venv/
5
+ venv/
6
+ *.egg-info/
7
+ build/
8
+ dist/
9
+
10
+ # Engine runtime data (PHI may live here — never commit)
11
+ *.db
12
+ *.db-wal
13
+ *.db-shm
14
+ *.pid
15
+ out/
16
+ harness_io/
17
+ *.log
18
+
19
+ # One-time bootstrap admin credential written next to the store (consumed + deleted by the operator) — never commit
20
+ bootstrap-admin.txt
21
+
22
+ # Secrets / credentials — never commit (no such files exist today; these are foot-gun guards)
23
+ .env
24
+ .env.*
25
+ *.key
26
+ *.pem
27
+ *.pfx
28
+ secrets/
29
+
30
+ # Container deployment secrets + TLS material — never commit (the *.example templates ARE tracked)
31
+ /docker/secrets.env
32
+ /docker/tls/
33
+
34
+ # are never committed. Ignore every samples/ subdirectory by DEFAULT rather than naming the partner
35
+ # here — fail-closed, so a new unlisted staging dir cannot reach a public repo just because nobody
36
+ # remembered to add a rule. The shipped example dirs are re-included explicitly.
37
+ /samples/*/
38
+ !/samples/config/
39
+ !/samples/consistency/
40
+ !/samples/dicom/
41
+ !/samples/ech-sidecar/
42
+ !/samples/generators/
43
+ !/samples/messages/
44
+ !/samples/results_relay/
45
+ # Generated, regenerable test corpus (build with: python -m messagefoundry.generators.adt). MUST come
46
+ # after the un-ignores above, or the re-included parent would drag it back in.
47
+ /samples/messages/adt/
48
+ # Workflow agent self-verification temp dirs (an isolated copy of a ported migration module + codesets
49
+ # + fixture for a check/dryrun). Customer-estate-derived — never commit. Delete after a porting batch.
50
+ /_verify_*/
51
+ # exports). Customer data — NEVER commit. `git archive` (the publish path) excludes it by
52
+ # construction; this is the local-only working area.
53
+ /migration-local/
54
+
55
+ # Tooling
56
+ .mypy_cache/
57
+ .ruff_cache/
58
+ .pytest_cache/
59
+ .vscode/
60
+ .idea/
61
+
62
+ # Claude Code: settings.json is shared/tracked; settings.local.json is machine-local (never commit)
63
+ .claude/settings.local.json
64
+
65
+ # Local reference notes pointing at machine-specific Claude Code transcript paths — never commit
66
+ TRANSCRIPTS.md
67
+
68
+ # Local planning/marketing/security working docs — keep out of the repo
69
+ # (docs/DUAL_LICENSING_PLAN.md is now a committed artifact — see ADR 0017 / #13 licensing)
70
+ /docs/marketing/
71
+ /docs/security/CISO-REVIEW.md
72
+ /docs/security/DEPENDENCY-POSTURE-REVIEW.md
73
+ /docs/security/DEPENDENCY-RESPONSE-PLAN.md
74
+ /docs/security/DEPENDENCY-CUSTOMER-OFFERINGS.md
75
+ /docs/security/DEPENDENCY-RESPONSE-HANDOFF.md
76
+ /docs/security/DEPENDENCY-RESPONSE-A3-HANDOFF.md
77
+ /docs/security/DEPENDENCY-RESPONSE-A4-HANDOFF.md
78
+ # vuln_metrics.py local CSV output (the CI run uploads it as an artifact; not committed)
79
+ /docs/security/metrics/
80
+
81
+ # Operator-local load/throughput profiles — tuned to a specific deployment's volume; kept OUT of the
82
+ # OSS repo + public mirror (the plan itself lives on the operator share, WIN2025-LOAD-THROUGHPUT-MATRIX.md).
83
+ # Still usable by name (they sit in PROFILES_DIR) and copy-on to the test box.
84
+ /harness/load/profiles/hospital-baseline.toml
85
+ /harness/load/profiles/soak-12h.toml
86
+ # Deep-research survey of alternative OSS DB backends for the shared-DB commit-wall — local working
87
+ # note, not a committed artifact (the conclusion is carried in the throughput ADRs / AI memory).
88
+ /docs/research/db-commit-wall-backend-survey.md
89
+
90
+ # --- MessageFoundry ---
91
+ .mefor/
92
+ *.db*
93
+ .DS_Store
94
+ Thumbs.db
95
+
96
+ # Agent/web-fetch debris dropped in the repo ROOT (e.g. blog.html, contest.txt, free.html) — never
97
+ # commit. Anchored to root (leading /) so tracked *.html/*.txt UNDER subdirs (docs/, samples/,
98
+ # scripts/, packaging/, messagefoundry/auth/data/…) are unaffected; no *.html/*.txt is legitimately
99
+ # tracked at the repo root, so an anchored catch-all is safe. Force-add (git add -f) if one ever is.
100
+ /*.html
101
+ /*.txt
102
+ /*.yml
103
+
104
+ # The real customer/vendor token list consumed by scripts/security/scan_forbidden.py at
105
+ # commit time. Only the SYNTHETIC scan-tokens.local.txt.example is ever committed.
106
+ #
107
+ # Deliberately unconditional, and listed ahead of the scanner it serves: an operator creates
108
+ # this file before the tooling that references it exists, so ignoring the path up front
109
+ # removes any window in which a real token list sits un-ignored in a working tree.
110
+ scripts/security/scan-tokens.local.txt
111
+
112
+ # --- Private-only paths (formerly enforced by scripts/publish/publish-denylist.txt) ---------------
113
+ # The cutover RETIRES the publish deny-list. On the private repo these were TRACKED and stripped from
114
+ # the mirror at publish time; with the deny-list gone and development happening directly on the public
115
+ # repo, a gitignore rule is now the ONLY thing keeping them out of a commit -- and the cutover runbook
116
+ # runs `git add -A`. Same failure shape as the leak-scanner token file, different files.
117
+ #
118
+ # DELIBERATELY NOT LISTED: tests/test_scan_forbidden.py, tests/test_anon_core.py and
119
+ # .github/dependabot.yml. Those were deny-listed too, but this change set publishes synthetic/public
120
+ # versions of them -- ignoring them here would silently drop content that is meant to ship.
121
+ # PUBLISHED by this change (removed from the list above): CLAUDE.md, docs/BACKLOG.md and
122
+ # docs/WORKTREES.md. All three were scanned and carry no customer/estate tokens (BACKLOG.md needed a
123
+ # two-line redaction). CLAUDE.md in particular MUST be tracked: it is gitignored-by-default's worst
124
+ # case here, because `git worktree add` cannot deliver an untracked file, so every worktree silently
125
+ # came up with ZERO project conventions loaded.
126
+ /.claude/
127
+ /TRANSCRIPTS.md
128
+ /docs/security/
129
+ /docs/reviews/
130
+ /docs/marketing/
131
+ # Deliberately still private, each for a different reason:
132
+ # docs/security/ — 32 files of posture/risk-register detail; an attacker roadmap.
133
+ # docs/reviews/ — review findings, same reason.
134
+ # docs/CI-TOPOLOGY.md — STALE: it documents the retired private-repo/public-mirror split and
135
+ # scripts/publish/, which the cutover deleted. Publishing it would actively
136
+ # mislead. Rewrite for the post-cutover topology or delete it.
137
+ # docs/Secure_Development_Standards.md — scans clean, but it was deliberately pulled from the public
138
+ # PyPI sdist (#1020); reversing that is an owner call, not a side effect.
139
+ /docs/CI-TOPOLOGY.md
140
+ /docs/Secure_Development_Standards.md