@comfyorg/comfyui-frontend-types 1.38.2 → 1.38.4

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 +4270 -72
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1,47 +1,12 @@
1
- import { AssetDownloadWsMessage } from '../schemas/apiSchema';
2
1
  import { ComfyApiWorkflow } from '../platform/workflow/validation/schemas/workflowSchema';
3
2
  import { ComfyWorkflowJSON } from '../platform/workflow/validation/schemas/workflowSchema';
4
3
  import { ComfyWorkflowJSON as ComfyWorkflowJSON_2 } from '../../validation/schemas/workflowSchema';
5
4
  import { Component } from 'vue';
6
- import { DeviceStats } from '../schemas/apiSchema';
7
- import { EmbeddingsResponse } from '../schemas/apiSchema';
8
- import { ExecutedWsMessage } from '../schemas/apiSchema';
9
- import { ExecutingWsMessage } from '../schemas/apiSchema';
10
- import { ExecutionCachedWsMessage } from '../schemas/apiSchema';
11
- import { ExecutionErrorWsMessage } from '../schemas/apiSchema';
12
- import { ExecutionInterruptedWsMessage } from '../schemas/apiSchema';
13
- import { ExecutionStartWsMessage } from '../schemas/apiSchema';
14
- import { ExecutionSuccessWsMessage } from '../schemas/apiSchema';
15
- import { ExtensionsResponse } from '../schemas/apiSchema';
16
- import { FeatureFlagsWsMessage } from '../schemas/apiSchema';
17
- import { HistoryTaskItem } from '../schemas/apiSchema';
18
5
  import { IFuseOptions } from 'fuse.js';
19
- import { LogEntry } from '../schemas/apiSchema';
20
- import { LogsRawResponse } from '../schemas/apiSchema';
21
- import { LogsWsMessage } from '../schemas/apiSchema';
22
- import { NodeError } from '../schemas/apiSchema';
23
6
  import { NodeId as NodeId_2 } from '../platform/workflow/validation/schemas/workflowSchema';
24
- import { NotificationWsMessage } from '../schemas/apiSchema';
25
7
  import { objectOutputType } from 'zod';
26
- import { PendingTaskItem } from '../schemas/apiSchema';
27
- import { PreviewMethod } from '../schemas/apiSchema';
28
- import { ProgressStateWsMessage } from '../schemas/apiSchema';
29
- import { ProgressTextWsMessage } from '../schemas/apiSchema';
30
- import { ProgressWsMessage } from '../schemas/apiSchema';
31
- import { PromptResponse } from '../schemas/apiSchema';
32
- import { RunningTaskItem } from '../schemas/apiSchema';
33
- import { Settings } from '../schemas/apiSchema';
34
- import { Settings as Settings_2 } from '../../schemas/apiSchema';
35
- import { Settings as Settings_3 } from '../../../schemas/apiSchema';
36
8
  import { ShallowRef } from 'vue';
37
- import { StatusWsMessage } from '../schemas/apiSchema';
38
- import { StatusWsMessageStatus } from '../schemas/apiSchema';
39
- import { SystemStats } from '../schemas/apiSchema';
40
- import { TerminalSize } from '../schemas/apiSchema';
41
9
  import { useDialogService } from '../services/dialogService';
42
- import { User } from '../schemas/apiSchema';
43
- import { UserData } from '../schemas/apiSchema';
44
- import { UserDataFullInfo } from '../schemas/apiSchema';
45
10
  import { z } from 'zod';
46
11
  import { ZodArray } from 'zod';
47
12
  import { ZodBoolean } from 'zod';
@@ -110,6 +75,8 @@ declare type AsCustomEvents<T> = {
110
75
  readonly [K in keyof T]: CustomEvent<T[K]>;
111
76
  };
112
77
 
78
+ declare type AssetDownloadWsMessage = z.infer<typeof zAssetDownloadWsMessage>;
79
+
113
80
  declare class AssetWidget extends BaseWidget<IAssetWidget> implements IAssetWidget {
114
81
  constructor(widget: IAssetWidget, node: LGraphNode);
115
82
  set value(value: IAssetWidget['value']);
@@ -891,18 +858,16 @@ export declare class ComfyApi extends EventTarget {
891
858
  * @returns The items of the specified type grouped by their status
892
859
  */
893
860
  getItems(type: 'queue' | 'history'): Promise<{
894
- Running: RunningTaskItem[];
895
- Pending: PendingTaskItem[];
896
- } | {
897
- History: HistoryTaskItem[];
898
- }>;
861
+ Running: JobListItem[];
862
+ Pending: JobListItem[];
863
+ } | JobListItem[]>;
899
864
  /**
900
865
  * Gets the current state of the queue
901
866
  * @returns The currently running and queued items
902
867
  */
903
868
  getQueue(): Promise<{
904
- Running: RunningTaskItem[];
905
- Pending: PendingTaskItem[];
869
+ Running: JobListItem[];
870
+ Pending: JobListItem[];
906
871
  }>;
907
872
  /**
908
873
  * Gets the prompt execution history
@@ -910,9 +875,13 @@ export declare class ComfyApi extends EventTarget {
910
875
  */
911
876
  getHistory(max_items?: number, options?: {
912
877
  offset?: number;
913
- }): Promise<{
914
- History: HistoryTaskItem[];
915
- }>;
878
+ }): Promise<JobListItem[]>;
879
+ /**
880
+ * Gets detailed job info including outputs and workflow
881
+ * @param jobId The job/prompt ID
882
+ * @returns Full job details or undefined if not found
883
+ */
884
+ getJobDetail(jobId: string): Promise<JobDetail | undefined>;
916
885
  /**
917
886
  * Gets system & device stats
918
887
  * @returns System stats such as python version, OS, per device info
@@ -1004,12 +973,6 @@ export declare class ComfyApi extends EventTarget {
1004
973
  freeMemory(options: {
1005
974
  freeExecutionCache: boolean;
1006
975
  }): Promise<void>;
1007
- /**
1008
- * Gets the Fuse options from the server.
1009
- *
1010
- * @returns The Fuse options, or null if not found or invalid
1011
- */
1012
- getFuseOptions(): Promise<IFuseOptions<TemplateInfo> | null>;
1013
976
  /**
1014
977
  * Gets the custom nodes i18n data from the server.
1015
978
  *
@@ -1034,6 +997,7 @@ export declare class ComfyApi extends EventTarget {
1034
997
  * @returns Copy of all server feature flags
1035
998
  */
1036
999
  getServerFeatures(): Record<string, unknown>;
1000
+ getFuseOptions(): Promise<IFuseOptions<TemplateInfo> | null>;
1037
1001
  }
1038
1002
 
