@comfyorg/comfyui-frontend-types 1.8.2 → 1.8.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 +64 -64
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -14505,6 +14505,38 @@ export declare class ComfyApp {
|
|
|
14505
14505
|
read_node_id?: string | number;
|
|
14506
14506
|
}>>>;
|
|
14507
14507
|
}, "strip", z.ZodTypeAny, {
|
|
14508
|
+
status?: {
|
|
14509
|
+
messages?: (["execution_start", {
|
|
14510
|
+
prompt_id?: string;
|
|
14511
|
+
timestamp?: number;
|
|
14512
|
+
}, ...unknown[]] | ["execution_success", {
|
|
14513
|
+
prompt_id?: string;
|
|
14514
|
+
timestamp?: number;
|
|
14515
|
+
}, ...unknown[]] | ["execution_cached", {
|
|
14516
|
+
nodes?: (string | number)[];
|
|
14517
|
+
prompt_id?: string;
|
|
14518
|
+
timestamp?: number;
|
|
14519
|
+
}, ...unknown[]] | ["execution_interrupted", {
|
|
14520
|
+
prompt_id?: string;
|
|
14521
|
+
timestamp?: number;
|
|
14522
|
+
node_id?: string | number;
|
|
14523
|
+
node_type?: string;
|
|
14524
|
+
executed?: (string | number)[];
|
|
14525
|
+
}, ...unknown[]] | ["execution_error", {
|
|
14526
|
+
prompt_id?: string;
|
|
14527
|
+
timestamp?: number;
|
|
14528
|
+
node_id?: string | number;
|
|
14529
|
+
node_type?: string;
|
|
14530
|
+
executed?: (string | number)[];
|
|
14531
|
+
exception_message?: string;
|
|
14532
|
+
exception_type?: string;
|
|
14533
|
+
traceback?: string[];
|
|
14534
|
+
current_inputs?: any;
|
|
14535
|
+
current_outputs?: any;
|
|
14536
|
+
}, ...unknown[]])[];
|
|
14537
|
+
status_str?: "error" | "success";
|
|
14538
|
+
completed?: boolean;
|
|
14539
|
+
};
|
|
14508
14540
|
outputs?: Record<string | number, z.objectOutputType<{
|
|
14509
14541
|
audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14510
14542
|
filename: z.ZodOptional<z.ZodString>;
|
|
@@ -14540,38 +14572,6 @@ export declare class ComfyApp {
|
|
|
14540
14572
|
node_id?: string | number;
|
|
14541
14573
|
read_node_id?: string | number;
|
|
14542
14574
|
}>;
|
|
14543
|
-
status?: {
|
|
14544
|
-
messages?: (["execution_start", {
|
|
14545
|
-
prompt_id?: string;
|
|
14546
|
-
timestamp?: number;
|
|
14547
|
-
}, ...unknown[]] | ["execution_success", {
|
|
14548
|
-
prompt_id?: string;
|
|
14549
|
-
timestamp?: number;
|
|
14550
|
-
}, ...unknown[]] | ["execution_cached", {
|
|
14551
|
-
nodes?: (string | number)[];
|
|
14552
|
-
prompt_id?: string;
|
|
14553
|
-
timestamp?: number;
|
|
14554
|
-
}, ...unknown[]] | ["execution_interrupted", {
|
|
14555
|
-
prompt_id?: string;
|
|
14556
|
-
timestamp?: number;
|
|
14557
|
-
node_id?: string | number;
|
|
14558
|
-
node_type?: string;
|
|
14559
|
-
executed?: (string | number)[];
|
|
14560
|
-
}, ...unknown[]] | ["execution_error", {
|
|
14561
|
-
prompt_id?: string;
|
|
14562
|
-
timestamp?: number;
|
|
14563
|
-
node_id?: string | number;
|
|
14564
|
-
node_type?: string;
|
|
14565
|
-
executed?: (string | number)[];
|
|
14566
|
-
exception_message?: string;
|
|
14567
|
-
exception_type?: string;
|
|
14568
|
-
traceback?: string[];
|
|
14569
|
-
current_inputs?: any;
|
|
14570
|
-
current_outputs?: any;
|
|
14571
|
-
}, ...unknown[]])[];
|
|
14572
|
-
status_str?: "error" | "success";
|
|
14573
|
-
completed?: boolean;
|
|
14574
|
-
};
|
|
14575
14575
|
taskType?: "History";
|
|
14576
14576
|
prompt?: [number, string, Record<string, {
|
|
14577
14577
|
inputs?: Record<string, any>;
|
|
@@ -14748,6 +14748,38 @@ export declare class ComfyApp {
|
|
|
14748
14748
|
client_id?: string;
|
|
14749
14749
|
}, (string | number)[], ...unknown[]];
|
|
14750
14750
|
}, {
|
|
14751
|
+
status?: {
|
|
14752
|
+
messages?: (["execution_start", {
|
|
14753
|
+
prompt_id?: string;
|
|
14754
|
+
timestamp?: number;
|
|
14755
|
+
}, ...unknown[]] | ["execution_success", {
|
|
14756
|
+
prompt_id?: string;
|
|
14757
|
+
timestamp?: number;
|
|
14758
|
+
}, ...unknown[]] | ["execution_cached", {
|
|
14759
|
+
nodes?: (string | number)[];
|
|
14760
|
+
prompt_id?: string;
|
|
14761
|
+
timestamp?: number;
|
|
14762
|
+
}, ...unknown[]] | ["execution_interrupted", {
|
|
14763
|
+
prompt_id?: string;
|
|
14764
|
+
timestamp?: number;
|
|
14765
|
+
node_id?: string | number;
|
|
14766
|
+
node_type?: string;
|
|
14767
|
+
executed?: (string | number)[];
|
|
14768
|
+
}, ...unknown[]] | ["execution_error", {
|
|
14769
|
+
prompt_id?: string;
|
|
14770
|
+
timestamp?: number;
|
|
14771
|
+
node_id?: string | number;
|
|
14772
|
+
node_type?: string;
|
|
14773
|
+
executed?: (string | number)[];
|
|
14774
|
+
exception_message?: string;
|
|
14775
|
+
exception_type?: string;
|
|
14776
|
+
traceback?: string[];
|
|
14777
|
+
current_inputs?: any;
|
|
14778
|
+
current_outputs?: any;
|
|
14779
|
+
}, ...unknown[]])[];
|
|
14780
|
+
status_str?: "error" | "success";
|
|
14781
|
+
completed?: boolean;
|
|
14782
|
+
};
|
|
14751
14783
|
outputs?: Record<string | number, z.objectInputType<{
|
|
14752
14784
|
audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14753
14785
|
filename: z.ZodOptional<z.ZodString>;
|
|
@@ -14783,38 +14815,6 @@ export declare class ComfyApp {
|
|
|
14783
14815
|
node_id?: string | number;
|
|
14784
14816
|
read_node_id?: string | number;
|
|
14785
14817
|
}>;
|
|
14786
|
-
status?: {
|
|
14787
|
-
messages?: (["execution_start", {
|
|
14788
|
-
prompt_id?: string;
|
|
14789
|
-
timestamp?: number;
|
|
14790
|
-
}, ...unknown[]] | ["execution_success", {
|
|
14791
|
-
prompt_id?: string;
|
|
14792
|
-
timestamp?: number;
|
|
14793
|
-
}, ...unknown[]] | ["execution_cached", {
|
|
14794
|
-
nodes?: (string | number)[];
|
|
14795
|
-
prompt_id?: string;
|
|
14796
|
-
timestamp?: number;
|
|
14797
|
-
}, ...unknown[]] | ["execution_interrupted", {
|
|
14798
|
-
prompt_id?: string;
|
|
14799
|
-
timestamp?: number;
|
|
14800
|
-
node_id?: string | number;
|
|
14801
|
-
node_type?: string;
|
|
14802
|
-
executed?: (string | number)[];
|
|
14803
|
-
}, ...unknown[]] | ["execution_error", {
|
|
14804
|
-
prompt_id?: string;
|
|
14805
|
-
timestamp?: number;
|
|
14806
|
-
node_id?: string | number;
|
|
14807
|
-
node_type?: string;
|
|
14808
|
-
executed?: (string | number)[];
|
|
14809
|
-
exception_message?: string;
|
|
14810
|
-
exception_type?: string;
|
|
14811
|
-
traceback?: string[];
|
|
14812
|
-
current_inputs?: any;
|
|
14813
|
-
current_outputs?: any;
|
|
14814
|
-
}, ...unknown[]])[];
|
|
14815
|
-
status_str?: "error" | "success";
|
|
14816
|
-
completed?: boolean;
|
|
14817
|
-
};
|
|
14818
14818
|
taskType?: "History";
|
|
14819
14819
|
prompt?: [number, string, Record<string, {
|
|
14820
14820
|
inputs?: Record<string, any>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comfyorg/comfyui-frontend-types",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.3",
|
|
4
4
|
"types": "./index.d.ts",
|
|
5
5
|
"files": [
|
|
6
6
|
"index.d.ts"
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"@comfyorg/litegraph": "^0.8.61"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"vue": "^3.
|
|
19
|
+
"vue": "^3.5.13",
|
|
20
20
|
"zod": "^3.23.8"
|
|
21
21
|
}
|
|
22
22
|
}
|