@comfyorg/comfyui-frontend-types 1.7.2 → 1.7.3
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/index.d.ts +62 -13
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { IWidget } from '@comfyorg/litegraph';
|
|
|
4
4
|
import { LGraph } from '@comfyorg/litegraph';
|
|
5
5
|
import { LGraphCanvas } from '@comfyorg/litegraph';
|
|
6
6
|
import { LGraphNode } from '@comfyorg/litegraph';
|
|
7
|
+
import { LinkMarkerShape } from '@comfyorg/litegraph';
|
|
7
8
|
import { RenderShape } from '@comfyorg/litegraph/dist/types/globalEnums';
|
|
8
9
|
import { Vector2 } from '@comfyorg/litegraph';
|
|
9
10
|
import { z } from 'zod';
|
|
@@ -15228,7 +15229,7 @@ export declare class ComfyApp {
|
|
|
15228
15229
|
ctrl?: boolean;
|
|
15229
15230
|
alt?: boolean;
|
|
15230
15231
|
}>;
|
|
15231
|
-
|
|
15232
|
+
targetElementId: z.ZodOptional<z.ZodString>;
|
|
15232
15233
|
}, "strip", z.ZodTypeAny, {
|
|
15233
15234
|
commandId?: string;
|
|
15234
15235
|
combo?: {
|
|
@@ -15238,7 +15239,7 @@ export declare class ComfyApp {
|
|
|
15238
15239
|
ctrl?: boolean;
|
|
15239
15240
|
alt?: boolean;
|
|
15240
15241
|
};
|
|
15241
|
-
|
|
15242
|
+
targetElementId?: string;
|
|
15242
15243
|
}, {
|
|
15243
15244
|
commandId?: string;
|
|
15244
15245
|
combo?: {
|
|
@@ -15248,7 +15249,7 @@ export declare class ComfyApp {
|
|
|
15248
15249
|
ctrl?: boolean;
|
|
15249
15250
|
alt?: boolean;
|
|
15250
15251
|
};
|
|
15251
|
-
|
|
15252
|
+
targetElementId?: string;
|
|
15252
15253
|
}>;
|
|
15253
15254
|
|
|
15254
15255
|
declare const zLogRawResponse: z.ZodObject<{
|
|
@@ -31028,6 +31029,9 @@ export declare class ComfyApp {
|
|
|
31028
31029
|
'Comfy.EnableWorkflowViewRestore': z.ZodBoolean;
|
|
31029
31030
|
'Comfy.FloatRoundingPrecision': z.ZodNumber;
|
|
31030
31031
|
'Comfy.Graph.CanvasInfo': z.ZodBoolean;
|
|
31032
|
+
'Comfy.Graph.CanvasMenu': z.ZodBoolean;
|
|
31033
|
+
'Comfy.Graph.CtrlShiftZoom': z.ZodBoolean;
|
|
31034
|
+
'Comfy.Graph.LinkMarkers': z.ZodNativeEnum<typeof LinkMarkerShape>;
|
|
31031
31035
|
'Comfy.Graph.ZoomSpeed': z.ZodNumber;
|
|
31032
31036
|
'Comfy.Group.DoubleClickTitleToEdit': z.ZodBoolean;
|
|
31033
31037
|
'Comfy.GroupSelectedNodes.Padding': z.ZodNumber;
|
|
@@ -31049,13 +31053,22 @@ export declare class ComfyApp {
|
|
|
31049
31053
|
'Comfy.NodeInputConversionSubmenus': z.ZodBoolean;
|
|
31050
31054
|
'Comfy.LinkRelease.Action': z.ZodEnum<[string, ...string[]]>;
|
|
31051
31055
|
'Comfy.LinkRelease.ActionShift': z.ZodEnum<[string, ...string[]]>;
|
|
31056
|
+
'Comfy.ModelLibrary.AutoLoadAll': z.ZodBoolean;
|
|
31057
|
+
'Comfy.ModelLibrary.NameFormat': z.ZodEnum<["filename", "title"]>;
|
|
31052
31058
|
'Comfy.NodeSearchBoxImpl.NodePreview': z.ZodBoolean;
|
|
31053
31059
|
'Comfy.NodeSearchBoxImpl': z.ZodEnum<["default", "simple"]>;
|
|
31054
31060
|
'Comfy.NodeSearchBoxImpl.ShowCategory': z.ZodBoolean;
|
|
31055
31061
|
'Comfy.NodeSearchBoxImpl.ShowIdName': z.ZodBoolean;
|
|
31062
|
+
'Comfy.NodeSearchBoxImpl.ShowNodeFrequency': z.ZodBoolean;
|
|
31056
31063
|
'Comfy.NodeSuggestions.number': z.ZodNumber;
|
|
31064
|
+
'Comfy.Node.BypassAllLinksOnDelete': z.ZodBoolean;
|
|
31065
|
+
'Comfy.Node.Opacity': z.ZodNumber;
|
|
31066
|
+
'Comfy.Node.MiddleClickRerouteNode': z.ZodBoolean;
|
|
31057
31067
|
'Comfy.Node.ShowDeprecated': z.ZodBoolean;
|
|
31058
31068
|
'Comfy.Node.ShowExperimental': z.ZodBoolean;
|
|
31069
|
+
'Comfy.Pointer.ClickBufferTime': z.ZodNumber;
|
|
31070
|
+
'Comfy.Pointer.ClickDrift': z.ZodNumber;
|
|
31071
|
+
'Comfy.Pointer.DoubleClickTime': z.ZodNumber;
|
|
31059
31072
|
'Comfy.PreviewFormat': z.ZodString;
|
|
31060
31073
|
'Comfy.PromptFilename': z.ZodBoolean;
|
|
31061
31074
|
'Comfy.Sidebar.Location': z.ZodEnum<["left", "right"]>;
|
|
@@ -31067,15 +31080,18 @@ export declare class ComfyApp {
|
|
|
31067
31080
|
'Comfy.UseNewMenu': z.ZodEnum<["Disabled", "Top", "Bottom"]>;
|
|
31068
31081
|
'Comfy.TreeExplorer.ItemPadding': z.ZodNumber;
|
|
31069
31082
|
'Comfy.Validation.Workflows': z.ZodBoolean;
|
|
31083
|
+
'Comfy.Validation.NodeDefs': z.ZodBoolean;
|
|
31070
31084
|
'Comfy.Workflow.SortNodeIdOnSave': z.ZodBoolean;
|
|
31071
31085
|
'Comfy.Queue.ImageFit': z.ZodEnum<["contain", "cover"]>;
|
|
31072
31086
|
'Comfy.Workflow.WorkflowTabsPosition': z.ZodEnum<["Sidebar", "Topbar"]>;
|
|
31073
31087
|
'Comfy.Node.DoubleClickTitleToEdit': z.ZodBoolean;
|
|
31088
|
+
'Comfy.WidgetControlMode': z.ZodEnum<["before", "after"]>;
|
|
31074
31089
|
'Comfy.Window.UnloadConfirmation': z.ZodBoolean;
|
|
31075
31090
|
'Comfy.NodeBadge.NodeSourceBadgeMode': z.ZodEnum<[string, ...string[]]>;
|
|
31076
31091
|
'Comfy.NodeBadge.NodeIdBadgeMode': z.ZodEnum<[string, ...string[]]>;
|
|
31077
31092
|
'Comfy.NodeBadge.NodeLifeCycleBadgeMode': z.ZodEnum<[string, ...string[]]>;
|
|
31078
31093
|
'Comfy.QueueButton.BatchCountLimit': z.ZodNumber;
|
|
31094
|
+
'Comfy.Queue.MaxHistoryItems': z.ZodNumber;
|
|
31079
31095
|
'Comfy.Keybinding.UnsetBindings': z.ZodArray<z.ZodObject<{
|
|
31080
31096
|
commandId: z.ZodString;
|
|
31081
31097
|
combo: z.ZodObject<{
|
|
@@ -31097,7 +31113,7 @@ export declare class ComfyApp {
|
|
|
31097
31113
|
ctrl?: boolean;
|
|
31098
31114
|
alt?: boolean;
|
|
31099
31115
|
}>;
|
|
31100
|
-
|
|
31116
|
+
targetElementId: z.ZodOptional<z.ZodString>;
|
|
31101
31117
|
}, "strip", z.ZodTypeAny, {
|
|
31102
31118
|
commandId?: string;
|
|
31103
31119
|
combo?: {
|
|
@@ -31107,7 +31123,7 @@ export declare class ComfyApp {
|
|
|
31107
31123
|
ctrl?: boolean;
|
|
31108
31124
|
alt?: boolean;
|
|
31109
31125
|
};
|
|
31110
|
-
|
|
31126
|
+
targetElementId?: string;
|
|
31111
31127
|
}, {
|
|
31112
31128
|
commandId?: string;
|
|
31113
31129
|
combo?: {
|
|
@@ -31117,7 +31133,7 @@ export declare class ComfyApp {
|
|
|
31117
31133
|
ctrl?: boolean;
|
|
31118
31134
|
alt?: boolean;
|
|
31119
31135
|
};
|
|
31120
|
-
|
|
31136
|
+
targetElementId?: string;
|
|
31121
31137
|
}>, "many">;
|
|
31122
31138
|
'Comfy.Keybinding.NewBindings': z.ZodArray<z.ZodObject<{
|
|
31123
31139
|
commandId: z.ZodString;
|
|
@@ -31140,7 +31156,7 @@ export declare class ComfyApp {
|
|
|
31140
31156
|
ctrl?: boolean;
|
|
31141
31157
|
alt?: boolean;
|
|
31142
31158
|
}>;
|
|
31143
|
-
|
|
31159
|
+
targetElementId: z.ZodOptional<z.ZodString>;
|
|
31144
31160
|
}, "strip", z.ZodTypeAny, {
|
|
31145
31161
|
commandId?: string;
|
|
31146
31162
|
combo?: {
|
|
@@ -31150,7 +31166,7 @@ export declare class ComfyApp {
|
|
|
31150
31166
|
ctrl?: boolean;
|
|
31151
31167
|
alt?: boolean;
|
|
31152
31168
|
};
|
|
31153
|
-
|
|
31169
|
+
targetElementId?: string;
|
|
31154
31170
|
}, {
|
|
31155
31171
|
commandId?: string;
|
|
31156
31172
|
combo?: {
|
|
@@ -31160,7 +31176,7 @@ export declare class ComfyApp {
|
|
|
31160
31176
|
ctrl?: boolean;
|
|
31161
31177
|
alt?: boolean;
|
|
31162
31178
|
};
|
|
31163
|
-
|
|
31179
|
+
targetElementId?: string;
|
|
31164
31180
|
}>, "many">;
|
|
31165
31181
|
'Comfy.Extension.Disabled': z.ZodArray<z.ZodString, "many">;
|
|
31166
31182
|
'Comfy.Settings.ExtensionPanel': z.ZodBoolean;
|
|
@@ -31171,6 +31187,7 @@ export declare class ComfyApp {
|
|
|
31171
31187
|
'Comfy.Server.LaunchArgs': z.ZodRecord<z.ZodString, z.ZodString>;
|
|
31172
31188
|
'LiteGraph.Canvas.MaximumFps': z.ZodNumber;
|
|
31173
31189
|
'Comfy.Workflow.ConfirmDelete': z.ZodBoolean;
|
|
31190
|
+
'Comfy.RerouteBeta': z.ZodBoolean;
|
|
31174
31191
|
}, "strip", z.ZodTypeAny, {
|
|
31175
31192
|
'Comfy.ColorPalette'?: string;
|
|
31176
31193
|
'Comfy.CustomColorPalettes'?: Record<string, z.objectOutputType<{
|
|
@@ -31513,6 +31530,9 @@ export declare class ComfyApp {
|
|
|
31513
31530
|
'Comfy.EnableWorkflowViewRestore'?: boolean;
|
|
31514
31531
|
'Comfy.FloatRoundingPrecision'?: number;
|
|
31515
31532
|
'Comfy.Graph.CanvasInfo'?: boolean;
|
|
31533
|
+
'Comfy.Graph.CanvasMenu'?: boolean;
|
|
31534
|
+
'Comfy.Graph.CtrlShiftZoom'?: boolean;
|
|
31535
|
+
'Comfy.Graph.LinkMarkers'?: LinkMarkerShape;
|
|
31516
31536
|
'Comfy.Graph.ZoomSpeed'?: number;
|
|
31517
31537
|
'Comfy.Group.DoubleClickTitleToEdit'?: boolean;
|
|
31518
31538
|
'Comfy.GroupSelectedNodes.Padding'?: number;
|
|
@@ -31528,13 +31548,22 @@ export declare class ComfyApp {
|
|
|
31528
31548
|
'Comfy.NodeInputConversionSubmenus'?: boolean;
|
|
31529
31549
|
'Comfy.LinkRelease.Action'?: string;
|
|
31530
31550
|
'Comfy.LinkRelease.ActionShift'?: string;
|
|
31551
|
+
'Comfy.ModelLibrary.AutoLoadAll'?: boolean;
|
|
31552
|
+
'Comfy.ModelLibrary.NameFormat'?: "filename" | "title";
|
|
31531
31553
|
'Comfy.NodeSearchBoxImpl.NodePreview'?: boolean;
|
|
31532
31554
|
'Comfy.NodeSearchBoxImpl'?: "default" | "simple";
|
|
31533
31555
|
'Comfy.NodeSearchBoxImpl.ShowCategory'?: boolean;
|
|
31534
31556
|
'Comfy.NodeSearchBoxImpl.ShowIdName'?: boolean;
|
|
31557
|
+
'Comfy.NodeSearchBoxImpl.ShowNodeFrequency'?: boolean;
|
|
31535
31558
|
'Comfy.NodeSuggestions.number'?: number;
|
|
31559
|
+
'Comfy.Node.BypassAllLinksOnDelete'?: boolean;
|
|
31560
|
+
'Comfy.Node.Opacity'?: number;
|
|
31561
|
+
'Comfy.Node.MiddleClickRerouteNode'?: boolean;
|
|
31536
31562
|
'Comfy.Node.ShowDeprecated'?: boolean;
|
|
31537
31563
|
'Comfy.Node.ShowExperimental'?: boolean;
|
|
31564
|
+
'Comfy.Pointer.ClickBufferTime'?: number;
|
|
31565
|
+
'Comfy.Pointer.ClickDrift'?: number;
|
|
31566
|
+
'Comfy.Pointer.DoubleClickTime'?: number;
|
|
31538
31567
|
'Comfy.PreviewFormat'?: string;
|
|
31539
31568
|
'Comfy.PromptFilename'?: boolean;
|
|
31540
31569
|
'Comfy.Sidebar.Location'?: "left" | "right";
|
|
@@ -31546,15 +31575,18 @@ export declare class ComfyApp {
|
|
|
31546
31575
|
'Comfy.UseNewMenu'?: "Disabled" | "Top" | "Bottom";
|
|
31547
31576
|
'Comfy.TreeExplorer.ItemPadding'?: number;
|
|
31548
31577
|
'Comfy.Validation.Workflows'?: boolean;
|
|
31578
|
+
'Comfy.Validation.NodeDefs'?: boolean;
|
|
31549
31579
|
'Comfy.Workflow.SortNodeIdOnSave'?: boolean;
|
|
31550
31580
|
'Comfy.Queue.ImageFit'?: "contain" | "cover";
|
|
31551
31581
|
'Comfy.Workflow.WorkflowTabsPosition'?: "Sidebar" | "Topbar";
|
|
31552
31582
|
'Comfy.Node.DoubleClickTitleToEdit'?: boolean;
|
|
31583
|
+
'Comfy.WidgetControlMode'?: "before" | "after";
|
|
31553
31584
|
'Comfy.Window.UnloadConfirmation'?: boolean;
|
|
31554
31585
|
'Comfy.NodeBadge.NodeSourceBadgeMode'?: string;
|
|
31555
31586
|
'Comfy.NodeBadge.NodeIdBadgeMode'?: string;
|
|
31556
31587
|
'Comfy.NodeBadge.NodeLifeCycleBadgeMode'?: string;
|
|
31557
31588
|
'Comfy.QueueButton.BatchCountLimit'?: number;
|
|
31589
|
+
'Comfy.Queue.MaxHistoryItems'?: number;
|
|
31558
31590
|
'Comfy.Keybinding.UnsetBindings'?: {
|
|
31559
31591
|
commandId?: string;
|
|
31560
31592
|
combo?: {
|
|
@@ -31564,7 +31596,7 @@ export declare class ComfyApp {
|
|
|
31564
31596
|
ctrl?: boolean;
|
|
31565
31597
|
alt?: boolean;
|
|
31566
31598
|
};
|
|
31567
|
-
|
|
31599
|
+
targetElementId?: string;
|
|
31568
31600
|
}[];
|
|
31569
31601
|
'Comfy.Keybinding.NewBindings'?: {
|
|
31570
31602
|
commandId?: string;
|
|
@@ -31575,7 +31607,7 @@ export declare class ComfyApp {
|
|
|
31575
31607
|
ctrl?: boolean;
|
|
31576
31608
|
alt?: boolean;
|
|
31577
31609
|
};
|
|
31578
|
-
|
|
31610
|
+
targetElementId?: string;
|
|
31579
31611
|
}[];
|
|
31580
31612
|
'Comfy.Extension.Disabled'?: string[];
|
|
31581
31613
|
'Comfy.Settings.ExtensionPanel'?: boolean;
|
|
@@ -31586,6 +31618,7 @@ export declare class ComfyApp {
|
|
|
31586
31618
|
'Comfy.Server.LaunchArgs'?: Record<string, string>;
|
|
31587
31619
|
'LiteGraph.Canvas.MaximumFps'?: number;
|
|
31588
31620
|
'Comfy.Workflow.ConfirmDelete'?: boolean;
|
|
31621
|
+
'Comfy.RerouteBeta'?: boolean;
|
|
31589
31622
|
}, {
|
|
31590
31623
|
'Comfy.ColorPalette'?: string;
|
|
31591
31624
|
'Comfy.CustomColorPalettes'?: Record<string, z.objectInputType<{
|
|
@@ -31928,6 +31961,9 @@ export declare class ComfyApp {
|
|
|
31928
31961
|
'Comfy.EnableWorkflowViewRestore'?: boolean;
|
|
31929
31962
|
'Comfy.FloatRoundingPrecision'?: number;
|
|
31930
31963
|
'Comfy.Graph.CanvasInfo'?: boolean;
|
|
31964
|
+
'Comfy.Graph.CanvasMenu'?: boolean;
|
|
31965
|
+
'Comfy.Graph.CtrlShiftZoom'?: boolean;
|
|
31966
|
+
'Comfy.Graph.LinkMarkers'?: LinkMarkerShape;
|
|
31931
31967
|
'Comfy.Graph.ZoomSpeed'?: number;
|
|
31932
31968
|
'Comfy.Group.DoubleClickTitleToEdit'?: boolean;
|
|
31933
31969
|
'Comfy.GroupSelectedNodes.Padding'?: number;
|
|
@@ -31943,13 +31979,22 @@ export declare class ComfyApp {
|
|
|
31943
31979
|
'Comfy.NodeInputConversionSubmenus'?: boolean;
|
|
31944
31980
|
'Comfy.LinkRelease.Action'?: string;
|
|
31945
31981
|
'Comfy.LinkRelease.ActionShift'?: string;
|
|
31982
|
+
'Comfy.ModelLibrary.AutoLoadAll'?: boolean;
|
|
31983
|
+
'Comfy.ModelLibrary.NameFormat'?: "filename" | "title";
|
|
31946
31984
|
'Comfy.NodeSearchBoxImpl.NodePreview'?: boolean;
|
|
31947
31985
|
'Comfy.NodeSearchBoxImpl'?: "default" | "simple";
|
|
31948
31986
|
'Comfy.NodeSearchBoxImpl.ShowCategory'?: boolean;
|
|
31949
31987
|
'Comfy.NodeSearchBoxImpl.ShowIdName'?: boolean;
|
|
31988
|
+
'Comfy.NodeSearchBoxImpl.ShowNodeFrequency'?: boolean;
|
|
31950
31989
|
'Comfy.NodeSuggestions.number'?: number;
|
|
31990
|
+
'Comfy.Node.BypassAllLinksOnDelete'?: boolean;
|
|
31991
|
+
'Comfy.Node.Opacity'?: number;
|
|
31992
|
+
'Comfy.Node.MiddleClickRerouteNode'?: boolean;
|
|
31951
31993
|
'Comfy.Node.ShowDeprecated'?: boolean;
|
|
31952
31994
|
'Comfy.Node.ShowExperimental'?: boolean;
|
|
31995
|
+
'Comfy.Pointer.ClickBufferTime'?: number;
|
|
31996
|
+
'Comfy.Pointer.ClickDrift'?: number;
|
|
31997
|
+
'Comfy.Pointer.DoubleClickTime'?: number;
|
|
31953
31998
|
'Comfy.PreviewFormat'?: string;
|
|
31954
31999
|
'Comfy.PromptFilename'?: boolean;
|
|
31955
32000
|
'Comfy.Sidebar.Location'?: "left" | "right";
|
|
@@ -31961,15 +32006,18 @@ export declare class ComfyApp {
|
|
|
31961
32006
|
'Comfy.UseNewMenu'?: "Disabled" | "Top" | "Bottom";
|
|
31962
32007
|
'Comfy.TreeExplorer.ItemPadding'?: number;
|
|
31963
32008
|
'Comfy.Validation.Workflows'?: boolean;
|
|
32009
|
+
'Comfy.Validation.NodeDefs'?: boolean;
|
|
31964
32010
|
'Comfy.Workflow.SortNodeIdOnSave'?: boolean;
|
|
31965
32011
|
'Comfy.Queue.ImageFit'?: "contain" | "cover";
|
|
31966
32012
|
'Comfy.Workflow.WorkflowTabsPosition'?: "Sidebar" | "Topbar";
|
|
31967
32013
|
'Comfy.Node.DoubleClickTitleToEdit'?: boolean;
|
|
32014
|
+
'Comfy.WidgetControlMode'?: "before" | "after";
|
|
31968
32015
|
'Comfy.Window.UnloadConfirmation'?: boolean;
|
|
31969
32016
|
'Comfy.NodeBadge.NodeSourceBadgeMode'?: string;
|
|
31970
32017
|
'Comfy.NodeBadge.NodeIdBadgeMode'?: string;
|
|
31971
32018
|
'Comfy.NodeBadge.NodeLifeCycleBadgeMode'?: string;
|
|
31972
32019
|
'Comfy.QueueButton.BatchCountLimit'?: number;
|
|
32020
|
+
'Comfy.Queue.MaxHistoryItems'?: number;
|
|
31973
32021
|
'Comfy.Keybinding.UnsetBindings'?: {
|
|
31974
32022
|
commandId?: string;
|
|
31975
32023
|
combo?: {
|
|
@@ -31979,7 +32027,7 @@ export declare class ComfyApp {
|
|
|
31979
32027
|
ctrl?: boolean;
|
|
31980
32028
|
alt?: boolean;
|
|
31981
32029
|
};
|
|
31982
|
-
|
|
32030
|
+
targetElementId?: string;
|
|
31983
32031
|
}[];
|
|
31984
32032
|
'Comfy.Keybinding.NewBindings'?: {
|
|
31985
32033
|
commandId?: string;
|
|
@@ -31990,7 +32038,7 @@ export declare class ComfyApp {
|
|
|
31990
32038
|
ctrl?: boolean;
|
|
31991
32039
|
alt?: boolean;
|
|
31992
32040
|
};
|
|
31993
|
-
|
|
32041
|
+
targetElementId?: string;
|
|
31994
32042
|
}[];
|
|
31995
32043
|
'Comfy.Extension.Disabled'?: string[];
|
|
31996
32044
|
'Comfy.Settings.ExtensionPanel'?: boolean;
|
|
@@ -32001,6 +32049,7 @@ export declare class ComfyApp {
|
|
|
32001
32049
|
'Comfy.Server.LaunchArgs'?: Record<string, string>;
|
|
32002
32050
|
'LiteGraph.Canvas.MaximumFps'?: number;
|
|
32003
32051
|
'Comfy.Workflow.ConfirmDelete'?: boolean;
|
|
32052
|
+
'Comfy.RerouteBeta'?: boolean;
|
|
32004
32053
|
}>>>;
|
|
32005
32054
|
|
|
32006
32055
|
declare const zStatusWsMessage: z.ZodObject<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comfyorg/comfyui-frontend-types",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.3",
|
|
4
4
|
"types": "./index.d.ts",
|
|
5
5
|
"files": [
|
|
6
6
|
"index.d.ts"
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"description": "TypeScript definitions for @comfyorg/comfyui-frontend",
|
|
14
14
|
"license": "GPL-3.0-only",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@comfyorg/litegraph": "^0.8.
|
|
16
|
+
"@comfyorg/litegraph": "^0.8.60"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"vue": "^3.4.31",
|