1039
1003
  export declare class ComfyApp {
@@ -1371,7 +1335,7 @@ export declare class ComfyApp {
1371
1335
  action?: (e: Event, btn: ComfyButton) => void;
1372
1336
  classList?: ClassList;
1373
1337
  visibilitySetting?: {
1374
- id: keyof Settings_3;
1338
+ id: keyof Settings;
1375
1339
  showValue: boolean;
1376
1340
  };
1377
1341
  app?: ComfyApp;
@@ -1607,19 +1571,19 @@ export declare class ComfyApp {
1607
1571
  /**
1608
1572
  * @deprecated Use `settingStore.get` instead.
1609
1573
  */
1610
- getSettingValue<K extends keyof Settings_2>(id: K, defaultValue?: Settings_2[K]): Settings_2[K];
1574
+ getSettingValue<K extends keyof Settings>(id: K, defaultValue?: Settings[K]): Settings[K];
1611
1575
  /**
1612
1576
  * @deprecated Use `settingStore.getDefaultValue` instead.
1613
1577
  */
1614
- getSettingDefaultValue<K extends keyof Settings_2>(id: K): Settings_2[K] | undefined;
1578
+ getSettingDefaultValue<K extends keyof Settings>(id: K): Settings[K] | undefined;
1615
1579
  /**
1616
1580
  * @deprecated Use `settingStore.set` instead.
1617
1581
  */
1618
- setSettingValueAsync<K extends keyof Settings_2>(id: K, value: Settings_2[K]): Promise<void>;
1582
+ setSettingValueAsync<K extends keyof Settings>(id: K, value: Settings[K]): Promise<void>;
1619
1583
  /**
1620
1584
  * @deprecated Use `settingStore.set` instead.
1621
1585
  */
1622
- setSettingValue<K extends keyof Settings_2>(id: K, value: Settings_2[K]): void;
1586
+ setSettingValue<K extends keyof Settings>(id: K, value: Settings[K]): void;
1623
1587
  /**
1624
1588
  * @deprecated Deprecated for external callers/extensions. Use
1625
1589
  * `ComfyExtension.settings` field instead.
@@ -1948,7 +1912,7 @@ export declare class ComfyApp {
1948
1912
  getDisconnectedColor(type: ISlotType): CanvasColour;
1949
1913
  }
1950
1914
 
1951
- export { DeviceStats }
1915
+ export declare type DeviceStats = z.infer<typeof zDeviceStats>;
1952
1916
 
1953
1917
  declare type Dictionary<T> = {
1954
1918
  [key: string]: T;
@@ -2107,7 +2071,7 @@ export declare class ComfyApp {
2107
2071
  EASE_IN_OUT_QUAD = "easeInOutQuad"
2108
2072
  }
2109
2073
 
2110
- export { EmbeddingsResponse }
2074
+ export declare type EmbeddingsResponse = z.infer<typeof zEmbeddingsResponse>;
2111
2075
 
2112
2076
  /**
2113
2077
  * A virtual slot that simply creates a new input slot when connected to.
@@ -2207,8 +2171,22 @@ export declare class ComfyApp {
2207
2171
  resolveOutput(slot: number, type: ISlotType, visited: Set<string>): ResolvedInput | undefined;
2208
2172
  }
2209
2173
 
2174
+ declare type ExecutedWsMessage = z.infer<typeof zExecutedWsMessage>;
2175
+
2176
+ declare type ExecutingWsMessage = z.infer<typeof zExecutingWsMessage>;
2177
+
2178
+ declare type ExecutionCachedWsMessage = z.infer<typeof zExecutionCachedWsMessage>;
2179
+
2180
+ declare type ExecutionErrorWsMessage = z.infer<typeof zExecutionErrorWsMessage>;
2181
+
2210
2182
  declare type ExecutionId = string;
2211
2183
 
2184
+ declare type ExecutionInterruptedWsMessage = z.infer<typeof zExecutionInterruptedWsMessage>;
2185
+
2186
+ declare type ExecutionStartWsMessage = z.infer<typeof zExecutionStartWsMessage>;
2187
+
2188
+ declare type ExecutionSuccessWsMessage = z.infer<typeof zExecutionSuccessWsMessage>;
2189
+
2212
2190
  /**
2213
2191
  * Defines a subgraph and its contents.
2214
2192
  * Can be referenced multiple times in a schema.
@@ -2264,7 +2242,9 @@ export declare class ComfyApp {
2264
2242
  };
2265
2243
  }
2266
2244
 
2267
- export { ExtensionsResponse }
2245
+ export declare type ExtensionsResponse = z.infer<typeof zExtensionsResponse>;
2246
+
2247
+ declare type FeatureFlagsWsMessage = z.infer<typeof zFeatureFlagsWsMessage>;
2268
2248
 
2269
2249
  /**
2270
2250
  * Widget for handling file uploads
@@ -2420,7 +2400,7 @@ export declare class ComfyApp {
2420
2400
  onPointerLeave?(e?: CanvasPointerEvent): void;
2421
2401
  }
2422
2402
 
2423
- declare interface IAssetWidget extends IBaseWidget<string, 'asset', IWidgetOptions<string[]>> {
2403
+ declare interface IAssetWidget extends IBaseWidget<string, 'asset', IWidgetAssetOptions> {
2424
2404
  type: 'asset';
2425
2405
  value: string;
2426
2406
  }
@@ -3142,6 +3122,10 @@ export declare class ComfyApp {
3142
3122
  */
3143
3123
  declare type IWidget = IBooleanWidget | INumericWidget | IStringWidget | IComboWidget | IStringComboWidget | ICustomWidget | ISliderWidget | IButtonWidget | IKnobWidget | IFileUploadWidget | IColorWidget | IMarkdownWidget | IImageWidget | ITreeSelectWidget | IMultiSelectWidget | IChartWidget | IGalleriaWidget | IImageCompareWidget | ISelectButtonWidget | ITextareaWidget | IAssetWidget;
3144
3124
 
3125
+ declare interface IWidgetAssetOptions extends IWidgetOptions {
3126
+ openModal: (widget: IBaseWidget) => void;
3127
+ }
3128
+
3145
3129
  declare interface IWidgetKnobOptions extends IWidgetOptions<number[]> {
3146
3130
  min: number;
3147
3131
  max: number;
@@ -3202,6 +3186,13 @@ export declare class ComfyApp {
3202
3186
  marker_color?: CanvasColour;
3203
3187
  }
3204
3188
 
3189
+ declare type JobDetail = z.infer<typeof zJobDetail>;
3190
+
3191
+ /** Job list item with priority always set (server-provided or synthetic) */
3192
+ declare type JobListItem = RawJobListItem & {
3193
+ priority: number;
3194
+ };
3195
+
3205
3196
  declare type Keybinding = z.infer<typeof zKeybinding>;
3206
3197
 
3207
3198
  /** Union of property names that are of type Match */
@@ -6317,9 +6308,11 @@ export declare class ComfyApp {
6317
6308
  content: string;
6318
6309
  }
6319
6310
 
6320
- export { LogEntry }
6311
+ export declare type LogEntry = z.infer<typeof zLogEntry>;
6321
6312
 
6322
- export { LogsRawResponse }
6313
+ export declare type LogsRawResponse = z.infer<typeof zLogRawResponse>;
6314
+
6315
+ declare type LogsWsMessage = z.infer<typeof zLogsWsMessage>;
6323
6316
 
6324
6317
  /**
6325
6318
  * Widget for displaying markdown formatted text
@@ -6483,7 +6476,7 @@ export declare class ComfyApp {
6483
6476
  };
6484
6477
  }
6485
6478
 
6486
- export { NodeError }
6479
+ export declare type NodeError = z.infer<typeof zNodeError>;
6487
6480
 
6488
6481
  /**
6489
6482
  * An execution identifier representing a node's position in nested subgraphs.
@@ -6551,6 +6544,8 @@ export declare class ComfyApp {
6551
6544
  /** Properties of nodes that are used by subgraph instances. */
6552
6545
  declare type NodeSubgraphSharedProps = Omit<ISerialisedNode, 'properties' | 'showAdvanced'>;
6553
6546
 
6547
+ declare type NotificationWsMessage = z.infer<typeof zNotificationWsMessage>;
6548
+
6554
6549
  /** Allows all properties to be null. The same as `Partial<T>`, but adds null instead of undefined. */
6555
6550
  declare type NullableProperties<T> = {
6556
6551
  [P in keyof T]: T[P] | null;
@@ -6725,9 +6720,17 @@ export declare class ComfyApp {
6725
6720
  onDeselected?(): void;
6726
6721
  }
6727
6722
 
6723
+ declare type PreviewMethod = z.infer<typeof zPreviewMethod>;
6724
+
6725
+ declare type ProgressStateWsMessage = z.infer<typeof zProgressStateWsMessage>;
6726
+
6727
+ declare type ProgressTextWsMessage = z.infer<typeof zProgressTextWsMessage>;
6728
+
6729
+ declare type ProgressWsMessage = z.infer<typeof zProgressWsMessage>;
6730
+
6728
6731
  declare type PromptDialog = Omit<IDialog, 'modified'>;
6729
6732
 
6730
- export { PromptResponse }
6733
+ export declare type PromptResponse = z.infer<typeof zPromptResponse>;
6731
6734
 
6732
6735
  /**
6733
6736
  * Options for queuePrompt method
@@ -6746,6 +6749,8 @@ export declare class ComfyApp {
6746
6749
  previewMethod?: PreviewMethod;
6747
6750
  }
6748
6751
 
6752
+ declare type RawJobListItem = z.infer<typeof zRawJobListItem>;
6753
+
6749
6754
  declare interface ReadonlyLinkNetwork {
6750
6755
  readonly links: ReadonlyMap<LinkId, LLink>;
6751
6756
  readonly reroutes: ReadonlyMap<RerouteId, Reroute>;
@@ -7312,7 +7317,7 @@ export declare class ComfyApp {
7312
7317
  }
7313
7318
 
7314
7319
  declare interface SettingParams<TValue = any> extends FormItem {
7315
- id: keyof Settings_2;
7320
+ id: keyof Settings;
7316
7321
  defaultValue: TValue | (() => TValue);
7317
7322
  defaultsByInstallVersion?: Record<`${number}.${number}.${number}`, TValue>;
7318
7323
  onChange?: (newValue: TValue, oldValue?: TValue) => void;
@@ -7326,7 +7331,7 @@ export declare class ComfyApp {
7326
7331
  hideInVueNodes?: boolean;
7327
7332
  }
7328
7333
 
7329
- export { Settings }
7334
+ export declare type Settings = z.infer<typeof zSettings>;
7330
7335
 
7331
7336
  export declare type SidebarTabExtension = VueSidebarTabExtension | CustomSidebarTabExtension;
7332
7337
 
@@ -7397,6 +7402,10 @@ export declare class ComfyApp {
7397
7402
  Event = -1
7398
7403
  }
7399
7404
 
7405
+ declare type StatusWsMessage = z.infer<typeof zStatusWsMessage>;
7406
+
7407
+ declare type StatusWsMessageStatus = z.infer<typeof zStatusWsMessageStatus>;
7408
+
7400
7409
  /** A subgraph definition. */
7401
7410
  declare class Subgraph extends LGraph implements BaseLGraph, Serialisable<ExportedSubgraph> {
7402
7411
  #private;
@@ -7510,7 +7519,7 @@ export declare class ComfyApp {
7510
7519
  declare class SubgraphInput extends SubgraphSlot {
7511
7520
  #private;
7512
7521
  parent: SubgraphInputNode;
7513
- events: CustomEventTarget<SubgraphInputEventMap, "input-connected" | "input-disconnected" | "configuring" | "configured" | "subgraph-created" | "convert-to-subgraph" | "open-subgraph">;
7522
+ events: CustomEventTarget<SubgraphInputEventMap, "configuring" | "configured" | "subgraph-created" | "convert-to-subgraph" | "open-subgraph" | "input-connected" | "input-disconnected">;
7514
7523
  get _widget(): IBaseWidget<string | number | boolean | object | undefined, string, IWidgetOptions<unknown>> | undefined;
7515
7524
  set _widget(widget: IBaseWidget<string | number | boolean | object | undefined, string, IWidgetOptions<unknown>> | undefined);
7516
7525
  connect(slot: INodeInputSlot, node: LGraphNode, afterRerouteId?: RerouteId): LLink | undefined;
@@ -7806,7 +7815,7 @@ export declare class ComfyApp {
7806
7815
  editorAlpha?: number;
7807
7816
  }
7808
7817
 
7809
- export { SystemStats }
7818
+ export declare type SystemStats = z.infer<typeof zSystemStats>;
7810
7819
 
7811
7820
  declare enum TemplateIncludeOnDistributionEnum {
7812
7821
  Cloud = "cloud",
@@ -7867,7 +7876,7 @@ export declare class ComfyApp {
7867
7876
  includeOnDistributions?: TemplateIncludeOnDistributionEnum[];
7868
7877
  }
7869
7878
 
7870
- export { TerminalSize }
7879
+ export declare type TerminalSize = z.infer<typeof zTerminalSize>;
7871
7880
 
7872
7881
  /**
7873
7882
  * Widget for multi-line text input
@@ -8088,11 +8097,11 @@ export declare class ComfyApp {
8088
8097
 
8089
8098
  declare type TWidgetValue = IWidget['value'];
8090
8099
 
8091
- export { User }
8100
+ export declare type User = z.infer<typeof zUser>;
8092
8101
 
8093
- export { UserData }
8102
+ export declare type UserData = z.infer<typeof zUserData>;
8094
8103
 
8095
- export { UserDataFullInfo }
8104
+ export declare type UserDataFullInfo = z.infer<typeof zUserDataFullInfo>;
8096
8105
 
8097
8106
  /**
8098
8107
  * Represents a file in the user's data directory.
@@ -8252,6 +8261,35 @@ export declare class ComfyApp {
8252
8261
  isEssential?: boolean;
8253
8262
  }
8254
8263
 
8264
+ declare const zAssetDownloadWsMessage: z.ZodObject<{
8265
+ task_id: z.ZodString;
8266
+ asset_name: z.ZodString;
8267
+ bytes_total: z.ZodNumber;
8268
+ bytes_downloaded: z.ZodNumber;
8269
+ progress: z.ZodNumber;
8270
+ status: z.ZodEnum<["created", "running", "completed", "failed"]>;
8271
+ asset_id: z.ZodOptional<z.ZodString>;
8272
+ error: z.ZodOptional<z.ZodString>;
8273
+ }, "strip", z.ZodTypeAny, {
8274
+ status: "running" | "completed" | "failed" | "created";
8275
+ progress: number;
8276
+ task_id: string;
8277
+ asset_name: string;
8278
+ bytes_total: number;
8279
+ bytes_downloaded: number;
8280
+ error?: string | undefined;
8281
+ asset_id?: string | undefined;
8282
+ }, {
8283
+ status: "running" | "completed" | "failed" | "created";
8284
+ progress: number;
8285
+ task_id: string;
8286
+ asset_name: string;
8287
+ bytes_total: number;
8288
+ bytes_downloaded: number;
8289
+ error?: string | undefined;
8290
+ asset_id?: string | undefined;
8291
+ }>;
8292
+
8255
8293
  declare const zComfyNodeDef: z.ZodObject<{
8256
8294
  input: z.ZodOptional<z.ZodObject<{
8257
8295
  required: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodTuple<[z.ZodLiteral<"INT">, z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
@@ -11404,6 +11442,333 @@ export declare class ComfyApp {
11404
11442
  input_order?: Record<string, string[]> | undefined;
11405
11443
  }>;
11406
11444
 
11445
+ declare const zDeviceStats: z.ZodObject<{
11446
+ name: z.ZodString;
11447
+ type: z.ZodString;
11448
+ index: z.ZodNumber;
11449
+ vram_total: z.ZodNumber;
11450
+ vram_free: z.ZodNumber;
11451
+ torch_vram_total: z.ZodNumber;
11452
+ torch_vram_free: z.ZodNumber;
11453
+ }, "strip", z.ZodTypeAny, {
11454
+ type: string;
11455
+ name: string;
11456
+ index: number;
11457
+ vram_total: number;
11458
+ vram_free: number;
11459
+ torch_vram_total: number;
11460
+ torch_vram_free: number;
11461
+ }, {
11462
+ type: string;
11463
+ name: string;
11464
+ index: number;
11465
+ vram_total: number;
11466
+ vram_free: number;
11467
+ torch_vram_total: number;
11468
+ torch_vram_free: number;
11469
+ }>;
11470
+
11471
+ declare const zEmbeddingsResponse: z.ZodArray<z.ZodString, "many">;
11472
+
11473
+ declare const zExecutedWsMessage: z.ZodObject<z.objectUtil.extendShape<{
11474
+ node: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
11475
+ display_node: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
11476
+ prompt_id: z.ZodString;
11477
+ }, {
11478
+ output: z.ZodObject<{
11479
+ audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
11480
+ filename: z.ZodOptional<z.ZodString>;
11481
+ subfolder: z.ZodOptional<z.ZodString>;
11482
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
11483
+ }, "strip", z.ZodTypeAny, {
11484
+ type?: "input" | "output" | "temp" | undefined;
11485
+ filename?: string | undefined;
11486
+ subfolder?: string | undefined;
11487
+ }, {
11488
+ type?: "input" | "output" | "temp" | undefined;
11489
+ filename?: string | undefined;
11490
+ subfolder?: string | undefined;
11491
+ }>, "many">>;
11492
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
11493
+ filename: z.ZodOptional<z.ZodString>;
11494
+ subfolder: z.ZodOptional<z.ZodString>;
11495
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
11496
+ }, "strip", z.ZodTypeAny, {
11497
+ type?: "input" | "output" | "temp" | undefined;
11498
+ filename?: string | undefined;
11499
+ subfolder?: string | undefined;
11500
+ }, {
11501
+ type?: "input" | "output" | "temp" | undefined;
11502
+ filename?: string | undefined;
11503
+ subfolder?: string | undefined;
11504
+ }>, "many">>;
11505
+ video: z.ZodOptional<z.ZodArray<z.ZodObject<{
11506
+ filename: z.ZodOptional<z.ZodString>;
11507
+ subfolder: z.ZodOptional<z.ZodString>;
11508
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
11509
+ }, "strip", z.ZodTypeAny, {
11510
+ type?: "input" | "output" | "temp" | undefined;
11511
+ filename?: string | undefined;
11512
+ subfolder?: string | undefined;
11513
+ }, {
11514
+ type?: "input" | "output" | "temp" | undefined;
11515
+ filename?: string | undefined;
11516
+ subfolder?: string | undefined;
11517
+ }>, "many">>;
11518
+ animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
11519
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
11520
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
11521
+ audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
11522
+ filename: z.ZodOptional<z.ZodString>;
11523
+ subfolder: z.ZodOptional<z.ZodString>;
11524
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
11525
+ }, "strip", z.ZodTypeAny, {
11526
+ type?: "input" | "output" | "temp" | undefined;
11527
+ filename?: string | undefined;
11528
+ subfolder?: string | undefined;
11529
+ }, {
11530
+ type?: "input" | "output" | "temp" | undefined;
11531
+ filename?: string | undefined;
11532
+ subfolder?: string | undefined;
11533
+ }>, "many">>;
11534
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
11535
+ filename: z.ZodOptional<z.ZodString>;
11536
+ subfolder: z.ZodOptional<z.ZodString>;
11537
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
11538
+ }, "strip", z.ZodTypeAny, {
11539
+ type?: "input" | "output" | "temp" | undefined;
11540
+ filename?: string | undefined;
11541
+ subfolder?: string | undefined;
11542
+ }, {
11543
+ type?: "input" | "output" | "temp" | undefined;
11544
+ filename?: string | undefined;
11545
+ subfolder?: string | undefined;
11546
+ }>, "many">>;
11547
+ video: z.ZodOptional<z.ZodArray<z.ZodObject<{
11548
+ filename: z.ZodOptional<z.ZodString>;
11549
+ subfolder: z.ZodOptional<z.ZodString>;
11550
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
11551
+ }, "strip", z.ZodTypeAny, {
11552
+ type?: "input" | "output" | "temp" | undefined;
11553
+ filename?: string | undefined;
11554
+ subfolder?: string | undefined;
11555
+ }, {
11556
+ type?: "input" | "output" | "temp" | undefined;
11557
+ filename?: string | undefined;
11558
+ subfolder?: string | undefined;
11559
+ }>, "many">>;
11560
+ animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
11561
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
11562
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
11563
+ audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
11564
+ filename: z.ZodOptional<z.ZodString>;
11565
+ subfolder: z.ZodOptional<z.ZodString>;
11566
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
11567
+ }, "strip", z.ZodTypeAny, {
11568
+ type?: "input" | "output" | "temp" | undefined;
11569
+ filename?: string | undefined;
11570
+ subfolder?: string | undefined;
11571
+ }, {
11572
+ type?: "input" | "output" | "temp" | undefined;
11573
+ filename?: string | undefined;
11574
+ subfolder?: string | undefined;
11575
+ }>, "many">>;
11576
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
11577
+ filename: z.ZodOptional<z.ZodString>;
11578
+ subfolder: z.ZodOptional<z.ZodString>;
11579
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
11580
+ }, "strip", z.ZodTypeAny, {
11581
+ type?: "input" | "output" | "temp" | undefined;
11582
+ filename?: string | undefined;
11583
+ subfolder?: string | undefined;
11584
+ }, {
11585
+ type?: "input" | "output" | "temp" | undefined;
11586
+ filename?: string | undefined;
11587
+ subfolder?: string | undefined;
11588
+ }>, "many">>;
11589
+ video: z.ZodOptional<z.ZodArray<z.ZodObject<{
11590
+ filename: z.ZodOptional<z.ZodString>;
11591
+ subfolder: z.ZodOptional<z.ZodString>;
11592
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
11593
+ }, "strip", z.ZodTypeAny, {
11594
+ type?: "input" | "output" | "temp" | undefined;
11595
+ filename?: string | undefined;
11596
+ subfolder?: string | undefined;
11597
+ }, {
11598
+ type?: "input" | "output" | "temp" | undefined;
11599
+ filename?: string | undefined;
11600
+ subfolder?: string | undefined;
11601
+ }>, "many">>;
11602
+ animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
11603
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
11604
+ }, z.ZodTypeAny, "passthrough">>;
11605
+ merge: z.ZodOptional<z.ZodBoolean>;
11606
+ }>, "strip", z.ZodTypeAny, {
11607
+ output: {
11608
+ text?: string | string[] | undefined;
11609
+ video?: {
11610
+ type?: "input" | "output" | "temp" | undefined;
11611
+ filename?: string | undefined;
11612
+ subfolder?: string | undefined;
11613
+ }[] | undefined;
11614
+ audio?: {
11615
+ type?: "input" | "output" | "temp" | undefined;
11616
+ filename?: string | undefined;
11617
+ subfolder?: string | undefined;
11618
+ }[] | undefined;
11619
+ images?: {
11620
+ type?: "input" | "output" | "temp" | undefined;
11621
+ filename?: string | undefined;
11622
+ subfolder?: string | undefined;
11623
+ }[] | undefined;
11624
+ animated?: boolean[] | undefined;
11625
+ } & {
11626
+ [k: string]: unknown;
11627
+ };
11628
+ node: string | number;
11629
+ prompt_id: string;
11630
+ display_node: string | number;
11631
+ merge?: boolean | undefined;
11632
+ }, {
11633
+ output: {
11634
+ text?: string | string[] | undefined;
11635
+ video?: {
11636
+ type?: "input" | "output" | "temp" | undefined;
11637
+ filename?: string | undefined;
11638
+ subfolder?: string | undefined;
11639
+ }[] | undefined;
11640
+ audio?: {
11641
+ type?: "input" | "output" | "temp" | undefined;
11642
+ filename?: string | undefined;
11643
+ subfolder?: string | undefined;
11644
+ }[] | undefined;
11645
+ images?: {
11646
+ type?: "input" | "output" | "temp" | undefined;
11647
+ filename?: string | undefined;
11648
+ subfolder?: string | undefined;
11649
+ }[] | undefined;
11650
+ animated?: boolean[] | undefined;
11651
+ } & {
11652
+ [k: string]: unknown;
11653
+ };
11654
+ node: string | number;
11655
+ prompt_id: string;
11656
+ display_node: string | number;
11657
+ merge?: boolean | undefined;
11658
+ }>;
11659
+
11660
+ declare const zExecutingWsMessage: z.ZodObject<{
11661
+ node: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
11662
+ display_node: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
11663
+ prompt_id: z.ZodString;
11664
+ }, "strip", z.ZodTypeAny, {
11665
+ node: string | number;
11666
+ prompt_id: string;
11667
+ display_node: string | number;
11668
+ }, {
11669
+ node: string | number;
11670
+ prompt_id: string;
11671
+ display_node: string | number;
11672
+ }>;
11673
+
11674
+ declare const zExecutionCachedWsMessage: z.ZodObject<z.objectUtil.extendShape<{
11675
+ prompt_id: z.ZodString;
11676
+ timestamp: z.ZodNumber;
11677
+ }, {
11678
+ nodes: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
11679
+ }>, "strip", z.ZodTypeAny, {
11680
+ nodes: (string | number)[];
11681
+ prompt_id: string;
11682
+ timestamp: number;
11683
+ }, {
11684
+ nodes: (string | number)[];
11685
+ prompt_id: string;
11686
+ timestamp: number;
11687
+ }>;
11688
+
11689
+ declare const zExecutionErrorWsMessage: z.ZodObject<z.objectUtil.extendShape<{
11690
+ prompt_id: z.ZodString;
11691
+ timestamp: z.ZodNumber;
11692
+ }, {
11693
+ node_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
11694
+ node_type: z.ZodString;
11695
+ executed: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
11696
+ exception_message: z.ZodString;
11697
+ exception_type: z.ZodString;
11698
+ traceback: z.ZodArray<z.ZodString, "many">;
11699
+ current_inputs: z.ZodAny;
11700
+ current_outputs: z.ZodAny;
11701
+ }>, "strip", z.ZodTypeAny, {
11702
+ prompt_id: string;
11703
+ node_id: string | number;
11704
+ timestamp: number;
11705
+ node_type: string;
11706
+ executed: (string | number)[];
11707
+ exception_message: string;
11708
+ exception_type: string;
11709
+ traceback: string[];
11710
+ current_inputs?: any;
11711
+ current_outputs?: any;
11712
+ }, {
11713
+ prompt_id: string;
11714
+ node_id: string | number;
11715
+ timestamp: number;
11716
+ node_type: string;
11717
+ executed: (string | number)[];
11718
+ exception_message: string;
11719
+ exception_type: string;
11720
+ traceback: string[];
11721
+ current_inputs?: any;
11722
+ current_outputs?: any;
11723
+ }>;
11724
+
11725
+ declare const zExecutionInterruptedWsMessage: z.ZodObject<z.objectUtil.extendShape<{
11726
+ prompt_id: z.ZodString;
11727
+ timestamp: z.ZodNumber;
11728
+ }, {
11729
+ node_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
11730
+ node_type: z.ZodString;
11731
+ executed: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
11732
+ }>, "strip", z.ZodTypeAny, {
11733
+ prompt_id: string;
11734
+ node_id: string | number;
11735
+ timestamp: number;
11736
+ node_type: string;
11737
+ executed: (string | number)[];
11738
+ }, {
11739
+ prompt_id: string;
11740
+ node_id: string | number;
11741
+ timestamp: number;
11742
+ node_type: string;
11743
+ executed: (string | number)[];
11744
+ }>;
11745
+
11746
+ declare const zExecutionStartWsMessage: z.ZodObject<{
11747
+ prompt_id: z.ZodString;
11748
+ timestamp: z.ZodNumber;
11749
+ }, "strip", z.ZodTypeAny, {
11750
+ prompt_id: string;
11751
+ timestamp: number;
11752
+ }, {
11753
+ prompt_id: string;
11754
+ timestamp: number;
11755
+ }>;
11756
+
11757
+ declare const zExecutionSuccessWsMessage: z.ZodObject<{
11758
+ prompt_id: z.ZodString;
11759
+ timestamp: z.ZodNumber;
11760
+ }, "strip", z.ZodTypeAny, {
11761
+ prompt_id: string;
11762
+ timestamp: number;
11763
+ }, {
11764
+ prompt_id: string;
11765
+ timestamp: number;
11766
+ }>;
11767
+
11768
+ declare const zExtensionsResponse: z.ZodArray<z.ZodString, "many">;
11769
+
11770
+ declare const zFeatureFlagsWsMessage: z.ZodRecord<z.ZodString, z.ZodAny>;
11771
+
11407
11772
  declare const zInputSpec: z.ZodUnion<[z.ZodTuple<[z.ZodLiteral<"INT">, z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
11408
11773
  default: z.ZodOptional<z.ZodAny>;
11409
11774
  defaultInput: z.ZodOptional<z.ZodBoolean>;
@@ -12063,6 +12428,594 @@ export declare class ComfyApp {
12063
12428
  lazy: z.ZodOptional<z.ZodBoolean>;
12064
12429
  }, z.ZodTypeAny, "passthrough">>>], null>]>;
12065
12430
 
12431
+ /**
12432
+ * Job detail - returned by GET /api/jobs/{job_id} (detail endpoint)
12433
+ * Includes full workflow and outputs for re-execution and downloads
12434
+ */
12435
+ declare const zJobDetail: z.ZodObject<z.objectUtil.extendShape<{
12436
+ id: z.ZodString;
12437
+ status: z.ZodEnum<["pending", "in_progress", "completed", "failed", "cancelled"]>;
12438
+ create_time: z.ZodNumber;
12439
+ execution_start_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12440
+ execution_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12441
+ preview_output: z.ZodOptional<z.ZodNullable<z.ZodObject<{
12442
+ filename: z.ZodString;
12443
+ subfolder: z.ZodString;
12444
+ type: z.ZodEnum<["input", "output", "temp"]>;
12445
+ nodeId: z.ZodString;
12446
+ mediaType: z.ZodString;
12447
+ }, "strip", z.ZodTypeAny, {
12448
+ type: "input" | "output" | "temp";
12449
+ nodeId: string;
12450
+ filename: string;
12451
+ subfolder: string;
12452
+ mediaType: string;
12453
+ }, {
12454
+ type: "input" | "output" | "temp";
12455
+ nodeId: string;
12456
+ filename: string;
12457
+ subfolder: string;
12458
+ mediaType: string;
12459
+ }>>>;
12460
+ outputs_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12461
+ execution_error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
12462
+ prompt_id: z.ZodOptional<z.ZodString>;
12463
+ timestamp: z.ZodOptional<z.ZodNumber>;
12464
+ node_id: z.ZodString;
12465
+ node_type: z.ZodString;
12466
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12467
+ exception_message: z.ZodString;
12468
+ exception_type: z.ZodString;
12469
+ traceback: z.ZodArray<z.ZodString, "many">;
12470
+ current_inputs: z.ZodUnknown;
12471
+ current_outputs: z.ZodUnknown;
12472
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
12473
+ prompt_id: z.ZodOptional<z.ZodString>;
12474
+ timestamp: z.ZodOptional<z.ZodNumber>;
12475
+ node_id: z.ZodString;
12476
+ node_type: z.ZodString;
12477
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12478
+ exception_message: z.ZodString;
12479
+ exception_type: z.ZodString;
12480
+ traceback: z.ZodArray<z.ZodString, "many">;
12481
+ current_inputs: z.ZodUnknown;
12482
+ current_outputs: z.ZodUnknown;
12483
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
12484
+ prompt_id: z.ZodOptional<z.ZodString>;
12485
+ timestamp: z.ZodOptional<z.ZodNumber>;
12486
+ node_id: z.ZodString;
12487
+ node_type: z.ZodString;
12488
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12489
+ exception_message: z.ZodString;
12490
+ exception_type: z.ZodString;
12491
+ traceback: z.ZodArray<z.ZodString, "many">;
12492
+ current_inputs: z.ZodUnknown;
12493
+ current_outputs: z.ZodUnknown;
12494
+ }, z.ZodTypeAny, "passthrough">>>>;
12495
+ workflow_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12496
+ priority: z.ZodOptional<z.ZodNumber>;
12497
+ }, {
12498
+ workflow: z.ZodOptional<z.ZodUnknown>;
12499
+ outputs: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodObject<{
12500
+ audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
12501
+ filename: z.ZodOptional<z.ZodString>;
12502
+ subfolder: z.ZodOptional<z.ZodString>;
12503
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12504
+ }, "strip", z.ZodTypeAny, {
12505
+ type?: "input" | "output" | "temp" | undefined;
12506
+ filename?: string | undefined;
12507
+ subfolder?: string | undefined;
12508
+ }, {
12509
+ type?: "input" | "output" | "temp" | undefined;
12510
+ filename?: string | undefined;
12511
+ subfolder?: string | undefined;
12512
+ }>, "many">>;
12513
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
12514
+ filename: z.ZodOptional<z.ZodString>;
12515
+ subfolder: z.ZodOptional<z.ZodString>;
12516
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12517
+ }, "strip", z.ZodTypeAny, {
12518
+ type?: "input" | "output" | "temp" | undefined;
12519
+ filename?: string | undefined;
12520
+ subfolder?: string | undefined;
12521
+ }, {
12522
+ type?: "input" | "output" | "temp" | undefined;
12523
+ filename?: string | undefined;
12524
+ subfolder?: string | undefined;
12525
+ }>, "many">>;
12526
+ video: z.ZodOptional<z.ZodArray<z.ZodObject<{
12527
+ filename: z.ZodOptional<z.ZodString>;
12528
+ subfolder: z.ZodOptional<z.ZodString>;
12529
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12530
+ }, "strip", z.ZodTypeAny, {
12531
+ type?: "input" | "output" | "temp" | undefined;
12532
+ filename?: string | undefined;
12533
+ subfolder?: string | undefined;
12534
+ }, {
12535
+ type?: "input" | "output" | "temp" | undefined;
12536
+ filename?: string | undefined;
12537
+ subfolder?: string | undefined;
12538
+ }>, "many">>;
12539
+ animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
12540
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
12541
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
12542
+ audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
12543
+ filename: z.ZodOptional<z.ZodString>;
12544
+ subfolder: z.ZodOptional<z.ZodString>;
12545
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12546
+ }, "strip", z.ZodTypeAny, {
12547
+ type?: "input" | "output" | "temp" | undefined;
12548
+ filename?: string | undefined;
12549
+ subfolder?: string | undefined;
12550
+ }, {
12551
+ type?: "input" | "output" | "temp" | undefined;
12552
+ filename?: string | undefined;
12553
+ subfolder?: string | undefined;
12554
+ }>, "many">>;
12555
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
12556
+ filename: z.ZodOptional<z.ZodString>;
12557
+ subfolder: z.ZodOptional<z.ZodString>;
12558
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12559
+ }, "strip", z.ZodTypeAny, {
12560
+ type?: "input" | "output" | "temp" | undefined;
12561
+ filename?: string | undefined;
12562
+ subfolder?: string | undefined;
12563
+ }, {
12564
+ type?: "input" | "output" | "temp" | undefined;
12565
+ filename?: string | undefined;
12566
+ subfolder?: string | undefined;
12567
+ }>, "many">>;
12568
+ video: z.ZodOptional<z.ZodArray<z.ZodObject<{
12569
+ filename: z.ZodOptional<z.ZodString>;
12570
+ subfolder: z.ZodOptional<z.ZodString>;
12571
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12572
+ }, "strip", z.ZodTypeAny, {
12573
+ type?: "input" | "output" | "temp" | undefined;
12574
+ filename?: string | undefined;
12575
+ subfolder?: string | undefined;
12576
+ }, {
12577
+ type?: "input" | "output" | "temp" | undefined;
12578
+ filename?: string | undefined;
12579
+ subfolder?: string | undefined;
12580
+ }>, "many">>;
12581
+ animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
12582
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
12583
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
12584
+ audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
12585
+ filename: z.ZodOptional<z.ZodString>;
12586
+ subfolder: z.ZodOptional<z.ZodString>;
12587
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12588
+ }, "strip", z.ZodTypeAny, {
12589
+ type?: "input" | "output" | "temp" | undefined;
12590
+ filename?: string | undefined;
12591
+ subfolder?: string | undefined;
12592
+ }, {
12593
+ type?: "input" | "output" | "temp" | undefined;
12594
+ filename?: string | undefined;
12595
+ subfolder?: string | undefined;
12596
+ }>, "many">>;
12597
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
12598
+ filename: z.ZodOptional<z.ZodString>;
12599
+ subfolder: z.ZodOptional<z.ZodString>;
12600
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12601
+ }, "strip", z.ZodTypeAny, {
12602
+ type?: "input" | "output" | "temp" | undefined;
12603
+ filename?: string | undefined;
12604
+ subfolder?: string | undefined;
12605
+ }, {
12606
+ type?: "input" | "output" | "temp" | undefined;
12607
+ filename?: string | undefined;
12608
+ subfolder?: string | undefined;
12609
+ }>, "many">>;
12610
+ video: z.ZodOptional<z.ZodArray<z.ZodObject<{
12611
+ filename: z.ZodOptional<z.ZodString>;
12612
+ subfolder: z.ZodOptional<z.ZodString>;
12613
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12614
+ }, "strip", z.ZodTypeAny, {
12615
+ type?: "input" | "output" | "temp" | undefined;
12616
+ filename?: string | undefined;
12617
+ subfolder?: string | undefined;
12618
+ }, {
12619
+ type?: "input" | "output" | "temp" | undefined;
12620
+ filename?: string | undefined;
12621
+ subfolder?: string | undefined;
12622
+ }>, "many">>;
12623
+ animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
12624
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
12625
+ }, z.ZodTypeAny, "passthrough">>>>;
12626
+ update_time: z.ZodOptional<z.ZodNumber>;
12627
+ execution_status: z.ZodOptional<z.ZodUnknown>;
12628
+ execution_meta: z.ZodOptional<z.ZodUnknown>;
12629
+ }>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
12630
+ id: z.ZodString;
12631
+ status: z.ZodEnum<["pending", "in_progress", "completed", "failed", "cancelled"]>;
12632
+ create_time: z.ZodNumber;
12633
+ execution_start_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12634
+ execution_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12635
+ preview_output: z.ZodOptional<z.ZodNullable<z.ZodObject<{
12636
+ filename: z.ZodString;
12637
+ subfolder: z.ZodString;
12638
+ type: z.ZodEnum<["input", "output", "temp"]>;
12639
+ nodeId: z.ZodString;
12640
+ mediaType: z.ZodString;
12641
+ }, "strip", z.ZodTypeAny, {
12642
+ type: "input" | "output" | "temp";
12643
+ nodeId: string;
12644
+ filename: string;
12645
+ subfolder: string;
12646
+ mediaType: string;
12647
+ }, {
12648
+ type: "input" | "output" | "temp";
12649
+ nodeId: string;
12650
+ filename: string;
12651
+ subfolder: string;
12652
+ mediaType: string;
12653
+ }>>>;
12654
+ outputs_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12655
+ execution_error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
12656
+ prompt_id: z.ZodOptional<z.ZodString>;
12657
+ timestamp: z.ZodOptional<z.ZodNumber>;
12658
+ node_id: z.ZodString;
12659
+ node_type: z.ZodString;
12660
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12661
+ exception_message: z.ZodString;
12662
+ exception_type: z.ZodString;
12663
+ traceback: z.ZodArray<z.ZodString, "many">;
12664
+ current_inputs: z.ZodUnknown;
12665
+ current_outputs: z.ZodUnknown;
12666
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
12667
+ prompt_id: z.ZodOptional<z.ZodString>;
12668
+ timestamp: z.ZodOptional<z.ZodNumber>;
12669
+ node_id: z.ZodString;
12670
+ node_type: z.ZodString;
12671
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12672
+ exception_message: z.ZodString;
12673
+ exception_type: z.ZodString;
12674
+ traceback: z.ZodArray<z.ZodString, "many">;
12675
+ current_inputs: z.ZodUnknown;
12676
+ current_outputs: z.ZodUnknown;
12677
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
12678
+ prompt_id: z.ZodOptional<z.ZodString>;
12679
+ timestamp: z.ZodOptional<z.ZodNumber>;
12680
+ node_id: z.ZodString;
12681
+ node_type: z.ZodString;
12682
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12683
+ exception_message: z.ZodString;
12684
+ exception_type: z.ZodString;
12685
+ traceback: z.ZodArray<z.ZodString, "many">;
12686
+ current_inputs: z.ZodUnknown;
12687
+ current_outputs: z.ZodUnknown;
12688
+ }, z.ZodTypeAny, "passthrough">>>>;
12689
+ workflow_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12690
+ priority: z.ZodOptional<z.ZodNumber>;
12691
+ }, {
12692
+ workflow: z.ZodOptional<z.ZodUnknown>;
12693
+ outputs: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodObject<{
12694
+ audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
12695
+ filename: z.ZodOptional<z.ZodString>;
12696
+ subfolder: z.ZodOptional<z.ZodString>;
12697
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12698
+ }, "strip", z.ZodTypeAny, {
12699
+ type?: "input" | "output" | "temp" | undefined;
12700
+ filename?: string | undefined;
12701
+ subfolder?: string | undefined;
12702
+ }, {
12703
+ type?: "input" | "output" | "temp" | undefined;
12704
+ filename?: string | undefined;
12705
+ subfolder?: string | undefined;
12706
+ }>, "many">>;
12707
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
12708
+ filename: z.ZodOptional<z.ZodString>;
12709
+ subfolder: z.ZodOptional<z.ZodString>;
12710
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12711
+ }, "strip", z.ZodTypeAny, {
12712
+ type?: "input" | "output" | "temp" | undefined;
12713
+ filename?: string | undefined;
12714
+ subfolder?: string | undefined;
12715
+ }, {
12716
+ type?: "input" | "output" | "temp" | undefined;
12717
+ filename?: string | undefined;
12718
+ subfolder?: string | undefined;
12719
+ }>, "many">>;
12720
+ video: z.ZodOptional<z.ZodArray<z.ZodObject<{
12721
+ filename: z.ZodOptional<z.ZodString>;
12722
+ subfolder: z.ZodOptional<z.ZodString>;
12723
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12724
+ }, "strip", z.ZodTypeAny, {
12725
+ type?: "input" | "output" | "temp" | undefined;
12726
+ filename?: string | undefined;
12727
+ subfolder?: string | undefined;
12728
+ }, {
12729
+ type?: "input" | "output" | "temp" | undefined;
12730
+ filename?: string | undefined;
12731
+ subfolder?: string | undefined;
12732
+ }>, "many">>;
12733
+ animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
12734
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
12735
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
12736
+ audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
12737
+ filename: z.ZodOptional<z.ZodString>;
12738
+ subfolder: z.ZodOptional<z.ZodString>;
12739
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12740
+ }, "strip", z.ZodTypeAny, {
12741
+ type?: "input" | "output" | "temp" | undefined;
12742
+ filename?: string | undefined;
12743
+ subfolder?: string | undefined;
12744
+ }, {
12745
+ type?: "input" | "output" | "temp" | undefined;
12746
+ filename?: string | undefined;
12747
+ subfolder?: string | undefined;
12748
+ }>, "many">>;
12749
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
12750
+ filename: z.ZodOptional<z.ZodString>;
12751
+ subfolder: z.ZodOptional<z.ZodString>;
12752
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12753
+ }, "strip", z.ZodTypeAny, {
12754
+ type?: "input" | "output" | "temp" | undefined;
12755
+ filename?: string | undefined;
12756
+ subfolder?: string | undefined;
12757
+ }, {
12758
+ type?: "input" | "output" | "temp" | undefined;
12759
+ filename?: string | undefined;
12760
+ subfolder?: string | undefined;
12761
+ }>, "many">>;
12762
+ video: z.ZodOptional<z.ZodArray<z.ZodObject<{
12763
+ filename: z.ZodOptional<z.ZodString>;
12764
+ subfolder: z.ZodOptional<z.ZodString>;
12765
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12766
+ }, "strip", z.ZodTypeAny, {
12767
+ type?: "input" | "output" | "temp" | undefined;
12768
+ filename?: string | undefined;
12769
+ subfolder?: string | undefined;
12770
+ }, {
12771
+ type?: "input" | "output" | "temp" | undefined;
12772
+ filename?: string | undefined;
12773
+ subfolder?: string | undefined;
12774
+ }>, "many">>;
12775
+ animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
12776
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
12777
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
12778
+ audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
12779
+ filename: z.ZodOptional<z.ZodString>;
12780
+ subfolder: z.ZodOptional<z.ZodString>;
12781
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12782
+ }, "strip", z.ZodTypeAny, {
12783
+ type?: "input" | "output" | "temp" | undefined;
12784
+ filename?: string | undefined;
12785
+ subfolder?: string | undefined;
12786
+ }, {
12787
+ type?: "input" | "output" | "temp" | undefined;
12788
+ filename?: string | undefined;
12789
+ subfolder?: string | undefined;
12790
+ }>, "many">>;
12791
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
12792
+ filename: z.ZodOptional<z.ZodString>;
12793
+ subfolder: z.ZodOptional<z.ZodString>;
12794
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12795
+ }, "strip", z.ZodTypeAny, {
12796
+ type?: "input" | "output" | "temp" | undefined;
12797
+ filename?: string | undefined;
12798
+ subfolder?: string | undefined;
12799
+ }, {
12800
+ type?: "input" | "output" | "temp" | undefined;
12801
+ filename?: string | undefined;
12802
+ subfolder?: string | undefined;
12803
+ }>, "many">>;
12804
+ video: z.ZodOptional<z.ZodArray<z.ZodObject<{
12805
+ filename: z.ZodOptional<z.ZodString>;
12806
+ subfolder: z.ZodOptional<z.ZodString>;
12807
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12808
+ }, "strip", z.ZodTypeAny, {
12809
+ type?: "input" | "output" | "temp" | undefined;
12810
+ filename?: string | undefined;
12811
+ subfolder?: string | undefined;
12812
+ }, {
12813
+ type?: "input" | "output" | "temp" | undefined;
12814
+ filename?: string | undefined;
12815
+ subfolder?: string | undefined;
12816
+ }>, "many">>;
12817
+ animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
12818
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
12819
+ }, z.ZodTypeAny, "passthrough">>>>;
12820
+ update_time: z.ZodOptional<z.ZodNumber>;
12821
+ execution_status: z.ZodOptional<z.ZodUnknown>;
12822
+ execution_meta: z.ZodOptional<z.ZodUnknown>;
12823
+ }>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
12824
+ id: z.ZodString;
12825
+ status: z.ZodEnum<["pending", "in_progress", "completed", "failed", "cancelled"]>;
12826
+ create_time: z.ZodNumber;
12827
+ execution_start_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12828
+ execution_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12829
+ preview_output: z.ZodOptional<z.ZodNullable<z.ZodObject<{
12830
+ filename: z.ZodString;
12831
+ subfolder: z.ZodString;
12832
+ type: z.ZodEnum<["input", "output", "temp"]>;
12833
+ nodeId: z.ZodString;
12834
+ mediaType: z.ZodString;
12835
+ }, "strip", z.ZodTypeAny, {
12836
+ type: "input" | "output" | "temp";
12837
+ nodeId: string;
12838
+ filename: string;
12839
+ subfolder: string;
12840
+ mediaType: string;
12841
+ }, {
12842
+ type: "input" | "output" | "temp";
12843
+ nodeId: string;
12844
+ filename: string;
12845
+ subfolder: string;
12846
+ mediaType: string;
12847
+ }>>>;
12848
+ outputs_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12849
+ execution_error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
12850
+ prompt_id: z.ZodOptional<z.ZodString>;
12851
+ timestamp: z.ZodOptional<z.ZodNumber>;
12852
+ node_id: z.ZodString;
12853
+ node_type: z.ZodString;
12854
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12855
+ exception_message: z.ZodString;
12856
+ exception_type: z.ZodString;
12857
+ traceback: z.ZodArray<z.ZodString, "many">;
12858
+ current_inputs: z.ZodUnknown;
12859
+ current_outputs: z.ZodUnknown;
12860
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
12861
+ prompt_id: z.ZodOptional<z.ZodString>;
12862
+ timestamp: z.ZodOptional<z.ZodNumber>;
12863
+ node_id: z.ZodString;
12864
+ node_type: z.ZodString;
12865
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12866
+ exception_message: z.ZodString;
12867
+ exception_type: z.ZodString;
12868
+ traceback: z.ZodArray<z.ZodString, "many">;
12869
+ current_inputs: z.ZodUnknown;
12870
+ current_outputs: z.ZodUnknown;
12871
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
12872
+ prompt_id: z.ZodOptional<z.ZodString>;
12873
+ timestamp: z.ZodOptional<z.ZodNumber>;
12874
+ node_id: z.ZodString;
12875
+ node_type: z.ZodString;
12876
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12877
+ exception_message: z.ZodString;
12878
+ exception_type: z.ZodString;
12879
+ traceback: z.ZodArray<z.ZodString, "many">;
12880
+ current_inputs: z.ZodUnknown;
12881
+ current_outputs: z.ZodUnknown;
12882
+ }, z.ZodTypeAny, "passthrough">>>>;
12883
+ workflow_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12884
+ priority: z.ZodOptional<z.ZodNumber>;
12885
+ }, {
12886
+ workflow: z.ZodOptional<z.ZodUnknown>;
12887
+ outputs: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodObject<{
12888
+ audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
12889
+ filename: z.ZodOptional<z.ZodString>;
12890
+ subfolder: z.ZodOptional<z.ZodString>;
12891
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12892
+ }, "strip", z.ZodTypeAny, {
12893
+ type?: "input" | "output" | "temp" | undefined;
12894
+ filename?: string | undefined;
12895
+ subfolder?: string | undefined;
12896
+ }, {
12897
+ type?: "input" | "output" | "temp" | undefined;
12898
+ filename?: string | undefined;
12899
+ subfolder?: string | undefined;
12900
+ }>, "many">>;
12901
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
12902
+ filename: z.ZodOptional<z.ZodString>;
12903
+ subfolder: z.ZodOptional<z.ZodString>;
12904
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12905
+ }, "strip", z.ZodTypeAny, {
12906
+ type?: "input" | "output" | "temp" | undefined;
12907
+ filename?: string | undefined;
12908
+ subfolder?: string | undefined;
12909
+ }, {
12910
+ type?: "input" | "output" | "temp" | undefined;
12911
+ filename?: string | undefined;
12912
+ subfolder?: string | undefined;
12913
+ }>, "many">>;
12914
+ video: z.ZodOptional<z.ZodArray<z.ZodObject<{
12915
+ filename: z.ZodOptional<z.ZodString>;
12916
+ subfolder: z.ZodOptional<z.ZodString>;
12917
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12918
+ }, "strip", z.ZodTypeAny, {
12919
+ type?: "input" | "output" | "temp" | undefined;
12920
+ filename?: string | undefined;
12921
+ subfolder?: string | undefined;
12922
+ }, {
12923
+ type?: "input" | "output" | "temp" | undefined;
12924
+ filename?: string | undefined;
12925
+ subfolder?: string | undefined;
12926
+ }>, "many">>;
12927
+ animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
12928
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
12929
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
12930
+ audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
12931
+ filename: z.ZodOptional<z.ZodString>;
12932
+ subfolder: z.ZodOptional<z.ZodString>;
12933
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12934
+ }, "strip", z.ZodTypeAny, {
12935
+ type?: "input" | "output" | "temp" | undefined;
12936
+ filename?: string | undefined;
12937
+ subfolder?: string | undefined;
12938
+ }, {
12939
+ type?: "input" | "output" | "temp" | undefined;
12940
+ filename?: string | undefined;
12941
+ subfolder?: string | undefined;
12942
+ }>, "many">>;
12943
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
12944
+ filename: z.ZodOptional<z.ZodString>;
12945
+ subfolder: z.ZodOptional<z.ZodString>;
12946
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12947
+ }, "strip", z.ZodTypeAny, {
12948
+ type?: "input" | "output" | "temp" | undefined;
12949
+ filename?: string | undefined;
12950
+ subfolder?: string | undefined;
12951
+ }, {
12952
+ type?: "input" | "output" | "temp" | undefined;
12953
+ filename?: string | undefined;
12954
+ subfolder?: string | undefined;
12955
+ }>, "many">>;
12956
+ video: z.ZodOptional<z.ZodArray<z.ZodObject<{
12957
+ filename: z.ZodOptional<z.ZodString>;
12958
+ subfolder: z.ZodOptional<z.ZodString>;
12959
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12960
+ }, "strip", z.ZodTypeAny, {
12961
+ type?: "input" | "output" | "temp" | undefined;
12962
+ filename?: string | undefined;
12963
+ subfolder?: string | undefined;
12964
+ }, {
12965
+ type?: "input" | "output" | "temp" | undefined;
12966
+ filename?: string | undefined;
12967
+ subfolder?: string | undefined;
12968
+ }>, "many">>;
12969
+ animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
12970
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
12971
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
12972
+ audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
12973
+ filename: z.ZodOptional<z.ZodString>;
12974
+ subfolder: z.ZodOptional<z.ZodString>;
12975
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12976
+ }, "strip", z.ZodTypeAny, {
12977
+ type?: "input" | "output" | "temp" | undefined;
12978
+ filename?: string | undefined;
12979
+ subfolder?: string | undefined;
12980
+ }, {
12981
+ type?: "input" | "output" | "temp" | undefined;
12982
+ filename?: string | undefined;
12983
+ subfolder?: string | undefined;
12984
+ }>, "many">>;
12985
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
12986
+ filename: z.ZodOptional<z.ZodString>;
12987
+ subfolder: z.ZodOptional<z.ZodString>;
12988
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
12989
+ }, "strip", z.ZodTypeAny, {
12990
+ type?: "input" | "output" | "temp" | undefined;
12991
+ filename?: string | undefined;
12992
+ subfolder?: string | undefined;
12993
+ }, {
12994
+ type?: "input" | "output" | "temp" | undefined;
12995
+ filename?: string | undefined;
12996
+ subfolder?: string | undefined;
12997
+ }>, "many">>;
12998
+ video: z.ZodOptional<z.ZodArray<z.ZodObject<{
12999
+ filename: z.ZodOptional<z.ZodString>;
13000
+ subfolder: z.ZodOptional<z.ZodString>;
13001
+ type: z.ZodOptional<z.ZodEnum<["input", "output", "temp"]>>;
13002
+ }, "strip", z.ZodTypeAny, {
13003
+ type?: "input" | "output" | "temp" | undefined;
13004
+ filename?: string | undefined;
13005
+ subfolder?: string | undefined;
13006
+ }, {
13007
+ type?: "input" | "output" | "temp" | undefined;
13008
+ filename?: string | undefined;
13009
+ subfolder?: string | undefined;
13010
+ }>, "many">>;
13011
+ animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
13012
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
13013
+ }, z.ZodTypeAny, "passthrough">>>>;
13014
+ update_time: z.ZodOptional<z.ZodNumber>;
13015
+ execution_status: z.ZodOptional<z.ZodUnknown>;
13016
+ execution_meta: z.ZodOptional<z.ZodUnknown>;
13017
+ }>, z.ZodTypeAny, "passthrough">>;
13018
+
12066
13019
  declare const zKeybinding: z.ZodObject<{
12067
13020
  commandId: z.ZodString;
12068
13021
  combo: z.ZodObject<{
@@ -12107,6 +13060,99 @@ export declare class ComfyApp {
12107
13060
  targetElementId?: string | undefined;
12108
13061
  }>;
12109
13062
 
13063
+ declare const zLogEntry: z.ZodObject<{
13064
+ t: z.ZodString;
13065
+ m: z.ZodString;
13066
+ }, "strip", z.ZodTypeAny, {
13067
+ m: string;
13068
+ t: string;
13069
+ }, {
13070
+ m: string;
13071
+ t: string;
13072
+ }>;
13073
+
13074
+ declare const zLogRawResponse: z.ZodObject<{
13075
+ size: z.ZodObject<{
13076
+ cols: z.ZodNumber;
13077
+ row: z.ZodNumber;
13078
+ }, "strip", z.ZodTypeAny, {
13079
+ cols: number;
13080
+ row: number;
13081
+ }, {
13082
+ cols: number;
13083
+ row: number;
13084
+ }>;
13085
+ entries: z.ZodArray<z.ZodObject<{
13086
+ t: z.ZodString;
13087
+ m: z.ZodString;
13088
+ }, "strip", z.ZodTypeAny, {
13089
+ m: string;
13090
+ t: string;
13091
+ }, {
13092
+ m: string;
13093
+ t: string;
13094
+ }>, "many">;
13095
+ }, "strip", z.ZodTypeAny, {
13096
+ entries: {
13097
+ m: string;
13098
+ t: string;
13099
+ }[];
13100
+ size: {
13101
+ cols: number;
13102
+ row: number;
13103
+ };
13104
+ }, {
13105
+ entries: {
13106
+ m: string;
13107
+ t: string;
13108
+ }[];
13109
+ size: {
13110
+ cols: number;
13111
+ row: number;
13112
+ };
13113
+ }>;
13114
+
13115
+ declare const zLogsWsMessage: z.ZodObject<{
13116
+ size: z.ZodOptional<z.ZodObject<{
13117
+ cols: z.ZodNumber;
13118
+ row: z.ZodNumber;
13119
+ }, "strip", z.ZodTypeAny, {
13120
+ cols: number;
13121
+ row: number;
13122
+ }, {
13123
+ cols: number;
13124
+ row: number;
13125
+ }>>;
13126
+ entries: z.ZodArray<z.ZodObject<{
13127
+ t: z.ZodString;
13128
+ m: z.ZodString;
13129
+ }, "strip", z.ZodTypeAny, {
13130
+ m: string;
13131
+ t: string;
13132
+ }, {
13133
+ m: string;
13134
+ t: string;
13135
+ }>, "many">;
13136
+ }, "strip", z.ZodTypeAny, {
13137
+ entries: {
13138
+ m: string;
13139
+ t: string;
13140
+ }[];
13141
+ size?: {
13142
+ cols: number;
13143
+ row: number;
13144
+ } | undefined;
13145
+ }, {
13146
+ entries: {
13147
+ m: string;
13148
+ t: string;
13149
+ }[];
13150
+ size?: {
13151
+ cols: number;
13152
+ row: number;
13153
+ } | undefined;
13154
+ }>;
13155
+
12110
13156
  declare const zModelFile: z.ZodObject<{
12111
13157
  name: z.ZodString;
12112
13158
  pathIndex: z.ZodNumber;
@@ -12118,4 +13164,3156 @@ export declare class ComfyApp {
12118
13164
  pathIndex: number;
12119
13165
  }>;
12120
13166
 
13167
+ declare const zNodeError: z.ZodObject<{
13168
+ errors: z.ZodArray<z.ZodObject<{
13169
+ type: z.ZodString;
13170
+ message: z.ZodString;
13171
+ details: z.ZodString;
13172
+ extra_info: z.ZodOptional<z.ZodObject<{
13173
+ input_name: z.ZodOptional<z.ZodString>;
13174
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
13175
+ input_name: z.ZodOptional<z.ZodString>;
13176
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
13177
+ input_name: z.ZodOptional<z.ZodString>;
13178
+ }, z.ZodTypeAny, "passthrough">>>;
13179
+ }, "strip", z.ZodTypeAny, {
13180
+ type: string;
13181
+ message: string;
13182
+ details: string;
13183
+ extra_info?: z.objectOutputType<{
13184
+ input_name: z.ZodOptional<z.ZodString>;
13185
+ }, z.ZodTypeAny, "passthrough"> | undefined;
13186
+ }, {
13187
+ type: string;
13188
+ message: string;
13189
+ details: string;
13190
+ extra_info?: z.objectInputType<{
13191
+ input_name: z.ZodOptional<z.ZodString>;
13192
+ }, z.ZodTypeAny, "passthrough"> | undefined;
13193
+ }>, "many">;
13194
+ class_type: z.ZodString;
13195
+ dependent_outputs: z.ZodArray<z.ZodAny, "many">;
13196
+ }, "strip", z.ZodTypeAny, {
13197
+ class_type: string;
13198
+ errors: {
13199
+ type: string;
13200
+ message: string;
13201
+ details: string;
13202
+ extra_info?: z.objectOutputType<{
13203
+ input_name: z.ZodOptional<z.ZodString>;
13204
+ }, z.ZodTypeAny, "passthrough"> | undefined;
13205
+ }[];
13206
+ dependent_outputs: any[];
13207
+ }, {
13208
+ class_type: string;
13209
+ errors: {
13210
+ type: string;
13211
+ message: string;
13212
+ details: string;
13213
+ extra_info?: z.objectInputType<{
13214
+ input_name: z.ZodOptional<z.ZodString>;
13215
+ }, z.ZodTypeAny, "passthrough"> | undefined;
13216
+ }[];
13217
+ dependent_outputs: any[];
13218
+ }>;
13219
+
13220
+ declare const zNotificationWsMessage: z.ZodObject<{
13221
+ value: z.ZodString;
13222
+ id: z.ZodOptional<z.ZodString>;
13223
+ }, "strip", z.ZodTypeAny, {
13224
+ value: string;
13225
+ id?: string | undefined;
13226
+ }, {
13227
+ value: string;
13228
+ id?: string | undefined;
13229
+ }>;
13230
+
13231
+ declare const zPreviewMethod: z.ZodEnum<["default", "none", "auto", "latent2rgb", "taesd"]>;
13232
+
13233
+ declare const zProgressStateWsMessage: z.ZodObject<{
13234
+ prompt_id: z.ZodString;
13235
+ nodes: z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodObject<{
13236
+ value: z.ZodNumber;
13237
+ max: z.ZodNumber;
13238
+ state: z.ZodEnum<["pending", "running", "finished", "error"]>;
13239
+ node_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
13240
+ prompt_id: z.ZodString;
13241
+ display_node_id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
13242
+ parent_node_id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
13243
+ real_node_id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
13244
+ }, "strip", z.ZodTypeAny, {
13245
+ max: number;
13246
+ value: number;
13247
+ state: "running" | "error" | "pending" | "finished";
13248
+ prompt_id: string;
13249
+ node_id: string | number;
13250
+ display_node_id?: string | number | undefined;
13251
+ parent_node_id?: string | number | undefined;
13252
+ real_node_id?: string | number | undefined;
13253
+ }, {
13254
+ max: number;
13255
+ value: number;
13256
+ state: "running" | "error" | "pending" | "finished";
13257
+ prompt_id: string;
13258
+ node_id: string | number;
13259
+ display_node_id?: string | number | undefined;
13260
+ parent_node_id?: string | number | undefined;
13261
+ real_node_id?: string | number | undefined;
13262
+ }>>;
13263
+ }, "strip", z.ZodTypeAny, {
13264
+ nodes: Record<string | number, {
13265
+ max: number;
13266
+ value: number;
13267
+ state: "running" | "error" | "pending" | "finished";
13268
+ prompt_id: string;
13269
+ node_id: string | number;
13270
+ display_node_id?: string | number | undefined;
13271
+ parent_node_id?: string | number | undefined;
13272
+ real_node_id?: string | number | undefined;
13273
+ }>;
13274
+ prompt_id: string;
13275
+ }, {
13276
+ nodes: Record<string | number, {
13277
+ max: number;
13278
+ value: number;
13279
+ state: "running" | "error" | "pending" | "finished";
13280
+ prompt_id: string;
13281
+ node_id: string | number;
13282
+ display_node_id?: string | number | undefined;
13283
+ parent_node_id?: string | number | undefined;
13284
+ real_node_id?: string | number | undefined;
13285
+ }>;
13286
+ prompt_id: string;
13287
+ }>;
13288
+
13289
+ declare const zProgressTextWsMessage: z.ZodObject<{
13290
+ nodeId: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
13291
+ text: z.ZodString;
13292
+ }, "strip", z.ZodTypeAny, {
13293
+ text: string;
13294
+ nodeId: string | number;
13295
+ }, {
13296
+ text: string;
13297
+ nodeId: string | number;
13298
+ }>;
13299
+
13300
+ declare const zProgressWsMessage: z.ZodObject<{
13301
+ value: z.ZodNumber;
13302
+ max: z.ZodNumber;
13303
+ prompt_id: z.ZodString;
13304
+ node: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
13305
+ }, "strip", z.ZodTypeAny, {
13306
+ node: string | number;
13307
+ max: number;
13308
+ value: number;
13309
+ prompt_id: string;
13310
+ }, {
13311
+ node: string | number;
13312
+ max: number;
13313
+ value: number;
13314
+ prompt_id: string;
13315
+ }>;
13316
+
13317
+ declare const zPromptResponse: z.ZodObject<{
13318
+ node_errors: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodObject<{
13319
+ errors: z.ZodArray<z.ZodObject<{
13320
+ type: z.ZodString;
13321
+ message: z.ZodString;
13322
+ details: z.ZodString;
13323
+ extra_info: z.ZodOptional<z.ZodObject<{
13324
+ input_name: z.ZodOptional<z.ZodString>;
13325
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
13326
+ input_name: z.ZodOptional<z.ZodString>;
13327
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
13328
+ input_name: z.ZodOptional<z.ZodString>;
13329
+ }, z.ZodTypeAny, "passthrough">>>;
13330
+ }, "strip", z.ZodTypeAny, {
13331
+ type: string;
13332
+ message: string;
13333
+ details: string;
13334
+ extra_info?: z.objectOutputType<{
13335
+ input_name: z.ZodOptional<z.ZodString>;
13336
+ }, z.ZodTypeAny, "passthrough"> | undefined;
13337
+ }, {
13338
+ type: string;
13339
+ message: string;
13340
+ details: string;
13341
+ extra_info?: z.objectInputType<{
13342
+ input_name: z.ZodOptional<z.ZodString>;
13343
+ }, z.ZodTypeAny, "passthrough"> | undefined;
13344
+ }>, "many">;
13345
+ class_type: z.ZodString;
13346
+ dependent_outputs: z.ZodArray<z.ZodAny, "many">;
13347
+ }, "strip", z.ZodTypeAny, {
13348
+ class_type: string;
13349
+ errors: {
13350
+ type: string;
13351
+ message: string;
13352
+ details: string;
13353
+ extra_info?: z.objectOutputType<{
13354
+ input_name: z.ZodOptional<z.ZodString>;
13355
+ }, z.ZodTypeAny, "passthrough"> | undefined;
13356
+ }[];
13357
+ dependent_outputs: any[];
13358
+ }, {
13359
+ class_type: string;
13360
+ errors: {
13361
+ type: string;
13362
+ message: string;
13363
+ details: string;
13364
+ extra_info?: z.objectInputType<{
13365
+ input_name: z.ZodOptional<z.ZodString>;
13366
+ }, z.ZodTypeAny, "passthrough"> | undefined;
13367
+ }[];
13368
+ dependent_outputs: any[];
13369
+ }>>>;
13370
+ prompt_id: z.ZodOptional<z.ZodString>;
13371
+ exec_info: z.ZodOptional<z.ZodObject<{
13372
+ queue_remaining: z.ZodOptional<z.ZodNumber>;
13373
+ }, "strip", z.ZodTypeAny, {
13374
+ queue_remaining?: number | undefined;
13375
+ }, {
13376
+ queue_remaining?: number | undefined;
13377
+ }>>;
13378
+ error: z.ZodUnion<[z.ZodString, z.ZodObject<{
13379
+ type: z.ZodString;
13380
+ message: z.ZodString;
13381
+ details: z.ZodString;
13382
+ extra_info: z.ZodOptional<z.ZodObject<{
13383
+ input_name: z.ZodOptional<z.ZodString>;
13384
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
13385
+ input_name: z.ZodOptional<z.ZodString>;
13386
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
13387
+ input_name: z.ZodOptional<z.ZodString>;
13388
+ }, z.ZodTypeAny, "passthrough">>>;
13389
+ }, "strip", z.ZodTypeAny, {
13390
+ type: string;
13391
+ message: string;
13392
+ details: string;
13393
+ extra_info?: z.objectOutputType<{
13394
+ input_name: z.ZodOptional<z.ZodString>;
13395
+ }, z.ZodTypeAny, "passthrough"> | undefined;
13396
+ }, {
13397
+ type: string;
13398
+ message: string;
13399
+ details: string;
13400
+ extra_info?: z.objectInputType<{
13401
+ input_name: z.ZodOptional<z.ZodString>;
13402
+ }, z.ZodTypeAny, "passthrough"> | undefined;
13403
+ }>]>;
13404
+ }, "strip", z.ZodTypeAny, {
13405
+ error: string | {
13406
+ type: string;
13407
+ message: string;
13408
+ details: string;
13409
+ extra_info?: z.objectOutputType<{
13410
+ input_name: z.ZodOptional<z.ZodString>;
13411
+ }, z.ZodTypeAny, "passthrough"> | undefined;
13412
+ };
13413
+ exec_info?: {
13414
+ queue_remaining?: number | undefined;
13415
+ } | undefined;
13416
+ prompt_id?: string | undefined;
13417
+ node_errors?: Record<string | number, {
13418
+ class_type: string;
13419
+ errors: {
13420
+ type: string;
13421
+ message: string;
13422
+ details: string;
13423
+ extra_info?: z.objectOutputType<{
13424
+ input_name: z.ZodOptional<z.ZodString>;
13425
+ }, z.ZodTypeAny, "passthrough"> | undefined;
13426
+ }[];
13427
+ dependent_outputs: any[];
13428
+ }> | undefined;
13429
+ }, {
13430
+ error: string | {
13431
+ type: string;
13432
+ message: string;
13433
+ details: string;
13434
+ extra_info?: z.objectInputType<{
13435
+ input_name: z.ZodOptional<z.ZodString>;
13436
+ }, z.ZodTypeAny, "passthrough"> | undefined;
13437
+ };
13438
+ exec_info?: {
13439
+ queue_remaining?: number | undefined;
13440
+ } | undefined;
13441
+ prompt_id?: string | undefined;
13442
+ node_errors?: Record<string | number, {
13443
+ class_type: string;
13444
+ errors: {
13445
+ type: string;
13446
+ message: string;
13447
+ details: string;
13448
+ extra_info?: z.objectInputType<{
13449
+ input_name: z.ZodOptional<z.ZodString>;
13450
+ }, z.ZodTypeAny, "passthrough"> | undefined;
13451
+ }[];
13452
+ dependent_outputs: any[];
13453
+ }> | undefined;
13454
+ }>;
13455
+
13456
+ /**
13457
+ * Raw job from API - uses passthrough to allow extra fields
13458
+ */
13459
+ declare const zRawJobListItem: z.ZodObject<{
13460
+ id: z.ZodString;
13461
+ status: z.ZodEnum<["pending", "in_progress", "completed", "failed", "cancelled"]>;
13462
+ create_time: z.ZodNumber;
13463
+ execution_start_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13464
+ execution_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13465
+ preview_output: z.ZodOptional<z.ZodNullable<z.ZodObject<{
13466
+ filename: z.ZodString;
13467
+ subfolder: z.ZodString;
13468
+ type: z.ZodEnum<["input", "output", "temp"]>;
13469
+ nodeId: z.ZodString;
13470
+ mediaType: z.ZodString;
13471
+ }, "strip", z.ZodTypeAny, {
13472
+ type: "input" | "output" | "temp";
13473
+ nodeId: string;
13474
+ filename: string;
13475
+ subfolder: string;
13476
+ mediaType: string;
13477
+ }, {
13478
+ type: "input" | "output" | "temp";
13479
+ nodeId: string;
13480
+ filename: string;
13481
+ subfolder: string;
13482
+ mediaType: string;
13483
+ }>>>;
13484
+ outputs_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13485
+ execution_error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
13486
+ prompt_id: z.ZodOptional<z.ZodString>;
13487
+ timestamp: z.ZodOptional<z.ZodNumber>;
13488
+ node_id: z.ZodString;
13489
+ node_type: z.ZodString;
13490
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13491
+ exception_message: z.ZodString;
13492
+ exception_type: z.ZodString;
13493
+ traceback: z.ZodArray<z.ZodString, "many">;
13494
+ current_inputs: z.ZodUnknown;
13495
+ current_outputs: z.ZodUnknown;
13496
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
13497
+ prompt_id: z.ZodOptional<z.ZodString>;
13498
+ timestamp: z.ZodOptional<z.ZodNumber>;
13499
+ node_id: z.ZodString;
13500
+ node_type: z.ZodString;
13501
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13502
+ exception_message: z.ZodString;
13503
+ exception_type: z.ZodString;
13504
+ traceback: z.ZodArray<z.ZodString, "many">;
13505
+ current_inputs: z.ZodUnknown;
13506
+ current_outputs: z.ZodUnknown;
13507
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
13508
+ prompt_id: z.ZodOptional<z.ZodString>;
13509
+ timestamp: z.ZodOptional<z.ZodNumber>;
13510
+ node_id: z.ZodString;
13511
+ node_type: z.ZodString;
13512
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13513
+ exception_message: z.ZodString;
13514
+ exception_type: z.ZodString;
13515
+ traceback: z.ZodArray<z.ZodString, "many">;
13516
+ current_inputs: z.ZodUnknown;
13517
+ current_outputs: z.ZodUnknown;
13518
+ }, z.ZodTypeAny, "passthrough">>>>;
13519
+ workflow_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13520
+ priority: z.ZodOptional<z.ZodNumber>;
13521
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
13522
+ id: z.ZodString;
13523
+ status: z.ZodEnum<["pending", "in_progress", "completed", "failed", "cancelled"]>;
13524
+ create_time: z.ZodNumber;
13525
+ execution_start_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13526
+ execution_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13527
+ preview_output: z.ZodOptional<z.ZodNullable<z.ZodObject<{
13528
+ filename: z.ZodString;
13529
+ subfolder: z.ZodString;
13530
+ type: z.ZodEnum<["input", "output", "temp"]>;
13531
+ nodeId: z.ZodString;
13532
+ mediaType: z.ZodString;
13533
+ }, "strip", z.ZodTypeAny, {
13534
+ type: "input" | "output" | "temp";
13535
+ nodeId: string;
13536
+ filename: string;
13537
+ subfolder: string;
13538
+ mediaType: string;
13539
+ }, {
13540
+ type: "input" | "output" | "temp";
13541
+ nodeId: string;
13542
+ filename: string;
13543
+ subfolder: string;
13544
+ mediaType: string;
13545
+ }>>>;
13546
+ outputs_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13547
+ execution_error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
13548
+ prompt_id: z.ZodOptional<z.ZodString>;
13549
+ timestamp: z.ZodOptional<z.ZodNumber>;
13550
+ node_id: z.ZodString;
13551
+ node_type: z.ZodString;
13552
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13553
+ exception_message: z.ZodString;
13554
+ exception_type: z.ZodString;
13555
+ traceback: z.ZodArray<z.ZodString, "many">;
13556
+ current_inputs: z.ZodUnknown;
13557
+ current_outputs: z.ZodUnknown;
13558
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
13559
+ prompt_id: z.ZodOptional<z.ZodString>;
13560
+ timestamp: z.ZodOptional<z.ZodNumber>;
13561
+ node_id: z.ZodString;
13562
+ node_type: z.ZodString;
13563
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13564
+ exception_message: z.ZodString;
13565
+ exception_type: z.ZodString;
13566
+ traceback: z.ZodArray<z.ZodString, "many">;
13567
+ current_inputs: z.ZodUnknown;
13568
+ current_outputs: z.ZodUnknown;
13569
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
13570
+ prompt_id: z.ZodOptional<z.ZodString>;
13571
+ timestamp: z.ZodOptional<z.ZodNumber>;
13572
+ node_id: z.ZodString;
13573
+ node_type: z.ZodString;
13574
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13575
+ exception_message: z.ZodString;
13576
+ exception_type: z.ZodString;
13577
+ traceback: z.ZodArray<z.ZodString, "many">;
13578
+ current_inputs: z.ZodUnknown;
13579
+ current_outputs: z.ZodUnknown;
13580
+ }, z.ZodTypeAny, "passthrough">>>>;
13581
+ workflow_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13582
+ priority: z.ZodOptional<z.ZodNumber>;
13583
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
13584
+ id: z.ZodString;
13585
+ status: z.ZodEnum<["pending", "in_progress", "completed", "failed", "cancelled"]>;
13586
+ create_time: z.ZodNumber;
13587
+ execution_start_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13588
+ execution_end_time: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13589
+ preview_output: z.ZodOptional<z.ZodNullable<z.ZodObject<{
13590
+ filename: z.ZodString;
13591
+ subfolder: z.ZodString;
13592
+ type: z.ZodEnum<["input", "output", "temp"]>;
13593
+ nodeId: z.ZodString;
13594
+ mediaType: z.ZodString;
13595
+ }, "strip", z.ZodTypeAny, {
13596
+ type: "input" | "output" | "temp";
13597
+ nodeId: string;
13598
+ filename: string;
13599
+ subfolder: string;
13600
+ mediaType: string;
13601
+ }, {
13602
+ type: "input" | "output" | "temp";
13603
+ nodeId: string;
13604
+ filename: string;
13605
+ subfolder: string;
13606
+ mediaType: string;
13607
+ }>>>;
13608
+ outputs_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13609
+ execution_error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
13610
+ prompt_id: z.ZodOptional<z.ZodString>;
13611
+ timestamp: z.ZodOptional<z.ZodNumber>;
13612
+ node_id: z.ZodString;
13613
+ node_type: z.ZodString;
13614
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13615
+ exception_message: z.ZodString;
13616
+ exception_type: z.ZodString;
13617
+ traceback: z.ZodArray<z.ZodString, "many">;
13618
+ current_inputs: z.ZodUnknown;
13619
+ current_outputs: z.ZodUnknown;
13620
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
13621
+ prompt_id: z.ZodOptional<z.ZodString>;
13622
+ timestamp: z.ZodOptional<z.ZodNumber>;
13623
+ node_id: z.ZodString;
13624
+ node_type: z.ZodString;
13625
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13626
+ exception_message: z.ZodString;
13627
+ exception_type: z.ZodString;
13628
+ traceback: z.ZodArray<z.ZodString, "many">;
13629
+ current_inputs: z.ZodUnknown;
13630
+ current_outputs: z.ZodUnknown;
13631
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
13632
+ prompt_id: z.ZodOptional<z.ZodString>;
13633
+ timestamp: z.ZodOptional<z.ZodNumber>;
13634
+ node_id: z.ZodString;
13635
+ node_type: z.ZodString;
13636
+ executed: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13637
+ exception_message: z.ZodString;
13638
+ exception_type: z.ZodString;
13639
+ traceback: z.ZodArray<z.ZodString, "many">;
13640
+ current_inputs: z.ZodUnknown;
13641
+ current_outputs: z.ZodUnknown;
13642
+ }, z.ZodTypeAny, "passthrough">>>>;
13643
+ workflow_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13644
+ priority: z.ZodOptional<z.ZodNumber>;
13645
+ }, z.ZodTypeAny, "passthrough">>;
13646
+
13647
+ declare const zSettings: z.ZodObject<{
13648
+ 'Comfy.ColorPalette': z.ZodString;
13649
+ 'Comfy.CustomColorPalettes': z.ZodRecord<z.ZodString, z.ZodObject<{
13650
+ id: z.ZodString;
13651
+ name: z.ZodString;
13652
+ colors: z.ZodObject<{
13653
+ node_slot: z.ZodObject<{
13654
+ CLIP: z.ZodOptional<z.ZodString>;
13655
+ CLIP_VISION: z.ZodOptional<z.ZodString>;
13656
+ CLIP_VISION_OUTPUT: z.ZodOptional<z.ZodString>;
13657
+ CONDITIONING: z.ZodOptional<z.ZodString>;
13658
+ CONTROL_NET: z.ZodOptional<z.ZodString>;
13659
+ IMAGE: z.ZodOptional<z.ZodString>;
13660
+ LATENT: z.ZodOptional<z.ZodString>;
13661
+ MASK: z.ZodOptional<z.ZodString>;
13662
+ MODEL: z.ZodOptional<z.ZodString>;
13663
+ STYLE_MODEL: z.ZodOptional<z.ZodString>;
13664
+ VAE: z.ZodOptional<z.ZodString>;
13665
+ NOISE: z.ZodOptional<z.ZodString>;
13666
+ GUIDER: z.ZodOptional<z.ZodString>;
13667
+ SAMPLER: z.ZodOptional<z.ZodString>;
13668
+ SIGMAS: z.ZodOptional<z.ZodString>;
13669
+ TAESD: z.ZodOptional<z.ZodString>;
13670
+ }, "strip", z.ZodTypeAny, {
13671
+ CLIP?: string | undefined;
13672
+ CLIP_VISION?: string | undefined;
13673
+ CLIP_VISION_OUTPUT?: string | undefined;
13674
+ CONDITIONING?: string | undefined;
13675
+ CONTROL_NET?: string | undefined;
13676
+ GUIDER?: string | undefined;
13677
+ IMAGE?: string | undefined;
13678
+ LATENT?: string | undefined;
13679
+ MASK?: string | undefined;
13680
+ MODEL?: string | undefined;
13681
+ NOISE?: string | undefined;
13682
+ SAMPLER?: string | undefined;
13683
+ SIGMAS?: string | undefined;
13684
+ STYLE_MODEL?: string | undefined;
13685
+ VAE?: string | undefined;
13686
+ TAESD?: string | undefined;
13687
+ }, {
13688
+ CLIP?: string | undefined;
13689
+ CLIP_VISION?: string | undefined;
13690
+ CLIP_VISION_OUTPUT?: string | undefined;
13691
+ CONDITIONING?: string | undefined;
13692
+ CONTROL_NET?: string | undefined;
13693
+ GUIDER?: string | undefined;
13694
+ IMAGE?: string | undefined;
13695
+ LATENT?: string | undefined;
13696
+ MASK?: string | undefined;
13697
+ MODEL?: string | undefined;
13698
+ NOISE?: string | undefined;
13699
+ SAMPLER?: string | undefined;
13700
+ SIGMAS?: string | undefined;
13701
+ STYLE_MODEL?: string | undefined;
13702
+ VAE?: string | undefined;
13703
+ TAESD?: string | undefined;
13704
+ }>;
13705
+ litegraph_base: z.ZodObject<{
13706
+ BACKGROUND_IMAGE: z.ZodOptional<z.ZodString>;
13707
+ CLEAR_BACKGROUND_COLOR: z.ZodOptional<z.ZodString>;
13708
+ NODE_TITLE_COLOR: z.ZodOptional<z.ZodString>;
13709
+ NODE_SELECTED_TITLE_COLOR: z.ZodOptional<z.ZodString>;
13710
+ NODE_TEXT_SIZE: z.ZodOptional<z.ZodNumber>;
13711
+ NODE_TEXT_COLOR: z.ZodOptional<z.ZodString>;
13712
+ NODE_TEXT_HIGHLIGHT_COLOR: z.ZodOptional<z.ZodString>;
13713
+ NODE_SUBTEXT_SIZE: z.ZodOptional<z.ZodNumber>;
13714
+ NODE_DEFAULT_COLOR: z.ZodOptional<z.ZodString>;
13715
+ NODE_DEFAULT_BGCOLOR: z.ZodOptional<z.ZodString>;
13716
+ NODE_DEFAULT_BOXCOLOR: z.ZodOptional<z.ZodString>;
13717
+ NODE_DEFAULT_SHAPE: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodString]>>;
13718
+ NODE_BOX_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
13719
+ NODE_BYPASS_BGCOLOR: z.ZodOptional<z.ZodString>;
13720
+ NODE_ERROR_COLOUR: z.ZodOptional<z.ZodString>;
13721
+ DEFAULT_SHADOW_COLOR: z.ZodOptional<z.ZodString>;
13722
+ DEFAULT_GROUP_FONT: z.ZodOptional<z.ZodNumber>;
13723
+ WIDGET_BGCOLOR: z.ZodOptional<z.ZodString>;
13724
+ WIDGET_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
13725
+ WIDGET_TEXT_COLOR: z.ZodOptional<z.ZodString>;
13726
+ WIDGET_SECONDARY_TEXT_COLOR: z.ZodOptional<z.ZodString>;
13727
+ WIDGET_DISABLED_TEXT_COLOR: z.ZodOptional<z.ZodString>;
13728
+ LINK_COLOR: z.ZodOptional<z.ZodString>;
13729
+ EVENT_LINK_COLOR: z.ZodOptional<z.ZodString>;
13730
+ CONNECTING_LINK_COLOR: z.ZodOptional<z.ZodString>;
13731
+ BADGE_FG_COLOR: z.ZodOptional<z.ZodString>;
13732
+ BADGE_BG_COLOR: z.ZodOptional<z.ZodString>;
13733
+ }, "strip", z.ZodTypeAny, {
13734
+ BACKGROUND_IMAGE?: string | undefined;
13735
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
13736
+ NODE_TITLE_COLOR?: string | undefined;
13737
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
13738
+ NODE_TEXT_SIZE?: number | undefined;
13739
+ NODE_TEXT_COLOR?: string | undefined;
13740
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
13741
+ NODE_SUBTEXT_SIZE?: number | undefined;
13742
+ NODE_DEFAULT_COLOR?: string | undefined;
13743
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
13744
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
13745
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
13746
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
13747
+ NODE_BYPASS_BGCOLOR?: string | undefined;
13748
+ NODE_ERROR_COLOUR?: string | undefined;
13749
+ DEFAULT_SHADOW_COLOR?: string | undefined;
13750
+ DEFAULT_GROUP_FONT?: number | undefined;
13751
+ WIDGET_BGCOLOR?: string | undefined;
13752
+ WIDGET_OUTLINE_COLOR?: string | undefined;
13753
+ WIDGET_TEXT_COLOR?: string | undefined;
13754
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
13755
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
13756
+ LINK_COLOR?: string | undefined;
13757
+ EVENT_LINK_COLOR?: string | undefined;
13758
+ CONNECTING_LINK_COLOR?: string | undefined;
13759
+ BADGE_FG_COLOR?: string | undefined;
13760
+ BADGE_BG_COLOR?: string | undefined;
13761
+ }, {
13762
+ BACKGROUND_IMAGE?: string | undefined;
13763
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
13764
+ NODE_TITLE_COLOR?: string | undefined;
13765
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
13766
+ NODE_TEXT_SIZE?: number | undefined;
13767
+ NODE_TEXT_COLOR?: string | undefined;
13768
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
13769
+ NODE_SUBTEXT_SIZE?: number | undefined;
13770
+ NODE_DEFAULT_COLOR?: string | undefined;
13771
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
13772
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
13773
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
13774
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
13775
+ NODE_BYPASS_BGCOLOR?: string | undefined;
13776
+ NODE_ERROR_COLOUR?: string | undefined;
13777
+ DEFAULT_SHADOW_COLOR?: string | undefined;
13778
+ DEFAULT_GROUP_FONT?: number | undefined;
13779
+ WIDGET_BGCOLOR?: string | undefined;
13780
+ WIDGET_OUTLINE_COLOR?: string | undefined;
13781
+ WIDGET_TEXT_COLOR?: string | undefined;
13782
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
13783
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
13784
+ LINK_COLOR?: string | undefined;
13785
+ EVENT_LINK_COLOR?: string | undefined;
13786
+ CONNECTING_LINK_COLOR?: string | undefined;
13787
+ BADGE_FG_COLOR?: string | undefined;
13788
+ BADGE_BG_COLOR?: string | undefined;
13789
+ }>;
13790
+ comfy_base: z.ZodObject<{
13791
+ "fg-color": z.ZodOptional<z.ZodString>;
13792
+ "bg-color": z.ZodOptional<z.ZodString>;
13793
+ "bg-img": z.ZodOptional<z.ZodOptional<z.ZodString>>;
13794
+ "comfy-menu-bg": z.ZodOptional<z.ZodString>;
13795
+ "comfy-menu-secondary-bg": z.ZodOptional<z.ZodString>;
13796
+ "comfy-input-bg": z.ZodOptional<z.ZodString>;
13797
+ "input-text": z.ZodOptional<z.ZodString>;
13798
+ "descrip-text": z.ZodOptional<z.ZodString>;
13799
+ "drag-text": z.ZodOptional<z.ZodString>;
13800
+ "error-text": z.ZodOptional<z.ZodString>;
13801
+ "border-color": z.ZodOptional<z.ZodString>;
13802
+ "tr-even-bg-color": z.ZodOptional<z.ZodString>;
13803
+ "tr-odd-bg-color": z.ZodOptional<z.ZodString>;
13804
+ "content-bg": z.ZodOptional<z.ZodString>;
13805
+ "content-fg": z.ZodOptional<z.ZodString>;
13806
+ "content-hover-bg": z.ZodOptional<z.ZodString>;
13807
+ "content-hover-fg": z.ZodOptional<z.ZodString>;
13808
+ "bar-shadow": z.ZodOptional<z.ZodString>;
13809
+ "contrast-mix-color": z.ZodOptional<z.ZodOptional<z.ZodString>>;
13810
+ "interface-stroke": z.ZodOptional<z.ZodOptional<z.ZodString>>;
13811
+ "interface-panel-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
13812
+ "interface-panel-box-shadow": z.ZodOptional<z.ZodOptional<z.ZodString>>;
13813
+ "interface-panel-drop-shadow": z.ZodOptional<z.ZodOptional<z.ZodString>>;
13814
+ "interface-panel-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
13815
+ "interface-panel-selected-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
13816
+ "interface-button-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
13817
+ }, "strip", z.ZodTypeAny, {
13818
+ "fg-color"?: string | undefined;
13819
+ "bg-color"?: string | undefined;
13820
+ "bg-img"?: string | undefined;
13821
+ "comfy-menu-bg"?: string | undefined;
13822
+ "comfy-menu-secondary-bg"?: string | undefined;
13823
+ "comfy-input-bg"?: string | undefined;
13824
+ "input-text"?: string | undefined;
13825
+ "descrip-text"?: string | undefined;
13826
+ "drag-text"?: string | undefined;
13827
+ "error-text"?: string | undefined;
13828
+ "border-color"?: string | undefined;
13829
+ "tr-even-bg-color"?: string | undefined;
13830
+ "tr-odd-bg-color"?: string | undefined;
13831
+ "content-bg"?: string | undefined;
13832
+ "content-fg"?: string | undefined;
13833
+ "content-hover-bg"?: string | undefined;
13834
+ "content-hover-fg"?: string | undefined;
13835
+ "bar-shadow"?: string | undefined;
13836
+ "contrast-mix-color"?: string | undefined;
13837
+ "interface-stroke"?: string | undefined;
13838
+ "interface-panel-surface"?: string | undefined;
13839
+ "interface-panel-box-shadow"?: string | undefined;
13840
+ "interface-panel-drop-shadow"?: string | undefined;
13841
+ "interface-panel-hover-surface"?: string | undefined;
13842
+ "interface-panel-selected-surface"?: string | undefined;
13843
+ "interface-button-hover-surface"?: string | undefined;
13844
+ }, {
13845
+ "fg-color"?: string | undefined;
13846
+ "bg-color"?: string | undefined;
13847
+ "bg-img"?: string | undefined;
13848
+ "comfy-menu-bg"?: string | undefined;
13849
+ "comfy-menu-secondary-bg"?: string | undefined;
13850
+ "comfy-input-bg"?: string | undefined;
13851
+ "input-text"?: string | undefined;
13852
+ "descrip-text"?: string | undefined;
13853
+ "drag-text"?: string | undefined;
13854
+ "error-text"?: string | undefined;
13855
+ "border-color"?: string | undefined;
13856
+ "tr-even-bg-color"?: string | undefined;
13857
+ "tr-odd-bg-color"?: string | undefined;
13858
+ "content-bg"?: string | undefined;
13859
+ "content-fg"?: string | undefined;
13860
+ "content-hover-bg"?: string | undefined;
13861
+ "content-hover-fg"?: string | undefined;
13862
+ "bar-shadow"?: string | undefined;
13863
+ "contrast-mix-color"?: string | undefined;
13864
+ "interface-stroke"?: string | undefined;
13865
+ "interface-panel-surface"?: string | undefined;
13866
+ "interface-panel-box-shadow"?: string | undefined;
13867
+ "interface-panel-drop-shadow"?: string | undefined;
13868
+ "interface-panel-hover-surface"?: string | undefined;
13869
+ "interface-panel-selected-surface"?: string | undefined;
13870
+ "interface-button-hover-surface"?: string | undefined;
13871
+ }>;
13872
+ }, "strip", z.ZodTypeAny, {
13873
+ node_slot: {
13874
+ CLIP?: string | undefined;
13875
+ CLIP_VISION?: string | undefined;
13876
+ CLIP_VISION_OUTPUT?: string | undefined;
13877
+ CONDITIONING?: string | undefined;
13878
+ CONTROL_NET?: string | undefined;
13879
+ GUIDER?: string | undefined;
13880
+ IMAGE?: string | undefined;
13881
+ LATENT?: string | undefined;
13882
+ MASK?: string | undefined;
13883
+ MODEL?: string | undefined;
13884
+ NOISE?: string | undefined;
13885
+ SAMPLER?: string | undefined;
13886
+ SIGMAS?: string | undefined;
13887
+ STYLE_MODEL?: string | undefined;
13888
+ VAE?: string | undefined;
13889
+ TAESD?: string | undefined;
13890
+ };
13891
+ litegraph_base: {
13892
+ BACKGROUND_IMAGE?: string | undefined;
13893
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
13894
+ NODE_TITLE_COLOR?: string | undefined;
13895
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
13896
+ NODE_TEXT_SIZE?: number | undefined;
13897
+ NODE_TEXT_COLOR?: string | undefined;
13898
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
13899
+ NODE_SUBTEXT_SIZE?: number | undefined;
13900
+ NODE_DEFAULT_COLOR?: string | undefined;
13901
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
13902
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
13903
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
13904
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
13905
+ NODE_BYPASS_BGCOLOR?: string | undefined;
13906
+ NODE_ERROR_COLOUR?: string | undefined;
13907
+ DEFAULT_SHADOW_COLOR?: string | undefined;
13908
+ DEFAULT_GROUP_FONT?: number | undefined;
13909
+ WIDGET_BGCOLOR?: string | undefined;
13910
+ WIDGET_OUTLINE_COLOR?: string | undefined;
13911
+ WIDGET_TEXT_COLOR?: string | undefined;
13912
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
13913
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
13914
+ LINK_COLOR?: string | undefined;
13915
+ EVENT_LINK_COLOR?: string | undefined;
13916
+ CONNECTING_LINK_COLOR?: string | undefined;
13917
+ BADGE_FG_COLOR?: string | undefined;
13918
+ BADGE_BG_COLOR?: string | undefined;
13919
+ };
13920
+ comfy_base: {
13921
+ "fg-color"?: string | undefined;
13922
+ "bg-color"?: string | undefined;
13923
+ "bg-img"?: string | undefined;
13924
+ "comfy-menu-bg"?: string | undefined;
13925
+ "comfy-menu-secondary-bg"?: string | undefined;
13926
+ "comfy-input-bg"?: string | undefined;
13927
+ "input-text"?: string | undefined;
13928
+ "descrip-text"?: string | undefined;
13929
+ "drag-text"?: string | undefined;
13930
+ "error-text"?: string | undefined;
13931
+ "border-color"?: string | undefined;
13932
+ "tr-even-bg-color"?: string | undefined;
13933
+ "tr-odd-bg-color"?: string | undefined;
13934
+ "content-bg"?: string | undefined;
13935
+ "content-fg"?: string | undefined;
13936
+ "content-hover-bg"?: string | undefined;
13937
+ "content-hover-fg"?: string | undefined;
13938
+ "bar-shadow"?: string | undefined;
13939
+ "contrast-mix-color"?: string | undefined;
13940
+ "interface-stroke"?: string | undefined;
13941
+ "interface-panel-surface"?: string | undefined;
13942
+ "interface-panel-box-shadow"?: string | undefined;
13943
+ "interface-panel-drop-shadow"?: string | undefined;
13944
+ "interface-panel-hover-surface"?: string | undefined;
13945
+ "interface-panel-selected-surface"?: string | undefined;
13946
+ "interface-button-hover-surface"?: string | undefined;
13947
+ };
13948
+ }, {
13949
+ node_slot: {
13950
+ CLIP?: string | undefined;
13951
+ CLIP_VISION?: string | undefined;
13952
+ CLIP_VISION_OUTPUT?: string | undefined;
13953
+ CONDITIONING?: string | undefined;
13954
+ CONTROL_NET?: string | undefined;
13955
+ GUIDER?: string | undefined;
13956
+ IMAGE?: string | undefined;
13957
+ LATENT?: string | undefined;
13958
+ MASK?: string | undefined;
13959
+ MODEL?: string | undefined;
13960
+ NOISE?: string | undefined;
13961
+ SAMPLER?: string | undefined;
13962
+ SIGMAS?: string | undefined;
13963
+ STYLE_MODEL?: string | undefined;
13964
+ VAE?: string | undefined;
13965
+ TAESD?: string | undefined;
13966
+ };
13967
+ litegraph_base: {
13968
+ BACKGROUND_IMAGE?: string | undefined;
13969
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
13970
+ NODE_TITLE_COLOR?: string | undefined;
13971
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
13972
+ NODE_TEXT_SIZE?: number | undefined;
13973
+ NODE_TEXT_COLOR?: string | undefined;
13974
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
13975
+ NODE_SUBTEXT_SIZE?: number | undefined;
13976
+ NODE_DEFAULT_COLOR?: string | undefined;
13977
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
13978
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
13979
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
13980
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
13981
+ NODE_BYPASS_BGCOLOR?: string | undefined;
13982
+ NODE_ERROR_COLOUR?: string | undefined;
13983
+ DEFAULT_SHADOW_COLOR?: string | undefined;
13984
+ DEFAULT_GROUP_FONT?: number | undefined;
13985
+ WIDGET_BGCOLOR?: string | undefined;
13986
+ WIDGET_OUTLINE_COLOR?: string | undefined;
13987
+ WIDGET_TEXT_COLOR?: string | undefined;
13988
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
13989
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
13990
+ LINK_COLOR?: string | undefined;
13991
+ EVENT_LINK_COLOR?: string | undefined;
13992
+ CONNECTING_LINK_COLOR?: string | undefined;
13993
+ BADGE_FG_COLOR?: string | undefined;
13994
+ BADGE_BG_COLOR?: string | undefined;
13995
+ };
13996
+ comfy_base: {
13997
+ "fg-color"?: string | undefined;
13998
+ "bg-color"?: string | undefined;
13999
+ "bg-img"?: string | undefined;
14000
+ "comfy-menu-bg"?: string | undefined;
14001
+ "comfy-menu-secondary-bg"?: string | undefined;
14002
+ "comfy-input-bg"?: string | undefined;
14003
+ "input-text"?: string | undefined;
14004
+ "descrip-text"?: string | undefined;
14005
+ "drag-text"?: string | undefined;
14006
+ "error-text"?: string | undefined;
14007
+ "border-color"?: string | undefined;
14008
+ "tr-even-bg-color"?: string | undefined;
14009
+ "tr-odd-bg-color"?: string | undefined;
14010
+ "content-bg"?: string | undefined;
14011
+ "content-fg"?: string | undefined;
14012
+ "content-hover-bg"?: string | undefined;
14013
+ "content-hover-fg"?: string | undefined;
14014
+ "bar-shadow"?: string | undefined;
14015
+ "contrast-mix-color"?: string | undefined;
14016
+ "interface-stroke"?: string | undefined;
14017
+ "interface-panel-surface"?: string | undefined;
14018
+ "interface-panel-box-shadow"?: string | undefined;
14019
+ "interface-panel-drop-shadow"?: string | undefined;
14020
+ "interface-panel-hover-surface"?: string | undefined;
14021
+ "interface-panel-selected-surface"?: string | undefined;
14022
+ "interface-button-hover-surface"?: string | undefined;
14023
+ };
14024
+ }>;
14025
+ light_theme: z.ZodOptional<z.ZodBoolean>;
14026
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
14027
+ id: z.ZodString;
14028
+ name: z.ZodString;
14029
+ colors: z.ZodObject<{
14030
+ node_slot: z.ZodObject<{
14031
+ CLIP: z.ZodOptional<z.ZodString>;
14032
+ CLIP_VISION: z.ZodOptional<z.ZodString>;
14033
+ CLIP_VISION_OUTPUT: z.ZodOptional<z.ZodString>;
14034
+ CONDITIONING: z.ZodOptional<z.ZodString>;
14035
+ CONTROL_NET: z.ZodOptional<z.ZodString>;
14036
+ IMAGE: z.ZodOptional<z.ZodString>;
14037
+ LATENT: z.ZodOptional<z.ZodString>;
14038
+ MASK: z.ZodOptional<z.ZodString>;
14039
+ MODEL: z.ZodOptional<z.ZodString>;
14040
+ STYLE_MODEL: z.ZodOptional<z.ZodString>;
14041
+ VAE: z.ZodOptional<z.ZodString>;
14042
+ NOISE: z.ZodOptional<z.ZodString>;
14043
+ GUIDER: z.ZodOptional<z.ZodString>;
14044
+ SAMPLER: z.ZodOptional<z.ZodString>;
14045
+ SIGMAS: z.ZodOptional<z.ZodString>;
14046
+ TAESD: z.ZodOptional<z.ZodString>;
14047
+ }, "strip", z.ZodTypeAny, {
14048
+ CLIP?: string | undefined;
14049
+ CLIP_VISION?: string | undefined;
14050
+ CLIP_VISION_OUTPUT?: string | undefined;
14051
+ CONDITIONING?: string | undefined;
14052
+ CONTROL_NET?: string | undefined;
14053
+ GUIDER?: string | undefined;
14054
+ IMAGE?: string | undefined;
14055
+ LATENT?: string | undefined;
14056
+ MASK?: string | undefined;
14057
+ MODEL?: string | undefined;
14058
+ NOISE?: string | undefined;
14059
+ SAMPLER?: string | undefined;
14060
+ SIGMAS?: string | undefined;
14061
+ STYLE_MODEL?: string | undefined;
14062
+ VAE?: string | undefined;
14063
+ TAESD?: string | undefined;
14064
+ }, {
14065
+ CLIP?: string | undefined;
14066
+ CLIP_VISION?: string | undefined;
14067
+ CLIP_VISION_OUTPUT?: string | undefined;
14068
+ CONDITIONING?: string | undefined;
14069
+ CONTROL_NET?: string | undefined;
14070
+ GUIDER?: string | undefined;
14071
+ IMAGE?: string | undefined;
14072
+ LATENT?: string | undefined;
14073
+ MASK?: string | undefined;
14074
+ MODEL?: string | undefined;
14075
+ NOISE?: string | undefined;
14076
+ SAMPLER?: string | undefined;
14077
+ SIGMAS?: string | undefined;
14078
+ STYLE_MODEL?: string | undefined;
14079
+ VAE?: string | undefined;
14080
+ TAESD?: string | undefined;
14081
+ }>;
14082
+ litegraph_base: z.ZodObject<{
14083
+ BACKGROUND_IMAGE: z.ZodOptional<z.ZodString>;
14084
+ CLEAR_BACKGROUND_COLOR: z.ZodOptional<z.ZodString>;
14085
+ NODE_TITLE_COLOR: z.ZodOptional<z.ZodString>;
14086
+ NODE_SELECTED_TITLE_COLOR: z.ZodOptional<z.ZodString>;
14087
+ NODE_TEXT_SIZE: z.ZodOptional<z.ZodNumber>;
14088
+ NODE_TEXT_COLOR: z.ZodOptional<z.ZodString>;
14089
+ NODE_TEXT_HIGHLIGHT_COLOR: z.ZodOptional<z.ZodString>;
14090
+ NODE_SUBTEXT_SIZE: z.ZodOptional<z.ZodNumber>;
14091
+ NODE_DEFAULT_COLOR: z.ZodOptional<z.ZodString>;
14092
+ NODE_DEFAULT_BGCOLOR: z.ZodOptional<z.ZodString>;
14093
+ NODE_DEFAULT_BOXCOLOR: z.ZodOptional<z.ZodString>;
14094
+ NODE_DEFAULT_SHAPE: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodString]>>;
14095
+ NODE_BOX_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
14096
+ NODE_BYPASS_BGCOLOR: z.ZodOptional<z.ZodString>;
14097
+ NODE_ERROR_COLOUR: z.ZodOptional<z.ZodString>;
14098
+ DEFAULT_SHADOW_COLOR: z.ZodOptional<z.ZodString>;
14099
+ DEFAULT_GROUP_FONT: z.ZodOptional<z.ZodNumber>;
14100
+ WIDGET_BGCOLOR: z.ZodOptional<z.ZodString>;
14101
+ WIDGET_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
14102
+ WIDGET_TEXT_COLOR: z.ZodOptional<z.ZodString>;
14103
+ WIDGET_SECONDARY_TEXT_COLOR: z.ZodOptional<z.ZodString>;
14104
+ WIDGET_DISABLED_TEXT_COLOR: z.ZodOptional<z.ZodString>;
14105
+ LINK_COLOR: z.ZodOptional<z.ZodString>;
14106
+ EVENT_LINK_COLOR: z.ZodOptional<z.ZodString>;
14107
+ CONNECTING_LINK_COLOR: z.ZodOptional<z.ZodString>;
14108
+ BADGE_FG_COLOR: z.ZodOptional<z.ZodString>;
14109
+ BADGE_BG_COLOR: z.ZodOptional<z.ZodString>;
14110
+ }, "strip", z.ZodTypeAny, {
14111
+ BACKGROUND_IMAGE?: string | undefined;
14112
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
14113
+ NODE_TITLE_COLOR?: string | undefined;
14114
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
14115
+ NODE_TEXT_SIZE?: number | undefined;
14116
+ NODE_TEXT_COLOR?: string | undefined;
14117
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
14118
+ NODE_SUBTEXT_SIZE?: number | undefined;
14119
+ NODE_DEFAULT_COLOR?: string | undefined;
14120
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
14121
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
14122
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
14123
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
14124
+ NODE_BYPASS_BGCOLOR?: string | undefined;
14125
+ NODE_ERROR_COLOUR?: string | undefined;
14126
+ DEFAULT_SHADOW_COLOR?: string | undefined;
14127
+ DEFAULT_GROUP_FONT?: number | undefined;
14128
+ WIDGET_BGCOLOR?: string | undefined;
14129
+ WIDGET_OUTLINE_COLOR?: string | undefined;
14130
+ WIDGET_TEXT_COLOR?: string | undefined;
14131
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
14132
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
14133
+ LINK_COLOR?: string | undefined;
14134
+ EVENT_LINK_COLOR?: string | undefined;
14135
+ CONNECTING_LINK_COLOR?: string | undefined;
14136
+ BADGE_FG_COLOR?: string | undefined;
14137
+ BADGE_BG_COLOR?: string | undefined;
14138
+ }, {
14139
+ BACKGROUND_IMAGE?: string | undefined;
14140
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
14141
+ NODE_TITLE_COLOR?: string | undefined;
14142
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
14143
+ NODE_TEXT_SIZE?: number | undefined;
14144
+ NODE_TEXT_COLOR?: string | undefined;
14145
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
14146
+ NODE_SUBTEXT_SIZE?: number | undefined;
14147
+ NODE_DEFAULT_COLOR?: string | undefined;
14148
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
14149
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
14150
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
14151
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
14152
+ NODE_BYPASS_BGCOLOR?: string | undefined;
14153
+ NODE_ERROR_COLOUR?: string | undefined;
14154
+ DEFAULT_SHADOW_COLOR?: string | undefined;
14155
+ DEFAULT_GROUP_FONT?: number | undefined;
14156
+ WIDGET_BGCOLOR?: string | undefined;
14157
+ WIDGET_OUTLINE_COLOR?: string | undefined;
14158
+ WIDGET_TEXT_COLOR?: string | undefined;
14159
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
14160
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
14161
+ LINK_COLOR?: string | undefined;
14162
+ EVENT_LINK_COLOR?: string | undefined;
14163
+ CONNECTING_LINK_COLOR?: string | undefined;
14164
+ BADGE_FG_COLOR?: string | undefined;
14165
+ BADGE_BG_COLOR?: string | undefined;
14166
+ }>;
14167
+ comfy_base: z.ZodObject<{
14168
+ "fg-color": z.ZodOptional<z.ZodString>;
14169
+ "bg-color": z.ZodOptional<z.ZodString>;
14170
+ "bg-img": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14171
+ "comfy-menu-bg": z.ZodOptional<z.ZodString>;
14172
+ "comfy-menu-secondary-bg": z.ZodOptional<z.ZodString>;
14173
+ "comfy-input-bg": z.ZodOptional<z.ZodString>;
14174
+ "input-text": z.ZodOptional<z.ZodString>;
14175
+ "descrip-text": z.ZodOptional<z.ZodString>;
14176
+ "drag-text": z.ZodOptional<z.ZodString>;
14177
+ "error-text": z.ZodOptional<z.ZodString>;
14178
+ "border-color": z.ZodOptional<z.ZodString>;
14179
+ "tr-even-bg-color": z.ZodOptional<z.ZodString>;
14180
+ "tr-odd-bg-color": z.ZodOptional<z.ZodString>;
14181
+ "content-bg": z.ZodOptional<z.ZodString>;
14182
+ "content-fg": z.ZodOptional<z.ZodString>;
14183
+ "content-hover-bg": z.ZodOptional<z.ZodString>;
14184
+ "content-hover-fg": z.ZodOptional<z.ZodString>;
14185
+ "bar-shadow": z.ZodOptional<z.ZodString>;
14186
+ "contrast-mix-color": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14187
+ "interface-stroke": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14188
+ "interface-panel-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14189
+ "interface-panel-box-shadow": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14190
+ "interface-panel-drop-shadow": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14191
+ "interface-panel-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14192
+ "interface-panel-selected-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14193
+ "interface-button-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14194
+ }, "strip", z.ZodTypeAny, {
14195
+ "fg-color"?: string | undefined;
14196
+ "bg-color"?: string | undefined;
14197
+ "bg-img"?: string | undefined;
14198
+ "comfy-menu-bg"?: string | undefined;
14199
+ "comfy-menu-secondary-bg"?: string | undefined;
14200
+ "comfy-input-bg"?: string | undefined;
14201
+ "input-text"?: string | undefined;
14202
+ "descrip-text"?: string | undefined;
14203
+ "drag-text"?: string | undefined;
14204
+ "error-text"?: string | undefined;
14205
+ "border-color"?: string | undefined;
14206
+ "tr-even-bg-color"?: string | undefined;
14207
+ "tr-odd-bg-color"?: string | undefined;
14208
+ "content-bg"?: string | undefined;
14209
+ "content-fg"?: string | undefined;
14210
+ "content-hover-bg"?: string | undefined;
14211
+ "content-hover-fg"?: string | undefined;
14212
+ "bar-shadow"?: string | undefined;
14213
+ "contrast-mix-color"?: string | undefined;
14214
+ "interface-stroke"?: string | undefined;
14215
+ "interface-panel-surface"?: string | undefined;
14216
+ "interface-panel-box-shadow"?: string | undefined;
14217
+ "interface-panel-drop-shadow"?: string | undefined;
14218
+ "interface-panel-hover-surface"?: string | undefined;
14219
+ "interface-panel-selected-surface"?: string | undefined;
14220
+ "interface-button-hover-surface"?: string | undefined;
14221
+ }, {
14222
+ "fg-color"?: string | undefined;
14223
+ "bg-color"?: string | undefined;
14224
+ "bg-img"?: string | undefined;
14225
+ "comfy-menu-bg"?: string | undefined;
14226
+ "comfy-menu-secondary-bg"?: string | undefined;
14227
+ "comfy-input-bg"?: string | undefined;
14228
+ "input-text"?: string | undefined;
14229
+ "descrip-text"?: string | undefined;
14230
+ "drag-text"?: string | undefined;
14231
+ "error-text"?: string | undefined;
14232
+ "border-color"?: string | undefined;
14233
+ "tr-even-bg-color"?: string | undefined;
14234
+ "tr-odd-bg-color"?: string | undefined;
14235
+ "content-bg"?: string | undefined;
14236
+ "content-fg"?: string | undefined;
14237
+ "content-hover-bg"?: string | undefined;
14238
+ "content-hover-fg"?: string | undefined;
14239
+ "bar-shadow"?: string | undefined;
14240
+ "contrast-mix-color"?: string | undefined;
14241
+ "interface-stroke"?: string | undefined;
14242
+ "interface-panel-surface"?: string | undefined;
14243
+ "interface-panel-box-shadow"?: string | undefined;
14244
+ "interface-panel-drop-shadow"?: string | undefined;
14245
+ "interface-panel-hover-surface"?: string | undefined;
14246
+ "interface-panel-selected-surface"?: string | undefined;
14247
+ "interface-button-hover-surface"?: string | undefined;
14248
+ }>;
14249
+ }, "strip", z.ZodTypeAny, {
14250
+ node_slot: {
14251
+ CLIP?: string | undefined;
14252
+ CLIP_VISION?: string | undefined;
14253
+ CLIP_VISION_OUTPUT?: string | undefined;
14254
+ CONDITIONING?: string | undefined;
14255
+ CONTROL_NET?: string | undefined;
14256
+ GUIDER?: string | undefined;
14257
+ IMAGE?: string | undefined;
14258
+ LATENT?: string | undefined;
14259
+ MASK?: string | undefined;
14260
+ MODEL?: string | undefined;
14261
+ NOISE?: string | undefined;
14262
+ SAMPLER?: string | undefined;
14263
+ SIGMAS?: string | undefined;
14264
+ STYLE_MODEL?: string | undefined;
14265
+ VAE?: string | undefined;
14266
+ TAESD?: string | undefined;
14267
+ };
14268
+ litegraph_base: {
14269
+ BACKGROUND_IMAGE?: string | undefined;
14270
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
14271
+ NODE_TITLE_COLOR?: string | undefined;
14272
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
14273
+ NODE_TEXT_SIZE?: number | undefined;
14274
+ NODE_TEXT_COLOR?: string | undefined;
14275
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
14276
+ NODE_SUBTEXT_SIZE?: number | undefined;
14277
+ NODE_DEFAULT_COLOR?: string | undefined;
14278
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
14279
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
14280
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
14281
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
14282
+ NODE_BYPASS_BGCOLOR?: string | undefined;
14283
+ NODE_ERROR_COLOUR?: string | undefined;
14284
+ DEFAULT_SHADOW_COLOR?: string | undefined;
14285
+ DEFAULT_GROUP_FONT?: number | undefined;
14286
+ WIDGET_BGCOLOR?: string | undefined;
14287
+ WIDGET_OUTLINE_COLOR?: string | undefined;
14288
+ WIDGET_TEXT_COLOR?: string | undefined;
14289
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
14290
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
14291
+ LINK_COLOR?: string | undefined;
14292
+ EVENT_LINK_COLOR?: string | undefined;
14293
+ CONNECTING_LINK_COLOR?: string | undefined;
14294
+ BADGE_FG_COLOR?: string | undefined;
14295
+ BADGE_BG_COLOR?: string | undefined;
14296
+ };
14297
+ comfy_base: {
14298
+ "fg-color"?: string | undefined;
14299
+ "bg-color"?: string | undefined;
14300
+ "bg-img"?: string | undefined;
14301
+ "comfy-menu-bg"?: string | undefined;
14302
+ "comfy-menu-secondary-bg"?: string | undefined;
14303
+ "comfy-input-bg"?: string | undefined;
14304
+ "input-text"?: string | undefined;
14305
+ "descrip-text"?: string | undefined;
14306
+ "drag-text"?: string | undefined;
14307
+ "error-text"?: string | undefined;
14308
+ "border-color"?: string | undefined;
14309
+ "tr-even-bg-color"?: string | undefined;
14310
+ "tr-odd-bg-color"?: string | undefined;
14311
+ "content-bg"?: string | undefined;
14312
+ "content-fg"?: string | undefined;
14313
+ "content-hover-bg"?: string | undefined;
14314
+ "content-hover-fg"?: string | undefined;
14315
+ "bar-shadow"?: string | undefined;
14316
+ "contrast-mix-color"?: string | undefined;
14317
+ "interface-stroke"?: string | undefined;
14318
+ "interface-panel-surface"?: string | undefined;
14319
+ "interface-panel-box-shadow"?: string | undefined;
14320
+ "interface-panel-drop-shadow"?: string | undefined;
14321
+ "interface-panel-hover-surface"?: string | undefined;
14322
+ "interface-panel-selected-surface"?: string | undefined;
14323
+ "interface-button-hover-surface"?: string | undefined;
14324
+ };
14325
+ }, {
14326
+ node_slot: {
14327
+ CLIP?: string | undefined;
14328
+ CLIP_VISION?: string | undefined;
14329
+ CLIP_VISION_OUTPUT?: string | undefined;
14330
+ CONDITIONING?: string | undefined;
14331
+ CONTROL_NET?: string | undefined;
14332
+ GUIDER?: string | undefined;
14333
+ IMAGE?: string | undefined;
14334
+ LATENT?: string | undefined;
14335
+ MASK?: string | undefined;
14336
+ MODEL?: string | undefined;
14337
+ NOISE?: string | undefined;
14338
+ SAMPLER?: string | undefined;
14339
+ SIGMAS?: string | undefined;
14340
+ STYLE_MODEL?: string | undefined;
14341
+ VAE?: string | undefined;
14342
+ TAESD?: string | undefined;
14343
+ };
14344
+ litegraph_base: {
14345
+ BACKGROUND_IMAGE?: string | undefined;
14346
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
14347
+ NODE_TITLE_COLOR?: string | undefined;
14348
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
14349
+ NODE_TEXT_SIZE?: number | undefined;
14350
+ NODE_TEXT_COLOR?: string | undefined;
14351
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
14352
+ NODE_SUBTEXT_SIZE?: number | undefined;
14353
+ NODE_DEFAULT_COLOR?: string | undefined;
14354
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
14355
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
14356
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
14357
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
14358
+ NODE_BYPASS_BGCOLOR?: string | undefined;
14359
+ NODE_ERROR_COLOUR?: string | undefined;
14360
+ DEFAULT_SHADOW_COLOR?: string | undefined;
14361
+ DEFAULT_GROUP_FONT?: number | undefined;
14362
+ WIDGET_BGCOLOR?: string | undefined;
14363
+ WIDGET_OUTLINE_COLOR?: string | undefined;
14364
+ WIDGET_TEXT_COLOR?: string | undefined;
14365
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
14366
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
14367
+ LINK_COLOR?: string | undefined;
14368
+ EVENT_LINK_COLOR?: string | undefined;
14369
+ CONNECTING_LINK_COLOR?: string | undefined;
14370
+ BADGE_FG_COLOR?: string | undefined;
14371
+ BADGE_BG_COLOR?: string | undefined;
14372
+ };
14373
+ comfy_base: {
14374
+ "fg-color"?: string | undefined;
14375
+ "bg-color"?: string | undefined;
14376
+ "bg-img"?: string | undefined;
14377
+ "comfy-menu-bg"?: string | undefined;
14378
+ "comfy-menu-secondary-bg"?: string | undefined;
14379
+ "comfy-input-bg"?: string | undefined;
14380
+ "input-text"?: string | undefined;
14381
+ "descrip-text"?: string | undefined;
14382
+ "drag-text"?: string | undefined;
14383
+ "error-text"?: string | undefined;
14384
+ "border-color"?: string | undefined;
14385
+ "tr-even-bg-color"?: string | undefined;
14386
+ "tr-odd-bg-color"?: string | undefined;
14387
+ "content-bg"?: string | undefined;
14388
+ "content-fg"?: string | undefined;
14389
+ "content-hover-bg"?: string | undefined;
14390
+ "content-hover-fg"?: string | undefined;
14391
+ "bar-shadow"?: string | undefined;
14392
+ "contrast-mix-color"?: string | undefined;
14393
+ "interface-stroke"?: string | undefined;
14394
+ "interface-panel-surface"?: string | undefined;
14395
+ "interface-panel-box-shadow"?: string | undefined;
14396
+ "interface-panel-drop-shadow"?: string | undefined;
14397
+ "interface-panel-hover-surface"?: string | undefined;
14398
+ "interface-panel-selected-surface"?: string | undefined;
14399
+ "interface-button-hover-surface"?: string | undefined;
14400
+ };
14401
+ }>;
14402
+ light_theme: z.ZodOptional<z.ZodBoolean>;
14403
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
14404
+ id: z.ZodString;
14405
+ name: z.ZodString;
14406
+ colors: z.ZodObject<{
14407
+ node_slot: z.ZodObject<{
14408
+ CLIP: z.ZodOptional<z.ZodString>;
14409
+ CLIP_VISION: z.ZodOptional<z.ZodString>;
14410
+ CLIP_VISION_OUTPUT: z.ZodOptional<z.ZodString>;
14411
+ CONDITIONING: z.ZodOptional<z.ZodString>;
14412
+ CONTROL_NET: z.ZodOptional<z.ZodString>;
14413
+ IMAGE: z.ZodOptional<z.ZodString>;
14414
+ LATENT: z.ZodOptional<z.ZodString>;
14415
+ MASK: z.ZodOptional<z.ZodString>;
14416
+ MODEL: z.ZodOptional<z.ZodString>;
14417
+ STYLE_MODEL: z.ZodOptional<z.ZodString>;
14418
+ VAE: z.ZodOptional<z.ZodString>;
14419
+ NOISE: z.ZodOptional<z.ZodString>;
14420
+ GUIDER: z.ZodOptional<z.ZodString>;
14421
+ SAMPLER: z.ZodOptional<z.ZodString>;
14422
+ SIGMAS: z.ZodOptional<z.ZodString>;
14423
+ TAESD: z.ZodOptional<z.ZodString>;
14424
+ }, "strip", z.ZodTypeAny, {
14425
+ CLIP?: string | undefined;
14426
+ CLIP_VISION?: string | undefined;
14427
+ CLIP_VISION_OUTPUT?: string | undefined;
14428
+ CONDITIONING?: string | undefined;
14429
+ CONTROL_NET?: string | undefined;
14430
+ GUIDER?: string | undefined;
14431
+ IMAGE?: string | undefined;
14432
+ LATENT?: string | undefined;
14433
+ MASK?: string | undefined;
14434
+ MODEL?: string | undefined;
14435
+ NOISE?: string | undefined;
14436
+ SAMPLER?: string | undefined;
14437
+ SIGMAS?: string | undefined;
14438
+ STYLE_MODEL?: string | undefined;
14439
+ VAE?: string | undefined;
14440
+ TAESD?: string | undefined;
14441
+ }, {
14442
+ CLIP?: string | undefined;
14443
+ CLIP_VISION?: string | undefined;
14444
+ CLIP_VISION_OUTPUT?: string | undefined;
14445
+ CONDITIONING?: string | undefined;
14446
+ CONTROL_NET?: string | undefined;
14447
+ GUIDER?: string | undefined;
14448
+ IMAGE?: string | undefined;
14449
+ LATENT?: string | undefined;
14450
+ MASK?: string | undefined;
14451
+ MODEL?: string | undefined;
14452
+ NOISE?: string | undefined;
14453
+ SAMPLER?: string | undefined;
14454
+ SIGMAS?: string | undefined;
14455
+ STYLE_MODEL?: string | undefined;
14456
+ VAE?: string | undefined;
14457
+ TAESD?: string | undefined;
14458
+ }>;
14459
+ litegraph_base: z.ZodObject<{
14460
+ BACKGROUND_IMAGE: z.ZodOptional<z.ZodString>;
14461
+ CLEAR_BACKGROUND_COLOR: z.ZodOptional<z.ZodString>;
14462
+ NODE_TITLE_COLOR: z.ZodOptional<z.ZodString>;
14463
+ NODE_SELECTED_TITLE_COLOR: z.ZodOptional<z.ZodString>;
14464
+ NODE_TEXT_SIZE: z.ZodOptional<z.ZodNumber>;
14465
+ NODE_TEXT_COLOR: z.ZodOptional<z.ZodString>;
14466
+ NODE_TEXT_HIGHLIGHT_COLOR: z.ZodOptional<z.ZodString>;
14467
+ NODE_SUBTEXT_SIZE: z.ZodOptional<z.ZodNumber>;
14468
+ NODE_DEFAULT_COLOR: z.ZodOptional<z.ZodString>;
14469
+ NODE_DEFAULT_BGCOLOR: z.ZodOptional<z.ZodString>;
14470
+ NODE_DEFAULT_BOXCOLOR: z.ZodOptional<z.ZodString>;
14471
+ NODE_DEFAULT_SHAPE: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodString]>>;
14472
+ NODE_BOX_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
14473
+ NODE_BYPASS_BGCOLOR: z.ZodOptional<z.ZodString>;
14474
+ NODE_ERROR_COLOUR: z.ZodOptional<z.ZodString>;
14475
+ DEFAULT_SHADOW_COLOR: z.ZodOptional<z.ZodString>;
14476
+ DEFAULT_GROUP_FONT: z.ZodOptional<z.ZodNumber>;
14477
+ WIDGET_BGCOLOR: z.ZodOptional<z.ZodString>;
14478
+ WIDGET_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
14479
+ WIDGET_TEXT_COLOR: z.ZodOptional<z.ZodString>;
14480
+ WIDGET_SECONDARY_TEXT_COLOR: z.ZodOptional<z.ZodString>;
14481
+ WIDGET_DISABLED_TEXT_COLOR: z.ZodOptional<z.ZodString>;
14482
+ LINK_COLOR: z.ZodOptional<z.ZodString>;
14483
+ EVENT_LINK_COLOR: z.ZodOptional<z.ZodString>;
14484
+ CONNECTING_LINK_COLOR: z.ZodOptional<z.ZodString>;
14485
+ BADGE_FG_COLOR: z.ZodOptional<z.ZodString>;
14486
+ BADGE_BG_COLOR: z.ZodOptional<z.ZodString>;
14487
+ }, "strip", z.ZodTypeAny, {
14488
+ BACKGROUND_IMAGE?: string | undefined;
14489
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
14490
+ NODE_TITLE_COLOR?: string | undefined;
14491
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
14492
+ NODE_TEXT_SIZE?: number | undefined;
14493
+ NODE_TEXT_COLOR?: string | undefined;
14494
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
14495
+ NODE_SUBTEXT_SIZE?: number | undefined;
14496
+ NODE_DEFAULT_COLOR?: string | undefined;
14497
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
14498
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
14499
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
14500
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
14501
+ NODE_BYPASS_BGCOLOR?: string | undefined;
14502
+ NODE_ERROR_COLOUR?: string | undefined;
14503
+ DEFAULT_SHADOW_COLOR?: string | undefined;
14504
+ DEFAULT_GROUP_FONT?: number | undefined;
14505
+ WIDGET_BGCOLOR?: string | undefined;
14506
+ WIDGET_OUTLINE_COLOR?: string | undefined;
14507
+ WIDGET_TEXT_COLOR?: string | undefined;
14508
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
14509
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
14510
+ LINK_COLOR?: string | undefined;
14511
+ EVENT_LINK_COLOR?: string | undefined;
14512
+ CONNECTING_LINK_COLOR?: string | undefined;
14513
+ BADGE_FG_COLOR?: string | undefined;
14514
+ BADGE_BG_COLOR?: string | undefined;
14515
+ }, {
14516
+ BACKGROUND_IMAGE?: string | undefined;
14517
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
14518
+ NODE_TITLE_COLOR?: string | undefined;
14519
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
14520
+ NODE_TEXT_SIZE?: number | undefined;
14521
+ NODE_TEXT_COLOR?: string | undefined;
14522
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
14523
+ NODE_SUBTEXT_SIZE?: number | undefined;
14524
+ NODE_DEFAULT_COLOR?: string | undefined;
14525
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
14526
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
14527
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
14528
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
14529
+ NODE_BYPASS_BGCOLOR?: string | undefined;
14530
+ NODE_ERROR_COLOUR?: string | undefined;
14531
+ DEFAULT_SHADOW_COLOR?: string | undefined;
14532
+ DEFAULT_GROUP_FONT?: number | undefined;
14533
+ WIDGET_BGCOLOR?: string | undefined;
14534
+ WIDGET_OUTLINE_COLOR?: string | undefined;
14535
+ WIDGET_TEXT_COLOR?: string | undefined;
14536
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
14537
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
14538
+ LINK_COLOR?: string | undefined;
14539
+ EVENT_LINK_COLOR?: string | undefined;
14540
+ CONNECTING_LINK_COLOR?: string | undefined;
14541
+ BADGE_FG_COLOR?: string | undefined;
14542
+ BADGE_BG_COLOR?: string | undefined;
14543
+ }>;
14544
+ comfy_base: z.ZodObject<{
14545
+ "fg-color": z.ZodOptional<z.ZodString>;
14546
+ "bg-color": z.ZodOptional<z.ZodString>;
14547
+ "bg-img": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14548
+ "comfy-menu-bg": z.ZodOptional<z.ZodString>;
14549
+ "comfy-menu-secondary-bg": z.ZodOptional<z.ZodString>;
14550
+ "comfy-input-bg": z.ZodOptional<z.ZodString>;
14551
+ "input-text": z.ZodOptional<z.ZodString>;
14552
+ "descrip-text": z.ZodOptional<z.ZodString>;
14553
+ "drag-text": z.ZodOptional<z.ZodString>;
14554
+ "error-text": z.ZodOptional<z.ZodString>;
14555
+ "border-color": z.ZodOptional<z.ZodString>;
14556
+ "tr-even-bg-color": z.ZodOptional<z.ZodString>;
14557
+ "tr-odd-bg-color": z.ZodOptional<z.ZodString>;
14558
+ "content-bg": z.ZodOptional<z.ZodString>;
14559
+ "content-fg": z.ZodOptional<z.ZodString>;
14560
+ "content-hover-bg": z.ZodOptional<z.ZodString>;
14561
+ "content-hover-fg": z.ZodOptional<z.ZodString>;
14562
+ "bar-shadow": z.ZodOptional<z.ZodString>;
14563
+ "contrast-mix-color": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14564
+ "interface-stroke": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14565
+ "interface-panel-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14566
+ "interface-panel-box-shadow": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14567
+ "interface-panel-drop-shadow": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14568
+ "interface-panel-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14569
+ "interface-panel-selected-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14570
+ "interface-button-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
14571
+ }, "strip", z.ZodTypeAny, {
14572
+ "fg-color"?: string | undefined;
14573
+ "bg-color"?: string | undefined;
14574
+ "bg-img"?: string | undefined;
14575
+ "comfy-menu-bg"?: string | undefined;
14576
+ "comfy-menu-secondary-bg"?: string | undefined;
14577
+ "comfy-input-bg"?: string | undefined;
14578
+ "input-text"?: string | undefined;
14579
+ "descrip-text"?: string | undefined;
14580
+ "drag-text"?: string | undefined;
14581
+ "error-text"?: string | undefined;
14582
+ "border-color"?: string | undefined;
14583
+ "tr-even-bg-color"?: string | undefined;
14584
+ "tr-odd-bg-color"?: string | undefined;
14585
+ "content-bg"?: string | undefined;
14586
+ "content-fg"?: string | undefined;
14587
+ "content-hover-bg"?: string | undefined;
14588
+ "content-hover-fg"?: string | undefined;
14589
+ "bar-shadow"?: string | undefined;
14590
+ "contrast-mix-color"?: string | undefined;
14591
+ "interface-stroke"?: string | undefined;
14592
+ "interface-panel-surface"?: string | undefined;
14593
+ "interface-panel-box-shadow"?: string | undefined;
14594
+ "interface-panel-drop-shadow"?: string | undefined;
14595
+ "interface-panel-hover-surface"?: string | undefined;
14596
+ "interface-panel-selected-surface"?: string | undefined;
14597
+ "interface-button-hover-surface"?: string | undefined;
14598
+ }, {
14599
+ "fg-color"?: string | undefined;
14600
+ "bg-color"?: string | undefined;
14601
+ "bg-img"?: string | undefined;
14602
+ "comfy-menu-bg"?: string | undefined;
14603
+ "comfy-menu-secondary-bg"?: string | undefined;
14604
+ "comfy-input-bg"?: string | undefined;
14605
+ "input-text"?: string | undefined;
14606
+ "descrip-text"?: string | undefined;
14607
+ "drag-text"?: string | undefined;
14608
+ "error-text"?: string | undefined;
14609
+ "border-color"?: string | undefined;
14610
+ "tr-even-bg-color"?: string | undefined;
14611
+ "tr-odd-bg-color"?: string | undefined;
14612
+ "content-bg"?: string | undefined;
14613
+ "content-fg"?: string | undefined;
14614
+ "content-hover-bg"?: string | undefined;
14615
+ "content-hover-fg"?: string | undefined;
14616
+ "bar-shadow"?: string | undefined;
14617
+ "contrast-mix-color"?: string | undefined;
14618
+ "interface-stroke"?: string | undefined;
14619
+ "interface-panel-surface"?: string | undefined;
14620
+ "interface-panel-box-shadow"?: string | undefined;
14621
+ "interface-panel-drop-shadow"?: string | undefined;
14622
+ "interface-panel-hover-surface"?: string | undefined;
14623
+ "interface-panel-selected-surface"?: string | undefined;
14624
+ "interface-button-hover-surface"?: string | undefined;
14625
+ }>;
14626
+ }, "strip", z.ZodTypeAny, {
14627
+ node_slot: {
14628
+ CLIP?: string | undefined;
14629
+ CLIP_VISION?: string | undefined;
14630
+ CLIP_VISION_OUTPUT?: string | undefined;
14631
+ CONDITIONING?: string | undefined;
14632
+ CONTROL_NET?: string | undefined;
14633
+ GUIDER?: string | undefined;
14634
+ IMAGE?: string | undefined;
14635
+ LATENT?: string | undefined;
14636
+ MASK?: string | undefined;
14637
+ MODEL?: string | undefined;
14638
+ NOISE?: string | undefined;
14639
+ SAMPLER?: string | undefined;
14640
+ SIGMAS?: string | undefined;
14641
+ STYLE_MODEL?: string | undefined;
14642
+ VAE?: string | undefined;
14643
+ TAESD?: string | undefined;
14644
+ };
14645
+ litegraph_base: {
14646
+ BACKGROUND_IMAGE?: string | undefined;
14647
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
14648
+ NODE_TITLE_COLOR?: string | undefined;
14649
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
14650
+ NODE_TEXT_SIZE?: number | undefined;
14651
+ NODE_TEXT_COLOR?: string | undefined;
14652
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
14653
+ NODE_SUBTEXT_SIZE?: number | undefined;
14654
+ NODE_DEFAULT_COLOR?: string | undefined;
14655
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
14656
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
14657
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
14658
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
14659
+ NODE_BYPASS_BGCOLOR?: string | undefined;
14660
+ NODE_ERROR_COLOUR?: string | undefined;
14661
+ DEFAULT_SHADOW_COLOR?: string | undefined;
14662
+ DEFAULT_GROUP_FONT?: number | undefined;
14663
+ WIDGET_BGCOLOR?: string | undefined;
14664
+ WIDGET_OUTLINE_COLOR?: string | undefined;
14665
+ WIDGET_TEXT_COLOR?: string | undefined;
14666
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
14667
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
14668
+ LINK_COLOR?: string | undefined;
14669
+ EVENT_LINK_COLOR?: string | undefined;
14670
+ CONNECTING_LINK_COLOR?: string | undefined;
14671
+ BADGE_FG_COLOR?: string | undefined;
14672
+ BADGE_BG_COLOR?: string | undefined;
14673
+ };
14674
+ comfy_base: {
14675
+ "fg-color"?: string | undefined;
14676
+ "bg-color"?: string | undefined;
14677
+ "bg-img"?: string | undefined;
14678
+ "comfy-menu-bg"?: string | undefined;
14679
+ "comfy-menu-secondary-bg"?: string | undefined;
14680
+ "comfy-input-bg"?: string | undefined;
14681
+ "input-text"?: string | undefined;
14682
+ "descrip-text"?: string | undefined;
14683
+ "drag-text"?: string | undefined;
14684
+ "error-text"?: string | undefined;
14685
+ "border-color"?: string | undefined;
14686
+ "tr-even-bg-color"?: string | undefined;
14687
+ "tr-odd-bg-color"?: string | undefined;
14688
+ "content-bg"?: string | undefined;
14689
+ "content-fg"?: string | undefined;
14690
+ "content-hover-bg"?: string | undefined;
14691
+ "content-hover-fg"?: string | undefined;
14692
+ "bar-shadow"?: string | undefined;
14693
+ "contrast-mix-color"?: string | undefined;
14694
+ "interface-stroke"?: string | undefined;
14695
+ "interface-panel-surface"?: string | undefined;
14696
+ "interface-panel-box-shadow"?: string | undefined;
14697
+ "interface-panel-drop-shadow"?: string | undefined;
14698
+ "interface-panel-hover-surface"?: string | undefined;
14699
+ "interface-panel-selected-surface"?: string | undefined;
14700
+ "interface-button-hover-surface"?: string | undefined;
14701
+ };
14702
+ }, {
14703
+ node_slot: {
14704
+ CLIP?: string | undefined;
14705
+ CLIP_VISION?: string | undefined;
14706
+ CLIP_VISION_OUTPUT?: string | undefined;
14707
+ CONDITIONING?: string | undefined;
14708
+ CONTROL_NET?: string | undefined;
14709
+ GUIDER?: string | undefined;
14710
+ IMAGE?: string | undefined;
14711
+ LATENT?: string | undefined;
14712
+ MASK?: string | undefined;
14713
+ MODEL?: string | undefined;
14714
+ NOISE?: string | undefined;
14715
+ SAMPLER?: string | undefined;
14716
+ SIGMAS?: string | undefined;
14717
+ STYLE_MODEL?: string | undefined;
14718
+ VAE?: string | undefined;
14719
+ TAESD?: string | undefined;
14720
+ };
14721
+ litegraph_base: {
14722
+ BACKGROUND_IMAGE?: string | undefined;
14723
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
14724
+ NODE_TITLE_COLOR?: string | undefined;
14725
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
14726
+ NODE_TEXT_SIZE?: number | undefined;
14727
+ NODE_TEXT_COLOR?: string | undefined;
14728
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
14729
+ NODE_SUBTEXT_SIZE?: number | undefined;
14730
+ NODE_DEFAULT_COLOR?: string | undefined;
14731
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
14732
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
14733
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
14734
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
14735
+ NODE_BYPASS_BGCOLOR?: string | undefined;
14736
+ NODE_ERROR_COLOUR?: string | undefined;
14737
+ DEFAULT_SHADOW_COLOR?: string | undefined;
14738
+ DEFAULT_GROUP_FONT?: number | undefined;
14739
+ WIDGET_BGCOLOR?: string | undefined;
14740
+ WIDGET_OUTLINE_COLOR?: string | undefined;
14741
+ WIDGET_TEXT_COLOR?: string | undefined;
14742
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
14743
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
14744
+ LINK_COLOR?: string | undefined;
14745
+ EVENT_LINK_COLOR?: string | undefined;
14746
+ CONNECTING_LINK_COLOR?: string | undefined;
14747
+ BADGE_FG_COLOR?: string | undefined;
14748
+ BADGE_BG_COLOR?: string | undefined;
14749
+ };
14750
+ comfy_base: {
14751
+ "fg-color"?: string | undefined;
14752
+ "bg-color"?: string | undefined;
14753
+ "bg-img"?: string | undefined;
14754
+ "comfy-menu-bg"?: string | undefined;
14755
+ "comfy-menu-secondary-bg"?: string | undefined;
14756
+ "comfy-input-bg"?: string | undefined;
14757
+ "input-text"?: string | undefined;
14758
+ "descrip-text"?: string | undefined;
14759
+ "drag-text"?: string | undefined;
14760
+ "error-text"?: string | undefined;
14761
+ "border-color"?: string | undefined;
14762
+ "tr-even-bg-color"?: string | undefined;
14763
+ "tr-odd-bg-color"?: string | undefined;
14764
+ "content-bg"?: string | undefined;
14765
+ "content-fg"?: string | undefined;
14766
+ "content-hover-bg"?: string | undefined;
14767
+ "content-hover-fg"?: string | undefined;
14768
+ "bar-shadow"?: string | undefined;
14769
+ "contrast-mix-color"?: string | undefined;
14770
+ "interface-stroke"?: string | undefined;
14771
+ "interface-panel-surface"?: string | undefined;
14772
+ "interface-panel-box-shadow"?: string | undefined;
14773
+ "interface-panel-drop-shadow"?: string | undefined;
14774
+ "interface-panel-hover-surface"?: string | undefined;
14775
+ "interface-panel-selected-surface"?: string | undefined;
14776
+ "interface-button-hover-surface"?: string | undefined;
14777
+ };
14778
+ }>;
14779
+ light_theme: z.ZodOptional<z.ZodBoolean>;
14780
+ }, z.ZodTypeAny, "passthrough">>>;
14781
+ 'Comfy.Canvas.BackgroundImage': z.ZodOptional<z.ZodString>;
14782
+ 'Comfy.ConfirmClear': z.ZodBoolean;
14783
+ 'Comfy.DevMode': z.ZodBoolean;
14784
+ 'Comfy.UI.TabBarLayout': z.ZodEnum<["Default", "Integrated"]>;
14785
+ 'Comfy.Workflow.ShowMissingNodesWarning': z.ZodBoolean;
14786
+ 'Comfy.Workflow.ShowMissingModelsWarning': z.ZodBoolean;
14787
+ 'Comfy.Workflow.WarnBlueprintOverwrite': z.ZodBoolean;
14788
+ 'Comfy.DisableFloatRounding': z.ZodBoolean;
14789
+ 'Comfy.DisableSliders': z.ZodBoolean;
14790
+ 'Comfy.DOMClippingEnabled': z.ZodBoolean;
14791
+ 'Comfy.EditAttention.Delta': z.ZodNumber;
14792
+ 'Comfy.EnableTooltips': z.ZodBoolean;
14793
+ 'Comfy.EnableWorkflowViewRestore': z.ZodBoolean;
14794
+ 'Comfy.FloatRoundingPrecision': z.ZodNumber;
14795
+ 'Comfy.Graph.CanvasInfo': z.ZodBoolean;
14796
+ 'Comfy.Graph.CanvasMenu': z.ZodBoolean;
14797
+ 'Comfy.Graph.CtrlShiftZoom': z.ZodBoolean;
14798
+ 'Comfy.Graph.LiveSelection': z.ZodBoolean;
14799
+ 'Comfy.Graph.LinkMarkers': z.ZodNativeEnum<typeof LinkMarkerShape>;
14800
+ 'Comfy.Graph.ZoomSpeed': z.ZodNumber;
14801
+ 'Comfy.Group.DoubleClickTitleToEdit': z.ZodBoolean;
14802
+ 'Comfy.GroupSelectedNodes.Padding': z.ZodNumber;
14803
+ 'Comfy.Locale': z.ZodString;
14804
+ 'Comfy.NodeLibrary.Bookmarks': z.ZodArray<z.ZodString, "many">;
14805
+ 'Comfy.NodeLibrary.Bookmarks.V2': z.ZodArray<z.ZodString, "many">;
14806
+ 'Comfy.NodeLibrary.BookmarksCustomization': z.ZodRecord<z.ZodString, z.ZodObject<{
14807
+ icon: z.ZodOptional<z.ZodString>;
14808
+ color: z.ZodOptional<z.ZodString>;
14809
+ }, "strip", z.ZodTypeAny, {
14810
+ color?: string | undefined;
14811
+ icon?: string | undefined;
14812
+ }, {
14813
+ color?: string | undefined;
14814
+ icon?: string | undefined;
14815
+ }>>;
14816
+ 'Comfy.LinkRelease.Action': z.ZodEnum<[string, ...string[]]>;
14817
+ 'Comfy.LinkRelease.ActionShift': z.ZodEnum<[string, ...string[]]>;
14818
+ 'Comfy.ModelLibrary.AutoLoadAll': z.ZodBoolean;
14819
+ 'Comfy.ModelLibrary.NameFormat': z.ZodEnum<["filename", "title"]>;
14820
+ 'Comfy.NodeSearchBoxImpl.NodePreview': z.ZodBoolean;
14821
+ 'Comfy.NodeSearchBoxImpl': z.ZodEnum<["default", "simple"]>;
14822
+ 'Comfy.NodeSearchBoxImpl.ShowCategory': z.ZodBoolean;
14823
+ 'Comfy.NodeSearchBoxImpl.ShowIdName': z.ZodBoolean;
14824
+ 'Comfy.NodeSearchBoxImpl.ShowNodeFrequency': z.ZodBoolean;
14825
+ 'Comfy.NodeSuggestions.number': z.ZodNumber;
14826
+ 'Comfy.Node.BypassAllLinksOnDelete': z.ZodBoolean;
14827
+ 'Comfy.Node.Opacity': z.ZodNumber;
14828
+ 'Comfy.Node.MiddleClickRerouteNode': z.ZodBoolean;
14829
+ 'Comfy.Node.ShowDeprecated': z.ZodBoolean;
14830
+ 'Comfy.Node.ShowExperimental': z.ZodBoolean;
14831
+ 'Comfy.Pointer.ClickBufferTime': z.ZodNumber;
14832
+ 'Comfy.Pointer.ClickDrift': z.ZodNumber;
14833
+ 'Comfy.Pointer.DoubleClickTime': z.ZodNumber;
14834
+ 'Comfy.PreviewFormat': z.ZodString;
14835
+ 'Comfy.PromptFilename': z.ZodBoolean;
14836
+ 'Comfy.Sidebar.Location': z.ZodEnum<["left", "right"]>;
14837
+ 'Comfy.Sidebar.Size': z.ZodEnum<["small", "normal"]>;
14838
+ 'Comfy.Sidebar.UnifiedWidth': z.ZodBoolean;
14839
+ 'Comfy.Sidebar.Style': z.ZodEnum<["floating", "connected"]>;
14840
+ 'Comfy.SnapToGrid.GridSize': z.ZodNumber;
14841
+ 'Comfy.TextareaWidget.FontSize': z.ZodNumber;
14842
+ 'Comfy.TextareaWidget.Spellcheck': z.ZodBoolean;
14843
+ 'Comfy.UseNewMenu': z.ZodEnum<["Disabled", "Top"]>;
14844
+ 'Comfy.TreeExplorer.ItemPadding': z.ZodNumber;
14845
+ 'Comfy.Validation.Workflows': z.ZodBoolean;
14846
+ 'Comfy.Workflow.SortNodeIdOnSave': z.ZodBoolean;
14847
+ 'Comfy.Execution.PreviewMethod': z.ZodEnum<["default", "none", "auto", "latent2rgb", "taesd"]>;
14848
+ 'Comfy.Workflow.WorkflowTabsPosition': z.ZodEnum<["Sidebar", "Topbar"]>;
14849
+ 'Comfy.Node.DoubleClickTitleToEdit': z.ZodBoolean;
14850
+ 'Comfy.WidgetControlMode': z.ZodEnum<["before", "after"]>;
14851
+ 'Comfy.Window.UnloadConfirmation': z.ZodBoolean;
14852
+ 'Comfy.NodeBadge.NodeSourceBadgeMode': z.ZodEnum<[string, ...string[]]>;
14853
+ 'Comfy.NodeBadge.NodeIdBadgeMode': z.ZodEnum<[string, ...string[]]>;
14854
+ 'Comfy.NodeBadge.NodeLifeCycleBadgeMode': z.ZodEnum<[string, ...string[]]>;
14855
+ 'Comfy.NodeBadge.ShowApiPricing': z.ZodBoolean;
14856
+ 'Comfy.Notification.ShowVersionUpdates': z.ZodBoolean;
14857
+ 'Comfy.QueueButton.BatchCountLimit': z.ZodNumber;
14858
+ 'Comfy.Queue.MaxHistoryItems': z.ZodNumber;
14859
+ 'Comfy.Queue.History.Expanded': z.ZodBoolean;
14860
+ 'Comfy.Keybinding.UnsetBindings': z.ZodArray<z.ZodObject<{
14861
+ commandId: z.ZodString;
14862
+ combo: z.ZodObject<{
14863
+ key: z.ZodString;
14864
+ ctrl: z.ZodOptional<z.ZodBoolean>;
14865
+ alt: z.ZodOptional<z.ZodBoolean>;
14866
+ shift: z.ZodOptional<z.ZodBoolean>;
14867
+ meta: z.ZodOptional<z.ZodBoolean>;
14868
+ }, "strip", z.ZodTypeAny, {
14869
+ key: string;
14870
+ shift?: boolean | undefined;
14871
+ alt?: boolean | undefined;
14872
+ meta?: boolean | undefined;
14873
+ ctrl?: boolean | undefined;
14874
+ }, {
14875
+ key: string;
14876
+ shift?: boolean | undefined;
14877
+ alt?: boolean | undefined;
14878
+ meta?: boolean | undefined;
14879
+ ctrl?: boolean | undefined;
14880
+ }>;
14881
+ targetElementId: z.ZodOptional<z.ZodString>;
14882
+ }, "strip", z.ZodTypeAny, {
14883
+ combo: {
14884
+ key: string;
14885
+ shift?: boolean | undefined;
14886
+ alt?: boolean | undefined;
14887
+ meta?: boolean | undefined;
14888
+ ctrl?: boolean | undefined;
14889
+ };
14890
+ commandId: string;
14891
+ targetElementId?: string | undefined;
14892
+ }, {
14893
+ combo: {
14894
+ key: string;
14895
+ shift?: boolean | undefined;
14896
+ alt?: boolean | undefined;
14897
+ meta?: boolean | undefined;
14898
+ ctrl?: boolean | undefined;
14899
+ };
14900
+ commandId: string;
14901
+ targetElementId?: string | undefined;
14902
+ }>, "many">;
14903
+ 'Comfy.Keybinding.NewBindings': z.ZodArray<z.ZodObject<{
14904
+ commandId: z.ZodString;
14905
+ combo: z.ZodObject<{
14906
+ key: z.ZodString;
14907
+ ctrl: z.ZodOptional<z.ZodBoolean>;
14908
+ alt: z.ZodOptional<z.ZodBoolean>;
14909
+ shift: z.ZodOptional<z.ZodBoolean>;
14910
+ meta: z.ZodOptional<z.ZodBoolean>;
14911
+ }, "strip", z.ZodTypeAny, {
14912
+ key: string;
14913
+ shift?: boolean | undefined;
14914
+ alt?: boolean | undefined;
14915
+ meta?: boolean | undefined;
14916
+ ctrl?: boolean | undefined;
14917
+ }, {
14918
+ key: string;
14919
+ shift?: boolean | undefined;
14920
+ alt?: boolean | undefined;
14921
+ meta?: boolean | undefined;
14922
+ ctrl?: boolean | undefined;
14923
+ }>;
14924
+ targetElementId: z.ZodOptional<z.ZodString>;
14925
+ }, "strip", z.ZodTypeAny, {
14926
+ combo: {
14927
+ key: string;
14928
+ shift?: boolean | undefined;
14929
+ alt?: boolean | undefined;
14930
+ meta?: boolean | undefined;
14931
+ ctrl?: boolean | undefined;
14932
+ };
14933
+ commandId: string;
14934
+ targetElementId?: string | undefined;
14935
+ }, {
14936
+ combo: {
14937
+ key: string;
14938
+ shift?: boolean | undefined;
14939
+ alt?: boolean | undefined;
14940
+ meta?: boolean | undefined;
14941
+ ctrl?: boolean | undefined;
14942
+ };
14943
+ commandId: string;
14944
+ targetElementId?: string | undefined;
14945
+ }>, "many">;
14946
+ 'Comfy.Extension.Disabled': z.ZodArray<z.ZodString, "many">;
14947
+ 'Comfy.LinkRenderMode': z.ZodNumber;
14948
+ 'Comfy.Node.AutoSnapLinkToSlot': z.ZodBoolean;
14949
+ 'Comfy.Node.SnapHighlightsNode': z.ZodBoolean;
14950
+ 'Comfy.Server.ServerConfigValues': z.ZodRecord<z.ZodString, z.ZodAny>;
14951
+ 'Comfy.Server.LaunchArgs': z.ZodRecord<z.ZodString, z.ZodString>;
14952
+ 'LiteGraph.Canvas.MaximumFps': z.ZodNumber;
14953
+ 'Comfy.Workflow.ConfirmDelete': z.ZodBoolean;
14954
+ 'Comfy.Workflow.AutoSaveDelay': z.ZodNumber;
14955
+ 'Comfy.Workflow.AutoSave': z.ZodEnum<["off", "after delay"]>;
14956
+ 'Comfy.RerouteBeta': z.ZodBoolean;
14957
+ 'LiteGraph.Canvas.MinFontSizeForLOD': z.ZodNumber;
14958
+ 'Comfy.Canvas.SelectionToolbox': z.ZodBoolean;
14959
+ 'LiteGraph.Node.TooltipDelay': z.ZodNumber;
14960
+ 'LiteGraph.ContextMenu.Scaling': z.ZodBoolean;
14961
+ 'LiteGraph.Reroute.SplineOffset': z.ZodNumber;
14962
+ 'LiteGraph.Canvas.LowQualityRenderingZoomThreshold': z.ZodNumber;
14963
+ 'Comfy.Toast.DisableReconnectingToast': z.ZodBoolean;
14964
+ 'Comfy.Workflow.Persist': z.ZodBoolean;
14965
+ 'Comfy.TutorialCompleted': z.ZodBoolean;
14966
+ 'Comfy.InstalledVersion': z.ZodNullable<z.ZodString>;
14967
+ 'Comfy.Node.AllowImageSizeDraw': z.ZodBoolean;
14968
+ 'Comfy.Minimap.Visible': z.ZodBoolean;
14969
+ 'Comfy.Minimap.NodeColors': z.ZodBoolean;
14970
+ 'Comfy.Minimap.ShowLinks': z.ZodBoolean;
14971
+ 'Comfy.Minimap.ShowGroups': z.ZodBoolean;
14972
+ 'Comfy.Minimap.RenderBypassState': z.ZodBoolean;
14973
+ 'Comfy.Minimap.RenderErrorState': z.ZodBoolean;
14974
+ 'Comfy.Canvas.NavigationMode': z.ZodString;
14975
+ 'Comfy.Canvas.LeftMouseClickBehavior': z.ZodString;
14976
+ 'Comfy.Canvas.MouseWheelScroll': z.ZodString;
14977
+ 'Comfy.VueNodes.Enabled': z.ZodBoolean;
14978
+ 'Comfy.VueNodes.AutoScaleLayout': z.ZodBoolean;
14979
+ 'Comfy.Assets.UseAssetAPI': z.ZodBoolean;
14980
+ 'Comfy.Queue.QPOV2': z.ZodBoolean;
14981
+ 'Comfy-Desktop.AutoUpdate': z.ZodBoolean;
14982
+ 'Comfy-Desktop.SendStatistics': z.ZodBoolean;
14983
+ 'Comfy-Desktop.WindowStyle': z.ZodString;
14984
+ 'Comfy-Desktop.UV.PythonInstallMirror': z.ZodString;
14985
+ 'Comfy-Desktop.UV.PypiInstallMirror': z.ZodString;
14986
+ 'Comfy-Desktop.UV.TorchInstallMirror': z.ZodString;
14987
+ 'Comfy.MaskEditor.BrushAdjustmentSpeed': z.ZodNumber;
14988
+ 'Comfy.MaskEditor.UseDominantAxis': z.ZodBoolean;
14989
+ 'Comfy.Load3D.ShowGrid': z.ZodBoolean;
14990
+ 'Comfy.Load3D.BackgroundColor': z.ZodString;
14991
+ 'Comfy.Load3D.LightIntensity': z.ZodNumber;
14992
+ 'Comfy.Load3D.LightIntensityMaximum': z.ZodNumber;
14993
+ 'Comfy.Load3D.LightIntensityMinimum': z.ZodNumber;
14994
+ 'Comfy.Load3D.LightAdjustmentIncrement': z.ZodNumber;
14995
+ 'Comfy.Load3D.CameraType': z.ZodEnum<["perspective", "orthographic"]>;
14996
+ 'Comfy.Load3D.3DViewerEnable': z.ZodBoolean;
14997
+ 'Comfy.Load3D.PLYEngine': z.ZodEnum<["threejs", "fastply", "sparkjs"]>;
14998
+ 'Comfy.Memory.AllowManualUnload': z.ZodBoolean;
14999
+ 'pysssss.SnapToGrid': z.ZodBoolean;
15000
+ /** VHS setting is used for queue video preview support. */
15001
+ 'VHS.AdvancedPreviews': z.ZodString;
15002
+ /** Release data settings */
15003
+ 'Comfy.Release.Version': z.ZodString;
15004
+ 'Comfy.Release.Status': z.ZodEnum<["skipped", "changelog seen", "what's new seen"]>;
15005
+ 'Comfy.Release.Timestamp': z.ZodNumber;
15006
+ /** Template library filter settings */
15007
+ 'Comfy.Templates.SelectedModels': z.ZodArray<z.ZodString, "many">;
15008
+ 'Comfy.Templates.SelectedUseCases': z.ZodArray<z.ZodString, "many">;
15009
+ 'Comfy.Templates.SelectedRunsOn': z.ZodArray<z.ZodString, "many">;
15010
+ 'Comfy.Templates.SortBy': z.ZodEnum<["default", "recommended", "popular", "alphabetical", "newest", "vram-low-to-high", "model-size-low-to-high"]>;
15011
+ /** Settings used for testing */
15012
+ 'test.setting': z.ZodAny;
15013
+ 'main.sub.setting.name': z.ZodAny;
15014
+ 'single.setting': z.ZodAny;
15015
+ 'LiteGraph.Node.DefaultPadding': z.ZodBoolean;
15016
+ 'LiteGraph.Pointer.TrackpadGestures': z.ZodBoolean;
15017
+ 'Comfy.VersionCompatibility.DisableWarnings': z.ZodBoolean;
15018
+ 'Comfy.RightSidePanel.IsOpen': z.ZodBoolean;
15019
+ }, "strip", z.ZodTypeAny, {
15020
+ 'Comfy.ColorPalette': string;
15021
+ 'Comfy.CustomColorPalettes': Record<string, z.objectOutputType<{
15022
+ id: z.ZodString;
15023
+ name: z.ZodString;
15024
+ colors: z.ZodObject<{
15025
+ node_slot: z.ZodObject<{
15026
+ CLIP: z.ZodOptional<z.ZodString>;
15027
+ CLIP_VISION: z.ZodOptional<z.ZodString>;
15028
+ CLIP_VISION_OUTPUT: z.ZodOptional<z.ZodString>;
15029
+ CONDITIONING: z.ZodOptional<z.ZodString>;
15030
+ CONTROL_NET: z.ZodOptional<z.ZodString>;
15031
+ IMAGE: z.ZodOptional<z.ZodString>;
15032
+ LATENT: z.ZodOptional<z.ZodString>;
15033
+ MASK: z.ZodOptional<z.ZodString>;
15034
+ MODEL: z.ZodOptional<z.ZodString>;
15035
+ STYLE_MODEL: z.ZodOptional<z.ZodString>;
15036
+ VAE: z.ZodOptional<z.ZodString>;
15037
+ NOISE: z.ZodOptional<z.ZodString>;
15038
+ GUIDER: z.ZodOptional<z.ZodString>;
15039
+ SAMPLER: z.ZodOptional<z.ZodString>;
15040
+ SIGMAS: z.ZodOptional<z.ZodString>;
15041
+ TAESD: z.ZodOptional<z.ZodString>;
15042
+ }, "strip", z.ZodTypeAny, {
15043
+ CLIP?: string | undefined;
15044
+ CLIP_VISION?: string | undefined;
15045
+ CLIP_VISION_OUTPUT?: string | undefined;
15046
+ CONDITIONING?: string | undefined;
15047
+ CONTROL_NET?: string | undefined;
15048
+ GUIDER?: string | undefined;
15049
+ IMAGE?: string | undefined;
15050
+ LATENT?: string | undefined;
15051
+ MASK?: string | undefined;
15052
+ MODEL?: string | undefined;
15053
+ NOISE?: string | undefined;
15054
+ SAMPLER?: string | undefined;
15055
+ SIGMAS?: string | undefined;
15056
+ STYLE_MODEL?: string | undefined;
15057
+ VAE?: string | undefined;
15058
+ TAESD?: string | undefined;
15059
+ }, {
15060
+ CLIP?: string | undefined;
15061
+ CLIP_VISION?: string | undefined;
15062
+ CLIP_VISION_OUTPUT?: string | undefined;
15063
+ CONDITIONING?: string | undefined;
15064
+ CONTROL_NET?: string | undefined;
15065
+ GUIDER?: string | undefined;
15066
+ IMAGE?: string | undefined;
15067
+ LATENT?: string | undefined;
15068
+ MASK?: string | undefined;
15069
+ MODEL?: string | undefined;
15070
+ NOISE?: string | undefined;
15071
+ SAMPLER?: string | undefined;
15072
+ SIGMAS?: string | undefined;
15073
+ STYLE_MODEL?: string | undefined;
15074
+ VAE?: string | undefined;
15075
+ TAESD?: string | undefined;
15076
+ }>;
15077
+ litegraph_base: z.ZodObject<{
15078
+ BACKGROUND_IMAGE: z.ZodOptional<z.ZodString>;
15079
+ CLEAR_BACKGROUND_COLOR: z.ZodOptional<z.ZodString>;
15080
+ NODE_TITLE_COLOR: z.ZodOptional<z.ZodString>;
15081
+ NODE_SELECTED_TITLE_COLOR: z.ZodOptional<z.ZodString>;
15082
+ NODE_TEXT_SIZE: z.ZodOptional<z.ZodNumber>;
15083
+ NODE_TEXT_COLOR: z.ZodOptional<z.ZodString>;
15084
+ NODE_TEXT_HIGHLIGHT_COLOR: z.ZodOptional<z.ZodString>;
15085
+ NODE_SUBTEXT_SIZE: z.ZodOptional<z.ZodNumber>;
15086
+ NODE_DEFAULT_COLOR: z.ZodOptional<z.ZodString>;
15087
+ NODE_DEFAULT_BGCOLOR: z.ZodOptional<z.ZodString>;
15088
+ NODE_DEFAULT_BOXCOLOR: z.ZodOptional<z.ZodString>;
15089
+ NODE_DEFAULT_SHAPE: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodString]>>;
15090
+ NODE_BOX_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
15091
+ NODE_BYPASS_BGCOLOR: z.ZodOptional<z.ZodString>;
15092
+ NODE_ERROR_COLOUR: z.ZodOptional<z.ZodString>;
15093
+ DEFAULT_SHADOW_COLOR: z.ZodOptional<z.ZodString>;
15094
+ DEFAULT_GROUP_FONT: z.ZodOptional<z.ZodNumber>;
15095
+ WIDGET_BGCOLOR: z.ZodOptional<z.ZodString>;
15096
+ WIDGET_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
15097
+ WIDGET_TEXT_COLOR: z.ZodOptional<z.ZodString>;
15098
+ WIDGET_SECONDARY_TEXT_COLOR: z.ZodOptional<z.ZodString>;
15099
+ WIDGET_DISABLED_TEXT_COLOR: z.ZodOptional<z.ZodString>;
15100
+ LINK_COLOR: z.ZodOptional<z.ZodString>;
15101
+ EVENT_LINK_COLOR: z.ZodOptional<z.ZodString>;
15102
+ CONNECTING_LINK_COLOR: z.ZodOptional<z.ZodString>;
15103
+ BADGE_FG_COLOR: z.ZodOptional<z.ZodString>;
15104
+ BADGE_BG_COLOR: z.ZodOptional<z.ZodString>;
15105
+ }, "strip", z.ZodTypeAny, {
15106
+ BACKGROUND_IMAGE?: string | undefined;
15107
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
15108
+ NODE_TITLE_COLOR?: string | undefined;
15109
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
15110
+ NODE_TEXT_SIZE?: number | undefined;
15111
+ NODE_TEXT_COLOR?: string | undefined;
15112
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
15113
+ NODE_SUBTEXT_SIZE?: number | undefined;
15114
+ NODE_DEFAULT_COLOR?: string | undefined;
15115
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
15116
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
15117
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
15118
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
15119
+ NODE_BYPASS_BGCOLOR?: string | undefined;
15120
+ NODE_ERROR_COLOUR?: string | undefined;
15121
+ DEFAULT_SHADOW_COLOR?: string | undefined;
15122
+ DEFAULT_GROUP_FONT?: number | undefined;
15123
+ WIDGET_BGCOLOR?: string | undefined;
15124
+ WIDGET_OUTLINE_COLOR?: string | undefined;
15125
+ WIDGET_TEXT_COLOR?: string | undefined;
15126
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
15127
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
15128
+ LINK_COLOR?: string | undefined;
15129
+ EVENT_LINK_COLOR?: string | undefined;
15130
+ CONNECTING_LINK_COLOR?: string | undefined;
15131
+ BADGE_FG_COLOR?: string | undefined;
15132
+ BADGE_BG_COLOR?: string | undefined;
15133
+ }, {
15134
+ BACKGROUND_IMAGE?: string | undefined;
15135
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
15136
+ NODE_TITLE_COLOR?: string | undefined;
15137
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
15138
+ NODE_TEXT_SIZE?: number | undefined;
15139
+ NODE_TEXT_COLOR?: string | undefined;
15140
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
15141
+ NODE_SUBTEXT_SIZE?: number | undefined;
15142
+ NODE_DEFAULT_COLOR?: string | undefined;
15143
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
15144
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
15145
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
15146
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
15147
+ NODE_BYPASS_BGCOLOR?: string | undefined;
15148
+ NODE_ERROR_COLOUR?: string | undefined;
15149
+ DEFAULT_SHADOW_COLOR?: string | undefined;
15150
+ DEFAULT_GROUP_FONT?: number | undefined;
15151
+ WIDGET_BGCOLOR?: string | undefined;
15152
+ WIDGET_OUTLINE_COLOR?: string | undefined;
15153
+ WIDGET_TEXT_COLOR?: string | undefined;
15154
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
15155
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
15156
+ LINK_COLOR?: string | undefined;
15157
+ EVENT_LINK_COLOR?: string | undefined;
15158
+ CONNECTING_LINK_COLOR?: string | undefined;
15159
+ BADGE_FG_COLOR?: string | undefined;
15160
+ BADGE_BG_COLOR?: string | undefined;
15161
+ }>;
15162
+ comfy_base: z.ZodObject<{
15163
+ "fg-color": z.ZodOptional<z.ZodString>;
15164
+ "bg-color": z.ZodOptional<z.ZodString>;
15165
+ "bg-img": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15166
+ "comfy-menu-bg": z.ZodOptional<z.ZodString>;
15167
+ "comfy-menu-secondary-bg": z.ZodOptional<z.ZodString>;
15168
+ "comfy-input-bg": z.ZodOptional<z.ZodString>;
15169
+ "input-text": z.ZodOptional<z.ZodString>;
15170
+ "descrip-text": z.ZodOptional<z.ZodString>;
15171
+ "drag-text": z.ZodOptional<z.ZodString>;
15172
+ "error-text": z.ZodOptional<z.ZodString>;
15173
+ "border-color": z.ZodOptional<z.ZodString>;
15174
+ "tr-even-bg-color": z.ZodOptional<z.ZodString>;
15175
+ "tr-odd-bg-color": z.ZodOptional<z.ZodString>;
15176
+ "content-bg": z.ZodOptional<z.ZodString>;
15177
+ "content-fg": z.ZodOptional<z.ZodString>;
15178
+ "content-hover-bg": z.ZodOptional<z.ZodString>;
15179
+ "content-hover-fg": z.ZodOptional<z.ZodString>;
15180
+ "bar-shadow": z.ZodOptional<z.ZodString>;
15181
+ "contrast-mix-color": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15182
+ "interface-stroke": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15183
+ "interface-panel-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15184
+ "interface-panel-box-shadow": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15185
+ "interface-panel-drop-shadow": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15186
+ "interface-panel-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15187
+ "interface-panel-selected-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15188
+ "interface-button-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15189
+ }, "strip", z.ZodTypeAny, {
15190
+ "fg-color"?: string | undefined;
15191
+ "bg-color"?: string | undefined;
15192
+ "bg-img"?: string | undefined;
15193
+ "comfy-menu-bg"?: string | undefined;
15194
+ "comfy-menu-secondary-bg"?: string | undefined;
15195
+ "comfy-input-bg"?: string | undefined;
15196
+ "input-text"?: string | undefined;
15197
+ "descrip-text"?: string | undefined;
15198
+ "drag-text"?: string | undefined;
15199
+ "error-text"?: string | undefined;
15200
+ "border-color"?: string | undefined;
15201
+ "tr-even-bg-color"?: string | undefined;
15202
+ "tr-odd-bg-color"?: string | undefined;
15203
+ "content-bg"?: string | undefined;
15204
+ "content-fg"?: string | undefined;
15205
+ "content-hover-bg"?: string | undefined;
15206
+ "content-hover-fg"?: string | undefined;
15207
+ "bar-shadow"?: string | undefined;
15208
+ "contrast-mix-color"?: string | undefined;
15209
+ "interface-stroke"?: string | undefined;
15210
+ "interface-panel-surface"?: string | undefined;
15211
+ "interface-panel-box-shadow"?: string | undefined;
15212
+ "interface-panel-drop-shadow"?: string | undefined;
15213
+ "interface-panel-hover-surface"?: string | undefined;
15214
+ "interface-panel-selected-surface"?: string | undefined;
15215
+ "interface-button-hover-surface"?: string | undefined;
15216
+ }, {
15217
+ "fg-color"?: string | undefined;
15218
+ "bg-color"?: string | undefined;
15219
+ "bg-img"?: string | undefined;
15220
+ "comfy-menu-bg"?: string | undefined;
15221
+ "comfy-menu-secondary-bg"?: string | undefined;
15222
+ "comfy-input-bg"?: string | undefined;
15223
+ "input-text"?: string | undefined;
15224
+ "descrip-text"?: string | undefined;
15225
+ "drag-text"?: string | undefined;
15226
+ "error-text"?: string | undefined;
15227
+ "border-color"?: string | undefined;
15228
+ "tr-even-bg-color"?: string | undefined;
15229
+ "tr-odd-bg-color"?: string | undefined;
15230
+ "content-bg"?: string | undefined;
15231
+ "content-fg"?: string | undefined;
15232
+ "content-hover-bg"?: string | undefined;
15233
+ "content-hover-fg"?: string | undefined;
15234
+ "bar-shadow"?: string | undefined;
15235
+ "contrast-mix-color"?: string | undefined;
15236
+ "interface-stroke"?: string | undefined;
15237
+ "interface-panel-surface"?: string | undefined;
15238
+ "interface-panel-box-shadow"?: string | undefined;
15239
+ "interface-panel-drop-shadow"?: string | undefined;
15240
+ "interface-panel-hover-surface"?: string | undefined;
15241
+ "interface-panel-selected-surface"?: string | undefined;
15242
+ "interface-button-hover-surface"?: string | undefined;
15243
+ }>;
15244
+ }, "strip", z.ZodTypeAny, {
15245
+ node_slot: {
15246
+ CLIP?: string | undefined;
15247
+ CLIP_VISION?: string | undefined;
15248
+ CLIP_VISION_OUTPUT?: string | undefined;
15249
+ CONDITIONING?: string | undefined;
15250
+ CONTROL_NET?: string | undefined;
15251
+ GUIDER?: string | undefined;
15252
+ IMAGE?: string | undefined;
15253
+ LATENT?: string | undefined;
15254
+ MASK?: string | undefined;
15255
+ MODEL?: string | undefined;
15256
+ NOISE?: string | undefined;
15257
+ SAMPLER?: string | undefined;
15258
+ SIGMAS?: string | undefined;
15259
+ STYLE_MODEL?: string | undefined;
15260
+ VAE?: string | undefined;
15261
+ TAESD?: string | undefined;
15262
+ };
15263
+ litegraph_base: {
15264
+ BACKGROUND_IMAGE?: string | undefined;
15265
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
15266
+ NODE_TITLE_COLOR?: string | undefined;
15267
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
15268
+ NODE_TEXT_SIZE?: number | undefined;
15269
+ NODE_TEXT_COLOR?: string | undefined;
15270
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
15271
+ NODE_SUBTEXT_SIZE?: number | undefined;
15272
+ NODE_DEFAULT_COLOR?: string | undefined;
15273
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
15274
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
15275
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
15276
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
15277
+ NODE_BYPASS_BGCOLOR?: string | undefined;
15278
+ NODE_ERROR_COLOUR?: string | undefined;
15279
+ DEFAULT_SHADOW_COLOR?: string | undefined;
15280
+ DEFAULT_GROUP_FONT?: number | undefined;
15281
+ WIDGET_BGCOLOR?: string | undefined;
15282
+ WIDGET_OUTLINE_COLOR?: string | undefined;
15283
+ WIDGET_TEXT_COLOR?: string | undefined;
15284
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
15285
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
15286
+ LINK_COLOR?: string | undefined;
15287
+ EVENT_LINK_COLOR?: string | undefined;
15288
+ CONNECTING_LINK_COLOR?: string | undefined;
15289
+ BADGE_FG_COLOR?: string | undefined;
15290
+ BADGE_BG_COLOR?: string | undefined;
15291
+ };
15292
+ comfy_base: {
15293
+ "fg-color"?: string | undefined;
15294
+ "bg-color"?: string | undefined;
15295
+ "bg-img"?: string | undefined;
15296
+ "comfy-menu-bg"?: string | undefined;
15297
+ "comfy-menu-secondary-bg"?: string | undefined;
15298
+ "comfy-input-bg"?: string | undefined;
15299
+ "input-text"?: string | undefined;
15300
+ "descrip-text"?: string | undefined;
15301
+ "drag-text"?: string | undefined;
15302
+ "error-text"?: string | undefined;
15303
+ "border-color"?: string | undefined;
15304
+ "tr-even-bg-color"?: string | undefined;
15305
+ "tr-odd-bg-color"?: string | undefined;
15306
+ "content-bg"?: string | undefined;
15307
+ "content-fg"?: string | undefined;
15308
+ "content-hover-bg"?: string | undefined;
15309
+ "content-hover-fg"?: string | undefined;
15310
+ "bar-shadow"?: string | undefined;
15311
+ "contrast-mix-color"?: string | undefined;
15312
+ "interface-stroke"?: string | undefined;
15313
+ "interface-panel-surface"?: string | undefined;
15314
+ "interface-panel-box-shadow"?: string | undefined;
15315
+ "interface-panel-drop-shadow"?: string | undefined;
15316
+ "interface-panel-hover-surface"?: string | undefined;
15317
+ "interface-panel-selected-surface"?: string | undefined;
15318
+ "interface-button-hover-surface"?: string | undefined;
15319
+ };
15320
+ }, {
15321
+ node_slot: {
15322
+ CLIP?: string | undefined;
15323
+ CLIP_VISION?: string | undefined;
15324
+ CLIP_VISION_OUTPUT?: string | undefined;
15325
+ CONDITIONING?: string | undefined;
15326
+ CONTROL_NET?: string | undefined;
15327
+ GUIDER?: string | undefined;
15328
+ IMAGE?: string | undefined;
15329
+ LATENT?: string | undefined;
15330
+ MASK?: string | undefined;
15331
+ MODEL?: string | undefined;
15332
+ NOISE?: string | undefined;
15333
+ SAMPLER?: string | undefined;
15334
+ SIGMAS?: string | undefined;
15335
+ STYLE_MODEL?: string | undefined;
15336
+ VAE?: string | undefined;
15337
+ TAESD?: string | undefined;
15338
+ };
15339
+ litegraph_base: {
15340
+ BACKGROUND_IMAGE?: string | undefined;
15341
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
15342
+ NODE_TITLE_COLOR?: string | undefined;
15343
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
15344
+ NODE_TEXT_SIZE?: number | undefined;
15345
+ NODE_TEXT_COLOR?: string | undefined;
15346
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
15347
+ NODE_SUBTEXT_SIZE?: number | undefined;
15348
+ NODE_DEFAULT_COLOR?: string | undefined;
15349
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
15350
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
15351
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
15352
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
15353
+ NODE_BYPASS_BGCOLOR?: string | undefined;
15354
+ NODE_ERROR_COLOUR?: string | undefined;
15355
+ DEFAULT_SHADOW_COLOR?: string | undefined;
15356
+ DEFAULT_GROUP_FONT?: number | undefined;
15357
+ WIDGET_BGCOLOR?: string | undefined;
15358
+ WIDGET_OUTLINE_COLOR?: string | undefined;
15359
+ WIDGET_TEXT_COLOR?: string | undefined;
15360
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
15361
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
15362
+ LINK_COLOR?: string | undefined;
15363
+ EVENT_LINK_COLOR?: string | undefined;
15364
+ CONNECTING_LINK_COLOR?: string | undefined;
15365
+ BADGE_FG_COLOR?: string | undefined;
15366
+ BADGE_BG_COLOR?: string | undefined;
15367
+ };
15368
+ comfy_base: {
15369
+ "fg-color"?: string | undefined;
15370
+ "bg-color"?: string | undefined;
15371
+ "bg-img"?: string | undefined;
15372
+ "comfy-menu-bg"?: string | undefined;
15373
+ "comfy-menu-secondary-bg"?: string | undefined;
15374
+ "comfy-input-bg"?: string | undefined;
15375
+ "input-text"?: string | undefined;
15376
+ "descrip-text"?: string | undefined;
15377
+ "drag-text"?: string | undefined;
15378
+ "error-text"?: string | undefined;
15379
+ "border-color"?: string | undefined;
15380
+ "tr-even-bg-color"?: string | undefined;
15381
+ "tr-odd-bg-color"?: string | undefined;
15382
+ "content-bg"?: string | undefined;
15383
+ "content-fg"?: string | undefined;
15384
+ "content-hover-bg"?: string | undefined;
15385
+ "content-hover-fg"?: string | undefined;
15386
+ "bar-shadow"?: string | undefined;
15387
+ "contrast-mix-color"?: string | undefined;
15388
+ "interface-stroke"?: string | undefined;
15389
+ "interface-panel-surface"?: string | undefined;
15390
+ "interface-panel-box-shadow"?: string | undefined;
15391
+ "interface-panel-drop-shadow"?: string | undefined;
15392
+ "interface-panel-hover-surface"?: string | undefined;
15393
+ "interface-panel-selected-surface"?: string | undefined;
15394
+ "interface-button-hover-surface"?: string | undefined;
15395
+ };
15396
+ }>;
15397
+ light_theme: z.ZodOptional<z.ZodBoolean>;
15398
+ }, z.ZodTypeAny, "passthrough">>;
15399
+ 'Comfy.ConfirmClear': boolean;
15400
+ 'Comfy.DevMode': boolean;
15401
+ 'Comfy.UI.TabBarLayout': "Default" | "Integrated";
15402
+ 'Comfy.Workflow.ShowMissingNodesWarning': boolean;
15403
+ 'Comfy.Workflow.ShowMissingModelsWarning': boolean;
15404
+ 'Comfy.Workflow.WarnBlueprintOverwrite': boolean;
15405
+ 'Comfy.DisableFloatRounding': boolean;
15406
+ 'Comfy.DisableSliders': boolean;
15407
+ 'Comfy.DOMClippingEnabled': boolean;
15408
+ 'Comfy.EditAttention.Delta': number;
15409
+ 'Comfy.EnableTooltips': boolean;
15410
+ 'Comfy.EnableWorkflowViewRestore': boolean;
15411
+ 'Comfy.FloatRoundingPrecision': number;
15412
+ 'Comfy.Graph.CanvasInfo': boolean;
15413
+ 'Comfy.Graph.CanvasMenu': boolean;
15414
+ 'Comfy.Graph.CtrlShiftZoom': boolean;
15415
+ 'Comfy.Graph.LiveSelection': boolean;
15416
+ 'Comfy.Graph.LinkMarkers': LinkMarkerShape;
15417
+ 'Comfy.Graph.ZoomSpeed': number;
15418
+ 'Comfy.Group.DoubleClickTitleToEdit': boolean;
15419
+ 'Comfy.GroupSelectedNodes.Padding': number;
15420
+ 'Comfy.Locale': string;
15421
+ 'Comfy.NodeLibrary.Bookmarks': string[];
15422
+ 'Comfy.NodeLibrary.Bookmarks.V2': string[];
15423
+ 'Comfy.NodeLibrary.BookmarksCustomization': Record<string, {
15424
+ color?: string | undefined;
15425
+ icon?: string | undefined;
15426
+ }>;
15427
+ 'Comfy.LinkRelease.Action': string;
15428
+ 'Comfy.LinkRelease.ActionShift': string;
15429
+ 'Comfy.ModelLibrary.AutoLoadAll': boolean;
15430
+ 'Comfy.ModelLibrary.NameFormat': "title" | "filename";
15431
+ 'Comfy.NodeSearchBoxImpl.NodePreview': boolean;
15432
+ 'Comfy.NodeSearchBoxImpl': "default" | "simple";
15433
+ 'Comfy.NodeSearchBoxImpl.ShowCategory': boolean;
15434
+ 'Comfy.NodeSearchBoxImpl.ShowIdName': boolean;
15435
+ 'Comfy.NodeSearchBoxImpl.ShowNodeFrequency': boolean;
15436
+ 'Comfy.NodeSuggestions.number': number;
15437
+ 'Comfy.Node.BypassAllLinksOnDelete': boolean;
15438
+ 'Comfy.Node.Opacity': number;
15439
+ 'Comfy.Node.MiddleClickRerouteNode': boolean;
15440
+ 'Comfy.Node.ShowDeprecated': boolean;
15441
+ 'Comfy.Node.ShowExperimental': boolean;
15442
+ 'Comfy.Pointer.ClickBufferTime': number;
15443
+ 'Comfy.Pointer.ClickDrift': number;
15444
+ 'Comfy.Pointer.DoubleClickTime': number;
15445
+ 'Comfy.PreviewFormat': string;
15446
+ 'Comfy.PromptFilename': boolean;
15447
+ 'Comfy.Sidebar.Location': "left" | "right";
15448
+ 'Comfy.Sidebar.Size': "small" | "normal";
15449
+ 'Comfy.Sidebar.UnifiedWidth': boolean;
15450
+ 'Comfy.Sidebar.Style': "floating" | "connected";
15451
+ 'Comfy.SnapToGrid.GridSize': number;
15452
+ 'Comfy.TextareaWidget.FontSize': number;
15453
+ 'Comfy.TextareaWidget.Spellcheck': boolean;
15454
+ 'Comfy.UseNewMenu': "Disabled" | "Top";
15455
+ 'Comfy.TreeExplorer.ItemPadding': number;
15456
+ 'Comfy.Validation.Workflows': boolean;
15457
+ 'Comfy.Workflow.SortNodeIdOnSave': boolean;
15458
+ 'Comfy.Execution.PreviewMethod': "none" | "default" | "auto" | "latent2rgb" | "taesd";
15459
+ 'Comfy.Workflow.WorkflowTabsPosition': "Sidebar" | "Topbar";
15460
+ 'Comfy.Node.DoubleClickTitleToEdit': boolean;
15461
+ 'Comfy.WidgetControlMode': "before" | "after";
15462
+ 'Comfy.Window.UnloadConfirmation': boolean;
15463
+ 'Comfy.NodeBadge.NodeSourceBadgeMode': string;
15464
+ 'Comfy.NodeBadge.NodeIdBadgeMode': string;
15465
+ 'Comfy.NodeBadge.NodeLifeCycleBadgeMode': string;
15466
+ 'Comfy.NodeBadge.ShowApiPricing': boolean;
15467
+ 'Comfy.Notification.ShowVersionUpdates': boolean;
15468
+ 'Comfy.QueueButton.BatchCountLimit': number;
15469
+ 'Comfy.Queue.MaxHistoryItems': number;
15470
+ 'Comfy.Queue.History.Expanded': boolean;
15471
+ 'Comfy.Keybinding.UnsetBindings': {
15472
+ combo: {
15473
+ key: string;
15474
+ shift?: boolean | undefined;
15475
+ alt?: boolean | undefined;
15476
+ meta?: boolean | undefined;
15477
+ ctrl?: boolean | undefined;
15478
+ };
15479
+ commandId: string;
15480
+ targetElementId?: string | undefined;
15481
+ }[];
15482
+ 'Comfy.Keybinding.NewBindings': {
15483
+ combo: {
15484
+ key: string;
15485
+ shift?: boolean | undefined;
15486
+ alt?: boolean | undefined;
15487
+ meta?: boolean | undefined;
15488
+ ctrl?: boolean | undefined;
15489
+ };
15490
+ commandId: string;
15491
+ targetElementId?: string | undefined;
15492
+ }[];
15493
+ 'Comfy.Extension.Disabled': string[];
15494
+ 'Comfy.LinkRenderMode': number;
15495
+ 'Comfy.Node.AutoSnapLinkToSlot': boolean;
15496
+ 'Comfy.Node.SnapHighlightsNode': boolean;
15497
+ 'Comfy.Server.ServerConfigValues': Record<string, any>;
15498
+ 'Comfy.Server.LaunchArgs': Record<string, string>;
15499
+ 'LiteGraph.Canvas.MaximumFps': number;
15500
+ 'Comfy.Workflow.ConfirmDelete': boolean;
15501
+ 'Comfy.Workflow.AutoSaveDelay': number;
15502
+ 'Comfy.Workflow.AutoSave': "off" | "after delay";
15503
+ 'Comfy.RerouteBeta': boolean;
15504
+ 'LiteGraph.Canvas.MinFontSizeForLOD': number;
15505
+ 'Comfy.Canvas.SelectionToolbox': boolean;
15506
+ 'LiteGraph.Node.TooltipDelay': number;
15507
+ 'LiteGraph.ContextMenu.Scaling': boolean;
15508
+ 'LiteGraph.Reroute.SplineOffset': number;
15509
+ 'LiteGraph.Canvas.LowQualityRenderingZoomThreshold': number;
15510
+ 'Comfy.Toast.DisableReconnectingToast': boolean;
15511
+ 'Comfy.Workflow.Persist': boolean;
15512
+ 'Comfy.TutorialCompleted': boolean;
15513
+ 'Comfy.InstalledVersion': string | null;
15514
+ 'Comfy.Node.AllowImageSizeDraw': boolean;
15515
+ 'Comfy.Minimap.Visible': boolean;
15516
+ 'Comfy.Minimap.NodeColors': boolean;
15517
+ 'Comfy.Minimap.ShowLinks': boolean;
15518
+ 'Comfy.Minimap.ShowGroups': boolean;
15519
+ 'Comfy.Minimap.RenderBypassState': boolean;
15520
+ 'Comfy.Minimap.RenderErrorState': boolean;
15521
+ 'Comfy.Canvas.NavigationMode': string;
15522
+ 'Comfy.Canvas.LeftMouseClickBehavior': string;
15523
+ 'Comfy.Canvas.MouseWheelScroll': string;
15524
+ 'Comfy.VueNodes.Enabled': boolean;
15525
+ 'Comfy.VueNodes.AutoScaleLayout': boolean;
15526
+ 'Comfy.Assets.UseAssetAPI': boolean;
15527
+ 'Comfy.Queue.QPOV2': boolean;
15528
+ 'Comfy-Desktop.AutoUpdate': boolean;
15529
+ 'Comfy-Desktop.SendStatistics': boolean;
15530
+ 'Comfy-Desktop.WindowStyle': string;
15531
+ 'Comfy-Desktop.UV.PythonInstallMirror': string;
15532
+ 'Comfy-Desktop.UV.PypiInstallMirror': string;
15533
+ 'Comfy-Desktop.UV.TorchInstallMirror': string;
15534
+ 'Comfy.MaskEditor.BrushAdjustmentSpeed': number;
15535
+ 'Comfy.MaskEditor.UseDominantAxis': boolean;
15536
+ 'Comfy.Load3D.ShowGrid': boolean;
15537
+ 'Comfy.Load3D.BackgroundColor': string;
15538
+ 'Comfy.Load3D.LightIntensity': number;
15539
+ 'Comfy.Load3D.LightIntensityMaximum': number;
15540
+ 'Comfy.Load3D.LightIntensityMinimum': number;
15541
+ 'Comfy.Load3D.LightAdjustmentIncrement': number;
15542
+ 'Comfy.Load3D.CameraType': "perspective" | "orthographic";
15543
+ 'Comfy.Load3D.3DViewerEnable': boolean;
15544
+ 'Comfy.Load3D.PLYEngine': "threejs" | "fastply" | "sparkjs";
15545
+ 'Comfy.Memory.AllowManualUnload': boolean;
15546
+ 'pysssss.SnapToGrid': boolean;
15547
+ 'VHS.AdvancedPreviews': string;
15548
+ 'Comfy.Release.Version': string;
15549
+ 'Comfy.Release.Status': "skipped" | "changelog seen" | "what's new seen";
15550
+ 'Comfy.Release.Timestamp': number;
15551
+ 'Comfy.Templates.SelectedModels': string[];
15552
+ 'Comfy.Templates.SelectedUseCases': string[];
15553
+ 'Comfy.Templates.SelectedRunsOn': string[];
15554
+ 'Comfy.Templates.SortBy': "default" | "recommended" | "alphabetical" | "popular" | "newest" | "vram-low-to-high" | "model-size-low-to-high";
15555
+ 'LiteGraph.Node.DefaultPadding': boolean;
15556
+ 'LiteGraph.Pointer.TrackpadGestures': boolean;
15557
+ 'Comfy.VersionCompatibility.DisableWarnings': boolean;
15558
+ 'Comfy.RightSidePanel.IsOpen': boolean;
15559
+ 'Comfy.Canvas.BackgroundImage'?: string | undefined;
15560
+ 'test.setting'?: any;
15561
+ 'main.sub.setting.name'?: any;
15562
+ 'single.setting'?: any;
15563
+ }, {
15564
+ 'Comfy.ColorPalette': string;
15565
+ 'Comfy.CustomColorPalettes': Record<string, z.objectInputType<{
15566
+ id: z.ZodString;
15567
+ name: z.ZodString;
15568
+ colors: z.ZodObject<{
15569
+ node_slot: z.ZodObject<{
15570
+ CLIP: z.ZodOptional<z.ZodString>;
15571
+ CLIP_VISION: z.ZodOptional<z.ZodString>;
15572
+ CLIP_VISION_OUTPUT: z.ZodOptional<z.ZodString>;
15573
+ CONDITIONING: z.ZodOptional<z.ZodString>;
15574
+ CONTROL_NET: z.ZodOptional<z.ZodString>;
15575
+ IMAGE: z.ZodOptional<z.ZodString>;
15576
+ LATENT: z.ZodOptional<z.ZodString>;
15577
+ MASK: z.ZodOptional<z.ZodString>;
15578
+ MODEL: z.ZodOptional<z.ZodString>;
15579
+ STYLE_MODEL: z.ZodOptional<z.ZodString>;
15580
+ VAE: z.ZodOptional<z.ZodString>;
15581
+ NOISE: z.ZodOptional<z.ZodString>;
15582
+ GUIDER: z.ZodOptional<z.ZodString>;
15583
+ SAMPLER: z.ZodOptional<z.ZodString>;
15584
+ SIGMAS: z.ZodOptional<z.ZodString>;
15585
+ TAESD: z.ZodOptional<z.ZodString>;
15586
+ }, "strip", z.ZodTypeAny, {
15587
+ CLIP?: string | undefined;
15588
+ CLIP_VISION?: string | undefined;
15589
+ CLIP_VISION_OUTPUT?: string | undefined;
15590
+ CONDITIONING?: string | undefined;
15591
+ CONTROL_NET?: string | undefined;
15592
+ GUIDER?: string | undefined;
15593
+ IMAGE?: string | undefined;
15594
+ LATENT?: string | undefined;
15595
+ MASK?: string | undefined;
15596
+ MODEL?: string | undefined;
15597
+ NOISE?: string | undefined;
15598
+ SAMPLER?: string | undefined;
15599
+ SIGMAS?: string | undefined;
15600
+ STYLE_MODEL?: string | undefined;
15601
+ VAE?: string | undefined;
15602
+ TAESD?: string | undefined;
15603
+ }, {
15604
+ CLIP?: string | undefined;
15605
+ CLIP_VISION?: string | undefined;
15606
+ CLIP_VISION_OUTPUT?: string | undefined;
15607
+ CONDITIONING?: string | undefined;
15608
+ CONTROL_NET?: string | undefined;
15609
+ GUIDER?: string | undefined;
15610
+ IMAGE?: string | undefined;
15611
+ LATENT?: string | undefined;
15612
+ MASK?: string | undefined;
15613
+ MODEL?: string | undefined;
15614
+ NOISE?: string | undefined;
15615
+ SAMPLER?: string | undefined;
15616
+ SIGMAS?: string | undefined;
15617
+ STYLE_MODEL?: string | undefined;
15618
+ VAE?: string | undefined;
15619
+ TAESD?: string | undefined;
15620
+ }>;
15621
+ litegraph_base: z.ZodObject<{
15622
+ BACKGROUND_IMAGE: z.ZodOptional<z.ZodString>;
15623
+ CLEAR_BACKGROUND_COLOR: z.ZodOptional<z.ZodString>;
15624
+ NODE_TITLE_COLOR: z.ZodOptional<z.ZodString>;
15625
+ NODE_SELECTED_TITLE_COLOR: z.ZodOptional<z.ZodString>;
15626
+ NODE_TEXT_SIZE: z.ZodOptional<z.ZodNumber>;
15627
+ NODE_TEXT_COLOR: z.ZodOptional<z.ZodString>;
15628
+ NODE_TEXT_HIGHLIGHT_COLOR: z.ZodOptional<z.ZodString>;
15629
+ NODE_SUBTEXT_SIZE: z.ZodOptional<z.ZodNumber>;
15630
+ NODE_DEFAULT_COLOR: z.ZodOptional<z.ZodString>;
15631
+ NODE_DEFAULT_BGCOLOR: z.ZodOptional<z.ZodString>;
15632
+ NODE_DEFAULT_BOXCOLOR: z.ZodOptional<z.ZodString>;
15633
+ NODE_DEFAULT_SHAPE: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodLiteral<RenderShape>, z.ZodString]>>;
15634
+ NODE_BOX_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
15635
+ NODE_BYPASS_BGCOLOR: z.ZodOptional<z.ZodString>;
15636
+ NODE_ERROR_COLOUR: z.ZodOptional<z.ZodString>;
15637
+ DEFAULT_SHADOW_COLOR: z.ZodOptional<z.ZodString>;
15638
+ DEFAULT_GROUP_FONT: z.ZodOptional<z.ZodNumber>;
15639
+ WIDGET_BGCOLOR: z.ZodOptional<z.ZodString>;
15640
+ WIDGET_OUTLINE_COLOR: z.ZodOptional<z.ZodString>;
15641
+ WIDGET_TEXT_COLOR: z.ZodOptional<z.ZodString>;
15642
+ WIDGET_SECONDARY_TEXT_COLOR: z.ZodOptional<z.ZodString>;
15643
+ WIDGET_DISABLED_TEXT_COLOR: z.ZodOptional<z.ZodString>;
15644
+ LINK_COLOR: z.ZodOptional<z.ZodString>;
15645
+ EVENT_LINK_COLOR: z.ZodOptional<z.ZodString>;
15646
+ CONNECTING_LINK_COLOR: z.ZodOptional<z.ZodString>;
15647
+ BADGE_FG_COLOR: z.ZodOptional<z.ZodString>;
15648
+ BADGE_BG_COLOR: z.ZodOptional<z.ZodString>;
15649
+ }, "strip", z.ZodTypeAny, {
15650
+ BACKGROUND_IMAGE?: string | undefined;
15651
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
15652
+ NODE_TITLE_COLOR?: string | undefined;
15653
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
15654
+ NODE_TEXT_SIZE?: number | undefined;
15655
+ NODE_TEXT_COLOR?: string | undefined;
15656
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
15657
+ NODE_SUBTEXT_SIZE?: number | undefined;
15658
+ NODE_DEFAULT_COLOR?: string | undefined;
15659
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
15660
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
15661
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
15662
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
15663
+ NODE_BYPASS_BGCOLOR?: string | undefined;
15664
+ NODE_ERROR_COLOUR?: string | undefined;
15665
+ DEFAULT_SHADOW_COLOR?: string | undefined;
15666
+ DEFAULT_GROUP_FONT?: number | undefined;
15667
+ WIDGET_BGCOLOR?: string | undefined;
15668
+ WIDGET_OUTLINE_COLOR?: string | undefined;
15669
+ WIDGET_TEXT_COLOR?: string | undefined;
15670
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
15671
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
15672
+ LINK_COLOR?: string | undefined;
15673
+ EVENT_LINK_COLOR?: string | undefined;
15674
+ CONNECTING_LINK_COLOR?: string | undefined;
15675
+ BADGE_FG_COLOR?: string | undefined;
15676
+ BADGE_BG_COLOR?: string | undefined;
15677
+ }, {
15678
+ BACKGROUND_IMAGE?: string | undefined;
15679
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
15680
+ NODE_TITLE_COLOR?: string | undefined;
15681
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
15682
+ NODE_TEXT_SIZE?: number | undefined;
15683
+ NODE_TEXT_COLOR?: string | undefined;
15684
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
15685
+ NODE_SUBTEXT_SIZE?: number | undefined;
15686
+ NODE_DEFAULT_COLOR?: string | undefined;
15687
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
15688
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
15689
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
15690
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
15691
+ NODE_BYPASS_BGCOLOR?: string | undefined;
15692
+ NODE_ERROR_COLOUR?: string | undefined;
15693
+ DEFAULT_SHADOW_COLOR?: string | undefined;
15694
+ DEFAULT_GROUP_FONT?: number | undefined;
15695
+ WIDGET_BGCOLOR?: string | undefined;
15696
+ WIDGET_OUTLINE_COLOR?: string | undefined;
15697
+ WIDGET_TEXT_COLOR?: string | undefined;
15698
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
15699
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
15700
+ LINK_COLOR?: string | undefined;
15701
+ EVENT_LINK_COLOR?: string | undefined;
15702
+ CONNECTING_LINK_COLOR?: string | undefined;
15703
+ BADGE_FG_COLOR?: string | undefined;
15704
+ BADGE_BG_COLOR?: string | undefined;
15705
+ }>;
15706
+ comfy_base: z.ZodObject<{
15707
+ "fg-color": z.ZodOptional<z.ZodString>;
15708
+ "bg-color": z.ZodOptional<z.ZodString>;
15709
+ "bg-img": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15710
+ "comfy-menu-bg": z.ZodOptional<z.ZodString>;
15711
+ "comfy-menu-secondary-bg": z.ZodOptional<z.ZodString>;
15712
+ "comfy-input-bg": z.ZodOptional<z.ZodString>;
15713
+ "input-text": z.ZodOptional<z.ZodString>;
15714
+ "descrip-text": z.ZodOptional<z.ZodString>;
15715
+ "drag-text": z.ZodOptional<z.ZodString>;
15716
+ "error-text": z.ZodOptional<z.ZodString>;
15717
+ "border-color": z.ZodOptional<z.ZodString>;
15718
+ "tr-even-bg-color": z.ZodOptional<z.ZodString>;
15719
+ "tr-odd-bg-color": z.ZodOptional<z.ZodString>;
15720
+ "content-bg": z.ZodOptional<z.ZodString>;
15721
+ "content-fg": z.ZodOptional<z.ZodString>;
15722
+ "content-hover-bg": z.ZodOptional<z.ZodString>;
15723
+ "content-hover-fg": z.ZodOptional<z.ZodString>;
15724
+ "bar-shadow": z.ZodOptional<z.ZodString>;
15725
+ "contrast-mix-color": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15726
+ "interface-stroke": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15727
+ "interface-panel-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15728
+ "interface-panel-box-shadow": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15729
+ "interface-panel-drop-shadow": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15730
+ "interface-panel-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15731
+ "interface-panel-selected-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15732
+ "interface-button-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
15733
+ }, "strip", z.ZodTypeAny, {
15734
+ "fg-color"?: string | undefined;
15735
+ "bg-color"?: string | undefined;
15736
+ "bg-img"?: string | undefined;
15737
+ "comfy-menu-bg"?: string | undefined;
15738
+ "comfy-menu-secondary-bg"?: string | undefined;
15739
+ "comfy-input-bg"?: string | undefined;
15740
+ "input-text"?: string | undefined;
15741
+ "descrip-text"?: string | undefined;
15742
+ "drag-text"?: string | undefined;
15743
+ "error-text"?: string | undefined;
15744
+ "border-color"?: string | undefined;
15745
+ "tr-even-bg-color"?: string | undefined;
15746
+ "tr-odd-bg-color"?: string | undefined;
15747
+ "content-bg"?: string | undefined;
15748
+ "content-fg"?: string | undefined;
15749
+ "content-hover-bg"?: string | undefined;
15750
+ "content-hover-fg"?: string | undefined;
15751
+ "bar-shadow"?: string | undefined;
15752
+ "contrast-mix-color"?: string | undefined;
15753
+ "interface-stroke"?: string | undefined;
15754
+ "interface-panel-surface"?: string | undefined;
15755
+ "interface-panel-box-shadow"?: string | undefined;
15756
+ "interface-panel-drop-shadow"?: string | undefined;
15757
+ "interface-panel-hover-surface"?: string | undefined;
15758
+ "interface-panel-selected-surface"?: string | undefined;
15759
+ "interface-button-hover-surface"?: string | undefined;
15760
+ }, {
15761
+ "fg-color"?: string | undefined;
15762
+ "bg-color"?: string | undefined;
15763
+ "bg-img"?: string | undefined;
15764
+ "comfy-menu-bg"?: string | undefined;
15765
+ "comfy-menu-secondary-bg"?: string | undefined;
15766
+ "comfy-input-bg"?: string | undefined;
15767
+ "input-text"?: string | undefined;
15768
+ "descrip-text"?: string | undefined;
15769
+ "drag-text"?: string | undefined;
15770
+ "error-text"?: string | undefined;
15771
+ "border-color"?: string | undefined;
15772
+ "tr-even-bg-color"?: string | undefined;
15773
+ "tr-odd-bg-color"?: string | undefined;
15774
+ "content-bg"?: string | undefined;
15775
+ "content-fg"?: string | undefined;
15776
+ "content-hover-bg"?: string | undefined;
15777
+ "content-hover-fg"?: string | undefined;
15778
+ "bar-shadow"?: string | undefined;
15779
+ "contrast-mix-color"?: string | undefined;
15780
+ "interface-stroke"?: string | undefined;
15781
+ "interface-panel-surface"?: string | undefined;
15782
+ "interface-panel-box-shadow"?: string | undefined;
15783
+ "interface-panel-drop-shadow"?: string | undefined;
15784
+ "interface-panel-hover-surface"?: string | undefined;
15785
+ "interface-panel-selected-surface"?: string | undefined;
15786
+ "interface-button-hover-surface"?: string | undefined;
15787
+ }>;
15788
+ }, "strip", z.ZodTypeAny, {
15789
+ node_slot: {
15790
+ CLIP?: string | undefined;
15791
+ CLIP_VISION?: string | undefined;
15792
+ CLIP_VISION_OUTPUT?: string | undefined;
15793
+ CONDITIONING?: string | undefined;
15794
+ CONTROL_NET?: string | undefined;
15795
+ GUIDER?: string | undefined;
15796
+ IMAGE?: string | undefined;
15797
+ LATENT?: string | undefined;
15798
+ MASK?: string | undefined;
15799
+ MODEL?: string | undefined;
15800
+ NOISE?: string | undefined;
15801
+ SAMPLER?: string | undefined;
15802
+ SIGMAS?: string | undefined;
15803
+ STYLE_MODEL?: string | undefined;
15804
+ VAE?: string | undefined;
15805
+ TAESD?: string | undefined;
15806
+ };
15807
+ litegraph_base: {
15808
+ BACKGROUND_IMAGE?: string | undefined;
15809
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
15810
+ NODE_TITLE_COLOR?: string | undefined;
15811
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
15812
+ NODE_TEXT_SIZE?: number | undefined;
15813
+ NODE_TEXT_COLOR?: string | undefined;
15814
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
15815
+ NODE_SUBTEXT_SIZE?: number | undefined;
15816
+ NODE_DEFAULT_COLOR?: string | undefined;
15817
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
15818
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
15819
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
15820
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
15821
+ NODE_BYPASS_BGCOLOR?: string | undefined;
15822
+ NODE_ERROR_COLOUR?: string | undefined;
15823
+ DEFAULT_SHADOW_COLOR?: string | undefined;
15824
+ DEFAULT_GROUP_FONT?: number | undefined;
15825
+ WIDGET_BGCOLOR?: string | undefined;
15826
+ WIDGET_OUTLINE_COLOR?: string | undefined;
15827
+ WIDGET_TEXT_COLOR?: string | undefined;
15828
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
15829
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
15830
+ LINK_COLOR?: string | undefined;
15831
+ EVENT_LINK_COLOR?: string | undefined;
15832
+ CONNECTING_LINK_COLOR?: string | undefined;
15833
+ BADGE_FG_COLOR?: string | undefined;
15834
+ BADGE_BG_COLOR?: string | undefined;
15835
+ };
15836
+ comfy_base: {
15837
+ "fg-color"?: string | undefined;
15838
+ "bg-color"?: string | undefined;
15839
+ "bg-img"?: string | undefined;
15840
+ "comfy-menu-bg"?: string | undefined;
15841
+ "comfy-menu-secondary-bg"?: string | undefined;
15842
+ "comfy-input-bg"?: string | undefined;
15843
+ "input-text"?: string | undefined;
15844
+ "descrip-text"?: string | undefined;
15845
+ "drag-text"?: string | undefined;
15846
+ "error-text"?: string | undefined;
15847
+ "border-color"?: string | undefined;
15848
+ "tr-even-bg-color"?: string | undefined;
15849
+ "tr-odd-bg-color"?: string | undefined;
15850
+ "content-bg"?: string | undefined;
15851
+ "content-fg"?: string | undefined;
15852
+ "content-hover-bg"?: string | undefined;
15853
+ "content-hover-fg"?: string | undefined;
15854
+ "bar-shadow"?: string | undefined;
15855
+ "contrast-mix-color"?: string | undefined;
15856
+ "interface-stroke"?: string | undefined;
15857
+ "interface-panel-surface"?: string | undefined;
15858
+ "interface-panel-box-shadow"?: string | undefined;
15859
+ "interface-panel-drop-shadow"?: string | undefined;
15860
+ "interface-panel-hover-surface"?: string | undefined;
15861
+ "interface-panel-selected-surface"?: string | undefined;
15862
+ "interface-button-hover-surface"?: string | undefined;
15863
+ };
15864
+ }, {
15865
+ node_slot: {
15866
+ CLIP?: string | undefined;
15867
+ CLIP_VISION?: string | undefined;
15868
+ CLIP_VISION_OUTPUT?: string | undefined;
15869
+ CONDITIONING?: string | undefined;
15870
+ CONTROL_NET?: string | undefined;
15871
+ GUIDER?: string | undefined;
15872
+ IMAGE?: string | undefined;
15873
+ LATENT?: string | undefined;
15874
+ MASK?: string | undefined;
15875
+ MODEL?: string | undefined;
15876
+ NOISE?: string | undefined;
15877
+ SAMPLER?: string | undefined;
15878
+ SIGMAS?: string | undefined;
15879
+ STYLE_MODEL?: string | undefined;
15880
+ VAE?: string | undefined;
15881
+ TAESD?: string | undefined;
15882
+ };
15883
+ litegraph_base: {
15884
+ BACKGROUND_IMAGE?: string | undefined;
15885
+ CLEAR_BACKGROUND_COLOR?: string | undefined;
15886
+ NODE_TITLE_COLOR?: string | undefined;
15887
+ NODE_SELECTED_TITLE_COLOR?: string | undefined;
15888
+ NODE_TEXT_SIZE?: number | undefined;
15889
+ NODE_TEXT_COLOR?: string | undefined;
15890
+ NODE_TEXT_HIGHLIGHT_COLOR?: string | undefined;
15891
+ NODE_SUBTEXT_SIZE?: number | undefined;
15892
+ NODE_DEFAULT_COLOR?: string | undefined;
15893
+ NODE_DEFAULT_BGCOLOR?: string | undefined;
15894
+ NODE_DEFAULT_BOXCOLOR?: string | undefined;
15895
+ NODE_DEFAULT_SHAPE?: string | RenderShape | undefined;
15896
+ NODE_BOX_OUTLINE_COLOR?: string | undefined;
15897
+ NODE_BYPASS_BGCOLOR?: string | undefined;
15898
+ NODE_ERROR_COLOUR?: string | undefined;
15899
+ DEFAULT_SHADOW_COLOR?: string | undefined;
15900
+ DEFAULT_GROUP_FONT?: number | undefined;
15901
+ WIDGET_BGCOLOR?: string | undefined;
15902
+ WIDGET_OUTLINE_COLOR?: string | undefined;
15903
+ WIDGET_TEXT_COLOR?: string | undefined;
15904
+ WIDGET_SECONDARY_TEXT_COLOR?: string | undefined;
15905
+ WIDGET_DISABLED_TEXT_COLOR?: string | undefined;
15906
+ LINK_COLOR?: string | undefined;
15907
+ EVENT_LINK_COLOR?: string | undefined;
15908
+ CONNECTING_LINK_COLOR?: string | undefined;
15909
+ BADGE_FG_COLOR?: string | undefined;
15910
+ BADGE_BG_COLOR?: string | undefined;
15911
+ };
15912
+ comfy_base: {
15913
+ "fg-color"?: string | undefined;
15914
+ "bg-color"?: string | undefined;
15915
+ "bg-img"?: string | undefined;
15916
+ "comfy-menu-bg"?: string | undefined;
15917
+ "comfy-menu-secondary-bg"?: string | undefined;
15918
+ "comfy-input-bg"?: string | undefined;
15919
+ "input-text"?: string | undefined;
15920
+ "descrip-text"?: string | undefined;
15921
+ "drag-text"?: string | undefined;
15922
+ "error-text"?: string | undefined;
15923
+ "border-color"?: string | undefined;
15924
+ "tr-even-bg-color"?: string | undefined;
15925
+ "tr-odd-bg-color"?: string | undefined;
15926
+ "content-bg"?: string | undefined;
15927
+ "content-fg"?: string | undefined;
15928
+ "content-hover-bg"?: string | undefined;
15929
+ "content-hover-fg"?: string | undefined;
15930
+ "bar-shadow"?: string | undefined;
15931
+ "contrast-mix-color"?: string | undefined;
15932
+ "interface-stroke"?: string | undefined;
15933
+ "interface-panel-surface"?: string | undefined;
15934
+ "interface-panel-box-shadow"?: string | undefined;
15935
+ "interface-panel-drop-shadow"?: string | undefined;
15936
+ "interface-panel-hover-surface"?: string | undefined;
15937
+ "interface-panel-selected-surface"?: string | undefined;
15938
+ "interface-button-hover-surface"?: string | undefined;
15939
+ };
15940
+ }>;
15941
+ light_theme: z.ZodOptional<z.ZodBoolean>;
15942
+ }, z.ZodTypeAny, "passthrough">>;
15943
+ 'Comfy.ConfirmClear': boolean;
15944
+ 'Comfy.DevMode': boolean;
15945
+ 'Comfy.UI.TabBarLayout': "Default" | "Integrated";
15946
+ 'Comfy.Workflow.ShowMissingNodesWarning': boolean;
15947
+ 'Comfy.Workflow.ShowMissingModelsWarning': boolean;
15948
+ 'Comfy.Workflow.WarnBlueprintOverwrite': boolean;
15949
+ 'Comfy.DisableFloatRounding': boolean;
15950
+ 'Comfy.DisableSliders': boolean;
15951
+ 'Comfy.DOMClippingEnabled': boolean;
15952
+ 'Comfy.EditAttention.Delta': number;
15953
+ 'Comfy.EnableTooltips': boolean;
15954
+ 'Comfy.EnableWorkflowViewRestore': boolean;
15955
+ 'Comfy.FloatRoundingPrecision': number;
15956
+ 'Comfy.Graph.CanvasInfo': boolean;
15957
+ 'Comfy.Graph.CanvasMenu': boolean;
15958
+ 'Comfy.Graph.CtrlShiftZoom': boolean;
15959
+ 'Comfy.Graph.LiveSelection': boolean;
15960
+ 'Comfy.Graph.LinkMarkers': LinkMarkerShape;
15961
+ 'Comfy.Graph.ZoomSpeed': number;
15962
+ 'Comfy.Group.DoubleClickTitleToEdit': boolean;
15963
+ 'Comfy.GroupSelectedNodes.Padding': number;
15964
+ 'Comfy.Locale': string;
15965
+ 'Comfy.NodeLibrary.Bookmarks': string[];
15966
+ 'Comfy.NodeLibrary.Bookmarks.V2': string[];
15967
+ 'Comfy.NodeLibrary.BookmarksCustomization': Record<string, {
15968
+ color?: string | undefined;
15969
+ icon?: string | undefined;
15970
+ }>;
15971
+ 'Comfy.LinkRelease.Action': string;
15972
+ 'Comfy.LinkRelease.ActionShift': string;
15973
+ 'Comfy.ModelLibrary.AutoLoadAll': boolean;
15974
+ 'Comfy.ModelLibrary.NameFormat': "title" | "filename";
15975
+ 'Comfy.NodeSearchBoxImpl.NodePreview': boolean;
15976
+ 'Comfy.NodeSearchBoxImpl': "default" | "simple";
15977
+ 'Comfy.NodeSearchBoxImpl.ShowCategory': boolean;
15978
+ 'Comfy.NodeSearchBoxImpl.ShowIdName': boolean;
15979
+ 'Comfy.NodeSearchBoxImpl.ShowNodeFrequency': boolean;
15980
+ 'Comfy.NodeSuggestions.number': number;
15981
+ 'Comfy.Node.BypassAllLinksOnDelete': boolean;
15982
+ 'Comfy.Node.Opacity': number;
15983
+ 'Comfy.Node.MiddleClickRerouteNode': boolean;
15984
+ 'Comfy.Node.ShowDeprecated': boolean;
15985
+ 'Comfy.Node.ShowExperimental': boolean;
15986
+ 'Comfy.Pointer.ClickBufferTime': number;
15987
+ 'Comfy.Pointer.ClickDrift': number;
15988
+ 'Comfy.Pointer.DoubleClickTime': number;
15989
+ 'Comfy.PreviewFormat': string;
15990
+ 'Comfy.PromptFilename': boolean;
15991
+ 'Comfy.Sidebar.Location': "left" | "right";
15992
+ 'Comfy.Sidebar.Size': "small" | "normal";
15993
+ 'Comfy.Sidebar.UnifiedWidth': boolean;
15994
+ 'Comfy.Sidebar.Style': "floating" | "connected";
15995
+ 'Comfy.SnapToGrid.GridSize': number;
15996
+ 'Comfy.TextareaWidget.FontSize': number;
15997
+ 'Comfy.TextareaWidget.Spellcheck': boolean;
15998
+ 'Comfy.UseNewMenu': "Disabled" | "Top";
15999
+ 'Comfy.TreeExplorer.ItemPadding': number;
16000
+ 'Comfy.Validation.Workflows': boolean;
16001
+ 'Comfy.Workflow.SortNodeIdOnSave': boolean;
16002
+ 'Comfy.Execution.PreviewMethod': "none" | "default" | "auto" | "latent2rgb" | "taesd";
16003
+ 'Comfy.Workflow.WorkflowTabsPosition': "Sidebar" | "Topbar";
16004
+ 'Comfy.Node.DoubleClickTitleToEdit': boolean;
16005
+ 'Comfy.WidgetControlMode': "before" | "after";
16006
+ 'Comfy.Window.UnloadConfirmation': boolean;
16007
+ 'Comfy.NodeBadge.NodeSourceBadgeMode': string;
16008
+ 'Comfy.NodeBadge.NodeIdBadgeMode': string;
16009
+ 'Comfy.NodeBadge.NodeLifeCycleBadgeMode': string;
16010
+ 'Comfy.NodeBadge.ShowApiPricing': boolean;
16011
+ 'Comfy.Notification.ShowVersionUpdates': boolean;
16012
+ 'Comfy.QueueButton.BatchCountLimit': number;
16013
+ 'Comfy.Queue.MaxHistoryItems': number;
16014
+ 'Comfy.Queue.History.Expanded': boolean;
16015
+ 'Comfy.Keybinding.UnsetBindings': {
16016
+ combo: {
16017
+ key: string;
16018
+ shift?: boolean | undefined;
16019
+ alt?: boolean | undefined;
16020
+ meta?: boolean | undefined;
16021
+ ctrl?: boolean | undefined;
16022
+ };
16023
+ commandId: string;
16024
+ targetElementId?: string | undefined;
16025
+ }[];
16026
+ 'Comfy.Keybinding.NewBindings': {
16027
+ combo: {
16028
+ key: string;
16029
+ shift?: boolean | undefined;
16030
+ alt?: boolean | undefined;
16031
+ meta?: boolean | undefined;
16032
+ ctrl?: boolean | undefined;
16033
+ };
16034
+ commandId: string;
16035
+ targetElementId?: string | undefined;
16036
+ }[];
16037
+ 'Comfy.Extension.Disabled': string[];
16038
+ 'Comfy.LinkRenderMode': number;
16039
+ 'Comfy.Node.AutoSnapLinkToSlot': boolean;
16040
+ 'Comfy.Node.SnapHighlightsNode': boolean;
16041
+ 'Comfy.Server.ServerConfigValues': Record<string, any>;
16042
+ 'Comfy.Server.LaunchArgs': Record<string, string>;
16043
+ 'LiteGraph.Canvas.MaximumFps': number;
16044
+ 'Comfy.Workflow.ConfirmDelete': boolean;
16045
+ 'Comfy.Workflow.AutoSaveDelay': number;
16046
+ 'Comfy.Workflow.AutoSave': "off" | "after delay";
16047
+ 'Comfy.RerouteBeta': boolean;
16048
+ 'LiteGraph.Canvas.MinFontSizeForLOD': number;
16049
+ 'Comfy.Canvas.SelectionToolbox': boolean;
16050
+ 'LiteGraph.Node.TooltipDelay': number;
16051
+ 'LiteGraph.ContextMenu.Scaling': boolean;
16052
+ 'LiteGraph.Reroute.SplineOffset': number;
16053
+ 'LiteGraph.Canvas.LowQualityRenderingZoomThreshold': number;
16054
+ 'Comfy.Toast.DisableReconnectingToast': boolean;
16055
+ 'Comfy.Workflow.Persist': boolean;
16056
+ 'Comfy.TutorialCompleted': boolean;
16057
+ 'Comfy.InstalledVersion': string | null;
16058
+ 'Comfy.Node.AllowImageSizeDraw': boolean;
16059
+ 'Comfy.Minimap.Visible': boolean;
16060
+ 'Comfy.Minimap.NodeColors': boolean;
16061
+ 'Comfy.Minimap.ShowLinks': boolean;
16062
+ 'Comfy.Minimap.ShowGroups': boolean;
16063
+ 'Comfy.Minimap.RenderBypassState': boolean;
16064
+ 'Comfy.Minimap.RenderErrorState': boolean;
16065
+ 'Comfy.Canvas.NavigationMode': string;
16066
+ 'Comfy.Canvas.LeftMouseClickBehavior': string;
16067
+ 'Comfy.Canvas.MouseWheelScroll': string;
16068
+ 'Comfy.VueNodes.Enabled': boolean;
16069
+ 'Comfy.VueNodes.AutoScaleLayout': boolean;
16070
+ 'Comfy.Assets.UseAssetAPI': boolean;
16071
+ 'Comfy.Queue.QPOV2': boolean;
16072
+ 'Comfy-Desktop.AutoUpdate': boolean;
16073
+ 'Comfy-Desktop.SendStatistics': boolean;
16074
+ 'Comfy-Desktop.WindowStyle': string;
16075
+ 'Comfy-Desktop.UV.PythonInstallMirror': string;
16076
+ 'Comfy-Desktop.UV.PypiInstallMirror': string;
16077
+ 'Comfy-Desktop.UV.TorchInstallMirror': string;
16078
+ 'Comfy.MaskEditor.BrushAdjustmentSpeed': number;
16079
+ 'Comfy.MaskEditor.UseDominantAxis': boolean;
16080
+ 'Comfy.Load3D.ShowGrid': boolean;
16081
+ 'Comfy.Load3D.BackgroundColor': string;
16082
+ 'Comfy.Load3D.LightIntensity': number;
16083
+ 'Comfy.Load3D.LightIntensityMaximum': number;
16084
+ 'Comfy.Load3D.LightIntensityMinimum': number;
16085
+ 'Comfy.Load3D.LightAdjustmentIncrement': number;
16086
+ 'Comfy.Load3D.CameraType': "perspective" | "orthographic";
16087
+ 'Comfy.Load3D.3DViewerEnable': boolean;
16088
+ 'Comfy.Load3D.PLYEngine': "threejs" | "fastply" | "sparkjs";
16089
+ 'Comfy.Memory.AllowManualUnload': boolean;
16090
+ 'pysssss.SnapToGrid': boolean;
16091
+ 'VHS.AdvancedPreviews': string;
16092
+ 'Comfy.Release.Version': string;
16093
+ 'Comfy.Release.Status': "skipped" | "changelog seen" | "what's new seen";
16094
+ 'Comfy.Release.Timestamp': number;
16095
+ 'Comfy.Templates.SelectedModels': string[];
16096
+ 'Comfy.Templates.SelectedUseCases': string[];
16097
+ 'Comfy.Templates.SelectedRunsOn': string[];
16098
+ 'Comfy.Templates.SortBy': "default" | "recommended" | "alphabetical" | "popular" | "newest" | "vram-low-to-high" | "model-size-low-to-high";
16099
+ 'LiteGraph.Node.DefaultPadding': boolean;
16100
+ 'LiteGraph.Pointer.TrackpadGestures': boolean;
16101
+ 'Comfy.VersionCompatibility.DisableWarnings': boolean;
16102
+ 'Comfy.RightSidePanel.IsOpen': boolean;
16103
+ 'Comfy.Canvas.BackgroundImage'?: string | undefined;
16104
+ 'test.setting'?: any;
16105
+ 'main.sub.setting.name'?: any;
16106
+ 'single.setting'?: any;
16107
+ }>;
16108
+
16109
+ declare const zStatusWsMessage: z.ZodObject<{
16110
+ status: z.ZodOptional<z.ZodNullable<z.ZodObject<{
16111
+ exec_info: z.ZodObject<{
16112
+ queue_remaining: z.ZodNumber;
16113
+ }, "strip", z.ZodTypeAny, {
16114
+ queue_remaining: number;
16115
+ }, {
16116
+ queue_remaining: number;
16117
+ }>;
16118
+ }, "strip", z.ZodTypeAny, {
16119
+ exec_info: {
16120
+ queue_remaining: number;
16121
+ };
16122
+ }, {
16123
+ exec_info: {
16124
+ queue_remaining: number;
16125
+ };
16126
+ }>>>;
16127
+ sid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16128
+ }, "strip", z.ZodTypeAny, {
16129
+ status?: {
16130
+ exec_info: {
16131
+ queue_remaining: number;
16132
+ };
16133
+ } | null | undefined;
16134
+ sid?: string | null | undefined;
16135
+ }, {
16136
+ status?: {
16137
+ exec_info: {
16138
+ queue_remaining: number;
16139
+ };
16140
+ } | null | undefined;
16141
+ sid?: string | null | undefined;
16142
+ }>;
16143
+
16144
+ declare const zStatusWsMessageStatus: z.ZodObject<{
16145
+ exec_info: z.ZodObject<{
16146
+ queue_remaining: z.ZodNumber;
16147
+ }, "strip", z.ZodTypeAny, {
16148
+ queue_remaining: number;
16149
+ }, {
16150
+ queue_remaining: number;
16151
+ }>;
16152
+ }, "strip", z.ZodTypeAny, {
16153
+ exec_info: {
16154
+ queue_remaining: number;
16155
+ };
16156
+ }, {
16157
+ exec_info: {
16158
+ queue_remaining: number;
16159
+ };
16160
+ }>;
16161
+
16162
+ declare const zSystemStats: z.ZodObject<{
16163
+ system: z.ZodObject<{
16164
+ os: z.ZodString;
16165
+ python_version: z.ZodString;
16166
+ embedded_python: z.ZodBoolean;
16167
+ comfyui_version: z.ZodString;
16168
+ pytorch_version: z.ZodString;
16169
+ required_frontend_version: z.ZodOptional<z.ZodString>;
16170
+ argv: z.ZodArray<z.ZodString, "many">;
16171
+ ram_total: z.ZodNumber;
16172
+ ram_free: z.ZodNumber;
16173
+ cloud_version: z.ZodOptional<z.ZodString>;
16174
+ comfyui_frontend_version: z.ZodOptional<z.ZodString>;
16175
+ workflow_templates_version: z.ZodOptional<z.ZodString>;
16176
+ }, "strip", z.ZodTypeAny, {
16177
+ comfyui_version: string;
16178
+ os: string;
16179
+ python_version: string;
16180
+ embedded_python: boolean;
16181
+ pytorch_version: string;
16182
+ argv: string[];
16183
+ ram_total: number;
16184
+ ram_free: number;
16185
+ required_frontend_version?: string | undefined;
16186
+ cloud_version?: string | undefined;
16187
+ comfyui_frontend_version?: string | undefined;
16188
+ workflow_templates_version?: string | undefined;
16189
+ }, {
16190
+ comfyui_version: string;
16191
+ os: string;
16192
+ python_version: string;
16193
+ embedded_python: boolean;
16194
+ pytorch_version: string;
16195
+ argv: string[];
16196
+ ram_total: number;
16197
+ ram_free: number;
16198
+ required_frontend_version?: string | undefined;
16199
+ cloud_version?: string | undefined;
16200
+ comfyui_frontend_version?: string | undefined;
16201
+ workflow_templates_version?: string | undefined;
16202
+ }>;
16203
+ devices: z.ZodArray<z.ZodObject<{
16204
+ name: z.ZodString;
16205
+ type: z.ZodString;
16206
+ index: z.ZodNumber;
16207
+ vram_total: z.ZodNumber;
16208
+ vram_free: z.ZodNumber;
16209
+ torch_vram_total: z.ZodNumber;
16210
+ torch_vram_free: z.ZodNumber;
16211
+ }, "strip", z.ZodTypeAny, {
16212
+ type: string;
16213
+ name: string;
16214
+ index: number;
16215
+ vram_total: number;
16216
+ vram_free: number;
16217
+ torch_vram_total: number;
16218
+ torch_vram_free: number;
16219
+ }, {
16220
+ type: string;
16221
+ name: string;
16222
+ index: number;
16223
+ vram_total: number;
16224
+ vram_free: number;
16225
+ torch_vram_total: number;
16226
+ torch_vram_free: number;
16227
+ }>, "many">;
16228
+ }, "strip", z.ZodTypeAny, {
16229
+ devices: {
16230
+ type: string;
16231
+ name: string;
16232
+ index: number;
16233
+ vram_total: number;
16234
+ vram_free: number;
16235
+ torch_vram_total: number;
16236
+ torch_vram_free: number;
16237
+ }[];
16238
+ system: {
16239
+ comfyui_version: string;
16240
+ os: string;
16241
+ python_version: string;
16242
+ embedded_python: boolean;
16243
+ pytorch_version: string;
16244
+ argv: string[];
16245
+ ram_total: number;
16246
+ ram_free: number;
16247
+ required_frontend_version?: string | undefined;
16248
+ cloud_version?: string | undefined;
16249
+ comfyui_frontend_version?: string | undefined;
16250
+ workflow_templates_version?: string | undefined;
16251
+ };
16252
+ }, {
16253
+ devices: {
16254
+ type: string;
16255
+ name: string;
16256
+ index: number;
16257
+ vram_total: number;
16258
+ vram_free: number;
16259
+ torch_vram_total: number;
16260
+ torch_vram_free: number;
16261
+ }[];
16262
+ system: {
16263
+ comfyui_version: string;
16264
+ os: string;
16265
+ python_version: string;
16266
+ embedded_python: boolean;
16267
+ pytorch_version: string;
16268
+ argv: string[];
16269
+ ram_total: number;
16270
+ ram_free: number;
16271
+ required_frontend_version?: string | undefined;
16272
+ cloud_version?: string | undefined;
16273
+ comfyui_frontend_version?: string | undefined;
16274
+ workflow_templates_version?: string | undefined;
16275
+ };
16276
+ }>;
16277
+
16278
+ declare const zTerminalSize: z.ZodObject<{
16279
+ cols: z.ZodNumber;
16280
+ row: z.ZodNumber;
16281
+ }, "strip", z.ZodTypeAny, {
16282
+ cols: number;
16283
+ row: number;
16284
+ }, {
16285
+ cols: number;
16286
+ row: number;
16287
+ }>;
16288
+
16289
+ declare const zUser: z.ZodObject<{
16290
+ storage: z.ZodEnum<["server"]>;
16291
+ migrated: z.ZodOptional<z.ZodBoolean>;
16292
+ users: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
16293
+ }, "strip", z.ZodTypeAny, {
16294
+ storage: "server";
16295
+ migrated?: boolean | undefined;
16296
+ users?: Record<string, string> | undefined;
16297
+ }, {
16298
+ storage: "server";
16299
+ migrated?: boolean | undefined;
16300
+ users?: Record<string, string> | undefined;
16301
+ }>;
16302
+
16303
+ declare const zUserData: z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">;
16304
+
16305
+ declare const zUserDataFullInfo: z.ZodObject<{
16306
+ path: z.ZodString;
16307
+ size: z.ZodNumber;
16308
+ modified: z.ZodNumber;
16309
+ }, "strip", z.ZodTypeAny, {
16310
+ size: number;
16311
+ path: string;
16312
+ modified: number;
16313
+ }, {
16314
+ size: number;
16315
+ path: string;
16316
+ modified: number;
16317
+ }>;
16318
+
12121
16319
  export { }