comfyui-mcp 0.52.56 → 0.52.57
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.
- package/dist/orchestrator/panel-tools.js +9 -0
- package/dist/orchestrator/panel-tools.js.map +1 -1
- package/dist/services/comfy-view-ref.js +18 -5
- package/dist/services/comfy-view-ref.js.map +1 -1
- package/dist/services/ui-bridge.js +109 -16
- package/dist/services/ui-bridge.js.map +1 -1
- package/package.json +1 -1
|
@@ -3074,6 +3074,15 @@ function annotateShowMediaAck(res, dispatched) {
|
|
|
3074
3074
|
* "partial_accounting" or "mailboxed". Structured so a caller can
|
|
3075
3075
|
* branch on it without reading the prose. */
|
|
3076
3076
|
unaccounted_because: verdict.reason,
|
|
3077
|
+
/** #2013 — only on a mailbox receipt. A concrete tab id is a known
|
|
3078
|
+
* recipient; `null` means the box is scope-keyed (whoever hellos
|
|
3079
|
+
* next). Structured so a caller does not have to parse the prose. */
|
|
3080
|
+
...(verdict.reason === "mailboxed"
|
|
3081
|
+
? {
|
|
3082
|
+
queued_for: verdict.queuedFor ?? null,
|
|
3083
|
+
recipient_known: verdict.queuedFor != null,
|
|
3084
|
+
}
|
|
3085
|
+
: {}),
|
|
3077
3086
|
/** EVERY dispatched item, even under partial accounting: a reply
|
|
3078
3087
|
* that covers 1 of 2 does not say WHICH, so none can be settled. */
|
|
3079
3088
|
unaccounted: dispatched.map((d) => ({ filename: d.filename, kind: d.kind })),
|