@comfyorg/comfyui-frontend-types 1.12.7 → 1.13.0
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 +6 -4
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { default as default_3 } from '../components/dialog/content/MissingModels
|
|
|
4
4
|
import { default as default_4 } from '../components/dialog/content/ExecutionErrorDialogContent.vue';
|
|
5
5
|
import { default as default_5 } from '../components/templates/TemplateWorkflowsContent.vue';
|
|
6
6
|
import { default as default_6 } from '../components/dialog/content/IssueReportDialogContent.vue';
|
|
7
|
+
import { default as default_7 } from '../components/dialog/content/manager/ManagerDialogContent.vue';
|
|
7
8
|
import { EmbeddingsResponse } from '../schemas/apiSchema';
|
|
8
9
|
import { ExecutedWsMessage } from '../schemas/apiSchema';
|
|
9
10
|
import { ExecutingWsMessage } from '../schemas/apiSchema';
|
|
@@ -1113,6 +1114,7 @@ export declare class ComfyApp {
|
|
|
1113
1114
|
showExecutionErrorDialog: (props: InstanceType<typeof default_4>["$props"]) => void;
|
|
1114
1115
|
showTemplateWorkflowsDialog: (props?: InstanceType<typeof default_5>["$props"]) => void;
|
|
1115
1116
|
showIssueReportDialog: (props: InstanceType<typeof default_6>["$props"]) => void;
|
|
1117
|
+
showManagerDialog: (props?: InstanceType<typeof default_7>["$props"]) => void;
|
|
1116
1118
|
prompt: ({ title, message, defaultValue }: {
|
|
1117
1119
|
title: string;
|
|
1118
1120
|
message: string;
|
|
@@ -3406,13 +3408,13 @@ export declare class ComfyApp {
|
|
|
3406
3408
|
};
|
|
3407
3409
|
output?: (string | (string | number)[])[];
|
|
3408
3410
|
experimental?: boolean;
|
|
3409
|
-
name?: string;
|
|
3410
3411
|
description?: string;
|
|
3412
|
+
name?: string;
|
|
3413
|
+
category?: string;
|
|
3411
3414
|
display_name?: string;
|
|
3412
3415
|
output_is_list?: boolean[];
|
|
3413
3416
|
output_name?: string[];
|
|
3414
3417
|
output_tooltips?: string[];
|
|
3415
|
-
category?: string;
|
|
3416
3418
|
output_node?: boolean;
|
|
3417
3419
|
python_module?: string;
|
|
3418
3420
|
}, {
|
|
@@ -3778,13 +3780,13 @@ export declare class ComfyApp {
|
|
|
3778
3780
|
};
|
|
3779
3781
|
output?: (string | (string | number)[])[];
|
|
3780
3782
|
experimental?: boolean;
|
|
3781
|
-
name?: string;
|
|
3782
3783
|
description?: string;
|
|
3784
|
+
name?: string;
|
|
3785
|
+
category?: string;
|
|
3783
3786
|
display_name?: string;
|
|
3784
3787
|
output_is_list?: boolean[];
|
|
3785
3788
|
output_name?: string[];
|
|
3786
3789
|
output_tooltips?: string[];
|
|
3787
|
-
category?: string;
|
|
3788
3790
|
output_node?: boolean;
|
|
3789
3791
|
python_module?: string;
|
|
3790
3792
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comfyorg/comfyui-frontend-types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
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.
|
|
16
|
+
"@comfyorg/litegraph": "^0.10.0-0"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"vue": "^3.5.13",
|