dsh-comfyui 0.5.0 → 0.5.1
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/client/client.js +4 -0
- package/client/client.js.map +1 -1
- package/lib/analyze.d.ts +3 -1
- package/lib/analyze.js +2 -1
- package/lib/convert.d.ts +0 -9
- package/lib/convert.js +15 -7
- package/lib/graph.d.ts +15 -0
- package/lib/graph.js +48 -0
- package/lib/index.js +9 -2
- package/package.json +1 -1
package/client/client.js
CHANGED
|
@@ -3628,6 +3628,10 @@ window.__ModuleLoader__.load({
|
|
|
3628
3628
|
...state,
|
|
3629
3629
|
error: data.error ?? "failed to analyze"
|
|
3630
3630
|
});
|
|
3631
|
+
else if (data.analysis.ok !== true) onUpdate({
|
|
3632
|
+
...state,
|
|
3633
|
+
error: data.analysis.error
|
|
3634
|
+
});
|
|
3631
3635
|
else onUpdate({
|
|
3632
3636
|
...state,
|
|
3633
3637
|
analysis: data.analysis,
|