@comfyorg/comfyui-frontend-types 1.6.6 → 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.
Files changed (2) hide show
  1. package/index.d.ts +1074 -415
  2. 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
  /**
@@ -30849,83 +30857,56 @@ export declare class ComfyApp {
30849
30857
  name: z.ZodString;
30850
30858
  colors: z.ZodObject<{
30851
30859
  node_slot: z.ZodObject<{
30852
- BOOLEAN: z.ZodOptional<z.ZodString>;
30853
30860
  CLIP: z.ZodOptional<z.ZodString>;
30854
30861
  CLIP_VISION: z.ZodOptional<z.ZodString>;
30855
30862
  CLIP_VISION_OUTPUT: z.ZodOptional<z.ZodString>;
30856
30863
  CONDITIONING: z.ZodOptional<z.ZodString>;
30857
30864
  CONTROL_NET: z.ZodOptional<z.ZodString>;
30858
- CONTROL_NET_WEIGHTS: z.ZodOptional<z.ZodString>;
30859
- FLOAT: z.ZodOptional<z.ZodString>;
30860
- GLIGEN: z.ZodOptional<z.ZodString>;
30861
30865
  IMAGE: z.ZodOptional<z.ZodString>;
30862
- IMAGEUPLOAD: z.ZodOptional<z.ZodString>;
30863
- INT: z.ZodOptional<z.ZodString>;
30864
30866
  LATENT: z.ZodOptional<z.ZodString>;
30865
- LATENT_KEYFRAME: z.ZodOptional<z.ZodString>;
30866
30867
  MASK: z.ZodOptional<z.ZodString>;
30867
30868
  MODEL: z.ZodOptional<z.ZodString>;
30869
+ STYLE_MODEL: z.ZodOptional<z.ZodString>;
30870
+ VAE: z.ZodOptional<z.ZodString>;
30871
+ NOISE: z.ZodOptional<z.ZodString>;
30872
+ GUIDER: z.ZodOptional<z.ZodString>;
30868
30873
  SAMPLER: z.ZodOptional<z.ZodString>;
30869
30874
  SIGMAS: z.ZodOptional<z.ZodString>;
30870
- STRING: z.ZodOptional<z.ZodString>;
30871
- STYLE_MODEL: z.ZodOptional<z.ZodString>;
30872
- T2I_ADAPTER_WEIGHTS: z.ZodOptional<z.ZodString>;
30873
30875
  TAESD: z.ZodOptional<z.ZodString>;
30874
- TIMESTEP_KEYFRAME: z.ZodOptional<z.ZodString>;
30875
- UPSCALE_MODEL: z.ZodOptional<z.ZodString>;
30876
- VAE: z.ZodOptional<z.ZodString>;
30877
30876
  }, "strip", z.ZodTypeAny, {
30878
- BOOLEAN?: string;
30879
30877
  CLIP?: string;
30880
30878
  CLIP_VISION?: string;
30881
30879
  CLIP_VISION_OUTPUT?: string;
30882
30880
  CONDITIONING?: string;
30883
30881
  CONTROL_NET?: string;
30884
- CONTROL_NET_WEIGHTS?: string;
30885
- FLOAT?: string;
30886
- GLIGEN?: string;
30887
30882
  IMAGE?: string;
30888
- IMAGEUPLOAD?: string;
30889
- INT?: string;
30890
30883
  LATENT?: string;
30891
- LATENT_KEYFRAME?: string;
30892
30884
  MASK?: string;
30893
30885
  MODEL?: string;
30886
+ STYLE_MODEL?: string;
30887
+ VAE?: string;
30888
+ NOISE?: string;
30889
+ GUIDER?: string;
30894
30890
  SAMPLER?: string;
30895
30891
  SIGMAS?: string;
30896
- STRING?: string;
30897
- STYLE_MODEL?: string;
30898
- T2I_ADAPTER_WEIGHTS?: string;
30899
30892
  TAESD?: string;
30900
- TIMESTEP_KEYFRAME?: string;
30901
- UPSCALE_MODEL?: string;
30902
- VAE?: string;
30903
30893
  }, {
30904
- BOOLEAN?: string;
30905
30894
  CLIP?: string;
30906
30895
  CLIP_VISION?: string;
30907
30896
  CLIP_VISION_OUTPUT?: string;
30908
30897
  CONDITIONING?: string;
30909
30898
  CONTROL_NET?: string;
30910
- CONTROL_NET_WEIGHTS?: string;
30911
- FLOAT?: string;
30912
- GLIGEN?: string;
30913
30899
  IMAGE?: string;
30914
- IMAGEUPLOAD?: string;
30915
- INT?: string;
30916
30900
  LATENT?: string;
30917
- LATENT_KEYFRAME?: string;
30918
30901
  MASK?: string;
30919
30902
  MODEL?: string;
30903
+ STYLE_MODEL?: string;
30904
+ VAE?: string;
30905
+ NOISE?: string;
30906
+ GUIDER?: string;
30920
30907
  SAMPLER?: string;
30921
30908
  SIGMAS?: string;
30922
- STRING?: string;
30923
- STYLE_MODEL?: string;
30924
- T2I_ADAPTER_WEIGHTS?: string;
30925
30909
  TAESD?: string;
30926
- TIMESTEP_KEYFRAME?: string;
30927
- UPSCALE_MODEL?: string;
30928
- VAE?: string;
30929
30910
  }>;
30930
30911
  litegraph_base: z.ZodObject<{
30931
30912
  BACKGROUND_IMAGE: z.ZodOptional<z.ZodString>;
@@ -30938,7 +30919,7 @@ export declare class ComfyApp {
30938
30919
  NODE_DEFAULT_COLOR: z.ZodOptional<z.ZodString>;
30939
30920
  NODE_DEFAULT_BGCOLOR: z.ZodOptional<z.ZodString>;
30940
30921
  NODE_DEFAULT_BOXCOLOR: z.ZodOptional<z.ZodString>;
30941
- NODE_DEFAULT_SHAPE: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>]>>;
30922
+ NODE_DEFAULT_SHAPE: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodString]>>;
30942
30923
  NODE_BOX_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
30943
30924
  NODE_BYPASS_BGCOLOR: z.ZodOptional<z.ZodString>;
30944
30925
  NODE_ERROR_COLOUR: z.ZodOptional<z.ZodString>;
@@ -30964,7 +30945,7 @@ export declare class ComfyApp {
30964
30945
  NODE_DEFAULT_COLOR?: string;
30965
30946
  NODE_DEFAULT_BGCOLOR?: string;
30966
30947
  NODE_DEFAULT_BOXCOLOR?: string;
30967
- NODE_DEFAULT_SHAPE?: RenderShape;
30948
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
30968
30949
  NODE_BOX_OUTLINE_COLOR?: string;
30969
30950
  NODE_BYPASS_BGCOLOR?: string;
30970
30951
  NODE_ERROR_COLOUR?: string;
@@ -30990,7 +30971,7 @@ export declare class ComfyApp {
30990
30971
  NODE_DEFAULT_COLOR?: string;
30991
30972
  NODE_DEFAULT_BGCOLOR?: string;
30992
30973
  NODE_DEFAULT_BOXCOLOR?: string;
30993
- NODE_DEFAULT_SHAPE?: RenderShape;
30974
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
30994
30975
  NODE_BOX_OUTLINE_COLOR?: string;
30995
30976
  NODE_BYPASS_BGCOLOR?: string;
30996
30977
  NODE_ERROR_COLOUR?: string;
@@ -31007,24 +30988,24 @@ export declare class ComfyApp {
31007
30988
  BADGE_BG_COLOR?: string;
31008
30989
  }>;
31009
30990
  comfy_base: z.ZodObject<{
31010
- "fg-color": z.ZodString;
31011
- "bg-color": z.ZodString;
31012
- "bg-img": z.ZodOptional<z.ZodString>;
31013
- "comfy-menu-bg": z.ZodString;
30991
+ "fg-color": z.ZodOptional<z.ZodString>;
30992
+ "bg-color": z.ZodOptional<z.ZodString>;
30993
+ "bg-img": z.ZodOptional<z.ZodOptional<z.ZodString>>;
30994
+ "comfy-menu-bg": z.ZodOptional<z.ZodString>;
31014
30995
  "comfy-menu-secondary-bg": z.ZodOptional<z.ZodString>;
31015
- "comfy-input-bg": z.ZodString;
31016
- "input-text": z.ZodString;
31017
- "descrip-text": z.ZodString;
31018
- "drag-text": z.ZodString;
31019
- "error-text": z.ZodString;
31020
- "border-color": z.ZodString;
31021
- "tr-even-bg-color": z.ZodString;
31022
- "tr-odd-bg-color": z.ZodString;
31023
- "content-bg": z.ZodString;
31024
- "content-fg": z.ZodString;
31025
- "content-hover-bg": z.ZodString;
31026
- "content-hover-fg": z.ZodString;
31027
- "bar-shadow": z.ZodString;
30996
+ "comfy-input-bg": z.ZodOptional<z.ZodString>;
30997
+ "input-text": z.ZodOptional<z.ZodString>;
30998
+ "descrip-text": z.ZodOptional<z.ZodString>;
30999
+ "drag-text": z.ZodOptional<z.ZodString>;
31000
+ "error-text": z.ZodOptional<z.ZodString>;
31001
+ "border-color": z.ZodOptional<z.ZodString>;
31002
+ "tr-even-bg-color": z.ZodOptional<z.ZodString>;
31003
+ "tr-odd-bg-color": z.ZodOptional<z.ZodString>;
31004
+ "content-bg": z.ZodOptional<z.ZodString>;
31005
+ "content-fg": z.ZodOptional<z.ZodString>;
31006
+ "content-hover-bg": z.ZodOptional<z.ZodString>;
31007
+ "content-hover-fg": z.ZodOptional<z.ZodString>;
31008
+ "bar-shadow": z.ZodOptional<z.ZodString>;
31028
31009
  }, "strip", z.ZodTypeAny, {
31029
31010
  "fg-color"?: string;
31030
31011
  "bg-color"?: string;
@@ -31064,113 +31045,26 @@ export declare class ComfyApp {
31064
31045
  "content-hover-fg"?: string;
31065
31046
  "bar-shadow"?: string;
31066
31047
  }>;
31067
- }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
31068
- node_slot: z.ZodObject<{
31069
- BOOLEAN: z.ZodOptional<z.ZodString>;
31070
- CLIP: z.ZodOptional<z.ZodString>;
31071
- CLIP_VISION: z.ZodOptional<z.ZodString>;
31072
- CLIP_VISION_OUTPUT: z.ZodOptional<z.ZodString>;
31073
- CONDITIONING: z.ZodOptional<z.ZodString>;
31074
- CONTROL_NET: z.ZodOptional<z.ZodString>;
31075
- CONTROL_NET_WEIGHTS: z.ZodOptional<z.ZodString>;
31076
- FLOAT: z.ZodOptional<z.ZodString>;
31077
- GLIGEN: z.ZodOptional<z.ZodString>;
31078
- IMAGE: z.ZodOptional<z.ZodString>;
31079
- IMAGEUPLOAD: z.ZodOptional<z.ZodString>;
31080
- INT: z.ZodOptional<z.ZodString>;
31081
- LATENT: z.ZodOptional<z.ZodString>;
31082
- LATENT_KEYFRAME: z.ZodOptional<z.ZodString>;
31083
- MASK: z.ZodOptional<z.ZodString>;
31084
- MODEL: z.ZodOptional<z.ZodString>;
31085
- SAMPLER: z.ZodOptional<z.ZodString>;
31086
- SIGMAS: z.ZodOptional<z.ZodString>;
31087
- STRING: z.ZodOptional<z.ZodString>;
31088
- STYLE_MODEL: z.ZodOptional<z.ZodString>;
31089
- T2I_ADAPTER_WEIGHTS: z.ZodOptional<z.ZodString>;
31090
- TAESD: z.ZodOptional<z.ZodString>;
31091
- TIMESTEP_KEYFRAME: z.ZodOptional<z.ZodString>;
31092
- UPSCALE_MODEL: z.ZodOptional<z.ZodString>;
31093
- VAE: z.ZodOptional<z.ZodString>;
31094
- }, "strip", z.ZodTypeAny, {
31095
- BOOLEAN?: string;
31048
+ }, "strip", z.ZodTypeAny, {
31049
+ node_slot?: {
31096
31050
  CLIP?: string;
31097
31051
  CLIP_VISION?: string;
31098
31052
  CLIP_VISION_OUTPUT?: string;
31099
31053
  CONDITIONING?: string;
31100
31054
  CONTROL_NET?: string;
31101
- CONTROL_NET_WEIGHTS?: string;
31102
- FLOAT?: string;
31103
- GLIGEN?: string;
31104
31055
  IMAGE?: string;
31105
- IMAGEUPLOAD?: string;
31106
- INT?: string;
31107
31056
  LATENT?: string;
31108
- LATENT_KEYFRAME?: string;
31109
31057
  MASK?: string;
31110
31058
  MODEL?: string;
31111
- SAMPLER?: string;
31112
- SIGMAS?: string;
31113
- STRING?: string;
31114
31059
  STYLE_MODEL?: string;
31115
- T2I_ADAPTER_WEIGHTS?: string;
31116
- TAESD?: string;
31117
- TIMESTEP_KEYFRAME?: string;
31118
- UPSCALE_MODEL?: string;
31119
31060
  VAE?: string;
31120
- }, {
31121
- BOOLEAN?: string;
31122
- CLIP?: string;
31123
- CLIP_VISION?: string;
31124
- CLIP_VISION_OUTPUT?: string;
31125
- CONDITIONING?: string;
31126
- CONTROL_NET?: string;
31127
- CONTROL_NET_WEIGHTS?: string;
31128
- FLOAT?: string;
31129
- GLIGEN?: string;
31130
- IMAGE?: string;
31131
- IMAGEUPLOAD?: string;
31132
- INT?: string;
31133
- LATENT?: string;
31134
- LATENT_KEYFRAME?: string;
31135
- MASK?: string;
31136
- MODEL?: string;
31061
+ NOISE?: string;
31062
+ GUIDER?: string;
31137
31063
  SAMPLER?: string;
31138
31064
  SIGMAS?: string;
31139
- STRING?: string;
31140
- STYLE_MODEL?: string;
31141
- T2I_ADAPTER_WEIGHTS?: string;
31142
31065
  TAESD?: string;
31143
- TIMESTEP_KEYFRAME?: string;
31144
- UPSCALE_MODEL?: string;
31145
- VAE?: string;
31146
- }>;
31147
- litegraph_base: z.ZodObject<{
31148
- BACKGROUND_IMAGE: z.ZodOptional<z.ZodString>;
31149
- CLEAR_BACKGROUND_COLOR: z.ZodOptional<z.ZodString>;
31150
- NODE_TITLE_COLOR: z.ZodOptional<z.ZodString>;
31151
- NODE_SELECTED_TITLE_COLOR: z.ZodOptional<z.ZodString>;
31152
- NODE_TEXT_SIZE: z.ZodOptional<z.ZodNumber>;
31153
- NODE_TEXT_COLOR: z.ZodOptional<z.ZodString>;
31154
- NODE_SUBTEXT_SIZE: z.ZodOptional<z.ZodNumber>;
31155
- NODE_DEFAULT_COLOR: z.ZodOptional<z.ZodString>;
31156
- NODE_DEFAULT_BGCOLOR: z.ZodOptional<z.ZodString>;
31157
- NODE_DEFAULT_BOXCOLOR: z.ZodOptional<z.ZodString>;
31158
- NODE_DEFAULT_SHAPE: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>]>>;
31159
- NODE_BOX_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
31160
- NODE_BYPASS_BGCOLOR: z.ZodOptional<z.ZodString>;
31161
- NODE_ERROR_COLOUR: z.ZodOptional<z.ZodString>;
31162
- DEFAULT_SHADOW_COLOR: z.ZodOptional<z.ZodString>;
31163
- DEFAULT_GROUP_FONT: z.ZodOptional<z.ZodNumber>;
31164
- WIDGET_BGCOLOR: z.ZodOptional<z.ZodString>;
31165
- WIDGET_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
31166
- WIDGET_TEXT_COLOR: z.ZodOptional<z.ZodString>;
31167
- WIDGET_SECONDARY_TEXT_COLOR: z.ZodOptional<z.ZodString>;
31168
- LINK_COLOR: z.ZodOptional<z.ZodString>;
31169
- EVENT_LINK_COLOR: z.ZodOptional<z.ZodString>;
31170
- CONNECTING_LINK_COLOR: z.ZodOptional<z.ZodString>;
31171
- BADGE_FG_COLOR: z.ZodOptional<z.ZodString>;
31172
- BADGE_BG_COLOR: z.ZodOptional<z.ZodString>;
31173
- }, "strip", z.ZodTypeAny, {
31066
+ };
31067
+ litegraph_base?: {
31174
31068
  BACKGROUND_IMAGE?: string;
31175
31069
  CLEAR_BACKGROUND_COLOR?: string;
31176
31070
  NODE_TITLE_COLOR?: string;
@@ -31181,7 +31075,7 @@ export declare class ComfyApp {
31181
31075
  NODE_DEFAULT_COLOR?: string;
31182
31076
  NODE_DEFAULT_BGCOLOR?: string;
31183
31077
  NODE_DEFAULT_BOXCOLOR?: string;
31184
- NODE_DEFAULT_SHAPE?: RenderShape;
31078
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
31185
31079
  NODE_BOX_OUTLINE_COLOR?: string;
31186
31080
  NODE_BYPASS_BGCOLOR?: string;
31187
31081
  NODE_ERROR_COLOUR?: string;
@@ -31196,7 +31090,47 @@ export declare class ComfyApp {
31196
31090
  CONNECTING_LINK_COLOR?: string;
31197
31091
  BADGE_FG_COLOR?: string;
31198
31092
  BADGE_BG_COLOR?: string;
31199
- }, {
31093
+ };
31094
+ comfy_base?: {
31095
+ "fg-color"?: string;
31096
+ "bg-color"?: string;
31097
+ "bg-img"?: string;
31098
+ "comfy-menu-bg"?: string;
31099
+ "comfy-menu-secondary-bg"?: string;
31100
+ "comfy-input-bg"?: string;
31101
+ "input-text"?: string;
31102
+ "descrip-text"?: string;
31103
+ "drag-text"?: string;
31104
+ "error-text"?: string;
31105
+ "border-color"?: string;
31106
+ "tr-even-bg-color"?: string;
31107
+ "tr-odd-bg-color"?: string;
31108
+ "content-bg"?: string;
31109
+ "content-fg"?: string;
31110
+ "content-hover-bg"?: string;
31111
+ "content-hover-fg"?: string;
31112
+ "bar-shadow"?: string;
31113
+ };
31114
+ }, {
31115
+ node_slot?: {
31116
+ CLIP?: string;
31117
+ CLIP_VISION?: string;
31118
+ CLIP_VISION_OUTPUT?: string;
31119
+ CONDITIONING?: string;
31120
+ CONTROL_NET?: string;
31121
+ IMAGE?: string;
31122
+ LATENT?: string;
31123
+ MASK?: string;
31124
+ MODEL?: string;
31125
+ STYLE_MODEL?: string;
31126
+ VAE?: string;
31127
+ NOISE?: string;
31128
+ GUIDER?: string;
31129
+ SAMPLER?: string;
31130
+ SIGMAS?: string;
31131
+ TAESD?: string;
31132
+ };
31133
+ litegraph_base?: {
31200
31134
  BACKGROUND_IMAGE?: string;
31201
31135
  CLEAR_BACKGROUND_COLOR?: string;
31202
31136
  NODE_TITLE_COLOR?: string;
@@ -31207,7 +31141,7 @@ export declare class ComfyApp {
31207
31141
  NODE_DEFAULT_COLOR?: string;
31208
31142
  NODE_DEFAULT_BGCOLOR?: string;
31209
31143
  NODE_DEFAULT_BOXCOLOR?: string;
31210
- NODE_DEFAULT_SHAPE?: RenderShape;
31144
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
31211
31145
  NODE_BOX_OUTLINE_COLOR?: string;
31212
31146
  NODE_BYPASS_BGCOLOR?: string;
31213
31147
  NODE_ERROR_COLOUR?: string;
@@ -31222,46 +31156,8 @@ export declare class ComfyApp {
31222
31156
  CONNECTING_LINK_COLOR?: string;
31223
31157
  BADGE_FG_COLOR?: string;
31224
31158
  BADGE_BG_COLOR?: string;
31225
- }>;
31226
- comfy_base: z.ZodObject<{
31227
- "fg-color": z.ZodString;
31228
- "bg-color": z.ZodString;
31229
- "bg-img": z.ZodOptional<z.ZodString>;
31230
- "comfy-menu-bg": z.ZodString;
31231
- "comfy-menu-secondary-bg": z.ZodOptional<z.ZodString>;
31232
- "comfy-input-bg": z.ZodString;
31233
- "input-text": z.ZodString;
31234
- "descrip-text": z.ZodString;
31235
- "drag-text": z.ZodString;
31236
- "error-text": z.ZodString;
31237
- "border-color": z.ZodString;
31238
- "tr-even-bg-color": z.ZodString;
31239
- "tr-odd-bg-color": z.ZodString;
31240
- "content-bg": z.ZodString;
31241
- "content-fg": z.ZodString;
31242
- "content-hover-bg": z.ZodString;
31243
- "content-hover-fg": z.ZodString;
31244
- "bar-shadow": z.ZodString;
31245
- }, "strip", z.ZodTypeAny, {
31246
- "fg-color"?: string;
31247
- "bg-color"?: string;
31248
- "bg-img"?: string;
31249
- "comfy-menu-bg"?: string;
31250
- "comfy-menu-secondary-bg"?: string;
31251
- "comfy-input-bg"?: string;
31252
- "input-text"?: string;
31253
- "descrip-text"?: string;
31254
- "drag-text"?: string;
31255
- "error-text"?: string;
31256
- "border-color"?: string;
31257
- "tr-even-bg-color"?: string;
31258
- "tr-odd-bg-color"?: string;
31259
- "content-bg"?: string;
31260
- "content-fg"?: string;
31261
- "content-hover-bg"?: string;
31262
- "content-hover-fg"?: string;
31263
- "bar-shadow"?: string;
31264
- }, {
31159
+ };
31160
+ comfy_base?: {
31265
31161
  "fg-color"?: string;
31266
31162
  "bg-color"?: string;
31267
31163
  "bg-img"?: string;
@@ -31280,86 +31176,63 @@ export declare class ComfyApp {
31280
31176
  "content-hover-bg"?: string;
31281
31177
  "content-hover-fg"?: string;
31282
31178
  "bar-shadow"?: string;
31283
- }>;
31284
- }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
31179
+ };
31180
+ }>;
31181
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
31182
+ id: z.ZodString;
31183
+ name: z.ZodString;
31184
+ colors: z.ZodObject<{
31285
31185
  node_slot: z.ZodObject<{
31286
- BOOLEAN: z.ZodOptional<z.ZodString>;
31287
31186
  CLIP: z.ZodOptional<z.ZodString>;
31288
31187
  CLIP_VISION: z.ZodOptional<z.ZodString>;
31289
31188
  CLIP_VISION_OUTPUT: z.ZodOptional<z.ZodString>;
31290
31189
  CONDITIONING: z.ZodOptional<z.ZodString>;
31291
31190
  CONTROL_NET: z.ZodOptional<z.ZodString>;
31292
- CONTROL_NET_WEIGHTS: z.ZodOptional<z.ZodString>;
31293
- FLOAT: z.ZodOptional<z.ZodString>;
31294
- GLIGEN: z.ZodOptional<z.ZodString>;
31295
31191
  IMAGE: z.ZodOptional<z.ZodString>;
31296
- IMAGEUPLOAD: z.ZodOptional<z.ZodString>;
31297
- INT: z.ZodOptional<z.ZodString>;
31298
31192
  LATENT: z.ZodOptional<z.ZodString>;
31299
- LATENT_KEYFRAME: z.ZodOptional<z.ZodString>;
31300
31193
  MASK: z.ZodOptional<z.ZodString>;
31301
31194
  MODEL: z.ZodOptional<z.ZodString>;
31195
+ STYLE_MODEL: z.ZodOptional<z.ZodString>;
31196
+ VAE: z.ZodOptional<z.ZodString>;
31197
+ NOISE: z.ZodOptional<z.ZodString>;
31198
+ GUIDER: z.ZodOptional<z.ZodString>;
31302
31199
  SAMPLER: z.ZodOptional<z.ZodString>;
31303
31200
  SIGMAS: z.ZodOptional<z.ZodString>;
31304
- STRING: z.ZodOptional<z.ZodString>;
31305
- STYLE_MODEL: z.ZodOptional<z.ZodString>;
31306
- T2I_ADAPTER_WEIGHTS: z.ZodOptional<z.ZodString>;
31307
31201
  TAESD: z.ZodOptional<z.ZodString>;
31308
- TIMESTEP_KEYFRAME: z.ZodOptional<z.ZodString>;
31309
- UPSCALE_MODEL: z.ZodOptional<z.ZodString>;
31310
- VAE: z.ZodOptional<z.ZodString>;
31311
31202
  }, "strip", z.ZodTypeAny, {
31312
- BOOLEAN?: string;
31313
31203
  CLIP?: string;
31314
31204
  CLIP_VISION?: string;
31315
31205
  CLIP_VISION_OUTPUT?: string;
31316
31206
  CONDITIONING?: string;
31317
31207
  CONTROL_NET?: string;
31318
- CONTROL_NET_WEIGHTS?: string;
31319
- FLOAT?: string;
31320
- GLIGEN?: string;
31321
31208
  IMAGE?: string;
31322
- IMAGEUPLOAD?: string;
31323
- INT?: string;
31324
31209
  LATENT?: string;
31325
- LATENT_KEYFRAME?: string;
31326
31210
  MASK?: string;
31327
31211
  MODEL?: string;
31212
+ STYLE_MODEL?: string;
31213
+ VAE?: string;
31214
+ NOISE?: string;
31215
+ GUIDER?: string;
31328
31216
  SAMPLER?: string;
31329
31217
  SIGMAS?: string;
31330
- STRING?: string;
31331
- STYLE_MODEL?: string;
31332
- T2I_ADAPTER_WEIGHTS?: string;
31333
31218
  TAESD?: string;
31334
- TIMESTEP_KEYFRAME?: string;
31335
- UPSCALE_MODEL?: string;
31336
- VAE?: string;
31337
31219
  }, {
31338
- BOOLEAN?: string;
31339
31220
  CLIP?: string;
31340
31221
  CLIP_VISION?: string;
31341
31222
  CLIP_VISION_OUTPUT?: string;
31342
31223
  CONDITIONING?: string;
31343
31224
  CONTROL_NET?: string;
31344
- CONTROL_NET_WEIGHTS?: string;
31345
- FLOAT?: string;
31346
- GLIGEN?: string;
31347
31225
  IMAGE?: string;
31348
- IMAGEUPLOAD?: string;
31349
- INT?: string;
31350
31226
  LATENT?: string;
31351
- LATENT_KEYFRAME?: string;
31352
31227
  MASK?: string;
31353
31228
  MODEL?: string;
31229
+ STYLE_MODEL?: string;
31230
+ VAE?: string;
31231
+ NOISE?: string;
31232
+ GUIDER?: string;
31354
31233
  SAMPLER?: string;
31355
31234
  SIGMAS?: string;
31356
- STRING?: string;
31357
- STYLE_MODEL?: string;
31358
- T2I_ADAPTER_WEIGHTS?: string;
31359
31235
  TAESD?: string;
31360
- TIMESTEP_KEYFRAME?: string;
31361
- UPSCALE_MODEL?: string;
31362
- VAE?: string;
31363
31236
  }>;
31364
31237
  litegraph_base: z.ZodObject<{
31365
31238
  BACKGROUND_IMAGE: z.ZodOptional<z.ZodString>;
@@ -31372,7 +31245,7 @@ export declare class ComfyApp {
31372
31245
  NODE_DEFAULT_COLOR: z.ZodOptional<z.ZodString>;
31373
31246
  NODE_DEFAULT_BGCOLOR: z.ZodOptional<z.ZodString>;
31374
31247
  NODE_DEFAULT_BOXCOLOR: z.ZodOptional<z.ZodString>;
31375
- NODE_DEFAULT_SHAPE: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>]>>;
31248
+ NODE_DEFAULT_SHAPE: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodString]>>;
31376
31249
  NODE_BOX_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
31377
31250
  NODE_BYPASS_BGCOLOR: z.ZodOptional<z.ZodString>;
31378
31251
  NODE_ERROR_COLOUR: z.ZodOptional<z.ZodString>;
@@ -31398,7 +31271,7 @@ export declare class ComfyApp {
31398
31271
  NODE_DEFAULT_COLOR?: string;
31399
31272
  NODE_DEFAULT_BGCOLOR?: string;
31400
31273
  NODE_DEFAULT_BOXCOLOR?: string;
31401
- NODE_DEFAULT_SHAPE?: RenderShape;
31274
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
31402
31275
  NODE_BOX_OUTLINE_COLOR?: string;
31403
31276
  NODE_BYPASS_BGCOLOR?: string;
31404
31277
  NODE_ERROR_COLOUR?: string;
@@ -31424,7 +31297,7 @@ export declare class ComfyApp {
31424
31297
  NODE_DEFAULT_COLOR?: string;
31425
31298
  NODE_DEFAULT_BGCOLOR?: string;
31426
31299
  NODE_DEFAULT_BOXCOLOR?: string;
31427
- NODE_DEFAULT_SHAPE?: RenderShape;
31300
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
31428
31301
  NODE_BOX_OUTLINE_COLOR?: string;
31429
31302
  NODE_BYPASS_BGCOLOR?: string;
31430
31303
  NODE_ERROR_COLOUR?: string;
@@ -31441,24 +31314,24 @@ export declare class ComfyApp {
31441
31314
  BADGE_BG_COLOR?: string;
31442
31315
  }>;
31443
31316
  comfy_base: z.ZodObject<{
31444
- "fg-color": z.ZodString;
31445
- "bg-color": z.ZodString;
31446
- "bg-img": z.ZodOptional<z.ZodString>;
31447
- "comfy-menu-bg": z.ZodString;
31317
+ "fg-color": z.ZodOptional<z.ZodString>;
31318
+ "bg-color": z.ZodOptional<z.ZodString>;
31319
+ "bg-img": z.ZodOptional<z.ZodOptional<z.ZodString>>;
31320
+ "comfy-menu-bg": z.ZodOptional<z.ZodString>;
31448
31321
  "comfy-menu-secondary-bg": z.ZodOptional<z.ZodString>;
31449
- "comfy-input-bg": z.ZodString;
31450
- "input-text": z.ZodString;
31451
- "descrip-text": z.ZodString;
31452
- "drag-text": z.ZodString;
31453
- "error-text": z.ZodString;
31454
- "border-color": z.ZodString;
31455
- "tr-even-bg-color": z.ZodString;
31456
- "tr-odd-bg-color": z.ZodString;
31457
- "content-bg": z.ZodString;
31458
- "content-fg": z.ZodString;
31459
- "content-hover-bg": z.ZodString;
31460
- "content-hover-fg": z.ZodString;
31461
- "bar-shadow": z.ZodString;
31322
+ "comfy-input-bg": z.ZodOptional<z.ZodString>;
31323
+ "input-text": z.ZodOptional<z.ZodString>;
31324
+ "descrip-text": z.ZodOptional<z.ZodString>;
31325
+ "drag-text": z.ZodOptional<z.ZodString>;
31326
+ "error-text": z.ZodOptional<z.ZodString>;
31327
+ "border-color": z.ZodOptional<z.ZodString>;
31328
+ "tr-even-bg-color": z.ZodOptional<z.ZodString>;
31329
+ "tr-odd-bg-color": z.ZodOptional<z.ZodString>;
31330
+ "content-bg": z.ZodOptional<z.ZodString>;
31331
+ "content-fg": z.ZodOptional<z.ZodString>;
31332
+ "content-hover-bg": z.ZodOptional<z.ZodString>;
31333
+ "content-hover-fg": z.ZodOptional<z.ZodString>;
31334
+ "bar-shadow": z.ZodOptional<z.ZodString>;
31462
31335
  }, "strip", z.ZodTypeAny, {
31463
31336
  "fg-color"?: string;
31464
31337
  "bg-color"?: string;
@@ -31498,37 +31371,24 @@ export declare class ComfyApp {
31498
31371
  "content-hover-fg"?: string;
31499
31372
  "bar-shadow"?: string;
31500
31373
  }>;
31501
- }, z.ZodTypeAny, "passthrough">>;
31502
- }, "strip", z.ZodTypeAny, {
31503
- name?: string;
31504
- id?: string;
31505
- colors?: {
31374
+ }, "strip", z.ZodTypeAny, {
31506
31375
  node_slot?: {
31507
- BOOLEAN?: string;
31508
31376
  CLIP?: string;
31509
31377
  CLIP_VISION?: string;
31510
31378
  CLIP_VISION_OUTPUT?: string;
31511
31379
  CONDITIONING?: string;
31512
31380
  CONTROL_NET?: string;
31513
- CONTROL_NET_WEIGHTS?: string;
31514
- FLOAT?: string;
31515
- GLIGEN?: string;
31516
31381
  IMAGE?: string;
31517
- IMAGEUPLOAD?: string;
31518
- INT?: string;
31519
31382
  LATENT?: string;
31520
- LATENT_KEYFRAME?: string;
31521
31383
  MASK?: string;
31522
31384
  MODEL?: string;
31385
+ STYLE_MODEL?: string;
31386
+ VAE?: string;
31387
+ NOISE?: string;
31388
+ GUIDER?: string;
31523
31389
  SAMPLER?: string;
31524
31390
  SIGMAS?: string;
31525
- STRING?: string;
31526
- STYLE_MODEL?: string;
31527
- T2I_ADAPTER_WEIGHTS?: string;
31528
31391
  TAESD?: string;
31529
- TIMESTEP_KEYFRAME?: string;
31530
- UPSCALE_MODEL?: string;
31531
- VAE?: string;
31532
31392
  };
31533
31393
  litegraph_base?: {
31534
31394
  BACKGROUND_IMAGE?: string;
@@ -31541,7 +31401,7 @@ export declare class ComfyApp {
31541
31401
  NODE_DEFAULT_COLOR?: string;
31542
31402
  NODE_DEFAULT_BGCOLOR?: string;
31543
31403
  NODE_DEFAULT_BOXCOLOR?: string;
31544
- NODE_DEFAULT_SHAPE?: RenderShape;
31404
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
31545
31405
  NODE_BOX_OUTLINE_COLOR?: string;
31546
31406
  NODE_BYPASS_BGCOLOR?: string;
31547
31407
  NODE_ERROR_COLOUR?: string;
@@ -31577,39 +31437,24 @@ export declare class ComfyApp {
31577
31437
  "content-hover-fg"?: string;
31578
31438
  "bar-shadow"?: string;
31579
31439
  };
31580
- } & {
31581
- [k: string]: unknown;
31582
- };
31583
- }, {
31584
- name?: string;
31585
- id?: string;
31586
- colors?: {
31440
+ }, {
31587
31441
  node_slot?: {
31588
- BOOLEAN?: string;
31589
31442
  CLIP?: string;
31590
31443
  CLIP_VISION?: string;
31591
31444
  CLIP_VISION_OUTPUT?: string;
31592
31445
  CONDITIONING?: string;
31593
31446
  CONTROL_NET?: string;
31594
- CONTROL_NET_WEIGHTS?: string;
31595
- FLOAT?: string;
31596
- GLIGEN?: string;
31597
31447
  IMAGE?: string;
31598
- IMAGEUPLOAD?: string;
31599
- INT?: string;
31600
31448
  LATENT?: string;
31601
- LATENT_KEYFRAME?: string;
31602
31449
  MASK?: string;
31603
31450
  MODEL?: string;
31451
+ STYLE_MODEL?: string;
31452
+ VAE?: string;
31453
+ NOISE?: string;
31454
+ GUIDER?: string;
31604
31455
  SAMPLER?: string;
31605
31456
  SIGMAS?: string;
31606
- STRING?: string;
31607
- STYLE_MODEL?: string;
31608
- T2I_ADAPTER_WEIGHTS?: string;
31609
31457
  TAESD?: string;
31610
- TIMESTEP_KEYFRAME?: string;
31611
- UPSCALE_MODEL?: string;
31612
- VAE?: string;
31613
31458
  };
31614
31459
  litegraph_base?: {
31615
31460
  BACKGROUND_IMAGE?: string;
@@ -31622,7 +31467,7 @@ export declare class ComfyApp {
31622
31467
  NODE_DEFAULT_COLOR?: string;
31623
31468
  NODE_DEFAULT_BGCOLOR?: string;
31624
31469
  NODE_DEFAULT_BOXCOLOR?: string;
31625
- NODE_DEFAULT_SHAPE?: RenderShape;
31470
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
31626
31471
  NODE_BOX_OUTLINE_COLOR?: string;
31627
31472
  NODE_BYPASS_BGCOLOR?: string;
31628
31473
  NODE_ERROR_COLOUR?: string;
@@ -31658,75 +31503,399 @@ export declare class ComfyApp {
31658
31503
  "content-hover-fg"?: string;
31659
31504
  "bar-shadow"?: string;
31660
31505
  };
31661
- } & {
31662
- [k: string]: unknown;
31663
- };
31664
- }>>;
31665
- 'Comfy.ConfirmClear': z.ZodBoolean;
31666
- 'Comfy.DevMode': z.ZodBoolean;
31667
- 'Comfy.Workflow.ShowMissingNodesWarning': z.ZodBoolean;
31668
- 'Comfy.Workflow.ShowMissingModelsWarning': z.ZodBoolean;
31669
- 'Comfy.DisableFloatRounding': z.ZodBoolean;
31670
- 'Comfy.DisableSliders': z.ZodBoolean;
31671
- 'Comfy.DOMClippingEnabled': z.ZodBoolean;
31672
- 'Comfy.EditAttention.Delta': z.ZodNumber;
31673
- 'Comfy.EnableTooltips': z.ZodBoolean;
31674
- 'Comfy.EnableWorkflowViewRestore': z.ZodBoolean;
31675
- 'Comfy.FloatRoundingPrecision': z.ZodNumber;
31676
- 'Comfy.Graph.CanvasInfo': z.ZodBoolean;
31677
- 'Comfy.Graph.ZoomSpeed': z.ZodNumber;
31678
- 'Comfy.Group.DoubleClickTitleToEdit': z.ZodBoolean;
31679
- 'Comfy.GroupSelectedNodes.Padding': z.ZodNumber;
31680
- 'Comfy.InvertMenuScrolling': z.ZodBoolean;
31681
- 'Comfy.Locale': z.ZodString;
31682
- 'Comfy.Logging.Enabled': z.ZodBoolean;
31683
- 'Comfy.NodeLibrary.Bookmarks': z.ZodArray<z.ZodString, "many">;
31684
- 'Comfy.NodeLibrary.Bookmarks.V2': z.ZodArray<z.ZodString, "many">;
31685
- 'Comfy.NodeLibrary.BookmarksCustomization': z.ZodRecord<z.ZodString, z.ZodObject<{
31686
- icon: z.ZodOptional<z.ZodString>;
31687
- color: z.ZodOptional<z.ZodString>;
31688
- }, "strip", z.ZodTypeAny, {
31689
- color?: string;
31690
- icon?: string;
31691
- }, {
31692
- color?: string;
31693
- icon?: string;
31694
- }>>;
31695
- 'Comfy.NodeInputConversionSubmenus': z.ZodBoolean;
31696
- 'Comfy.LinkRelease.Action': z.ZodEnum<[string, ...string[]]>;
31697
- 'Comfy.LinkRelease.ActionShift': z.ZodEnum<[string, ...string[]]>;
31698
- 'Comfy.NodeSearchBoxImpl.NodePreview': z.ZodBoolean;
31699
- 'Comfy.NodeSearchBoxImpl': z.ZodEnum<["default", "simple"]>;
31700
- 'Comfy.NodeSearchBoxImpl.ShowCategory': z.ZodBoolean;
31701
- 'Comfy.NodeSearchBoxImpl.ShowIdName': z.ZodBoolean;
31702
- 'Comfy.NodeSuggestions.number': z.ZodNumber;
31703
- 'Comfy.Node.ShowDeprecated': z.ZodBoolean;
31704
- 'Comfy.Node.ShowExperimental': z.ZodBoolean;
31705
- 'Comfy.PreviewFormat': z.ZodString;
31706
- 'Comfy.PromptFilename': z.ZodBoolean;
31707
- 'Comfy.Sidebar.Location': z.ZodEnum<["left", "right"]>;
31708
- 'Comfy.Sidebar.Size': z.ZodEnum<["small", "normal"]>;
31709
- 'Comfy.SwitchUser': z.ZodAny;
31710
- 'Comfy.SnapToGrid.GridSize': z.ZodNumber;
31711
- 'Comfy.TextareaWidget.FontSize': z.ZodNumber;
31712
- 'Comfy.TextareaWidget.Spellcheck': z.ZodBoolean;
31713
- 'Comfy.UseNewMenu': z.ZodEnum<["Disabled", "Top", "Bottom"]>;
31714
- 'Comfy.TreeExplorer.ItemPadding': z.ZodNumber;
31715
- 'Comfy.Validation.Workflows': z.ZodBoolean;
31716
- 'Comfy.Workflow.SortNodeIdOnSave': z.ZodBoolean;
31717
- 'Comfy.Queue.ImageFit': z.ZodEnum<["contain", "cover"]>;
31718
- 'Comfy.Workflow.WorkflowTabsPosition': z.ZodEnum<["Sidebar", "Topbar"]>;
31719
- 'Comfy.Node.DoubleClickTitleToEdit': z.ZodBoolean;
31720
- 'Comfy.Window.UnloadConfirmation': z.ZodBoolean;
31721
- 'Comfy.NodeBadge.NodeSourceBadgeMode': z.ZodEnum<[string, ...string[]]>;
31722
- 'Comfy.NodeBadge.NodeIdBadgeMode': z.ZodEnum<[string, ...string[]]>;
31723
- 'Comfy.NodeBadge.NodeLifeCycleBadgeMode': z.ZodEnum<[string, ...string[]]>;
31724
- 'Comfy.QueueButton.BatchCountLimit': z.ZodNumber;
31725
- 'Comfy.Keybinding.UnsetBindings': z.ZodArray<z.ZodObject<{
31726
- commandId: z.ZodString;
31727
- combo: z.ZodObject<{
31728
- key: z.ZodString;
31729
- ctrl: z.ZodOptional<z.ZodBoolean>;
31506
+ }>;
31507
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
31508
+ id: z.ZodString;
31509
+ name: z.ZodString;
31510
+ colors: z.ZodObject<{
31511
+ node_slot: z.ZodObject<{
31512
+ CLIP: z.ZodOptional<z.ZodString>;
31513
+ CLIP_VISION: z.ZodOptional<z.ZodString>;
31514
+ CLIP_VISION_OUTPUT: z.ZodOptional<z.ZodString>;
31515
+ CONDITIONING: z.ZodOptional<z.ZodString>;
31516
+ CONTROL_NET: z.ZodOptional<z.ZodString>;
31517
+ IMAGE: z.ZodOptional<z.ZodString>;
31518
+ LATENT: z.ZodOptional<z.ZodString>;
31519
+ MASK: z.ZodOptional<z.ZodString>;
31520
+ MODEL: z.ZodOptional<z.ZodString>;
31521
+ STYLE_MODEL: z.ZodOptional<z.ZodString>;
31522
+ VAE: z.ZodOptional<z.ZodString>;
31523
+ NOISE: z.ZodOptional<z.ZodString>;
31524
+ GUIDER: z.ZodOptional<z.ZodString>;
31525
+ SAMPLER: z.ZodOptional<z.ZodString>;
31526
+ SIGMAS: z.ZodOptional<z.ZodString>;
31527
+ TAESD: z.ZodOptional<z.ZodString>;
31528
+ }, "strip", z.ZodTypeAny, {
31529
+ CLIP?: string;
31530
+ CLIP_VISION?: string;
31531
+ CLIP_VISION_OUTPUT?: string;
31532
+ CONDITIONING?: string;
31533
+ CONTROL_NET?: string;
31534
+ IMAGE?: string;
31535
+ LATENT?: string;
31536
+ MASK?: string;
31537
+ MODEL?: string;
31538
+ STYLE_MODEL?: string;
31539
+ VAE?: string;
31540
+ NOISE?: string;
31541
+ GUIDER?: string;
31542
+ SAMPLER?: string;
31543
+ SIGMAS?: string;
31544
+ TAESD?: string;
31545
+ }, {
31546
+ CLIP?: string;
31547
+ CLIP_VISION?: string;
31548
+ CLIP_VISION_OUTPUT?: string;
31549
+ CONDITIONING?: string;
31550
+ CONTROL_NET?: string;
31551
+ IMAGE?: string;
31552
+ LATENT?: string;
31553
+ MASK?: string;
31554
+ MODEL?: string;
31555
+ STYLE_MODEL?: string;
31556
+ VAE?: string;
31557
+ NOISE?: string;
31558
+ GUIDER?: string;
31559
+ SAMPLER?: string;
31560
+ SIGMAS?: string;
31561
+ TAESD?: string;
31562
+ }>;
31563
+ litegraph_base: z.ZodObject<{
31564
+ BACKGROUND_IMAGE: z.ZodOptional<z.ZodString>;
31565
+ CLEAR_BACKGROUND_COLOR: z.ZodOptional<z.ZodString>;
31566
+ NODE_TITLE_COLOR: z.ZodOptional<z.ZodString>;
31567
+ NODE_SELECTED_TITLE_COLOR: z.ZodOptional<z.ZodString>;
31568
+ NODE_TEXT_SIZE: z.ZodOptional<z.ZodNumber>;
31569
+ NODE_TEXT_COLOR: z.ZodOptional<z.ZodString>;
31570
+ NODE_SUBTEXT_SIZE: z.ZodOptional<z.ZodNumber>;
31571
+ NODE_DEFAULT_COLOR: z.ZodOptional<z.ZodString>;
31572
+ NODE_DEFAULT_BGCOLOR: z.ZodOptional<z.ZodString>;
31573
+ NODE_DEFAULT_BOXCOLOR: z.ZodOptional<z.ZodString>;
31574
+ NODE_DEFAULT_SHAPE: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodString]>>;
31575
+ NODE_BOX_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
31576
+ NODE_BYPASS_BGCOLOR: z.ZodOptional<z.ZodString>;
31577
+ NODE_ERROR_COLOUR: z.ZodOptional<z.ZodString>;
31578
+ DEFAULT_SHADOW_COLOR: z.ZodOptional<z.ZodString>;
31579
+ DEFAULT_GROUP_FONT: z.ZodOptional<z.ZodNumber>;
31580
+ WIDGET_BGCOLOR: z.ZodOptional<z.ZodString>;
31581
+ WIDGET_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
31582
+ WIDGET_TEXT_COLOR: z.ZodOptional<z.ZodString>;
31583
+ WIDGET_SECONDARY_TEXT_COLOR: z.ZodOptional<z.ZodString>;
31584
+ LINK_COLOR: z.ZodOptional<z.ZodString>;
31585
+ EVENT_LINK_COLOR: z.ZodOptional<z.ZodString>;
31586
+ CONNECTING_LINK_COLOR: z.ZodOptional<z.ZodString>;
31587
+ BADGE_FG_COLOR: z.ZodOptional<z.ZodString>;
31588
+ BADGE_BG_COLOR: z.ZodOptional<z.ZodString>;
31589
+ }, "strip", z.ZodTypeAny, {
31590
+ BACKGROUND_IMAGE?: string;
31591
+ CLEAR_BACKGROUND_COLOR?: string;
31592
+ NODE_TITLE_COLOR?: string;
31593
+ NODE_SELECTED_TITLE_COLOR?: string;
31594
+ NODE_TEXT_SIZE?: number;
31595
+ NODE_TEXT_COLOR?: string;
31596
+ NODE_SUBTEXT_SIZE?: number;
31597
+ NODE_DEFAULT_COLOR?: string;
31598
+ NODE_DEFAULT_BGCOLOR?: string;
31599
+ NODE_DEFAULT_BOXCOLOR?: string;
31600
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
31601
+ NODE_BOX_OUTLINE_COLOR?: string;
31602
+ NODE_BYPASS_BGCOLOR?: string;
31603
+ NODE_ERROR_COLOUR?: string;
31604
+ DEFAULT_SHADOW_COLOR?: string;
31605
+ DEFAULT_GROUP_FONT?: number;
31606
+ WIDGET_BGCOLOR?: string;
31607
+ WIDGET_OUTLINE_COLOR?: string;
31608
+ WIDGET_TEXT_COLOR?: string;
31609
+ WIDGET_SECONDARY_TEXT_COLOR?: string;
31610
+ LINK_COLOR?: string;
31611
+ EVENT_LINK_COLOR?: string;
31612
+ CONNECTING_LINK_COLOR?: string;
31613
+ BADGE_FG_COLOR?: string;
31614
+ BADGE_BG_COLOR?: string;
31615
+ }, {
31616
+ BACKGROUND_IMAGE?: string;
31617
+ CLEAR_BACKGROUND_COLOR?: string;
31618
+ NODE_TITLE_COLOR?: string;
31619
+ NODE_SELECTED_TITLE_COLOR?: string;
31620
+ NODE_TEXT_SIZE?: number;
31621
+ NODE_TEXT_COLOR?: string;
31622
+ NODE_SUBTEXT_SIZE?: number;
31623
+ NODE_DEFAULT_COLOR?: string;
31624
+ NODE_DEFAULT_BGCOLOR?: string;
31625
+ NODE_DEFAULT_BOXCOLOR?: string;
31626
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
31627
+ NODE_BOX_OUTLINE_COLOR?: string;
31628
+ NODE_BYPASS_BGCOLOR?: string;
31629
+ NODE_ERROR_COLOUR?: string;
31630
+ DEFAULT_SHADOW_COLOR?: string;
31631
+ DEFAULT_GROUP_FONT?: number;
31632
+ WIDGET_BGCOLOR?: string;
31633
+ WIDGET_OUTLINE_COLOR?: string;
31634
+ WIDGET_TEXT_COLOR?: string;
31635
+ WIDGET_SECONDARY_TEXT_COLOR?: string;
31636
+ LINK_COLOR?: string;
31637
+ EVENT_LINK_COLOR?: string;
31638
+ CONNECTING_LINK_COLOR?: string;
31639
+ BADGE_FG_COLOR?: string;
31640
+ BADGE_BG_COLOR?: string;
31641
+ }>;
31642
+ comfy_base: z.ZodObject<{
31643
+ "fg-color": z.ZodOptional<z.ZodString>;
31644
+ "bg-color": z.ZodOptional<z.ZodString>;
31645
+ "bg-img": z.ZodOptional<z.ZodOptional<z.ZodString>>;
31646
+ "comfy-menu-bg": z.ZodOptional<z.ZodString>;
31647
+ "comfy-menu-secondary-bg": z.ZodOptional<z.ZodString>;
31648
+ "comfy-input-bg": z.ZodOptional<z.ZodString>;
31649
+ "input-text": z.ZodOptional<z.ZodString>;
31650
+ "descrip-text": z.ZodOptional<z.ZodString>;
31651
+ "drag-text": z.ZodOptional<z.ZodString>;
31652
+ "error-text": z.ZodOptional<z.ZodString>;
31653
+ "border-color": z.ZodOptional<z.ZodString>;
31654
+ "tr-even-bg-color": z.ZodOptional<z.ZodString>;
31655
+ "tr-odd-bg-color": z.ZodOptional<z.ZodString>;
31656
+ "content-bg": z.ZodOptional<z.ZodString>;
31657
+ "content-fg": z.ZodOptional<z.ZodString>;
31658
+ "content-hover-bg": z.ZodOptional<z.ZodString>;
31659
+ "content-hover-fg": z.ZodOptional<z.ZodString>;
31660
+ "bar-shadow": z.ZodOptional<z.ZodString>;
31661
+ }, "strip", z.ZodTypeAny, {
31662
+ "fg-color"?: string;
31663
+ "bg-color"?: string;
31664
+ "bg-img"?: string;
31665
+ "comfy-menu-bg"?: string;
31666
+ "comfy-menu-secondary-bg"?: string;
31667
+ "comfy-input-bg"?: string;
31668
+ "input-text"?: string;
31669
+ "descrip-text"?: string;
31670
+ "drag-text"?: string;
31671
+ "error-text"?: string;
31672
+ "border-color"?: string;
31673
+ "tr-even-bg-color"?: string;
31674
+ "tr-odd-bg-color"?: string;
31675
+ "content-bg"?: string;
31676
+ "content-fg"?: string;
31677
+ "content-hover-bg"?: string;
31678
+ "content-hover-fg"?: string;
31679
+ "bar-shadow"?: string;
31680
+ }, {
31681
+ "fg-color"?: string;
31682
+ "bg-color"?: string;
31683
+ "bg-img"?: string;
31684
+ "comfy-menu-bg"?: string;
31685
+ "comfy-menu-secondary-bg"?: string;
31686
+ "comfy-input-bg"?: string;
31687
+ "input-text"?: string;
31688
+ "descrip-text"?: string;
31689
+ "drag-text"?: string;
31690
+ "error-text"?: string;
31691
+ "border-color"?: string;
31692
+ "tr-even-bg-color"?: string;
31693
+ "tr-odd-bg-color"?: string;
31694
+ "content-bg"?: string;
31695
+ "content-fg"?: string;
31696
+ "content-hover-bg"?: string;
31697
+ "content-hover-fg"?: string;
31698
+ "bar-shadow"?: string;
31699
+ }>;
31700
+ }, "strip", z.ZodTypeAny, {
31701
+ node_slot?: {
31702
+ CLIP?: string;
31703
+ CLIP_VISION?: string;
31704
+ CLIP_VISION_OUTPUT?: string;
31705
+ CONDITIONING?: string;
31706
+ CONTROL_NET?: string;
31707
+ IMAGE?: string;
31708
+ LATENT?: string;
31709
+ MASK?: string;
31710
+ MODEL?: string;
31711
+ STYLE_MODEL?: string;
31712
+ VAE?: string;
31713
+ NOISE?: string;
31714
+ GUIDER?: string;
31715
+ SAMPLER?: string;
31716
+ SIGMAS?: string;
31717
+ TAESD?: string;
31718
+ };
31719
+ litegraph_base?: {
31720
+ BACKGROUND_IMAGE?: string;
31721
+ CLEAR_BACKGROUND_COLOR?: string;
31722
+ NODE_TITLE_COLOR?: string;
31723
+ NODE_SELECTED_TITLE_COLOR?: string;
31724
+ NODE_TEXT_SIZE?: number;
31725
+ NODE_TEXT_COLOR?: string;
31726
+ NODE_SUBTEXT_SIZE?: number;
31727
+ NODE_DEFAULT_COLOR?: string;
31728
+ NODE_DEFAULT_BGCOLOR?: string;
31729
+ NODE_DEFAULT_BOXCOLOR?: string;
31730
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
31731
+ NODE_BOX_OUTLINE_COLOR?: string;
31732
+ NODE_BYPASS_BGCOLOR?: string;
31733
+ NODE_ERROR_COLOUR?: string;
31734
+ DEFAULT_SHADOW_COLOR?: string;
31735
+ DEFAULT_GROUP_FONT?: number;
31736
+ WIDGET_BGCOLOR?: string;
31737
+ WIDGET_OUTLINE_COLOR?: string;
31738
+ WIDGET_TEXT_COLOR?: string;
31739
+ WIDGET_SECONDARY_TEXT_COLOR?: string;
31740
+ LINK_COLOR?: string;
31741
+ EVENT_LINK_COLOR?: string;
31742
+ CONNECTING_LINK_COLOR?: string;
31743
+ BADGE_FG_COLOR?: string;
31744
+ BADGE_BG_COLOR?: string;
31745
+ };
31746
+ comfy_base?: {
31747
+ "fg-color"?: string;
31748
+ "bg-color"?: string;
31749
+ "bg-img"?: string;
31750
+ "comfy-menu-bg"?: string;
31751
+ "comfy-menu-secondary-bg"?: string;
31752
+ "comfy-input-bg"?: string;
31753
+ "input-text"?: string;
31754
+ "descrip-text"?: string;
31755
+ "drag-text"?: string;
31756
+ "error-text"?: string;
31757
+ "border-color"?: string;
31758
+ "tr-even-bg-color"?: string;
31759
+ "tr-odd-bg-color"?: string;
31760
+ "content-bg"?: string;
31761
+ "content-fg"?: string;
31762
+ "content-hover-bg"?: string;
31763
+ "content-hover-fg"?: string;
31764
+ "bar-shadow"?: string;
31765
+ };
31766
+ }, {
31767
+ node_slot?: {
31768
+ CLIP?: string;
31769
+ CLIP_VISION?: string;
31770
+ CLIP_VISION_OUTPUT?: string;
31771
+ CONDITIONING?: string;
31772
+ CONTROL_NET?: string;
31773
+ IMAGE?: string;
31774
+ LATENT?: string;
31775
+ MASK?: string;
31776
+ MODEL?: string;
31777
+ STYLE_MODEL?: string;
31778
+ VAE?: string;
31779
+ NOISE?: string;
31780
+ GUIDER?: string;
31781
+ SAMPLER?: string;
31782
+ SIGMAS?: string;
31783
+ TAESD?: string;
31784
+ };
31785
+ litegraph_base?: {
31786
+ BACKGROUND_IMAGE?: string;
31787
+ CLEAR_BACKGROUND_COLOR?: string;
31788
+ NODE_TITLE_COLOR?: string;
31789
+ NODE_SELECTED_TITLE_COLOR?: string;
31790
+ NODE_TEXT_SIZE?: number;
31791
+ NODE_TEXT_COLOR?: string;
31792
+ NODE_SUBTEXT_SIZE?: number;
31793
+ NODE_DEFAULT_COLOR?: string;
31794
+ NODE_DEFAULT_BGCOLOR?: string;
31795
+ NODE_DEFAULT_BOXCOLOR?: string;
31796
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
31797
+ NODE_BOX_OUTLINE_COLOR?: string;
31798
+ NODE_BYPASS_BGCOLOR?: string;
31799
+ NODE_ERROR_COLOUR?: string;
31800
+ DEFAULT_SHADOW_COLOR?: string;
31801
+ DEFAULT_GROUP_FONT?: number;
31802
+ WIDGET_BGCOLOR?: string;
31803
+ WIDGET_OUTLINE_COLOR?: string;
31804
+ WIDGET_TEXT_COLOR?: string;
31805
+ WIDGET_SECONDARY_TEXT_COLOR?: string;
31806
+ LINK_COLOR?: string;
31807
+ EVENT_LINK_COLOR?: string;
31808
+ CONNECTING_LINK_COLOR?: string;
31809
+ BADGE_FG_COLOR?: string;
31810
+ BADGE_BG_COLOR?: string;
31811
+ };
31812
+ comfy_base?: {
31813
+ "fg-color"?: string;
31814
+ "bg-color"?: string;
31815
+ "bg-img"?: string;
31816
+ "comfy-menu-bg"?: string;
31817
+ "comfy-menu-secondary-bg"?: string;
31818
+ "comfy-input-bg"?: string;
31819
+ "input-text"?: string;
31820
+ "descrip-text"?: string;
31821
+ "drag-text"?: string;
31822
+ "error-text"?: string;
31823
+ "border-color"?: string;
31824
+ "tr-even-bg-color"?: string;
31825
+ "tr-odd-bg-color"?: string;
31826
+ "content-bg"?: string;
31827
+ "content-fg"?: string;
31828
+ "content-hover-bg"?: string;
31829
+ "content-hover-fg"?: string;
31830
+ "bar-shadow"?: string;
31831
+ };
31832
+ }>;
31833
+ }, z.ZodTypeAny, "passthrough">>>;
31834
+ 'Comfy.ConfirmClear': z.ZodBoolean;
31835
+ 'Comfy.DevMode': z.ZodBoolean;
31836
+ 'Comfy.Workflow.ShowMissingNodesWarning': z.ZodBoolean;
31837
+ 'Comfy.Workflow.ShowMissingModelsWarning': z.ZodBoolean;
31838
+ 'Comfy.DisableFloatRounding': z.ZodBoolean;
31839
+ 'Comfy.DisableSliders': z.ZodBoolean;
31840
+ 'Comfy.DOMClippingEnabled': z.ZodBoolean;
31841
+ 'Comfy.EditAttention.Delta': z.ZodNumber;
31842
+ 'Comfy.EnableTooltips': z.ZodBoolean;
31843
+ 'Comfy.EnableWorkflowViewRestore': z.ZodBoolean;
31844
+ 'Comfy.FloatRoundingPrecision': z.ZodNumber;
31845
+ 'Comfy.Graph.CanvasInfo': z.ZodBoolean;
31846
+ 'Comfy.Graph.ZoomSpeed': z.ZodNumber;
31847
+ 'Comfy.Group.DoubleClickTitleToEdit': z.ZodBoolean;
31848
+ 'Comfy.GroupSelectedNodes.Padding': z.ZodNumber;
31849
+ 'Comfy.InvertMenuScrolling': z.ZodBoolean;
31850
+ 'Comfy.Locale': z.ZodString;
31851
+ 'Comfy.Logging.Enabled': z.ZodBoolean;
31852
+ 'Comfy.NodeLibrary.Bookmarks': z.ZodArray<z.ZodString, "many">;
31853
+ 'Comfy.NodeLibrary.Bookmarks.V2': z.ZodArray<z.ZodString, "many">;
31854
+ 'Comfy.NodeLibrary.BookmarksCustomization': z.ZodRecord<z.ZodString, z.ZodObject<{
31855
+ icon: z.ZodOptional<z.ZodString>;
31856
+ color: z.ZodOptional<z.ZodString>;
31857
+ }, "strip", z.ZodTypeAny, {
31858
+ color?: string;
31859
+ icon?: string;
31860
+ }, {
31861
+ color?: string;
31862
+ icon?: string;
31863
+ }>>;
31864
+ 'Comfy.NodeInputConversionSubmenus': z.ZodBoolean;
31865
+ 'Comfy.LinkRelease.Action': z.ZodEnum<[string, ...string[]]>;
31866
+ 'Comfy.LinkRelease.ActionShift': z.ZodEnum<[string, ...string[]]>;
31867
+ 'Comfy.NodeSearchBoxImpl.NodePreview': z.ZodBoolean;
31868
+ 'Comfy.NodeSearchBoxImpl': z.ZodEnum<["default", "simple"]>;
31869
+ 'Comfy.NodeSearchBoxImpl.ShowCategory': z.ZodBoolean;
31870
+ 'Comfy.NodeSearchBoxImpl.ShowIdName': z.ZodBoolean;
31871
+ 'Comfy.NodeSuggestions.number': z.ZodNumber;
31872
+ 'Comfy.Node.ShowDeprecated': z.ZodBoolean;
31873
+ 'Comfy.Node.ShowExperimental': z.ZodBoolean;
31874
+ 'Comfy.PreviewFormat': z.ZodString;
31875
+ 'Comfy.PromptFilename': z.ZodBoolean;
31876
+ 'Comfy.Sidebar.Location': z.ZodEnum<["left", "right"]>;
31877
+ 'Comfy.Sidebar.Size': z.ZodEnum<["small", "normal"]>;
31878
+ 'Comfy.SwitchUser': z.ZodAny;
31879
+ 'Comfy.SnapToGrid.GridSize': z.ZodNumber;
31880
+ 'Comfy.TextareaWidget.FontSize': z.ZodNumber;
31881
+ 'Comfy.TextareaWidget.Spellcheck': z.ZodBoolean;
31882
+ 'Comfy.UseNewMenu': z.ZodEnum<["Disabled", "Top", "Bottom"]>;
31883
+ 'Comfy.TreeExplorer.ItemPadding': z.ZodNumber;
31884
+ 'Comfy.Validation.Workflows': z.ZodBoolean;
31885
+ 'Comfy.Workflow.SortNodeIdOnSave': z.ZodBoolean;
31886
+ 'Comfy.Queue.ImageFit': z.ZodEnum<["contain", "cover"]>;
31887
+ 'Comfy.Workflow.WorkflowTabsPosition': z.ZodEnum<["Sidebar", "Topbar"]>;
31888
+ 'Comfy.Node.DoubleClickTitleToEdit': z.ZodBoolean;
31889
+ 'Comfy.Window.UnloadConfirmation': z.ZodBoolean;
31890
+ 'Comfy.NodeBadge.NodeSourceBadgeMode': z.ZodEnum<[string, ...string[]]>;
31891
+ 'Comfy.NodeBadge.NodeIdBadgeMode': z.ZodEnum<[string, ...string[]]>;
31892
+ 'Comfy.NodeBadge.NodeLifeCycleBadgeMode': z.ZodEnum<[string, ...string[]]>;
31893
+ 'Comfy.QueueButton.BatchCountLimit': z.ZodNumber;
31894
+ 'Comfy.Keybinding.UnsetBindings': z.ZodArray<z.ZodObject<{
31895
+ commandId: z.ZodString;
31896
+ combo: z.ZodObject<{
31897
+ key: z.ZodString;
31898
+ ctrl: z.ZodOptional<z.ZodBoolean>;
31730
31899
  alt: z.ZodOptional<z.ZodBoolean>;
31731
31900
  shift: z.ZodOptional<z.ZodBoolean>;
31732
31901
  meta: z.ZodOptional<z.ZodBoolean>;
@@ -31819,36 +31988,283 @@ export declare class ComfyApp {
31819
31988
  'Comfy.Workflow.ConfirmDelete': z.ZodBoolean;
31820
31989
  }, "strip", z.ZodTypeAny, {
31821
31990
  'Comfy.ColorPalette'?: string;
31822
- 'Comfy.CustomColorPalettes'?: Record<string, {
31823
- name?: string;
31824
- id?: string;
31825
- colors?: {
31991
+ 'Comfy.CustomColorPalettes'?: Record<string, z.objectOutputType<{
31992
+ id: z.ZodString;
31993
+ name: z.ZodString;
31994
+ colors: z.ZodObject<{
31995
+ node_slot: z.ZodObject<{
31996
+ CLIP: z.ZodOptional<z.ZodString>;
31997
+ CLIP_VISION: z.ZodOptional<z.ZodString>;
31998
+ CLIP_VISION_OUTPUT: z.ZodOptional<z.ZodString>;
31999
+ CONDITIONING: z.ZodOptional<z.ZodString>;
32000
+ CONTROL_NET: z.ZodOptional<z.ZodString>;
32001
+ IMAGE: z.ZodOptional<z.ZodString>;
32002
+ LATENT: z.ZodOptional<z.ZodString>;
32003
+ MASK: z.ZodOptional<z.ZodString>;
32004
+ MODEL: z.ZodOptional<z.ZodString>;
32005
+ STYLE_MODEL: z.ZodOptional<z.ZodString>;
32006
+ VAE: z.ZodOptional<z.ZodString>;
32007
+ NOISE: z.ZodOptional<z.ZodString>;
32008
+ GUIDER: z.ZodOptional<z.ZodString>;
32009
+ SAMPLER: z.ZodOptional<z.ZodString>;
32010
+ SIGMAS: z.ZodOptional<z.ZodString>;
32011
+ TAESD: z.ZodOptional<z.ZodString>;
32012
+ }, "strip", z.ZodTypeAny, {
32013
+ CLIP?: string;
32014
+ CLIP_VISION?: string;
32015
+ CLIP_VISION_OUTPUT?: string;
32016
+ CONDITIONING?: string;
32017
+ CONTROL_NET?: string;
32018
+ IMAGE?: string;
32019
+ LATENT?: string;
32020
+ MASK?: string;
32021
+ MODEL?: string;
32022
+ STYLE_MODEL?: string;
32023
+ VAE?: string;
32024
+ NOISE?: string;
32025
+ GUIDER?: string;
32026
+ SAMPLER?: string;
32027
+ SIGMAS?: string;
32028
+ TAESD?: string;
32029
+ }, {
32030
+ CLIP?: string;
32031
+ CLIP_VISION?: string;
32032
+ CLIP_VISION_OUTPUT?: string;
32033
+ CONDITIONING?: string;
32034
+ CONTROL_NET?: string;
32035
+ IMAGE?: string;
32036
+ LATENT?: string;
32037
+ MASK?: string;
32038
+ MODEL?: string;
32039
+ STYLE_MODEL?: string;
32040
+ VAE?: string;
32041
+ NOISE?: string;
32042
+ GUIDER?: string;
32043
+ SAMPLER?: string;
32044
+ SIGMAS?: string;
32045
+ TAESD?: string;
32046
+ }>;
32047
+ litegraph_base: z.ZodObject<{
32048
+ BACKGROUND_IMAGE: z.ZodOptional<z.ZodString>;
32049
+ CLEAR_BACKGROUND_COLOR: z.ZodOptional<z.ZodString>;
32050
+ NODE_TITLE_COLOR: z.ZodOptional<z.ZodString>;
32051
+ NODE_SELECTED_TITLE_COLOR: z.ZodOptional<z.ZodString>;
32052
+ NODE_TEXT_SIZE: z.ZodOptional<z.ZodNumber>;
32053
+ NODE_TEXT_COLOR: z.ZodOptional<z.ZodString>;
32054
+ NODE_SUBTEXT_SIZE: z.ZodOptional<z.ZodNumber>;
32055
+ NODE_DEFAULT_COLOR: z.ZodOptional<z.ZodString>;
32056
+ NODE_DEFAULT_BGCOLOR: z.ZodOptional<z.ZodString>;
32057
+ NODE_DEFAULT_BOXCOLOR: z.ZodOptional<z.ZodString>;
32058
+ NODE_DEFAULT_SHAPE: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodString]>>;
32059
+ NODE_BOX_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
32060
+ NODE_BYPASS_BGCOLOR: z.ZodOptional<z.ZodString>;
32061
+ NODE_ERROR_COLOUR: z.ZodOptional<z.ZodString>;
32062
+ DEFAULT_SHADOW_COLOR: z.ZodOptional<z.ZodString>;
32063
+ DEFAULT_GROUP_FONT: z.ZodOptional<z.ZodNumber>;
32064
+ WIDGET_BGCOLOR: z.ZodOptional<z.ZodString>;
32065
+ WIDGET_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
32066
+ WIDGET_TEXT_COLOR: z.ZodOptional<z.ZodString>;
32067
+ WIDGET_SECONDARY_TEXT_COLOR: z.ZodOptional<z.ZodString>;
32068
+ LINK_COLOR: z.ZodOptional<z.ZodString>;
32069
+ EVENT_LINK_COLOR: z.ZodOptional<z.ZodString>;
32070
+ CONNECTING_LINK_COLOR: z.ZodOptional<z.ZodString>;
32071
+ BADGE_FG_COLOR: z.ZodOptional<z.ZodString>;
32072
+ BADGE_BG_COLOR: z.ZodOptional<z.ZodString>;
32073
+ }, "strip", z.ZodTypeAny, {
32074
+ BACKGROUND_IMAGE?: string;
32075
+ CLEAR_BACKGROUND_COLOR?: string;
32076
+ NODE_TITLE_COLOR?: string;
32077
+ NODE_SELECTED_TITLE_COLOR?: string;
32078
+ NODE_TEXT_SIZE?: number;
32079
+ NODE_TEXT_COLOR?: string;
32080
+ NODE_SUBTEXT_SIZE?: number;
32081
+ NODE_DEFAULT_COLOR?: string;
32082
+ NODE_DEFAULT_BGCOLOR?: string;
32083
+ NODE_DEFAULT_BOXCOLOR?: string;
32084
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
32085
+ NODE_BOX_OUTLINE_COLOR?: string;
32086
+ NODE_BYPASS_BGCOLOR?: string;
32087
+ NODE_ERROR_COLOUR?: string;
32088
+ DEFAULT_SHADOW_COLOR?: string;
32089
+ DEFAULT_GROUP_FONT?: number;
32090
+ WIDGET_BGCOLOR?: string;
32091
+ WIDGET_OUTLINE_COLOR?: string;
32092
+ WIDGET_TEXT_COLOR?: string;
32093
+ WIDGET_SECONDARY_TEXT_COLOR?: string;
32094
+ LINK_COLOR?: string;
32095
+ EVENT_LINK_COLOR?: string;
32096
+ CONNECTING_LINK_COLOR?: string;
32097
+ BADGE_FG_COLOR?: string;
32098
+ BADGE_BG_COLOR?: string;
32099
+ }, {
32100
+ BACKGROUND_IMAGE?: string;
32101
+ CLEAR_BACKGROUND_COLOR?: string;
32102
+ NODE_TITLE_COLOR?: string;
32103
+ NODE_SELECTED_TITLE_COLOR?: string;
32104
+ NODE_TEXT_SIZE?: number;
32105
+ NODE_TEXT_COLOR?: string;
32106
+ NODE_SUBTEXT_SIZE?: number;
32107
+ NODE_DEFAULT_COLOR?: string;
32108
+ NODE_DEFAULT_BGCOLOR?: string;
32109
+ NODE_DEFAULT_BOXCOLOR?: string;
32110
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
32111
+ NODE_BOX_OUTLINE_COLOR?: string;
32112
+ NODE_BYPASS_BGCOLOR?: string;
32113
+ NODE_ERROR_COLOUR?: string;
32114
+ DEFAULT_SHADOW_COLOR?: string;
32115
+ DEFAULT_GROUP_FONT?: number;
32116
+ WIDGET_BGCOLOR?: string;
32117
+ WIDGET_OUTLINE_COLOR?: string;
32118
+ WIDGET_TEXT_COLOR?: string;
32119
+ WIDGET_SECONDARY_TEXT_COLOR?: string;
32120
+ LINK_COLOR?: string;
32121
+ EVENT_LINK_COLOR?: string;
32122
+ CONNECTING_LINK_COLOR?: string;
32123
+ BADGE_FG_COLOR?: string;
32124
+ BADGE_BG_COLOR?: string;
32125
+ }>;
32126
+ comfy_base: z.ZodObject<{
32127
+ "fg-color": z.ZodOptional<z.ZodString>;
32128
+ "bg-color": z.ZodOptional<z.ZodString>;
32129
+ "bg-img": z.ZodOptional<z.ZodOptional<z.ZodString>>;
32130
+ "comfy-menu-bg": z.ZodOptional<z.ZodString>;
32131
+ "comfy-menu-secondary-bg": z.ZodOptional<z.ZodString>;
32132
+ "comfy-input-bg": z.ZodOptional<z.ZodString>;
32133
+ "input-text": z.ZodOptional<z.ZodString>;
32134
+ "descrip-text": z.ZodOptional<z.ZodString>;
32135
+ "drag-text": z.ZodOptional<z.ZodString>;
32136
+ "error-text": z.ZodOptional<z.ZodString>;
32137
+ "border-color": z.ZodOptional<z.ZodString>;
32138
+ "tr-even-bg-color": z.ZodOptional<z.ZodString>;
32139
+ "tr-odd-bg-color": z.ZodOptional<z.ZodString>;
32140
+ "content-bg": z.ZodOptional<z.ZodString>;
32141
+ "content-fg": z.ZodOptional<z.ZodString>;
32142
+ "content-hover-bg": z.ZodOptional<z.ZodString>;
32143
+ "content-hover-fg": z.ZodOptional<z.ZodString>;
32144
+ "bar-shadow": z.ZodOptional<z.ZodString>;
32145
+ }, "strip", z.ZodTypeAny, {
32146
+ "fg-color"?: string;
32147
+ "bg-color"?: string;
32148
+ "bg-img"?: string;
32149
+ "comfy-menu-bg"?: string;
32150
+ "comfy-menu-secondary-bg"?: string;
32151
+ "comfy-input-bg"?: string;
32152
+ "input-text"?: string;
32153
+ "descrip-text"?: string;
32154
+ "drag-text"?: string;
32155
+ "error-text"?: string;
32156
+ "border-color"?: string;
32157
+ "tr-even-bg-color"?: string;
32158
+ "tr-odd-bg-color"?: string;
32159
+ "content-bg"?: string;
32160
+ "content-fg"?: string;
32161
+ "content-hover-bg"?: string;
32162
+ "content-hover-fg"?: string;
32163
+ "bar-shadow"?: string;
32164
+ }, {
32165
+ "fg-color"?: string;
32166
+ "bg-color"?: string;
32167
+ "bg-img"?: string;
32168
+ "comfy-menu-bg"?: string;
32169
+ "comfy-menu-secondary-bg"?: string;
32170
+ "comfy-input-bg"?: string;
32171
+ "input-text"?: string;
32172
+ "descrip-text"?: string;
32173
+ "drag-text"?: string;
32174
+ "error-text"?: string;
32175
+ "border-color"?: string;
32176
+ "tr-even-bg-color"?: string;
32177
+ "tr-odd-bg-color"?: string;
32178
+ "content-bg"?: string;
32179
+ "content-fg"?: string;
32180
+ "content-hover-bg"?: string;
32181
+ "content-hover-fg"?: string;
32182
+ "bar-shadow"?: string;
32183
+ }>;
32184
+ }, "strip", z.ZodTypeAny, {
32185
+ node_slot?: {
32186
+ CLIP?: string;
32187
+ CLIP_VISION?: string;
32188
+ CLIP_VISION_OUTPUT?: string;
32189
+ CONDITIONING?: string;
32190
+ CONTROL_NET?: string;
32191
+ IMAGE?: string;
32192
+ LATENT?: string;
32193
+ MASK?: string;
32194
+ MODEL?: string;
32195
+ STYLE_MODEL?: string;
32196
+ VAE?: string;
32197
+ NOISE?: string;
32198
+ GUIDER?: string;
32199
+ SAMPLER?: string;
32200
+ SIGMAS?: string;
32201
+ TAESD?: string;
32202
+ };
32203
+ litegraph_base?: {
32204
+ BACKGROUND_IMAGE?: string;
32205
+ CLEAR_BACKGROUND_COLOR?: string;
32206
+ NODE_TITLE_COLOR?: string;
32207
+ NODE_SELECTED_TITLE_COLOR?: string;
32208
+ NODE_TEXT_SIZE?: number;
32209
+ NODE_TEXT_COLOR?: string;
32210
+ NODE_SUBTEXT_SIZE?: number;
32211
+ NODE_DEFAULT_COLOR?: string;
32212
+ NODE_DEFAULT_BGCOLOR?: string;
32213
+ NODE_DEFAULT_BOXCOLOR?: string;
32214
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
32215
+ NODE_BOX_OUTLINE_COLOR?: string;
32216
+ NODE_BYPASS_BGCOLOR?: string;
32217
+ NODE_ERROR_COLOUR?: string;
32218
+ DEFAULT_SHADOW_COLOR?: string;
32219
+ DEFAULT_GROUP_FONT?: number;
32220
+ WIDGET_BGCOLOR?: string;
32221
+ WIDGET_OUTLINE_COLOR?: string;
32222
+ WIDGET_TEXT_COLOR?: string;
32223
+ WIDGET_SECONDARY_TEXT_COLOR?: string;
32224
+ LINK_COLOR?: string;
32225
+ EVENT_LINK_COLOR?: string;
32226
+ CONNECTING_LINK_COLOR?: string;
32227
+ BADGE_FG_COLOR?: string;
32228
+ BADGE_BG_COLOR?: string;
32229
+ };
32230
+ comfy_base?: {
32231
+ "fg-color"?: string;
32232
+ "bg-color"?: string;
32233
+ "bg-img"?: string;
32234
+ "comfy-menu-bg"?: string;
32235
+ "comfy-menu-secondary-bg"?: string;
32236
+ "comfy-input-bg"?: string;
32237
+ "input-text"?: string;
32238
+ "descrip-text"?: string;
32239
+ "drag-text"?: string;
32240
+ "error-text"?: string;
32241
+ "border-color"?: string;
32242
+ "tr-even-bg-color"?: string;
32243
+ "tr-odd-bg-color"?: string;
32244
+ "content-bg"?: string;
32245
+ "content-fg"?: string;
32246
+ "content-hover-bg"?: string;
32247
+ "content-hover-fg"?: string;
32248
+ "bar-shadow"?: string;
32249
+ };
32250
+ }, {
31826
32251
  node_slot?: {
31827
- BOOLEAN?: string;
31828
32252
  CLIP?: string;
31829
32253
  CLIP_VISION?: string;
31830
32254
  CLIP_VISION_OUTPUT?: string;
31831
32255
  CONDITIONING?: string;
31832
32256
  CONTROL_NET?: string;
31833
- CONTROL_NET_WEIGHTS?: string;
31834
- FLOAT?: string;
31835
- GLIGEN?: string;
31836
32257
  IMAGE?: string;
31837
- IMAGEUPLOAD?: string;
31838
- INT?: string;
31839
32258
  LATENT?: string;
31840
- LATENT_KEYFRAME?: string;
31841
32259
  MASK?: string;
31842
32260
  MODEL?: string;
32261
+ STYLE_MODEL?: string;
32262
+ VAE?: string;
32263
+ NOISE?: string;
32264
+ GUIDER?: string;
31843
32265
  SAMPLER?: string;
31844
32266
  SIGMAS?: string;
31845
- STRING?: string;
31846
- STYLE_MODEL?: string;
31847
- T2I_ADAPTER_WEIGHTS?: string;
31848
32267
  TAESD?: string;
31849
- TIMESTEP_KEYFRAME?: string;
31850
- UPSCALE_MODEL?: string;
31851
- VAE?: string;
31852
32268
  };
31853
32269
  litegraph_base?: {
31854
32270
  BACKGROUND_IMAGE?: string;
@@ -31861,7 +32277,7 @@ export declare class ComfyApp {
31861
32277
  NODE_DEFAULT_COLOR?: string;
31862
32278
  NODE_DEFAULT_BGCOLOR?: string;
31863
32279
  NODE_DEFAULT_BOXCOLOR?: string;
31864
- NODE_DEFAULT_SHAPE?: RenderShape;
32280
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
31865
32281
  NODE_BOX_OUTLINE_COLOR?: string;
31866
32282
  NODE_BYPASS_BGCOLOR?: string;
31867
32283
  NODE_ERROR_COLOUR?: string;
@@ -31897,10 +32313,8 @@ export declare class ComfyApp {
31897
32313
  "content-hover-fg"?: string;
31898
32314
  "bar-shadow"?: string;
31899
32315
  };
31900
- } & {
31901
- [k: string]: unknown;
31902
- };
31903
- }>;
32316
+ }>;
32317
+ }, z.ZodTypeAny, "passthrough">>;
31904
32318
  'Comfy.ConfirmClear'?: boolean;
31905
32319
  'Comfy.DevMode'?: boolean;
31906
32320
  'Comfy.Workflow.ShowMissingNodesWarning'?: boolean;
@@ -31988,36 +32402,283 @@ export declare class ComfyApp {
31988
32402
  'Comfy.Workflow.ConfirmDelete'?: boolean;
31989
32403
  }, {
31990
32404
  'Comfy.ColorPalette'?: string;
31991
- 'Comfy.CustomColorPalettes'?: Record<string, {
31992
- name?: string;
31993
- id?: string;
31994
- colors?: {
31995
- node_slot?: {
31996
- BOOLEAN?: string;
32405
+ 'Comfy.CustomColorPalettes'?: Record<string, z.objectInputType<{
32406
+ id: z.ZodString;
32407
+ name: z.ZodString;
32408
+ colors: z.ZodObject<{
32409
+ node_slot: z.ZodObject<{
32410
+ CLIP: z.ZodOptional<z.ZodString>;
32411
+ CLIP_VISION: z.ZodOptional<z.ZodString>;
32412
+ CLIP_VISION_OUTPUT: z.ZodOptional<z.ZodString>;
32413
+ CONDITIONING: z.ZodOptional<z.ZodString>;
32414
+ CONTROL_NET: z.ZodOptional<z.ZodString>;
32415
+ IMAGE: z.ZodOptional<z.ZodString>;
32416
+ LATENT: z.ZodOptional<z.ZodString>;
32417
+ MASK: z.ZodOptional<z.ZodString>;
32418
+ MODEL: z.ZodOptional<z.ZodString>;
32419
+ STYLE_MODEL: z.ZodOptional<z.ZodString>;
32420
+ VAE: z.ZodOptional<z.ZodString>;
32421
+ NOISE: z.ZodOptional<z.ZodString>;
32422
+ GUIDER: z.ZodOptional<z.ZodString>;
32423
+ SAMPLER: z.ZodOptional<z.ZodString>;
32424
+ SIGMAS: z.ZodOptional<z.ZodString>;
32425
+ TAESD: z.ZodOptional<z.ZodString>;
32426
+ }, "strip", z.ZodTypeAny, {
32427
+ CLIP?: string;
32428
+ CLIP_VISION?: string;
32429
+ CLIP_VISION_OUTPUT?: string;
32430
+ CONDITIONING?: string;
32431
+ CONTROL_NET?: string;
32432
+ IMAGE?: string;
32433
+ LATENT?: string;
32434
+ MASK?: string;
32435
+ MODEL?: string;
32436
+ STYLE_MODEL?: string;
32437
+ VAE?: string;
32438
+ NOISE?: string;
32439
+ GUIDER?: string;
32440
+ SAMPLER?: string;
32441
+ SIGMAS?: string;
32442
+ TAESD?: string;
32443
+ }, {
31997
32444
  CLIP?: string;
31998
32445
  CLIP_VISION?: string;
31999
32446
  CLIP_VISION_OUTPUT?: string;
32000
32447
  CONDITIONING?: string;
32001
32448
  CONTROL_NET?: string;
32002
- CONTROL_NET_WEIGHTS?: string;
32003
- FLOAT?: string;
32004
- GLIGEN?: string;
32005
32449
  IMAGE?: string;
32006
- IMAGEUPLOAD?: string;
32007
- INT?: string;
32008
32450
  LATENT?: string;
32009
- LATENT_KEYFRAME?: string;
32010
32451
  MASK?: string;
32011
32452
  MODEL?: string;
32453
+ STYLE_MODEL?: string;
32454
+ VAE?: string;
32455
+ NOISE?: string;
32456
+ GUIDER?: string;
32012
32457
  SAMPLER?: string;
32013
32458
  SIGMAS?: string;
32014
- STRING?: string;
32459
+ TAESD?: string;
32460
+ }>;
32461
+ litegraph_base: z.ZodObject<{
32462
+ BACKGROUND_IMAGE: z.ZodOptional<z.ZodString>;
32463
+ CLEAR_BACKGROUND_COLOR: z.ZodOptional<z.ZodString>;
32464
+ NODE_TITLE_COLOR: z.ZodOptional<z.ZodString>;
32465
+ NODE_SELECTED_TITLE_COLOR: z.ZodOptional<z.ZodString>;
32466
+ NODE_TEXT_SIZE: z.ZodOptional<z.ZodNumber>;
32467
+ NODE_TEXT_COLOR: z.ZodOptional<z.ZodString>;
32468
+ NODE_SUBTEXT_SIZE: z.ZodOptional<z.ZodNumber>;
32469
+ NODE_DEFAULT_COLOR: z.ZodOptional<z.ZodString>;
32470
+ NODE_DEFAULT_BGCOLOR: z.ZodOptional<z.ZodString>;
32471
+ NODE_DEFAULT_BOXCOLOR: z.ZodOptional<z.ZodString>;
32472
+ NODE_DEFAULT_SHAPE: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodString]>>;
32473
+ NODE_BOX_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
32474
+ NODE_BYPASS_BGCOLOR: z.ZodOptional<z.ZodString>;
32475
+ NODE_ERROR_COLOUR: z.ZodOptional<z.ZodString>;
32476
+ DEFAULT_SHADOW_COLOR: z.ZodOptional<z.ZodString>;
32477
+ DEFAULT_GROUP_FONT: z.ZodOptional<z.ZodNumber>;
32478
+ WIDGET_BGCOLOR: z.ZodOptional<z.ZodString>;
32479
+ WIDGET_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
32480
+ WIDGET_TEXT_COLOR: z.ZodOptional<z.ZodString>;
32481
+ WIDGET_SECONDARY_TEXT_COLOR: z.ZodOptional<z.ZodString>;
32482
+ LINK_COLOR: z.ZodOptional<z.ZodString>;
32483
+ EVENT_LINK_COLOR: z.ZodOptional<z.ZodString>;
32484
+ CONNECTING_LINK_COLOR: z.ZodOptional<z.ZodString>;
32485
+ BADGE_FG_COLOR: z.ZodOptional<z.ZodString>;
32486
+ BADGE_BG_COLOR: z.ZodOptional<z.ZodString>;
32487
+ }, "strip", z.ZodTypeAny, {
32488
+ BACKGROUND_IMAGE?: string;
32489
+ CLEAR_BACKGROUND_COLOR?: string;
32490
+ NODE_TITLE_COLOR?: string;
32491
+ NODE_SELECTED_TITLE_COLOR?: string;
32492
+ NODE_TEXT_SIZE?: number;
32493
+ NODE_TEXT_COLOR?: string;
32494
+ NODE_SUBTEXT_SIZE?: number;
32495
+ NODE_DEFAULT_COLOR?: string;
32496
+ NODE_DEFAULT_BGCOLOR?: string;
32497
+ NODE_DEFAULT_BOXCOLOR?: string;
32498
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
32499
+ NODE_BOX_OUTLINE_COLOR?: string;
32500
+ NODE_BYPASS_BGCOLOR?: string;
32501
+ NODE_ERROR_COLOUR?: string;
32502
+ DEFAULT_SHADOW_COLOR?: string;
32503
+ DEFAULT_GROUP_FONT?: number;
32504
+ WIDGET_BGCOLOR?: string;
32505
+ WIDGET_OUTLINE_COLOR?: string;
32506
+ WIDGET_TEXT_COLOR?: string;
32507
+ WIDGET_SECONDARY_TEXT_COLOR?: string;
32508
+ LINK_COLOR?: string;
32509
+ EVENT_LINK_COLOR?: string;
32510
+ CONNECTING_LINK_COLOR?: string;
32511
+ BADGE_FG_COLOR?: string;
32512
+ BADGE_BG_COLOR?: string;
32513
+ }, {
32514
+ BACKGROUND_IMAGE?: string;
32515
+ CLEAR_BACKGROUND_COLOR?: string;
32516
+ NODE_TITLE_COLOR?: string;
32517
+ NODE_SELECTED_TITLE_COLOR?: string;
32518
+ NODE_TEXT_SIZE?: number;
32519
+ NODE_TEXT_COLOR?: string;
32520
+ NODE_SUBTEXT_SIZE?: number;
32521
+ NODE_DEFAULT_COLOR?: string;
32522
+ NODE_DEFAULT_BGCOLOR?: string;
32523
+ NODE_DEFAULT_BOXCOLOR?: string;
32524
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
32525
+ NODE_BOX_OUTLINE_COLOR?: string;
32526
+ NODE_BYPASS_BGCOLOR?: string;
32527
+ NODE_ERROR_COLOUR?: string;
32528
+ DEFAULT_SHADOW_COLOR?: string;
32529
+ DEFAULT_GROUP_FONT?: number;
32530
+ WIDGET_BGCOLOR?: string;
32531
+ WIDGET_OUTLINE_COLOR?: string;
32532
+ WIDGET_TEXT_COLOR?: string;
32533
+ WIDGET_SECONDARY_TEXT_COLOR?: string;
32534
+ LINK_COLOR?: string;
32535
+ EVENT_LINK_COLOR?: string;
32536
+ CONNECTING_LINK_COLOR?: string;
32537
+ BADGE_FG_COLOR?: string;
32538
+ BADGE_BG_COLOR?: string;
32539
+ }>;
32540
+ comfy_base: z.ZodObject<{
32541
+ "fg-color": z.ZodOptional<z.ZodString>;
32542
+ "bg-color": z.ZodOptional<z.ZodString>;
32543
+ "bg-img": z.ZodOptional<z.ZodOptional<z.ZodString>>;
32544
+ "comfy-menu-bg": z.ZodOptional<z.ZodString>;
32545
+ "comfy-menu-secondary-bg": z.ZodOptional<z.ZodString>;
32546
+ "comfy-input-bg": z.ZodOptional<z.ZodString>;
32547
+ "input-text": z.ZodOptional<z.ZodString>;
32548
+ "descrip-text": z.ZodOptional<z.ZodString>;
32549
+ "drag-text": z.ZodOptional<z.ZodString>;
32550
+ "error-text": z.ZodOptional<z.ZodString>;
32551
+ "border-color": z.ZodOptional<z.ZodString>;
32552
+ "tr-even-bg-color": z.ZodOptional<z.ZodString>;
32553
+ "tr-odd-bg-color": z.ZodOptional<z.ZodString>;
32554
+ "content-bg": z.ZodOptional<z.ZodString>;
32555
+ "content-fg": z.ZodOptional<z.ZodString>;
32556
+ "content-hover-bg": z.ZodOptional<z.ZodString>;
32557
+ "content-hover-fg": z.ZodOptional<z.ZodString>;
32558
+ "bar-shadow": z.ZodOptional<z.ZodString>;
32559
+ }, "strip", z.ZodTypeAny, {
32560
+ "fg-color"?: string;
32561
+ "bg-color"?: string;
32562
+ "bg-img"?: string;
32563
+ "comfy-menu-bg"?: string;
32564
+ "comfy-menu-secondary-bg"?: string;
32565
+ "comfy-input-bg"?: string;
32566
+ "input-text"?: string;
32567
+ "descrip-text"?: string;
32568
+ "drag-text"?: string;
32569
+ "error-text"?: string;
32570
+ "border-color"?: string;
32571
+ "tr-even-bg-color"?: string;
32572
+ "tr-odd-bg-color"?: string;
32573
+ "content-bg"?: string;
32574
+ "content-fg"?: string;
32575
+ "content-hover-bg"?: string;
32576
+ "content-hover-fg"?: string;
32577
+ "bar-shadow"?: string;
32578
+ }, {
32579
+ "fg-color"?: string;
32580
+ "bg-color"?: string;
32581
+ "bg-img"?: string;
32582
+ "comfy-menu-bg"?: string;
32583
+ "comfy-menu-secondary-bg"?: string;
32584
+ "comfy-input-bg"?: string;
32585
+ "input-text"?: string;
32586
+ "descrip-text"?: string;
32587
+ "drag-text"?: string;
32588
+ "error-text"?: string;
32589
+ "border-color"?: string;
32590
+ "tr-even-bg-color"?: string;
32591
+ "tr-odd-bg-color"?: string;
32592
+ "content-bg"?: string;
32593
+ "content-fg"?: string;
32594
+ "content-hover-bg"?: string;
32595
+ "content-hover-fg"?: string;
32596
+ "bar-shadow"?: string;
32597
+ }>;
32598
+ }, "strip", z.ZodTypeAny, {
32599
+ node_slot?: {
32600
+ CLIP?: string;
32601
+ CLIP_VISION?: string;
32602
+ CLIP_VISION_OUTPUT?: string;
32603
+ CONDITIONING?: string;
32604
+ CONTROL_NET?: string;
32605
+ IMAGE?: string;
32606
+ LATENT?: string;
32607
+ MASK?: string;
32608
+ MODEL?: string;
32015
32609
  STYLE_MODEL?: string;
32016
- T2I_ADAPTER_WEIGHTS?: string;
32610
+ VAE?: string;
32611
+ NOISE?: string;
32612
+ GUIDER?: string;
32613
+ SAMPLER?: string;
32614
+ SIGMAS?: string;
32017
32615
  TAESD?: string;
32018
- TIMESTEP_KEYFRAME?: string;
32019
- UPSCALE_MODEL?: string;
32616
+ };
32617
+ litegraph_base?: {
32618
+ BACKGROUND_IMAGE?: string;
32619
+ CLEAR_BACKGROUND_COLOR?: string;
32620
+ NODE_TITLE_COLOR?: string;
32621
+ NODE_SELECTED_TITLE_COLOR?: string;
32622
+ NODE_TEXT_SIZE?: number;
32623
+ NODE_TEXT_COLOR?: string;
32624
+ NODE_SUBTEXT_SIZE?: number;
32625
+ NODE_DEFAULT_COLOR?: string;
32626
+ NODE_DEFAULT_BGCOLOR?: string;
32627
+ NODE_DEFAULT_BOXCOLOR?: string;
32628
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
32629
+ NODE_BOX_OUTLINE_COLOR?: string;
32630
+ NODE_BYPASS_BGCOLOR?: string;
32631
+ NODE_ERROR_COLOUR?: string;
32632
+ DEFAULT_SHADOW_COLOR?: string;
32633
+ DEFAULT_GROUP_FONT?: number;
32634
+ WIDGET_BGCOLOR?: string;
32635
+ WIDGET_OUTLINE_COLOR?: string;
32636
+ WIDGET_TEXT_COLOR?: string;
32637
+ WIDGET_SECONDARY_TEXT_COLOR?: string;
32638
+ LINK_COLOR?: string;
32639
+ EVENT_LINK_COLOR?: string;
32640
+ CONNECTING_LINK_COLOR?: string;
32641
+ BADGE_FG_COLOR?: string;
32642
+ BADGE_BG_COLOR?: string;
32643
+ };
32644
+ comfy_base?: {
32645
+ "fg-color"?: string;
32646
+ "bg-color"?: string;
32647
+ "bg-img"?: string;
32648
+ "comfy-menu-bg"?: string;
32649
+ "comfy-menu-secondary-bg"?: string;
32650
+ "comfy-input-bg"?: string;
32651
+ "input-text"?: string;
32652
+ "descrip-text"?: string;
32653
+ "drag-text"?: string;
32654
+ "error-text"?: string;
32655
+ "border-color"?: string;
32656
+ "tr-even-bg-color"?: string;
32657
+ "tr-odd-bg-color"?: string;
32658
+ "content-bg"?: string;
32659
+ "content-fg"?: string;
32660
+ "content-hover-bg"?: string;
32661
+ "content-hover-fg"?: string;
32662
+ "bar-shadow"?: string;
32663
+ };
32664
+ }, {
32665
+ node_slot?: {
32666
+ CLIP?: string;
32667
+ CLIP_VISION?: string;
32668
+ CLIP_VISION_OUTPUT?: string;
32669
+ CONDITIONING?: string;
32670
+ CONTROL_NET?: string;
32671
+ IMAGE?: string;
32672
+ LATENT?: string;
32673
+ MASK?: string;
32674
+ MODEL?: string;
32675
+ STYLE_MODEL?: string;
32020
32676
  VAE?: string;
32677
+ NOISE?: string;
32678
+ GUIDER?: string;
32679
+ SAMPLER?: string;
32680
+ SIGMAS?: string;
32681
+ TAESD?: string;
32021
32682
  };
32022
32683
  litegraph_base?: {
32023
32684
  BACKGROUND_IMAGE?: string;
@@ -32030,7 +32691,7 @@ export declare class ComfyApp {
32030
32691
  NODE_DEFAULT_COLOR?: string;
32031
32692
  NODE_DEFAULT_BGCOLOR?: string;
32032
32693
  NODE_DEFAULT_BOXCOLOR?: string;
32033
- NODE_DEFAULT_SHAPE?: RenderShape;
32694
+ NODE_DEFAULT_SHAPE?: string | RenderShape;
32034
32695
  NODE_BOX_OUTLINE_COLOR?: string;
32035
32696
  NODE_BYPASS_BGCOLOR?: string;
32036
32697
  NODE_ERROR_COLOUR?: string;
@@ -32066,10 +32727,8 @@ export declare class ComfyApp {
32066
32727
  "content-hover-fg"?: string;
32067
32728
  "bar-shadow"?: string;
32068
32729
  };
32069
- } & {
32070
- [k: string]: unknown;
32071
- };
32072
- }>;
32730
+ }>;
32731
+ }, z.ZodTypeAny, "passthrough">>;
32073
32732
  'Comfy.ConfirmClear'?: boolean;
32074
32733
  'Comfy.DevMode'?: boolean;
32075
32734
  'Comfy.Workflow.ShowMissingNodesWarning'?: boolean;