@comfyorg/comfyui-frontend-types 1.6.7 → 1.6.8
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 +15 -7
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -381,7 +381,6 @@ export declare class ComfyApp {
|
|
|
381
381
|
vueAppReady: boolean;
|
|
382
382
|
api: ComfyApi;
|
|
383
383
|
ui: ComfyUI;
|
|
384
|
-
extensions: ComfyExtension[];
|
|
385
384
|
extensionManager: ExtensionManager;
|
|
386
385
|
_nodeOutputs: Record<string, any>;
|
|
387
386
|
nodePreviewImages: Record<string, string[]>;
|
|
@@ -395,11 +394,6 @@ export declare class ComfyApp {
|
|
|
395
394
|
lastExecutionError: {
|
|
396
395
|
node_id?: NodeId;
|
|
397
396
|
} | null;
|
|
398
|
-
/** @type {ProgressWsMessage} */
|
|
399
|
-
progress: {
|
|
400
|
-
value?: number;
|
|
401
|
-
max?: number;
|
|
402
|
-
} | null;
|
|
403
397
|
configuringGraph: boolean;
|
|
404
398
|
ctx: CanvasRenderingContext2D;
|
|
405
399
|
bodyTop: HTMLElement;
|
|
@@ -431,6 +425,20 @@ export declare class ComfyApp {
|
|
|
431
425
|
* @deprecated storage migration is no longer needed.
|
|
432
426
|
*/
|
|
433
427
|
get isNewUserSession(): boolean;
|
|
428
|
+
/**
|
|
429
|
+
* @deprecated Use useExtensionStore().extensions instead
|
|
430
|
+
*/
|
|
431
|
+
get extensions(): ComfyExtension[];
|
|
432
|
+
/**
|
|
433
|
+
* The progress on the current executing node, if the node reports any.
|
|
434
|
+
* @deprecated Use useExecutionStore().executingNodeProgress instead
|
|
435
|
+
*/
|
|
436
|
+
get progress(): {
|
|
437
|
+
value?: number;
|
|
438
|
+
max?: number;
|
|
439
|
+
prompt_id?: string;
|
|
440
|
+
node?: string | number;
|
|
441
|
+
};
|
|
434
442
|
constructor();
|
|
435
443
|
get nodeOutputs(): Record<string, any>;
|
|
436
444
|
set nodeOutputs(value: Record<string, any>);
|
|
@@ -441,7 +449,6 @@ export declare class ComfyApp {
|
|
|
441
449
|
static onClipspaceEditorClosed(): void;
|
|
442
450
|
static copyToClipspace(node: any): void;
|
|
443
451
|
static pasteFromClipspace(node: any): void;
|
|
444
|
-
get enabledExtensions(): ComfyExtension[];
|
|
445
452
|
/**
|
|
446
453
|
* Set up the app on the page
|
|
447
454
|
*/
|
|
@@ -491,6 +498,7 @@ export declare class ComfyApp {
|
|
|
491
498
|
/**
|
|
492
499
|
* Registers a Comfy web extension with the app
|
|
493
500
|
* @param {ComfyExtension} extension
|
|
501
|
+
* @deprecated Use useExtensionService().registerExtension instead
|
|
494
502
|
*/
|
|
495
503
|
registerExtension(extension: ComfyExtension): void;
|
|
496
504
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comfyorg/comfyui-frontend-types",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.8",
|
|
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.49"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"vue": "^3.4.31",
|