@comfyorg/comfyui-frontend-types 1.17.3 → 1.17.4
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 +1 -6
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -93,11 +93,6 @@ declare type ApiEvents = AsCustomEvents<ApiEventTypes>;
|
|
|
93
93
|
/** Dictionary of types used in the detail for a custom event */
|
|
94
94
|
declare type ApiEventTypes = ApiToEventType<ApiCalls>;
|
|
95
95
|
|
|
96
|
-
declare interface ApiNodeCost {
|
|
97
|
-
name: string;
|
|
98
|
-
cost: number;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
96
|
/** Handles differing event and API signatures. */
|
|
102
97
|
declare type ApiToEventType<T = ApiCalls> = {
|
|
103
98
|
[K in keyof T]: K extends 'status' ? StatusWsMessageStatus : K extends 'executing' ? NodeId : T[K];
|
|
@@ -1787,7 +1782,7 @@ export declare class ComfyApp {
|
|
|
1787
1782
|
title?: string;
|
|
1788
1783
|
reportType?: string;
|
|
1789
1784
|
}) => void;
|
|
1790
|
-
showApiNodesSignInDialog: (
|
|
1785
|
+
showApiNodesSignInDialog: (apiNodeNames: string[]) => Promise<boolean>;
|
|
1791
1786
|
showSignInDialog: () => Promise<boolean>;
|
|
1792
1787
|
prompt: ({ title, message, defaultValue }: {
|
|
1793
1788
|
title: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comfyorg/comfyui-frontend-types",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.4",
|
|
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.13.
|
|
16
|
+
"@comfyorg/litegraph": "^0.13.6"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"vue": "^3.5.13",
|