pub fn bind_request_body(
flow: &IRFlow,
body: Option<&Value>,
) -> Vec<(String, String)>Expand description
§Fase 37 — Legacy body-only binder. Delegates to bind_request
with empty path + empty query maps. Preserved for source
backwards-compat with v1.36.0-style callers (test code,
non-axon-server programmatic consumers); D5 absolute guarantees
the return is byte-identical to the v1.36.0 implementation when
path + query are empty.
body is None (or a non-object JSON value) for a request with
no body, or a body that is a bare scalar / array — in every such
case the binding is empty and the flow runs with whatever bindings
its own let statements and step outputs produce.