@comfyorg/comfyui-frontend-types 1.8.1 → 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.
Files changed (2) hide show
  1. package/index.d.ts +66 -64
  2. package/package.json +3 -3
package/index.d.ts CHANGED
@@ -3,6 +3,7 @@ import { default as default_2 } from '../components/dialog/content/LoadWorkflowW
3
3
  import { default as default_3 } from '../components/dialog/content/MissingModelsWarning.vue';
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
+ import { default as default_6 } from '../components/dialog/content/IssueReportDialogContent.vue';
6
7
  import { ISerialisedGraph } from '@comfyorg/litegraph';
7
8
  import { IWidget } from '@comfyorg/litegraph';
8
9
  import { LGraph } from '@comfyorg/litegraph';
@@ -1106,6 +1107,7 @@ export declare class ComfyApp {
1106
1107
  showAboutDialog: () => void;
1107
1108
  showExecutionErrorDialog: (props: InstanceType<typeof default_4>["$props"]) => void;
1108
1109
  showTemplateWorkflowsDialog: (props?: InstanceType<typeof default_5>["$props"]) => void;
1110
+ showIssueReportDialog: (props: InstanceType<typeof default_6>["$props"]) => void;
1109
1111
  prompt: ({ title, message, defaultValue }: {
1110
1112
  title: string;
1111
1113
  message: string;
@@ -14503,6 +14505,38 @@ export declare class ComfyApp {
14503
14505
  read_node_id?: string | number;
14504
14506
  }>>>;
14505
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
+ };
14506
14540
  outputs?: Record<string | number, z.objectOutputType<{
14507
14541
  audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
14508
14542
  filename: z.ZodOptional<z.ZodString>;
@@ -14538,38 +14572,6 @@ export declare class ComfyApp {
14538
14572
  node_id?: string | number;
14539
14573
  read_node_id?: string | number;
14540
14574
  }>;
14541
- status?: {
14542
- messages?: (["execution_start", {
14543
- prompt_id?: string;
14544
- timestamp?: number;
14545
- }, ...unknown[]] | ["execution_success", {
14546
- prompt_id?: string;
14547
- timestamp?: number;
14548
- }, ...unknown[]] | ["execution_cached", {
14549
- nodes?: (string | number)[];
14550
- prompt_id?: string;
14551
- timestamp?: number;
14552
- }, ...unknown[]] | ["execution_interrupted", {
14553
- prompt_id?: string;
14554
- timestamp?: number;
14555
- node_id?: string | number;
14556
- node_type?: string;
14557
- executed?: (string | number)[];
14558
- }, ...unknown[]] | ["execution_error", {
14559
- prompt_id?: string;
14560
- timestamp?: number;
14561
- node_id?: string | number;
14562
- node_type?: string;
14563
- executed?: (string | number)[];
14564
- exception_message?: string;
14565
- exception_type?: string;
14566
- traceback?: string[];
14567
- current_inputs?: any;
14568
- current_outputs?: any;
14569
- }, ...unknown[]])[];
14570
- status_str?: "error" | "success";
14571
- completed?: boolean;
14572
- };
14573
14575
  taskType?: "History";
14574
14576
  prompt?: [number, string, Record<string, {
14575
14577
  inputs?: Record<string, any>;
@@ -14746,6 +14748,38 @@ export declare class ComfyApp {
14746
14748
  client_id?: string;
14747
14749
  }, (string | number)[], ...unknown[]];
14748
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
+ };
14749
14783
  outputs?: Record<string | number, z.objectInputType<{
14750
14784
  audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
14751
14785
  filename: z.ZodOptional<z.ZodString>;
@@ -14781,38 +14815,6 @@ export declare class ComfyApp {
14781
14815
  node_id?: string | number;
14782
14816
  read_node_id?: string | number;
14783
14817
  }>;
14784
- status?: {
14785
- messages?: (["execution_start", {
14786
- prompt_id?: string;
14787
- timestamp?: number;
14788
- }, ...unknown[]] | ["execution_success", {
14789
- prompt_id?: string;
14790
- timestamp?: number;
14791
- }, ...unknown[]] | ["execution_cached", {
14792
- nodes?: (string | number)[];
14793
- prompt_id?: string;
14794
- timestamp?: number;
14795
- }, ...unknown[]] | ["execution_interrupted", {
14796
- prompt_id?: string;
14797
- timestamp?: number;
14798
- node_id?: string | number;
14799
- node_type?: string;
14800
- executed?: (string | number)[];
14801
- }, ...unknown[]] | ["execution_error", {
14802
- prompt_id?: string;
14803
- timestamp?: number;
14804
- node_id?: string | number;
14805
- node_type?: string;
14806
- executed?: (string | number)[];
14807
- exception_message?: string;
14808
- exception_type?: string;
14809
- traceback?: string[];
14810
- current_inputs?: any;
14811
- current_outputs?: any;
14812
- }, ...unknown[]])[];
14813
- status_str?: "error" | "success";
14814
- completed?: boolean;
14815
- };
14816
14818
  taskType?: "History";
14817
14819
  prompt?: [number, string, Record<string, {
14818
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.1",
3
+ "version": "1.8.3",
4
4
  "types": "./index.d.ts",
5
5
  "files": [
6
6
  "index.d.ts"
@@ -13,10 +13,10 @@
13
13
  "description": "TypeScript definitions for @comfyorg/comfyui-frontend",
14
14
  "license": "GPL-3.0-only",
15
15
  "dependencies": {
16
- "@comfyorg/litegraph": "^0.8.60"
16
+ "@comfyorg/litegraph": "^0.8.61"
17
17
  },
18
18
  "peerDependencies": {
19
- "vue": "^3.4.31",
19
+ "vue": "^3.5.13",
20
20
  "zod": "^3.23.8"
21
21
  }
22
22
  }