@comfyorg/comfyui-frontend-types 1.6.11 → 1.6.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +278 -1108
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -54,14 +54,6 @@ declare interface BaseBottomPanelExtension {
|
|
|
54
54
|
title: string;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
declare interface BaseInputSpec<T = any> {
|
|
58
|
-
name: string;
|
|
59
|
-
type: string;
|
|
60
|
-
tooltip?: string;
|
|
61
|
-
default?: T;
|
|
62
|
-
forceInput?: boolean;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
57
|
declare interface BaseSidebarTabExtension {
|
|
66
58
|
id: string;
|
|
67
59
|
title: string;
|
|
@@ -191,6 +183,13 @@ export declare class ComfyApi extends EventTarget {
|
|
|
191
183
|
* Gets a list of extension urls
|
|
192
184
|
*/
|
|
193
185
|
getExtensions(): Promise<ExtensionsResponse>;
|
|
186
|
+
/**
|
|
187
|
+
* Gets the available workflow templates from custom nodes.
|
|
188
|
+
* @returns A map of custom_node names and associated template workflow names.
|
|
189
|
+
*/
|
|
190
|
+
getWorkflowTemplates(): Promise<{
|
|
191
|
+
[customNodesName: string]: string[];
|
|
192
|
+
}>;
|
|
194
193
|
/**
|
|
195
194
|
* Gets a list of embedding names
|
|
196
195
|
*/
|
|
@@ -515,11 +514,8 @@ export declare class ComfyApp {
|
|
|
515
514
|
* Clean current state
|
|
516
515
|
*/
|
|
517
516
|
clean(): void;
|
|
518
|
-
addNodeOnGraph(nodeDef: ComfyNodeDef | ComfyNodeDefImpl, options?: Record<string, any>): LGraphNode;
|
|
519
517
|
clientPosToCanvasPos(pos: Vector2): Vector2;
|
|
520
518
|
canvasPosToClientPos(pos: Vector2): Vector2;
|
|
521
|
-
getCanvasCenter(): Vector2;
|
|
522
|
-
goToNode(nodeId: NodeId): void;
|
|
523
519
|
}
|
|
524
520
|
|
|
525
521
|
declare class ComfyAppMenu {
|
|
@@ -707,20 +703,6 @@ export declare class ComfyApp {
|
|
|
707
703
|
[key: string]: any;
|
|
708
704
|
}
|
|
709
705
|
|
|
710
|
-
declare type ComfyInputsSpec = z.infer<typeof zComfyInputsSpec>;
|
|
711
|
-
|
|
712
|
-
declare class ComfyInputsSpec_2 {
|
|
713
|
-
required: Record<string, BaseInputSpec>;
|
|
714
|
-
optional: Record<string, BaseInputSpec>;
|
|
715
|
-
hidden?: Record<string, any>;
|
|
716
|
-
constructor(obj: ComfyInputsSpec);
|
|
717
|
-
private static transformInputSpecRecord;
|
|
718
|
-
private static isInputSpec;
|
|
719
|
-
private static transformSingleInputSpec;
|
|
720
|
-
get all(): BaseInputSpec<any>[];
|
|
721
|
-
getInput(name: string): BaseInputSpec | undefined;
|
|
722
|
-
}
|
|
723
|
-
|
|
724
706
|
declare class ComfyList {
|
|
725
707
|
#private;
|
|
726
708
|
element: HTMLDivElement;
|
|
@@ -736,69 +718,6 @@ export declare class ComfyApp {
|
|
|
736
718
|
|
|
737
719
|
declare type ComfyNodeDef = z.infer<typeof zComfyNodeDef>;
|
|
738
720
|
|
|
739
|
-
declare class ComfyNodeDefImpl implements ComfyNodeDef {
|
|
740
|
-
readonly name: string;
|
|
741
|
-
readonly display_name: string;
|
|
742
|
-
/**
|
|
743
|
-
* Category is not marked as readonly as the bookmark system
|
|
744
|
-
* needs to write to it to assign a node to a custom folder.
|
|
745
|
-
*/
|
|
746
|
-
category: string;
|
|
747
|
-
readonly python_module: string;
|
|
748
|
-
readonly description: string;
|
|
749
|
-
readonly deprecated: boolean;
|
|
750
|
-
readonly experimental: boolean;
|
|
751
|
-
readonly output_node: boolean;
|
|
752
|
-
/**
|
|
753
|
-
* @deprecated Use `inputs` instead
|
|
754
|
-
*/
|
|
755
|
-
readonly input: ComfyInputsSpec;
|
|
756
|
-
/**
|
|
757
|
-
* @deprecated Use `outputs` instead
|
|
758
|
-
*/
|
|
759
|
-
readonly output: ComfyOutputTypesSpec;
|
|
760
|
-
/**
|
|
761
|
-
* @deprecated Use `outputs[n].is_list` instead
|
|
762
|
-
*/
|
|
763
|
-
readonly output_is_list?: boolean[];
|
|
764
|
-
/**
|
|
765
|
-
* @deprecated Use `outputs[n].name` instead
|
|
766
|
-
*/
|
|
767
|
-
readonly output_name?: string[];
|
|
768
|
-
/**
|
|
769
|
-
* @deprecated Use `outputs[n].tooltip` instead
|
|
770
|
-
*/
|
|
771
|
-
readonly output_tooltips?: string[];
|
|
772
|
-
readonly inputs: ComfyInputsSpec_2;
|
|
773
|
-
readonly outputs: ComfyOutputsSpec;
|
|
774
|
-
readonly nodeSource: NodeSource;
|
|
775
|
-
constructor(obj: ComfyNodeDef);
|
|
776
|
-
private static transformOutputSpec;
|
|
777
|
-
get nodePath(): string;
|
|
778
|
-
get isDummyFolder(): boolean;
|
|
779
|
-
postProcessSearchScores(scores: SearchAuxScore): SearchAuxScore;
|
|
780
|
-
get isCoreNode(): boolean;
|
|
781
|
-
get nodeLifeCycleBadgeText(): string;
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
declare class ComfyOutputSpec {
|
|
785
|
-
index: number;
|
|
786
|
-
name: string;
|
|
787
|
-
type: string;
|
|
788
|
-
is_list: boolean;
|
|
789
|
-
comboOptions?: any[];
|
|
790
|
-
tooltip?: string;
|
|
791
|
-
constructor(index: number, name: string, type: string, is_list: boolean, comboOptions?: any[], tooltip?: string);
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
declare class ComfyOutputsSpec {
|
|
795
|
-
outputs: ComfyOutputSpec[];
|
|
796
|
-
constructor(outputs: ComfyOutputSpec[]);
|
|
797
|
-
get all(): ComfyOutputSpec[];
|
|
798
|
-
}
|
|
799
|
-
|
|
800
|
-
declare type ComfyOutputTypesSpec = z.infer<typeof zComfyOutputTypesSpec>;
|
|
801
|
-
|
|
802
721
|
declare class ComfyPopup extends EventTarget {
|
|
803
722
|
#private;
|
|
804
723
|
element: HTMLElement;
|
|
@@ -961,6 +880,8 @@ export declare class ComfyApp {
|
|
|
961
880
|
/** Keys (names) of API events that pass a {@link CustomEvent} `detail` object. */
|
|
962
881
|
declare type ComplexApiEvents = keyof NeverNever<ApiEventTypes>;
|
|
963
882
|
|
|
883
|
+
declare type ConfirmationDialogType = 'default' | 'overwrite' | 'delete' | 'dirtyClose' | 'reinstall';
|
|
884
|
+
|
|
964
885
|
declare type CustomBottomPanelExtension = BaseBottomPanelExtension & CustomExtension;
|
|
965
886
|
|
|
966
887
|
declare interface CustomExtension {
|
|
@@ -991,6 +912,7 @@ export declare class ComfyApp {
|
|
|
991
912
|
unregisterSidebarTab(id: string): void;
|
|
992
913
|
getSidebarTabs(): SidebarTabExtension[];
|
|
993
914
|
toast: ToastManager;
|
|
915
|
+
dialog: ReturnType<typeof useDialogService>;
|
|
994
916
|
command: CommandManager;
|
|
995
917
|
setting: {
|
|
996
918
|
get: (id: string) => any;
|
|
@@ -1076,19 +998,6 @@ export declare class ComfyApp {
|
|
|
1076
998
|
|
|
1077
999
|
declare type NodeId = z.infer<typeof zNodeId>;
|
|
1078
1000
|
|
|
1079
|
-
declare type NodeSource = {
|
|
1080
|
-
type: NodeSourceType;
|
|
1081
|
-
className: string;
|
|
1082
|
-
displayText: string;
|
|
1083
|
-
badgeText: string;
|
|
1084
|
-
};
|
|
1085
|
-
|
|
1086
|
-
declare enum NodeSourceType {
|
|
1087
|
-
Core = "core",
|
|
1088
|
-
CustomNodes = "custom_nodes",
|
|
1089
|
-
Unknown = "unknown"
|
|
1090
|
-
}
|
|
1091
|
-
|
|
1092
1001
|
declare type PendingTaskItem = z.infer<typeof zPendingTaskItem>;
|
|
1093
1002
|
|
|
1094
1003
|
/** {@link Pick} only properties that evaluate to `never`. */
|
|
@@ -1102,8 +1011,6 @@ export declare class ComfyApp {
|
|
|
1102
1011
|
|
|
1103
1012
|
declare type RunningTaskItem = z.infer<typeof zRunningTaskItem>;
|
|
1104
1013
|
|
|
1105
|
-
declare type SearchAuxScore = number[];
|
|
1106
|
-
|
|
1107
1014
|
declare type SettingCustomRenderer = (name: string, setter: (v: any) => void, value: any, attrs: any) => HTMLElement;
|
|
1108
1015
|
|
|
1109
1016
|
declare type SettingInputType = 'boolean' | 'number' | 'slider' | 'combo' | 'text' | 'image' | 'color' | 'hidden';
|
|
@@ -1184,6 +1091,37 @@ export declare class ComfyApp {
|
|
|
1184
1091
|
contentStyleClass?: any;
|
|
1185
1092
|
}
|
|
1186
1093
|
|
|
1094
|
+
declare const useDialogService: () => {
|
|
1095
|
+
showLoadWorkflowWarning: (props: {
|
|
1096
|
+
missingNodeTypes: MissingNodeType[];
|
|
1097
|
+
[key: string]: any;
|
|
1098
|
+
}) => void;
|
|
1099
|
+
showMissingModelsWarning: (props: {
|
|
1100
|
+
missingModels: any[];
|
|
1101
|
+
paths: Record<string, string[]>;
|
|
1102
|
+
[key: string]: any;
|
|
1103
|
+
}) => void;
|
|
1104
|
+
showSettingsDialog: (panel?: "about" | "keybinding" | "extension" | "server-config") => void;
|
|
1105
|
+
showAboutDialog: () => void;
|
|
1106
|
+
showExecutionErrorDialog: (error: ExecutionErrorWsMessage) => void;
|
|
1107
|
+
showTemplateWorkflowsDialog: () => void;
|
|
1108
|
+
prompt: ({ title, message, defaultValue }: {
|
|
1109
|
+
title: string;
|
|
1110
|
+
message: string;
|
|
1111
|
+
defaultValue?: string;
|
|
1112
|
+
}) => Promise<string | null>;
|
|
1113
|
+
confirm: ({ title, message, type, itemList }: {
|
|
1114
|
+
/** Dialog heading */
|
|
1115
|
+
title: string;
|
|
1116
|
+
/** The main message body */
|
|
1117
|
+
message: string;
|
|
1118
|
+
/** Pre-configured dialog type */
|
|
1119
|
+
type?: ConfirmationDialogType;
|
|
1120
|
+
/** Displayed as an unorderd list immediately below the message body */
|
|
1121
|
+
itemList?: string[];
|
|
1122
|
+
}) => Promise<boolean | null>;
|
|
1123
|
+
};
|
|
1124
|
+
|
|
1187
1125
|
declare type User = z.infer<typeof zUser>;
|
|
1188
1126
|
|
|
1189
1127
|
declare type UserDataFullInfo = z.infer<typeof zUserDataFullInfo>;
|
|
@@ -1274,800 +1212,6 @@ export declare class ComfyApp {
|
|
|
1274
1212
|
|
|
1275
1213
|
declare type Widgets = Record<string, ComfyWidgetConstructor>;
|
|
1276
1214
|
|
|
1277
|
-
declare const zComfyInputsSpec: z.ZodObject<{
|
|
1278
|
-
required: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodTuple<[z.ZodLiteral<"INT">, z.ZodObject<z.objectUtil.extendShape<{
|
|
1279
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1280
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1281
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1282
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1283
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1284
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1285
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1286
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1287
|
-
}, {
|
|
1288
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1289
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1290
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1291
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1292
|
-
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
1293
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1294
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1295
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1296
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1297
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1298
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1299
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1300
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1301
|
-
}, {
|
|
1302
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1303
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1304
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1305
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1306
|
-
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
1307
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1308
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1309
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1310
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1311
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1312
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1313
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1314
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1315
|
-
}, {
|
|
1316
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1317
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1318
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1319
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1320
|
-
}>, z.ZodTypeAny, "passthrough">>], null>, z.ZodEffects<z.ZodTuple<[z.ZodLiteral<"INT">], null>, ("INT" | {})[], ["INT", ...unknown[]]>, ...z.ZodEffects<z.ZodLiteral<"INT">, any[], "INT">[]]>, z.ZodUnion<[z.ZodTuple<[z.ZodLiteral<"FLOAT">, z.ZodObject<z.objectUtil.extendShape<{
|
|
1321
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1322
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1323
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1324
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1325
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1326
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1327
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1328
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1329
|
-
}, {
|
|
1330
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1331
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1332
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1333
|
-
round: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<false>]>>;
|
|
1334
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1335
|
-
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
1336
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1337
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1338
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1339
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1340
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1341
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1342
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1343
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1344
|
-
}, {
|
|
1345
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1346
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1347
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1348
|
-
round: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<false>]>>;
|
|
1349
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1350
|
-
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
1351
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1352
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1353
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1354
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1355
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1356
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1357
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1358
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1359
|
-
}, {
|
|
1360
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1361
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1362
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1363
|
-
round: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<false>]>>;
|
|
1364
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1365
|
-
}>, z.ZodTypeAny, "passthrough">>], null>, z.ZodEffects<z.ZodTuple<[z.ZodLiteral<"FLOAT">], null>, ("FLOAT" | {})[], ["FLOAT", ...unknown[]]>, ...z.ZodEffects<z.ZodLiteral<"FLOAT">, any[], "FLOAT">[]]>, z.ZodUnion<[z.ZodTuple<[z.ZodLiteral<"BOOLEAN">, z.ZodObject<z.objectUtil.extendShape<{
|
|
1366
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1367
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1368
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1369
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1370
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1371
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1372
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1373
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1374
|
-
}, {
|
|
1375
|
-
label_on: z.ZodOptional<z.ZodString>;
|
|
1376
|
-
label_off: z.ZodOptional<z.ZodString>;
|
|
1377
|
-
default: z.ZodOptional<z.ZodBoolean>;
|
|
1378
|
-
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
1379
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1380
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1381
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1382
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1383
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1384
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1385
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1386
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1387
|
-
}, {
|
|
1388
|
-
label_on: z.ZodOptional<z.ZodString>;
|
|
1389
|
-
label_off: z.ZodOptional<z.ZodString>;
|
|
1390
|
-
default: z.ZodOptional<z.ZodBoolean>;
|
|
1391
|
-
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
1392
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1393
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1394
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1395
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1396
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1397
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1398
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1399
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1400
|
-
}, {
|
|
1401
|
-
label_on: z.ZodOptional<z.ZodString>;
|
|
1402
|
-
label_off: z.ZodOptional<z.ZodString>;
|
|
1403
|
-
default: z.ZodOptional<z.ZodBoolean>;
|
|
1404
|
-
}>, z.ZodTypeAny, "passthrough">>], null>, z.ZodEffects<z.ZodTuple<[z.ZodLiteral<"BOOLEAN">], null>, ("BOOLEAN" | {})[], ["BOOLEAN", ...unknown[]]>, ...z.ZodEffects<z.ZodLiteral<"BOOLEAN">, any[], "BOOLEAN">[]]>, z.ZodUnion<[z.ZodTuple<[z.ZodLiteral<"STRING">, z.ZodObject<z.objectUtil.extendShape<{
|
|
1405
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1406
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1407
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1408
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1409
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1410
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1411
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1412
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1413
|
-
}, {
|
|
1414
|
-
default: z.ZodOptional<z.ZodString>;
|
|
1415
|
-
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
1416
|
-
dynamicPrompts: z.ZodOptional<z.ZodBoolean>;
|
|
1417
|
-
defaultVal: z.ZodOptional<z.ZodString>;
|
|
1418
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
1419
|
-
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
1420
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1421
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1422
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1423
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1424
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1425
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1426
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1427
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1428
|
-
}, {
|
|
1429
|
-
default: z.ZodOptional<z.ZodString>;
|
|
1430
|
-
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
1431
|
-
dynamicPrompts: z.ZodOptional<z.ZodBoolean>;
|
|
1432
|
-
defaultVal: z.ZodOptional<z.ZodString>;
|
|
1433
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
1434
|
-
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
1435
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1436
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1437
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1438
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1439
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1440
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1441
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1442
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1443
|
-
}, {
|
|
1444
|
-
default: z.ZodOptional<z.ZodString>;
|
|
1445
|
-
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
1446
|
-
dynamicPrompts: z.ZodOptional<z.ZodBoolean>;
|
|
1447
|
-
defaultVal: z.ZodOptional<z.ZodString>;
|
|
1448
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
1449
|
-
}>, z.ZodTypeAny, "passthrough">>], null>, z.ZodEffects<z.ZodTuple<[z.ZodLiteral<"STRING">], null>, ("STRING" | {})[], ["STRING", ...unknown[]]>, ...z.ZodEffects<z.ZodLiteral<"STRING">, any[], "STRING">[]]>, z.ZodUnion<[z.ZodTuple<[z.ZodArray<z.ZodAny, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
|
1450
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1451
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1452
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1453
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1454
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1455
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1456
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1457
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1458
|
-
}, {
|
|
1459
|
-
control_after_generate: z.ZodOptional<z.ZodBoolean>;
|
|
1460
|
-
image_upload: z.ZodOptional<z.ZodBoolean>;
|
|
1461
|
-
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
1462
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1463
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1464
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1465
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1466
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1467
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1468
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1469
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1470
|
-
}, {
|
|
1471
|
-
control_after_generate: z.ZodOptional<z.ZodBoolean>;
|
|
1472
|
-
image_upload: z.ZodOptional<z.ZodBoolean>;
|
|
1473
|
-
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
1474
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1475
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1476
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1477
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1478
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1479
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1480
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1481
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1482
|
-
}, {
|
|
1483
|
-
control_after_generate: z.ZodOptional<z.ZodBoolean>;
|
|
1484
|
-
image_upload: z.ZodOptional<z.ZodBoolean>;
|
|
1485
|
-
}>, z.ZodTypeAny, "passthrough">>], null>, z.ZodEffects<z.ZodTuple<[z.ZodArray<z.ZodAny, "many">], null>, (any[] | {})[], [any[], ...unknown[]]>, ...z.ZodEffects<z.ZodArray<z.ZodAny, "many">, any[], any[]>[]]>, z.ZodUnion<[z.ZodTuple<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1486
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1487
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1488
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1489
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1490
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1491
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1492
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1493
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1494
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1495
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1496
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1497
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1498
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1499
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1500
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1501
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1502
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1503
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1504
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1505
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1506
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1507
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1508
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1509
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1510
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1511
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1512
|
-
}, z.ZodTypeAny, "passthrough">>], null>, z.ZodEffects<z.ZodTuple<[z.ZodEffects<z.ZodString, string, string>], null>, (string | {})[], [string, ...unknown[]]>, ...z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, any[], string>[]]>]>>>;
|
|
1513
|
-
optional: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodTuple<[z.ZodLiteral<"INT">, z.ZodObject<z.objectUtil.extendShape<{
|
|
1514
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1515
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1516
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1517
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1518
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1519
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1520
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1521
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1522
|
-
}, {
|
|
1523
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1524
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1525
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1526
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1527
|
-
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
1528
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1529
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1530
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1531
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1532
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1533
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1534
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1535
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1536
|
-
}, {
|
|
1537
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1538
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1539
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1540
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1541
|
-
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
1542
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1543
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1544
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1545
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1546
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1547
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1548
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1549
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1550
|
-
}, {
|
|
1551
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1552
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1553
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1554
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1555
|
-
}>, z.ZodTypeAny, "passthrough">>], null>, z.ZodEffects<z.ZodTuple<[z.ZodLiteral<"INT">], null>, ("INT" | {})[], ["INT", ...unknown[]]>, ...z.ZodEffects<z.ZodLiteral<"INT">, any[], "INT">[]]>, z.ZodUnion<[z.ZodTuple<[z.ZodLiteral<"FLOAT">, z.ZodObject<z.objectUtil.extendShape<{
|
|
1556
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1557
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1558
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1559
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1560
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1561
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1562
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1563
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1564
|
-
}, {
|
|
1565
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1566
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1567
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1568
|
-
round: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<false>]>>;
|
|
1569
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1570
|
-
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
1571
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1572
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1573
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1574
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1575
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1576
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1577
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1578
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1579
|
-
}, {
|
|
1580
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1581
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1582
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1583
|
-
round: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<false>]>>;
|
|
1584
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1585
|
-
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
1586
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1587
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1588
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1589
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1590
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1591
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1592
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1593
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1594
|
-
}, {
|
|
1595
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1596
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1597
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1598
|
-
round: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<false>]>>;
|
|
1599
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1600
|
-
}>, z.ZodTypeAny, "passthrough">>], null>, z.ZodEffects<z.ZodTuple<[z.ZodLiteral<"FLOAT">], null>, ("FLOAT" | {})[], ["FLOAT", ...unknown[]]>, ...z.ZodEffects<z.ZodLiteral<"FLOAT">, any[], "FLOAT">[]]>, z.ZodUnion<[z.ZodTuple<[z.ZodLiteral<"BOOLEAN">, z.ZodObject<z.objectUtil.extendShape<{
|
|
1601
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1602
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1603
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1604
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1605
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1606
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1607
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1608
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1609
|
-
}, {
|
|
1610
|
-
label_on: z.ZodOptional<z.ZodString>;
|
|
1611
|
-
label_off: z.ZodOptional<z.ZodString>;
|
|
1612
|
-
default: z.ZodOptional<z.ZodBoolean>;
|
|
1613
|
-
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
1614
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1615
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1616
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1617
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1618
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1619
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1620
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1621
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1622
|
-
}, {
|
|
1623
|
-
label_on: z.ZodOptional<z.ZodString>;
|
|
1624
|
-
label_off: z.ZodOptional<z.ZodString>;
|
|
1625
|
-
default: z.ZodOptional<z.ZodBoolean>;
|
|
1626
|
-
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
1627
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1628
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1629
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1630
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1631
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1632
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1633
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1634
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1635
|
-
}, {
|
|
1636
|
-
label_on: z.ZodOptional<z.ZodString>;
|
|
1637
|
-
label_off: z.ZodOptional<z.ZodString>;
|
|
1638
|
-
default: z.ZodOptional<z.ZodBoolean>;
|
|
1639
|
-
}>, z.ZodTypeAny, "passthrough">>], null>, z.ZodEffects<z.ZodTuple<[z.ZodLiteral<"BOOLEAN">], null>, ("BOOLEAN" | {})[], ["BOOLEAN", ...unknown[]]>, ...z.ZodEffects<z.ZodLiteral<"BOOLEAN">, any[], "BOOLEAN">[]]>, z.ZodUnion<[z.ZodTuple<[z.ZodLiteral<"STRING">, z.ZodObject<z.objectUtil.extendShape<{
|
|
1640
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1641
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1642
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1643
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1644
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1645
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1646
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1647
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1648
|
-
}, {
|
|
1649
|
-
default: z.ZodOptional<z.ZodString>;
|
|
1650
|
-
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
1651
|
-
dynamicPrompts: z.ZodOptional<z.ZodBoolean>;
|
|
1652
|
-
defaultVal: z.ZodOptional<z.ZodString>;
|
|
1653
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
1654
|
-
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
1655
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1656
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1657
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1658
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1659
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1660
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1661
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1662
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1663
|
-
}, {
|
|
1664
|
-
default: z.ZodOptional<z.ZodString>;
|
|
1665
|
-
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
1666
|
-
dynamicPrompts: z.ZodOptional<z.ZodBoolean>;
|
|
1667
|
-
defaultVal: z.ZodOptional<z.ZodString>;
|
|
1668
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
1669
|
-
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
1670
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1671
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1672
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1673
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1674
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1675
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1676
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1677
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1678
|
-
}, {
|
|
1679
|
-
default: z.ZodOptional<z.ZodString>;
|
|
1680
|
-
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
1681
|
-
dynamicPrompts: z.ZodOptional<z.ZodBoolean>;
|
|
1682
|
-
defaultVal: z.ZodOptional<z.ZodString>;
|
|
1683
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
1684
|
-
}>, z.ZodTypeAny, "passthrough">>], null>, z.ZodEffects<z.ZodTuple<[z.ZodLiteral<"STRING">], null>, ("STRING" | {})[], ["STRING", ...unknown[]]>, ...z.ZodEffects<z.ZodLiteral<"STRING">, any[], "STRING">[]]>, z.ZodUnion<[z.ZodTuple<[z.ZodArray<z.ZodAny, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
|
1685
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1686
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1687
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1688
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1689
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1690
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1691
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1692
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1693
|
-
}, {
|
|
1694
|
-
control_after_generate: z.ZodOptional<z.ZodBoolean>;
|
|
1695
|
-
image_upload: z.ZodOptional<z.ZodBoolean>;
|
|
1696
|
-
}>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
|
|
1697
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1698
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1699
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1700
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1701
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1702
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1703
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1704
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1705
|
-
}, {
|
|
1706
|
-
control_after_generate: z.ZodOptional<z.ZodBoolean>;
|
|
1707
|
-
image_upload: z.ZodOptional<z.ZodBoolean>;
|
|
1708
|
-
}>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
|
|
1709
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1710
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1711
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1712
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1713
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1714
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1715
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1716
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1717
|
-
}, {
|
|
1718
|
-
control_after_generate: z.ZodOptional<z.ZodBoolean>;
|
|
1719
|
-
image_upload: z.ZodOptional<z.ZodBoolean>;
|
|
1720
|
-
}>, z.ZodTypeAny, "passthrough">>], null>, z.ZodEffects<z.ZodTuple<[z.ZodArray<z.ZodAny, "many">], null>, (any[] | {})[], [any[], ...unknown[]]>, ...z.ZodEffects<z.ZodArray<z.ZodAny, "many">, any[], any[]>[]]>, z.ZodUnion<[z.ZodTuple<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
1721
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1722
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1723
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1724
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1725
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1726
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1727
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1728
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1729
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1730
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1731
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1732
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1733
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1734
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1735
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1736
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1737
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1738
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1739
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1740
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1741
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1742
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1743
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1744
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1745
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1746
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1747
|
-
}, z.ZodTypeAny, "passthrough">>], null>, z.ZodEffects<z.ZodTuple<[z.ZodEffects<z.ZodString, string, string>], null>, (string | {})[], [string, ...unknown[]]>, ...z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, any[], string>[]]>]>>>;
|
|
1748
|
-
hidden: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1749
|
-
}, "strip", z.ZodTypeAny, {
|
|
1750
|
-
required?: Record<string, any[] | ("INT" | {})[] | ("FLOAT" | {})[] | ("BOOLEAN" | {})[] | ("STRING" | {})[] | (any[] | {})[] | (string | {})[] | ["INT", z.objectOutputType<z.objectUtil.extendShape<{
|
|
1751
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1752
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1753
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1754
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1755
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1756
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1757
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1758
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1759
|
-
}, {
|
|
1760
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1761
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1762
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1763
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1764
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | ["FLOAT", z.objectOutputType<z.objectUtil.extendShape<{
|
|
1765
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1766
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1767
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1768
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1769
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1770
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1771
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1772
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1773
|
-
}, {
|
|
1774
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1775
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1776
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1777
|
-
round: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<false>]>>;
|
|
1778
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1779
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | ["BOOLEAN", z.objectOutputType<z.objectUtil.extendShape<{
|
|
1780
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1781
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1782
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1783
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1784
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1785
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1786
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1787
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1788
|
-
}, {
|
|
1789
|
-
label_on: z.ZodOptional<z.ZodString>;
|
|
1790
|
-
label_off: z.ZodOptional<z.ZodString>;
|
|
1791
|
-
default: z.ZodOptional<z.ZodBoolean>;
|
|
1792
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | ["STRING", z.objectOutputType<z.objectUtil.extendShape<{
|
|
1793
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1794
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1795
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1796
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1797
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1798
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1799
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1800
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1801
|
-
}, {
|
|
1802
|
-
default: z.ZodOptional<z.ZodString>;
|
|
1803
|
-
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
1804
|
-
dynamicPrompts: z.ZodOptional<z.ZodBoolean>;
|
|
1805
|
-
defaultVal: z.ZodOptional<z.ZodString>;
|
|
1806
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
1807
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | [any[], z.objectOutputType<z.objectUtil.extendShape<{
|
|
1808
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1809
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1810
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1811
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1812
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1813
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1814
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1815
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1816
|
-
}, {
|
|
1817
|
-
control_after_generate: z.ZodOptional<z.ZodBoolean>;
|
|
1818
|
-
image_upload: z.ZodOptional<z.ZodBoolean>;
|
|
1819
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | [string, z.objectOutputType<{
|
|
1820
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1821
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1822
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1823
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1824
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1825
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1826
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1827
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1828
|
-
}, z.ZodTypeAny, "passthrough">, ...unknown[]]>;
|
|
1829
|
-
hidden?: Record<string, any>;
|
|
1830
|
-
optional?: Record<string, any[] | ("INT" | {})[] | ("FLOAT" | {})[] | ("BOOLEAN" | {})[] | ("STRING" | {})[] | (any[] | {})[] | (string | {})[] | ["INT", z.objectOutputType<z.objectUtil.extendShape<{
|
|
1831
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1832
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1833
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1834
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1835
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1836
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1837
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1838
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1839
|
-
}, {
|
|
1840
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1841
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1842
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1843
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1844
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | ["FLOAT", z.objectOutputType<z.objectUtil.extendShape<{
|
|
1845
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1846
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1847
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1848
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1849
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1850
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1851
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1852
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1853
|
-
}, {
|
|
1854
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1855
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1856
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1857
|
-
round: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<false>]>>;
|
|
1858
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1859
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | ["BOOLEAN", z.objectOutputType<z.objectUtil.extendShape<{
|
|
1860
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1861
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1862
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1863
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1864
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1865
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1866
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1867
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1868
|
-
}, {
|
|
1869
|
-
label_on: z.ZodOptional<z.ZodString>;
|
|
1870
|
-
label_off: z.ZodOptional<z.ZodString>;
|
|
1871
|
-
default: z.ZodOptional<z.ZodBoolean>;
|
|
1872
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | ["STRING", z.objectOutputType<z.objectUtil.extendShape<{
|
|
1873
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1874
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1875
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1876
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1877
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1878
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1879
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1880
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1881
|
-
}, {
|
|
1882
|
-
default: z.ZodOptional<z.ZodString>;
|
|
1883
|
-
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
1884
|
-
dynamicPrompts: z.ZodOptional<z.ZodBoolean>;
|
|
1885
|
-
defaultVal: z.ZodOptional<z.ZodString>;
|
|
1886
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
1887
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | [any[], z.objectOutputType<z.objectUtil.extendShape<{
|
|
1888
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1889
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1890
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1891
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1892
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1893
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1894
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1895
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1896
|
-
}, {
|
|
1897
|
-
control_after_generate: z.ZodOptional<z.ZodBoolean>;
|
|
1898
|
-
image_upload: z.ZodOptional<z.ZodBoolean>;
|
|
1899
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | [string, z.objectOutputType<{
|
|
1900
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1901
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1902
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1903
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1904
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1905
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1906
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1907
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1908
|
-
}, z.ZodTypeAny, "passthrough">, ...unknown[]]>;
|
|
1909
|
-
}, {
|
|
1910
|
-
required?: Record<string, string | any[] | ["INT", ...unknown[]] | ["FLOAT", ...unknown[]] | ["BOOLEAN", ...unknown[]] | ["STRING", ...unknown[]] | [any[], ...unknown[]] | [string, ...unknown[]] | ["INT", z.objectInputType<z.objectUtil.extendShape<{
|
|
1911
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1912
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1913
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1914
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1915
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1916
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1917
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1918
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1919
|
-
}, {
|
|
1920
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1921
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1922
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1923
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1924
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | ["FLOAT", z.objectInputType<z.objectUtil.extendShape<{
|
|
1925
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1926
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1927
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1928
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1929
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1930
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1931
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1932
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1933
|
-
}, {
|
|
1934
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
1935
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
1936
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
1937
|
-
round: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<false>]>>;
|
|
1938
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
1939
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | ["BOOLEAN", z.objectInputType<z.objectUtil.extendShape<{
|
|
1940
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1941
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1942
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1943
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1944
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1945
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1946
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1947
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1948
|
-
}, {
|
|
1949
|
-
label_on: z.ZodOptional<z.ZodString>;
|
|
1950
|
-
label_off: z.ZodOptional<z.ZodString>;
|
|
1951
|
-
default: z.ZodOptional<z.ZodBoolean>;
|
|
1952
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | ["STRING", z.objectInputType<z.objectUtil.extendShape<{
|
|
1953
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1954
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1955
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1956
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1957
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1958
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1959
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1960
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1961
|
-
}, {
|
|
1962
|
-
default: z.ZodOptional<z.ZodString>;
|
|
1963
|
-
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
1964
|
-
dynamicPrompts: z.ZodOptional<z.ZodBoolean>;
|
|
1965
|
-
defaultVal: z.ZodOptional<z.ZodString>;
|
|
1966
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
1967
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | [any[], z.objectInputType<z.objectUtil.extendShape<{
|
|
1968
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1969
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1970
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1971
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1972
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1973
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1974
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1975
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1976
|
-
}, {
|
|
1977
|
-
control_after_generate: z.ZodOptional<z.ZodBoolean>;
|
|
1978
|
-
image_upload: z.ZodOptional<z.ZodBoolean>;
|
|
1979
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | [string, z.objectInputType<{
|
|
1980
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1981
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1982
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1983
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1984
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1985
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1986
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1987
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1988
|
-
}, z.ZodTypeAny, "passthrough">, ...unknown[]]>;
|
|
1989
|
-
hidden?: Record<string, any>;
|
|
1990
|
-
optional?: Record<string, string | any[] | ["INT", ...unknown[]] | ["FLOAT", ...unknown[]] | ["BOOLEAN", ...unknown[]] | ["STRING", ...unknown[]] | [any[], ...unknown[]] | [string, ...unknown[]] | ["INT", z.objectInputType<z.objectUtil.extendShape<{
|
|
1991
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
1992
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
1993
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
1994
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
1995
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
1996
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
1997
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1998
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
1999
|
-
}, {
|
|
2000
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
2001
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
2002
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
2003
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
2004
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | ["FLOAT", z.objectInputType<z.objectUtil.extendShape<{
|
|
2005
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
2006
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
2007
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
2008
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
2009
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
2010
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
2011
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2012
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
2013
|
-
}, {
|
|
2014
|
-
min: z.ZodOptional<z.ZodNumber>;
|
|
2015
|
-
max: z.ZodOptional<z.ZodNumber>;
|
|
2016
|
-
step: z.ZodOptional<z.ZodNumber>;
|
|
2017
|
-
round: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<false>]>>;
|
|
2018
|
-
default: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber, "many">]>>;
|
|
2019
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | ["BOOLEAN", z.objectInputType<z.objectUtil.extendShape<{
|
|
2020
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
2021
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
2022
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
2023
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
2024
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
2025
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
2026
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2027
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
2028
|
-
}, {
|
|
2029
|
-
label_on: z.ZodOptional<z.ZodString>;
|
|
2030
|
-
label_off: z.ZodOptional<z.ZodString>;
|
|
2031
|
-
default: z.ZodOptional<z.ZodBoolean>;
|
|
2032
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | ["STRING", z.objectInputType<z.objectUtil.extendShape<{
|
|
2033
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
2034
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
2035
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
2036
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
2037
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
2038
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
2039
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2040
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
2041
|
-
}, {
|
|
2042
|
-
default: z.ZodOptional<z.ZodString>;
|
|
2043
|
-
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
2044
|
-
dynamicPrompts: z.ZodOptional<z.ZodBoolean>;
|
|
2045
|
-
defaultVal: z.ZodOptional<z.ZodString>;
|
|
2046
|
-
placeholder: z.ZodOptional<z.ZodString>;
|
|
2047
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | [any[], z.objectInputType<z.objectUtil.extendShape<{
|
|
2048
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
2049
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
2050
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
2051
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
2052
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
2053
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
2054
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2055
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
2056
|
-
}, {
|
|
2057
|
-
control_after_generate: z.ZodOptional<z.ZodBoolean>;
|
|
2058
|
-
image_upload: z.ZodOptional<z.ZodBoolean>;
|
|
2059
|
-
}>, z.ZodTypeAny, "passthrough">, ...unknown[]] | [string, z.objectInputType<{
|
|
2060
|
-
default: z.ZodOptional<z.ZodAny>;
|
|
2061
|
-
defaultInput: z.ZodOptional<z.ZodBoolean>;
|
|
2062
|
-
forceInput: z.ZodOptional<z.ZodBoolean>;
|
|
2063
|
-
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
2064
|
-
rawLink: z.ZodOptional<z.ZodBoolean>;
|
|
2065
|
-
tooltip: z.ZodOptional<z.ZodString>;
|
|
2066
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
2067
|
-
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
2068
|
-
}, z.ZodTypeAny, "passthrough">, ...unknown[]]>;
|
|
2069
|
-
}>;
|
|
2070
|
-
|
|
2071
1215
|
declare const zComfyNodeDef: z.ZodObject<{
|
|
2072
1216
|
input: z.ZodOptional<z.ZodObject<{
|
|
2073
1217
|
required: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodTuple<[z.ZodLiteral<"INT">, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -2875,9 +2019,7 @@ export declare class ComfyApp {
|
|
|
2875
2019
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
2876
2020
|
experimental: z.ZodOptional<z.ZodBoolean>;
|
|
2877
2021
|
}, "strip", z.ZodTypeAny, {
|
|
2878
|
-
|
|
2879
|
-
description?: string;
|
|
2880
|
-
output?: (string | any[])[];
|
|
2022
|
+
deprecated?: boolean;
|
|
2881
2023
|
input?: {
|
|
2882
2024
|
required?: Record<string, any[] | ("INT" | {})[] | ("FLOAT" | {})[] | ("BOOLEAN" | {})[] | ("STRING" | {})[] | (any[] | {})[] | (string | {})[] | ["INT", z.objectOutputType<z.objectUtil.extendShape<{
|
|
2883
2025
|
default: z.ZodOptional<z.ZodAny>;
|
|
@@ -3039,19 +2181,19 @@ export declare class ComfyApp {
|
|
|
3039
2181
|
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
3040
2182
|
}, z.ZodTypeAny, "passthrough">, ...unknown[]]>;
|
|
3041
2183
|
};
|
|
2184
|
+
output?: (string | any[])[];
|
|
2185
|
+
experimental?: boolean;
|
|
2186
|
+
name?: string;
|
|
2187
|
+
display_name?: string;
|
|
2188
|
+
description?: string;
|
|
3042
2189
|
output_is_list?: boolean[];
|
|
3043
2190
|
output_name?: string[];
|
|
3044
2191
|
output_tooltips?: string[];
|
|
3045
|
-
display_name?: string;
|
|
3046
2192
|
category?: string;
|
|
3047
2193
|
output_node?: boolean;
|
|
3048
2194
|
python_module?: string;
|
|
3049
|
-
deprecated?: boolean;
|
|
3050
|
-
experimental?: boolean;
|
|
3051
2195
|
}, {
|
|
3052
|
-
|
|
3053
|
-
description?: string;
|
|
3054
|
-
output?: (string | any[])[];
|
|
2196
|
+
deprecated?: boolean;
|
|
3055
2197
|
input?: {
|
|
3056
2198
|
required?: Record<string, string | any[] | ["INT", ...unknown[]] | ["FLOAT", ...unknown[]] | ["BOOLEAN", ...unknown[]] | ["STRING", ...unknown[]] | [any[], ...unknown[]] | [string, ...unknown[]] | ["INT", z.objectInputType<z.objectUtil.extendShape<{
|
|
3057
2199
|
default: z.ZodOptional<z.ZodAny>;
|
|
@@ -3213,19 +2355,19 @@ export declare class ComfyApp {
|
|
|
3213
2355
|
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
3214
2356
|
}, z.ZodTypeAny, "passthrough">, ...unknown[]]>;
|
|
3215
2357
|
};
|
|
2358
|
+
output?: (string | any[])[];
|
|
2359
|
+
experimental?: boolean;
|
|
2360
|
+
name?: string;
|
|
2361
|
+
display_name?: string;
|
|
2362
|
+
description?: string;
|
|
3216
2363
|
output_is_list?: boolean[];
|
|
3217
2364
|
output_name?: string[];
|
|
3218
2365
|
output_tooltips?: string[];
|
|
3219
|
-
display_name?: string;
|
|
3220
2366
|
category?: string;
|
|
3221
2367
|
output_node?: boolean;
|
|
3222
2368
|
python_module?: string;
|
|
3223
|
-
deprecated?: boolean;
|
|
3224
|
-
experimental?: boolean;
|
|
3225
2369
|
}>;
|
|
3226
2370
|
|
|
3227
|
-
declare const zComfyOutputTypesSpec: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodAny, "many">]>, "many">;
|
|
3228
|
-
|
|
3229
2371
|
/** Schema version 0.4 */
|
|
3230
2372
|
declare const zComfyWorkflow: z.ZodObject<{
|
|
3231
2373
|
last_node_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -7994,9 +7136,6 @@ export declare class ComfyApp {
|
|
|
7994
7136
|
}, z.ZodTypeAny, "passthrough">>;
|
|
7995
7137
|
merge: z.ZodOptional<z.ZodBoolean>;
|
|
7996
7138
|
}>, "strip", z.ZodTypeAny, {
|
|
7997
|
-
prompt_id?: string;
|
|
7998
|
-
node?: string | number;
|
|
7999
|
-
display_node?: string | number;
|
|
8000
7139
|
output?: {
|
|
8001
7140
|
audio?: {
|
|
8002
7141
|
type?: string;
|
|
@@ -8012,11 +7151,11 @@ export declare class ComfyApp {
|
|
|
8012
7151
|
} & {
|
|
8013
7152
|
[k: string]: unknown;
|
|
8014
7153
|
};
|
|
8015
|
-
merge?: boolean;
|
|
8016
|
-
}, {
|
|
8017
7154
|
prompt_id?: string;
|
|
8018
7155
|
node?: string | number;
|
|
8019
7156
|
display_node?: string | number;
|
|
7157
|
+
merge?: boolean;
|
|
7158
|
+
}, {
|
|
8020
7159
|
output?: {
|
|
8021
7160
|
audio?: {
|
|
8022
7161
|
type?: string;
|
|
@@ -8032,6 +7171,9 @@ export declare class ComfyApp {
|
|
|
8032
7171
|
} & {
|
|
8033
7172
|
[k: string]: unknown;
|
|
8034
7173
|
};
|
|
7174
|
+
prompt_id?: string;
|
|
7175
|
+
node?: string | number;
|
|
7176
|
+
display_node?: string | number;
|
|
8035
7177
|
merge?: boolean;
|
|
8036
7178
|
}>;
|
|
8037
7179
|
|
|
@@ -14745,8 +13887,8 @@ export declare class ComfyApp {
|
|
|
14745
13887
|
}, "strip", z.ZodTypeAny, {
|
|
14746
13888
|
extra_pnginfo?: {
|
|
14747
13889
|
workflow?: {
|
|
14748
|
-
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
14749
13890
|
version?: number;
|
|
13891
|
+
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
14750
13892
|
last_node_id?: string | number;
|
|
14751
13893
|
last_link_id?: number;
|
|
14752
13894
|
nodes?: z.objectOutputType<{
|
|
@@ -14863,11 +14005,11 @@ export declare class ComfyApp {
|
|
|
14863
14005
|
[k: string]: unknown;
|
|
14864
14006
|
};
|
|
14865
14007
|
info?: {
|
|
14008
|
+
version?: string;
|
|
14866
14009
|
name?: string;
|
|
14867
|
-
author?: string;
|
|
14868
14010
|
description?: string;
|
|
14869
|
-
version?: string;
|
|
14870
14011
|
created?: string;
|
|
14012
|
+
author?: string;
|
|
14871
14013
|
modified?: string;
|
|
14872
14014
|
software?: string;
|
|
14873
14015
|
} & {
|
|
@@ -14915,8 +14057,8 @@ export declare class ComfyApp {
|
|
|
14915
14057
|
}, {
|
|
14916
14058
|
extra_pnginfo?: {
|
|
14917
14059
|
workflow?: {
|
|
14918
|
-
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
14919
14060
|
version?: number;
|
|
14061
|
+
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
14920
14062
|
last_node_id?: string | number;
|
|
14921
14063
|
last_link_id?: number;
|
|
14922
14064
|
nodes?: z.objectInputType<{
|
|
@@ -15036,11 +14178,11 @@ export declare class ComfyApp {
|
|
|
15036
14178
|
[k: string]: unknown;
|
|
15037
14179
|
};
|
|
15038
14180
|
info?: {
|
|
14181
|
+
version?: string;
|
|
15039
14182
|
name?: string;
|
|
15040
|
-
author?: string;
|
|
15041
14183
|
description?: string;
|
|
15042
|
-
version?: string;
|
|
15043
14184
|
created?: string;
|
|
14185
|
+
author?: string;
|
|
15044
14186
|
modified?: string;
|
|
15045
14187
|
software?: string;
|
|
15046
14188
|
} & {
|
|
@@ -15175,8 +14317,6 @@ export declare class ComfyApp {
|
|
|
15175
14317
|
current_outputs?: any;
|
|
15176
14318
|
}>], null>]>, "many">;
|
|
15177
14319
|
}, "strip", z.ZodTypeAny, {
|
|
15178
|
-
status_str?: "success" | "error";
|
|
15179
|
-
completed?: boolean;
|
|
15180
14320
|
messages?: (["execution_start", {
|
|
15181
14321
|
prompt_id?: string;
|
|
15182
14322
|
timestamp?: number;
|
|
@@ -15205,9 +14345,9 @@ export declare class ComfyApp {
|
|
|
15205
14345
|
current_inputs?: any;
|
|
15206
14346
|
current_outputs?: any;
|
|
15207
14347
|
}, ...unknown[]])[];
|
|
15208
|
-
|
|
15209
|
-
status_str?: "success" | "error";
|
|
14348
|
+
status_str?: "error" | "success";
|
|
15210
14349
|
completed?: boolean;
|
|
14350
|
+
}, {
|
|
15211
14351
|
messages?: (["execution_start", {
|
|
15212
14352
|
prompt_id?: string;
|
|
15213
14353
|
timestamp?: number;
|
|
@@ -15236,6 +14376,8 @@ export declare class ComfyApp {
|
|
|
15236
14376
|
current_inputs?: any;
|
|
15237
14377
|
current_outputs?: any;
|
|
15238
14378
|
}, ...unknown[]])[];
|
|
14379
|
+
status_str?: "error" | "success";
|
|
14380
|
+
completed?: boolean;
|
|
15239
14381
|
}>>;
|
|
15240
14382
|
outputs: z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodObject<{
|
|
15241
14383
|
audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -15322,10 +14464,59 @@ export declare class ComfyApp {
|
|
|
15322
14464
|
}>, "many">>;
|
|
15323
14465
|
animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
|
|
15324
14466
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
14467
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodObject<{
|
|
14468
|
+
node_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
14469
|
+
display_node: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
14470
|
+
prompt_id: z.ZodOptional<z.ZodString>;
|
|
14471
|
+
read_node_id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
14472
|
+
}, "strip", z.ZodTypeAny, {
|
|
14473
|
+
prompt_id?: string;
|
|
14474
|
+
display_node?: string | number;
|
|
14475
|
+
node_id?: string | number;
|
|
14476
|
+
read_node_id?: string | number;
|
|
14477
|
+
}, {
|
|
14478
|
+
prompt_id?: string;
|
|
14479
|
+
display_node?: string | number;
|
|
14480
|
+
node_id?: string | number;
|
|
14481
|
+
read_node_id?: string | number;
|
|
14482
|
+
}>>>;
|
|
15325
14483
|
}, "strip", z.ZodTypeAny, {
|
|
14484
|
+
outputs?: Record<string | number, z.objectOutputType<{
|
|
14485
|
+
audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14486
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
14487
|
+
subfolder: z.ZodOptional<z.ZodString>;
|
|
14488
|
+
type: z.ZodOptional<z.ZodString>;
|
|
14489
|
+
}, "strip", z.ZodTypeAny, {
|
|
14490
|
+
type?: string;
|
|
14491
|
+
filename?: string;
|
|
14492
|
+
subfolder?: string;
|
|
14493
|
+
}, {
|
|
14494
|
+
type?: string;
|
|
14495
|
+
filename?: string;
|
|
14496
|
+
subfolder?: string;
|
|
14497
|
+
}>, "many">>;
|
|
14498
|
+
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14499
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
14500
|
+
subfolder: z.ZodOptional<z.ZodString>;
|
|
14501
|
+
type: z.ZodOptional<z.ZodString>;
|
|
14502
|
+
}, "strip", z.ZodTypeAny, {
|
|
14503
|
+
type?: string;
|
|
14504
|
+
filename?: string;
|
|
14505
|
+
subfolder?: string;
|
|
14506
|
+
}, {
|
|
14507
|
+
type?: string;
|
|
14508
|
+
filename?: string;
|
|
14509
|
+
subfolder?: string;
|
|
14510
|
+
}>, "many">>;
|
|
14511
|
+
animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
|
|
14512
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
14513
|
+
meta?: Record<string | number, {
|
|
14514
|
+
prompt_id?: string;
|
|
14515
|
+
display_node?: string | number;
|
|
14516
|
+
node_id?: string | number;
|
|
14517
|
+
read_node_id?: string | number;
|
|
14518
|
+
}>;
|
|
15326
14519
|
status?: {
|
|
15327
|
-
status_str?: "success" | "error";
|
|
15328
|
-
completed?: boolean;
|
|
15329
14520
|
messages?: (["execution_start", {
|
|
15330
14521
|
prompt_id?: string;
|
|
15331
14522
|
timestamp?: number;
|
|
@@ -15354,36 +14545,9 @@ export declare class ComfyApp {
|
|
|
15354
14545
|
current_inputs?: any;
|
|
15355
14546
|
current_outputs?: any;
|
|
15356
14547
|
}, ...unknown[]])[];
|
|
14548
|
+
status_str?: "error" | "success";
|
|
14549
|
+
completed?: boolean;
|
|
15357
14550
|
};
|
|
15358
|
-
outputs?: Record<string | number, z.objectOutputType<{
|
|
15359
|
-
audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15360
|
-
filename: z.ZodOptional<z.ZodString>;
|
|
15361
|
-
subfolder: z.ZodOptional<z.ZodString>;
|
|
15362
|
-
type: z.ZodOptional<z.ZodString>;
|
|
15363
|
-
}, "strip", z.ZodTypeAny, {
|
|
15364
|
-
type?: string;
|
|
15365
|
-
filename?: string;
|
|
15366
|
-
subfolder?: string;
|
|
15367
|
-
}, {
|
|
15368
|
-
type?: string;
|
|
15369
|
-
filename?: string;
|
|
15370
|
-
subfolder?: string;
|
|
15371
|
-
}>, "many">>;
|
|
15372
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15373
|
-
filename: z.ZodOptional<z.ZodString>;
|
|
15374
|
-
subfolder: z.ZodOptional<z.ZodString>;
|
|
15375
|
-
type: z.ZodOptional<z.ZodString>;
|
|
15376
|
-
}, "strip", z.ZodTypeAny, {
|
|
15377
|
-
type?: string;
|
|
15378
|
-
filename?: string;
|
|
15379
|
-
subfolder?: string;
|
|
15380
|
-
}, {
|
|
15381
|
-
type?: string;
|
|
15382
|
-
filename?: string;
|
|
15383
|
-
subfolder?: string;
|
|
15384
|
-
}>, "many">>;
|
|
15385
|
-
animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
|
|
15386
|
-
}, z.ZodTypeAny, "passthrough">>;
|
|
15387
14551
|
taskType?: "History";
|
|
15388
14552
|
prompt?: [number, string, Record<string, {
|
|
15389
14553
|
inputs?: Record<string, any>;
|
|
@@ -15391,8 +14555,8 @@ export declare class ComfyApp {
|
|
|
15391
14555
|
}>, {
|
|
15392
14556
|
extra_pnginfo?: {
|
|
15393
14557
|
workflow?: {
|
|
15394
|
-
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
15395
14558
|
version?: number;
|
|
14559
|
+
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
15396
14560
|
last_node_id?: string | number;
|
|
15397
14561
|
last_link_id?: number;
|
|
15398
14562
|
nodes?: z.objectOutputType<{
|
|
@@ -15509,11 +14673,11 @@ export declare class ComfyApp {
|
|
|
15509
14673
|
[k: string]: unknown;
|
|
15510
14674
|
};
|
|
15511
14675
|
info?: {
|
|
14676
|
+
version?: string;
|
|
15512
14677
|
name?: string;
|
|
15513
|
-
author?: string;
|
|
15514
14678
|
description?: string;
|
|
15515
|
-
version?: string;
|
|
15516
14679
|
created?: string;
|
|
14680
|
+
author?: string;
|
|
15517
14681
|
modified?: string;
|
|
15518
14682
|
software?: string;
|
|
15519
14683
|
} & {
|
|
@@ -15560,9 +14724,42 @@ export declare class ComfyApp {
|
|
|
15560
14724
|
client_id?: string;
|
|
15561
14725
|
}, (string | number)[], ...unknown[]];
|
|
15562
14726
|
}, {
|
|
14727
|
+
outputs?: Record<string | number, z.objectInputType<{
|
|
14728
|
+
audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14729
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
14730
|
+
subfolder: z.ZodOptional<z.ZodString>;
|
|
14731
|
+
type: z.ZodOptional<z.ZodString>;
|
|
14732
|
+
}, "strip", z.ZodTypeAny, {
|
|
14733
|
+
type?: string;
|
|
14734
|
+
filename?: string;
|
|
14735
|
+
subfolder?: string;
|
|
14736
|
+
}, {
|
|
14737
|
+
type?: string;
|
|
14738
|
+
filename?: string;
|
|
14739
|
+
subfolder?: string;
|
|
14740
|
+
}>, "many">>;
|
|
14741
|
+
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14742
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
14743
|
+
subfolder: z.ZodOptional<z.ZodString>;
|
|
14744
|
+
type: z.ZodOptional<z.ZodString>;
|
|
14745
|
+
}, "strip", z.ZodTypeAny, {
|
|
14746
|
+
type?: string;
|
|
14747
|
+
filename?: string;
|
|
14748
|
+
subfolder?: string;
|
|
14749
|
+
}, {
|
|
14750
|
+
type?: string;
|
|
14751
|
+
filename?: string;
|
|
14752
|
+
subfolder?: string;
|
|
14753
|
+
}>, "many">>;
|
|
14754
|
+
animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
|
|
14755
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
14756
|
+
meta?: Record<string | number, {
|
|
14757
|
+
prompt_id?: string;
|
|
14758
|
+
display_node?: string | number;
|
|
14759
|
+
node_id?: string | number;
|
|
14760
|
+
read_node_id?: string | number;
|
|
14761
|
+
}>;
|
|
15563
14762
|
status?: {
|
|
15564
|
-
status_str?: "success" | "error";
|
|
15565
|
-
completed?: boolean;
|
|
15566
14763
|
messages?: (["execution_start", {
|
|
15567
14764
|
prompt_id?: string;
|
|
15568
14765
|
timestamp?: number;
|
|
@@ -15591,36 +14788,9 @@ export declare class ComfyApp {
|
|
|
15591
14788
|
current_inputs?: any;
|
|
15592
14789
|
current_outputs?: any;
|
|
15593
14790
|
}, ...unknown[]])[];
|
|
14791
|
+
status_str?: "error" | "success";
|
|
14792
|
+
completed?: boolean;
|
|
15594
14793
|
};
|
|
15595
|
-
outputs?: Record<string | number, z.objectInputType<{
|
|
15596
|
-
audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15597
|
-
filename: z.ZodOptional<z.ZodString>;
|
|
15598
|
-
subfolder: z.ZodOptional<z.ZodString>;
|
|
15599
|
-
type: z.ZodOptional<z.ZodString>;
|
|
15600
|
-
}, "strip", z.ZodTypeAny, {
|
|
15601
|
-
type?: string;
|
|
15602
|
-
filename?: string;
|
|
15603
|
-
subfolder?: string;
|
|
15604
|
-
}, {
|
|
15605
|
-
type?: string;
|
|
15606
|
-
filename?: string;
|
|
15607
|
-
subfolder?: string;
|
|
15608
|
-
}>, "many">>;
|
|
15609
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15610
|
-
filename: z.ZodOptional<z.ZodString>;
|
|
15611
|
-
subfolder: z.ZodOptional<z.ZodString>;
|
|
15612
|
-
type: z.ZodOptional<z.ZodString>;
|
|
15613
|
-
}, "strip", z.ZodTypeAny, {
|
|
15614
|
-
type?: string;
|
|
15615
|
-
filename?: string;
|
|
15616
|
-
subfolder?: string;
|
|
15617
|
-
}, {
|
|
15618
|
-
type?: string;
|
|
15619
|
-
filename?: string;
|
|
15620
|
-
subfolder?: string;
|
|
15621
|
-
}>, "many">>;
|
|
15622
|
-
animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
|
|
15623
|
-
}, z.ZodTypeAny, "passthrough">>;
|
|
15624
14794
|
taskType?: "History";
|
|
15625
14795
|
prompt?: [number, string, Record<string, {
|
|
15626
14796
|
inputs?: Record<string, any>;
|
|
@@ -15628,8 +14798,8 @@ export declare class ComfyApp {
|
|
|
15628
14798
|
}>, {
|
|
15629
14799
|
extra_pnginfo?: {
|
|
15630
14800
|
workflow?: {
|
|
15631
|
-
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
15632
14801
|
version?: number;
|
|
14802
|
+
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
15633
14803
|
last_node_id?: string | number;
|
|
15634
14804
|
last_link_id?: number;
|
|
15635
14805
|
nodes?: z.objectInputType<{
|
|
@@ -15749,11 +14919,11 @@ export declare class ComfyApp {
|
|
|
15749
14919
|
[k: string]: unknown;
|
|
15750
14920
|
};
|
|
15751
14921
|
info?: {
|
|
14922
|
+
version?: string;
|
|
15752
14923
|
name?: string;
|
|
15753
|
-
author?: string;
|
|
15754
14924
|
description?: string;
|
|
15755
|
-
version?: string;
|
|
15756
14925
|
created?: string;
|
|
14926
|
+
author?: string;
|
|
15757
14927
|
modified?: string;
|
|
15758
14928
|
software?: string;
|
|
15759
14929
|
} & {
|
|
@@ -16048,15 +15218,15 @@ export declare class ComfyApp {
|
|
|
16048
15218
|
}, "strip", z.ZodTypeAny, {
|
|
16049
15219
|
shift?: boolean;
|
|
16050
15220
|
key?: string;
|
|
15221
|
+
meta?: boolean;
|
|
16051
15222
|
ctrl?: boolean;
|
|
16052
15223
|
alt?: boolean;
|
|
16053
|
-
meta?: boolean;
|
|
16054
15224
|
}, {
|
|
16055
15225
|
shift?: boolean;
|
|
16056
15226
|
key?: string;
|
|
15227
|
+
meta?: boolean;
|
|
16057
15228
|
ctrl?: boolean;
|
|
16058
15229
|
alt?: boolean;
|
|
16059
|
-
meta?: boolean;
|
|
16060
15230
|
}>;
|
|
16061
15231
|
targetSelector: z.ZodOptional<z.ZodString>;
|
|
16062
15232
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16064,9 +15234,9 @@ export declare class ComfyApp {
|
|
|
16064
15234
|
combo?: {
|
|
16065
15235
|
shift?: boolean;
|
|
16066
15236
|
key?: string;
|
|
15237
|
+
meta?: boolean;
|
|
16067
15238
|
ctrl?: boolean;
|
|
16068
15239
|
alt?: boolean;
|
|
16069
|
-
meta?: boolean;
|
|
16070
15240
|
};
|
|
16071
15241
|
targetSelector?: string;
|
|
16072
15242
|
}, {
|
|
@@ -16074,9 +15244,9 @@ export declare class ComfyApp {
|
|
|
16074
15244
|
combo?: {
|
|
16075
15245
|
shift?: boolean;
|
|
16076
15246
|
key?: string;
|
|
15247
|
+
meta?: boolean;
|
|
16077
15248
|
ctrl?: boolean;
|
|
16078
15249
|
alt?: boolean;
|
|
16079
|
-
meta?: boolean;
|
|
16080
15250
|
};
|
|
16081
15251
|
targetSelector?: string;
|
|
16082
15252
|
}>;
|
|
@@ -22786,8 +21956,8 @@ export declare class ComfyApp {
|
|
|
22786
21956
|
}, "strip", z.ZodTypeAny, {
|
|
22787
21957
|
extra_pnginfo?: {
|
|
22788
21958
|
workflow?: {
|
|
22789
|
-
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
22790
21959
|
version?: number;
|
|
21960
|
+
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
22791
21961
|
last_node_id?: string | number;
|
|
22792
21962
|
last_link_id?: number;
|
|
22793
21963
|
nodes?: z.objectOutputType<{
|
|
@@ -22904,11 +22074,11 @@ export declare class ComfyApp {
|
|
|
22904
22074
|
[k: string]: unknown;
|
|
22905
22075
|
};
|
|
22906
22076
|
info?: {
|
|
22077
|
+
version?: string;
|
|
22907
22078
|
name?: string;
|
|
22908
|
-
author?: string;
|
|
22909
22079
|
description?: string;
|
|
22910
|
-
version?: string;
|
|
22911
22080
|
created?: string;
|
|
22081
|
+
author?: string;
|
|
22912
22082
|
modified?: string;
|
|
22913
22083
|
software?: string;
|
|
22914
22084
|
} & {
|
|
@@ -22956,8 +22126,8 @@ export declare class ComfyApp {
|
|
|
22956
22126
|
}, {
|
|
22957
22127
|
extra_pnginfo?: {
|
|
22958
22128
|
workflow?: {
|
|
22959
|
-
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
22960
22129
|
version?: number;
|
|
22130
|
+
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
22961
22131
|
last_node_id?: string | number;
|
|
22962
22132
|
last_link_id?: number;
|
|
22963
22133
|
nodes?: z.objectInputType<{
|
|
@@ -23077,11 +22247,11 @@ export declare class ComfyApp {
|
|
|
23077
22247
|
[k: string]: unknown;
|
|
23078
22248
|
};
|
|
23079
22249
|
info?: {
|
|
22250
|
+
version?: string;
|
|
23080
22251
|
name?: string;
|
|
23081
|
-
author?: string;
|
|
23082
22252
|
description?: string;
|
|
23083
|
-
version?: string;
|
|
23084
22253
|
created?: string;
|
|
22254
|
+
author?: string;
|
|
23085
22255
|
modified?: string;
|
|
23086
22256
|
software?: string;
|
|
23087
22257
|
} & {
|
|
@@ -23135,8 +22305,8 @@ export declare class ComfyApp {
|
|
|
23135
22305
|
}>, {
|
|
23136
22306
|
extra_pnginfo?: {
|
|
23137
22307
|
workflow?: {
|
|
23138
|
-
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
23139
22308
|
version?: number;
|
|
22309
|
+
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
23140
22310
|
last_node_id?: string | number;
|
|
23141
22311
|
last_link_id?: number;
|
|
23142
22312
|
nodes?: z.objectOutputType<{
|
|
@@ -23253,11 +22423,11 @@ export declare class ComfyApp {
|
|
|
23253
22423
|
[k: string]: unknown;
|
|
23254
22424
|
};
|
|
23255
22425
|
info?: {
|
|
22426
|
+
version?: string;
|
|
23256
22427
|
name?: string;
|
|
23257
|
-
author?: string;
|
|
23258
22428
|
description?: string;
|
|
23259
|
-
version?: string;
|
|
23260
22429
|
created?: string;
|
|
22430
|
+
author?: string;
|
|
23261
22431
|
modified?: string;
|
|
23262
22432
|
software?: string;
|
|
23263
22433
|
} & {
|
|
@@ -23311,8 +22481,8 @@ export declare class ComfyApp {
|
|
|
23311
22481
|
}>, {
|
|
23312
22482
|
extra_pnginfo?: {
|
|
23313
22483
|
workflow?: {
|
|
23314
|
-
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
23315
22484
|
version?: number;
|
|
22485
|
+
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
23316
22486
|
last_node_id?: string | number;
|
|
23317
22487
|
last_link_id?: number;
|
|
23318
22488
|
nodes?: z.objectInputType<{
|
|
@@ -23432,11 +22602,11 @@ export declare class ComfyApp {
|
|
|
23432
22602
|
[k: string]: unknown;
|
|
23433
22603
|
};
|
|
23434
22604
|
info?: {
|
|
22605
|
+
version?: string;
|
|
23435
22606
|
name?: string;
|
|
23436
|
-
author?: string;
|
|
23437
22607
|
description?: string;
|
|
23438
|
-
version?: string;
|
|
23439
22608
|
created?: string;
|
|
22609
|
+
author?: string;
|
|
23440
22610
|
modified?: string;
|
|
23441
22611
|
software?: string;
|
|
23442
22612
|
} & {
|
|
@@ -30146,8 +29316,8 @@ export declare class ComfyApp {
|
|
|
30146
29316
|
}, "strip", z.ZodTypeAny, {
|
|
30147
29317
|
extra_pnginfo?: {
|
|
30148
29318
|
workflow?: {
|
|
30149
|
-
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
30150
29319
|
version?: number;
|
|
29320
|
+
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
30151
29321
|
last_node_id?: string | number;
|
|
30152
29322
|
last_link_id?: number;
|
|
30153
29323
|
nodes?: z.objectOutputType<{
|
|
@@ -30264,11 +29434,11 @@ export declare class ComfyApp {
|
|
|
30264
29434
|
[k: string]: unknown;
|
|
30265
29435
|
};
|
|
30266
29436
|
info?: {
|
|
29437
|
+
version?: string;
|
|
30267
29438
|
name?: string;
|
|
30268
|
-
author?: string;
|
|
30269
29439
|
description?: string;
|
|
30270
|
-
version?: string;
|
|
30271
29440
|
created?: string;
|
|
29441
|
+
author?: string;
|
|
30272
29442
|
modified?: string;
|
|
30273
29443
|
software?: string;
|
|
30274
29444
|
} & {
|
|
@@ -30316,8 +29486,8 @@ export declare class ComfyApp {
|
|
|
30316
29486
|
}, {
|
|
30317
29487
|
extra_pnginfo?: {
|
|
30318
29488
|
workflow?: {
|
|
30319
|
-
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
30320
29489
|
version?: number;
|
|
29490
|
+
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
30321
29491
|
last_node_id?: string | number;
|
|
30322
29492
|
last_link_id?: number;
|
|
30323
29493
|
nodes?: z.objectInputType<{
|
|
@@ -30437,11 +29607,11 @@ export declare class ComfyApp {
|
|
|
30437
29607
|
[k: string]: unknown;
|
|
30438
29608
|
};
|
|
30439
29609
|
info?: {
|
|
29610
|
+
version?: string;
|
|
30440
29611
|
name?: string;
|
|
30441
|
-
author?: string;
|
|
30442
29612
|
description?: string;
|
|
30443
|
-
version?: string;
|
|
30444
29613
|
created?: string;
|
|
29614
|
+
author?: string;
|
|
30445
29615
|
modified?: string;
|
|
30446
29616
|
software?: string;
|
|
30447
29617
|
} & {
|
|
@@ -30505,8 +29675,8 @@ export declare class ComfyApp {
|
|
|
30505
29675
|
}>, {
|
|
30506
29676
|
extra_pnginfo?: {
|
|
30507
29677
|
workflow?: {
|
|
30508
|
-
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
30509
29678
|
version?: number;
|
|
29679
|
+
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
30510
29680
|
last_node_id?: string | number;
|
|
30511
29681
|
last_link_id?: number;
|
|
30512
29682
|
nodes?: z.objectOutputType<{
|
|
@@ -30623,11 +29793,11 @@ export declare class ComfyApp {
|
|
|
30623
29793
|
[k: string]: unknown;
|
|
30624
29794
|
};
|
|
30625
29795
|
info?: {
|
|
29796
|
+
version?: string;
|
|
30626
29797
|
name?: string;
|
|
30627
|
-
author?: string;
|
|
30628
29798
|
description?: string;
|
|
30629
|
-
version?: string;
|
|
30630
29799
|
created?: string;
|
|
29800
|
+
author?: string;
|
|
30631
29801
|
modified?: string;
|
|
30632
29802
|
software?: string;
|
|
30633
29803
|
} & {
|
|
@@ -30685,8 +29855,8 @@ export declare class ComfyApp {
|
|
|
30685
29855
|
}>, {
|
|
30686
29856
|
extra_pnginfo?: {
|
|
30687
29857
|
workflow?: {
|
|
30688
|
-
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
30689
29858
|
version?: number;
|
|
29859
|
+
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
30690
29860
|
last_node_id?: string | number;
|
|
30691
29861
|
last_link_id?: number;
|
|
30692
29862
|
nodes?: z.objectInputType<{
|
|
@@ -30806,11 +29976,11 @@ export declare class ComfyApp {
|
|
|
30806
29976
|
[k: string]: unknown;
|
|
30807
29977
|
};
|
|
30808
29978
|
info?: {
|
|
29979
|
+
version?: string;
|
|
30809
29980
|
name?: string;
|
|
30810
|
-
author?: string;
|
|
30811
29981
|
description?: string;
|
|
30812
|
-
version?: string;
|
|
30813
29982
|
created?: string;
|
|
29983
|
+
author?: string;
|
|
30814
29984
|
modified?: string;
|
|
30815
29985
|
software?: string;
|
|
30816
29986
|
} & {
|
|
@@ -30891,16 +30061,16 @@ export declare class ComfyApp {
|
|
|
30891
30061
|
CLIP_VISION_OUTPUT?: string;
|
|
30892
30062
|
CONDITIONING?: string;
|
|
30893
30063
|
CONTROL_NET?: string;
|
|
30064
|
+
GUIDER?: string;
|
|
30894
30065
|
IMAGE?: string;
|
|
30895
30066
|
LATENT?: string;
|
|
30896
30067
|
MASK?: string;
|
|
30897
30068
|
MODEL?: string;
|
|
30898
|
-
STYLE_MODEL?: string;
|
|
30899
|
-
VAE?: string;
|
|
30900
30069
|
NOISE?: string;
|
|
30901
|
-
GUIDER?: string;
|
|
30902
30070
|
SAMPLER?: string;
|
|
30903
30071
|
SIGMAS?: string;
|
|
30072
|
+
STYLE_MODEL?: string;
|
|
30073
|
+
VAE?: string;
|
|
30904
30074
|
TAESD?: string;
|
|
30905
30075
|
}, {
|
|
30906
30076
|
CLIP?: string;
|
|
@@ -30908,16 +30078,16 @@ export declare class ComfyApp {
|
|
|
30908
30078
|
CLIP_VISION_OUTPUT?: string;
|
|
30909
30079
|
CONDITIONING?: string;
|
|
30910
30080
|
CONTROL_NET?: string;
|
|
30081
|
+
GUIDER?: string;
|
|
30911
30082
|
IMAGE?: string;
|
|
30912
30083
|
LATENT?: string;
|
|
30913
30084
|
MASK?: string;
|
|
30914
30085
|
MODEL?: string;
|
|
30915
|
-
STYLE_MODEL?: string;
|
|
30916
|
-
VAE?: string;
|
|
30917
30086
|
NOISE?: string;
|
|
30918
|
-
GUIDER?: string;
|
|
30919
30087
|
SAMPLER?: string;
|
|
30920
30088
|
SIGMAS?: string;
|
|
30089
|
+
STYLE_MODEL?: string;
|
|
30090
|
+
VAE?: string;
|
|
30921
30091
|
TAESD?: string;
|
|
30922
30092
|
}>;
|
|
30923
30093
|
litegraph_base: z.ZodObject<{
|
|
@@ -31064,16 +30234,16 @@ export declare class ComfyApp {
|
|
|
31064
30234
|
CLIP_VISION_OUTPUT?: string;
|
|
31065
30235
|
CONDITIONING?: string;
|
|
31066
30236
|
CONTROL_NET?: string;
|
|
30237
|
+
GUIDER?: string;
|
|
31067
30238
|
IMAGE?: string;
|
|
31068
30239
|
LATENT?: string;
|
|
31069
30240
|
MASK?: string;
|
|
31070
30241
|
MODEL?: string;
|
|
31071
|
-
STYLE_MODEL?: string;
|
|
31072
|
-
VAE?: string;
|
|
31073
30242
|
NOISE?: string;
|
|
31074
|
-
GUIDER?: string;
|
|
31075
30243
|
SAMPLER?: string;
|
|
31076
30244
|
SIGMAS?: string;
|
|
30245
|
+
STYLE_MODEL?: string;
|
|
30246
|
+
VAE?: string;
|
|
31077
30247
|
TAESD?: string;
|
|
31078
30248
|
};
|
|
31079
30249
|
litegraph_base?: {
|
|
@@ -31130,16 +30300,16 @@ export declare class ComfyApp {
|
|
|
31130
30300
|
CLIP_VISION_OUTPUT?: string;
|
|
31131
30301
|
CONDITIONING?: string;
|
|
31132
30302
|
CONTROL_NET?: string;
|
|
30303
|
+
GUIDER?: string;
|
|
31133
30304
|
IMAGE?: string;
|
|
31134
30305
|
LATENT?: string;
|
|
31135
30306
|
MASK?: string;
|
|
31136
30307
|
MODEL?: string;
|
|
31137
|
-
STYLE_MODEL?: string;
|
|
31138
|
-
VAE?: string;
|
|
31139
30308
|
NOISE?: string;
|
|
31140
|
-
GUIDER?: string;
|
|
31141
30309
|
SAMPLER?: string;
|
|
31142
30310
|
SIGMAS?: string;
|
|
30311
|
+
STYLE_MODEL?: string;
|
|
30312
|
+
VAE?: string;
|
|
31143
30313
|
TAESD?: string;
|
|
31144
30314
|
};
|
|
31145
30315
|
litegraph_base?: {
|
|
@@ -31217,16 +30387,16 @@ export declare class ComfyApp {
|
|
|
31217
30387
|
CLIP_VISION_OUTPUT?: string;
|
|
31218
30388
|
CONDITIONING?: string;
|
|
31219
30389
|
CONTROL_NET?: string;
|
|
30390
|
+
GUIDER?: string;
|
|
31220
30391
|
IMAGE?: string;
|
|
31221
30392
|
LATENT?: string;
|
|
31222
30393
|
MASK?: string;
|
|
31223
30394
|
MODEL?: string;
|
|
31224
|
-
STYLE_MODEL?: string;
|
|
31225
|
-
VAE?: string;
|
|
31226
30395
|
NOISE?: string;
|
|
31227
|
-
GUIDER?: string;
|
|
31228
30396
|
SAMPLER?: string;
|
|
31229
30397
|
SIGMAS?: string;
|
|
30398
|
+
STYLE_MODEL?: string;
|
|
30399
|
+
VAE?: string;
|
|
31230
30400
|
TAESD?: string;
|
|
31231
30401
|
}, {
|
|
31232
30402
|
CLIP?: string;
|
|
@@ -31234,16 +30404,16 @@ export declare class ComfyApp {
|
|
|
31234
30404
|
CLIP_VISION_OUTPUT?: string;
|
|
31235
30405
|
CONDITIONING?: string;
|
|
31236
30406
|
CONTROL_NET?: string;
|
|
30407
|
+
GUIDER?: string;
|
|
31237
30408
|
IMAGE?: string;
|
|
31238
30409
|
LATENT?: string;
|
|
31239
30410
|
MASK?: string;
|
|
31240
30411
|
MODEL?: string;
|
|
31241
|
-
STYLE_MODEL?: string;
|
|
31242
|
-
VAE?: string;
|
|
31243
30412
|
NOISE?: string;
|
|
31244
|
-
GUIDER?: string;
|
|
31245
30413
|
SAMPLER?: string;
|
|
31246
30414
|
SIGMAS?: string;
|
|
30415
|
+
STYLE_MODEL?: string;
|
|
30416
|
+
VAE?: string;
|
|
31247
30417
|
TAESD?: string;
|
|
31248
30418
|
}>;
|
|
31249
30419
|
litegraph_base: z.ZodObject<{
|
|
@@ -31390,16 +30560,16 @@ export declare class ComfyApp {
|
|
|
31390
30560
|
CLIP_VISION_OUTPUT?: string;
|
|
31391
30561
|
CONDITIONING?: string;
|
|
31392
30562
|
CONTROL_NET?: string;
|
|
30563
|
+
GUIDER?: string;
|
|
31393
30564
|
IMAGE?: string;
|
|
31394
30565
|
LATENT?: string;
|
|
31395
30566
|
MASK?: string;
|
|
31396
30567
|
MODEL?: string;
|
|
31397
|
-
STYLE_MODEL?: string;
|
|
31398
|
-
VAE?: string;
|
|
31399
30568
|
NOISE?: string;
|
|
31400
|
-
GUIDER?: string;
|
|
31401
30569
|
SAMPLER?: string;
|
|
31402
30570
|
SIGMAS?: string;
|
|
30571
|
+
STYLE_MODEL?: string;
|
|
30572
|
+
VAE?: string;
|
|
31403
30573
|
TAESD?: string;
|
|
31404
30574
|
};
|
|
31405
30575
|
litegraph_base?: {
|
|
@@ -31456,16 +30626,16 @@ export declare class ComfyApp {
|
|
|
31456
30626
|
CLIP_VISION_OUTPUT?: string;
|
|
31457
30627
|
CONDITIONING?: string;
|
|
31458
30628
|
CONTROL_NET?: string;
|
|
30629
|
+
GUIDER?: string;
|
|
31459
30630
|
IMAGE?: string;
|
|
31460
30631
|
LATENT?: string;
|
|
31461
30632
|
MASK?: string;
|
|
31462
30633
|
MODEL?: string;
|
|
31463
|
-
STYLE_MODEL?: string;
|
|
31464
|
-
VAE?: string;
|
|
31465
30634
|
NOISE?: string;
|
|
31466
|
-
GUIDER?: string;
|
|
31467
30635
|
SAMPLER?: string;
|
|
31468
30636
|
SIGMAS?: string;
|
|
30637
|
+
STYLE_MODEL?: string;
|
|
30638
|
+
VAE?: string;
|
|
31469
30639
|
TAESD?: string;
|
|
31470
30640
|
};
|
|
31471
30641
|
litegraph_base?: {
|
|
@@ -31543,16 +30713,16 @@ export declare class ComfyApp {
|
|
|
31543
30713
|
CLIP_VISION_OUTPUT?: string;
|
|
31544
30714
|
CONDITIONING?: string;
|
|
31545
30715
|
CONTROL_NET?: string;
|
|
30716
|
+
GUIDER?: string;
|
|
31546
30717
|
IMAGE?: string;
|
|
31547
30718
|
LATENT?: string;
|
|
31548
30719
|
MASK?: string;
|
|
31549
30720
|
MODEL?: string;
|
|
31550
|
-
STYLE_MODEL?: string;
|
|
31551
|
-
VAE?: string;
|
|
31552
30721
|
NOISE?: string;
|
|
31553
|
-
GUIDER?: string;
|
|
31554
30722
|
SAMPLER?: string;
|
|
31555
30723
|
SIGMAS?: string;
|
|
30724
|
+
STYLE_MODEL?: string;
|
|
30725
|
+
VAE?: string;
|
|
31556
30726
|
TAESD?: string;
|
|
31557
30727
|
}, {
|
|
31558
30728
|
CLIP?: string;
|
|
@@ -31560,16 +30730,16 @@ export declare class ComfyApp {
|
|
|
31560
30730
|
CLIP_VISION_OUTPUT?: string;
|
|
31561
30731
|
CONDITIONING?: string;
|
|
31562
30732
|
CONTROL_NET?: string;
|
|
30733
|
+
GUIDER?: string;
|
|
31563
30734
|
IMAGE?: string;
|
|
31564
30735
|
LATENT?: string;
|
|
31565
30736
|
MASK?: string;
|
|
31566
30737
|
MODEL?: string;
|
|
31567
|
-
STYLE_MODEL?: string;
|
|
31568
|
-
VAE?: string;
|
|
31569
30738
|
NOISE?: string;
|
|
31570
|
-
GUIDER?: string;
|
|
31571
30739
|
SAMPLER?: string;
|
|
31572
30740
|
SIGMAS?: string;
|
|
30741
|
+
STYLE_MODEL?: string;
|
|
30742
|
+
VAE?: string;
|
|
31573
30743
|
TAESD?: string;
|
|
31574
30744
|
}>;
|
|
31575
30745
|
litegraph_base: z.ZodObject<{
|
|
@@ -31716,16 +30886,16 @@ export declare class ComfyApp {
|
|
|
31716
30886
|
CLIP_VISION_OUTPUT?: string;
|
|
31717
30887
|
CONDITIONING?: string;
|
|
31718
30888
|
CONTROL_NET?: string;
|
|
30889
|
+
GUIDER?: string;
|
|
31719
30890
|
IMAGE?: string;
|
|
31720
30891
|
LATENT?: string;
|
|
31721
30892
|
MASK?: string;
|
|
31722
30893
|
MODEL?: string;
|
|
31723
|
-
STYLE_MODEL?: string;
|
|
31724
|
-
VAE?: string;
|
|
31725
30894
|
NOISE?: string;
|
|
31726
|
-
GUIDER?: string;
|
|
31727
30895
|
SAMPLER?: string;
|
|
31728
30896
|
SIGMAS?: string;
|
|
30897
|
+
STYLE_MODEL?: string;
|
|
30898
|
+
VAE?: string;
|
|
31729
30899
|
TAESD?: string;
|
|
31730
30900
|
};
|
|
31731
30901
|
litegraph_base?: {
|
|
@@ -31782,16 +30952,16 @@ export declare class ComfyApp {
|
|
|
31782
30952
|
CLIP_VISION_OUTPUT?: string;
|
|
31783
30953
|
CONDITIONING?: string;
|
|
31784
30954
|
CONTROL_NET?: string;
|
|
30955
|
+
GUIDER?: string;
|
|
31785
30956
|
IMAGE?: string;
|
|
31786
30957
|
LATENT?: string;
|
|
31787
30958
|
MASK?: string;
|
|
31788
30959
|
MODEL?: string;
|
|
31789
|
-
STYLE_MODEL?: string;
|
|
31790
|
-
VAE?: string;
|
|
31791
30960
|
NOISE?: string;
|
|
31792
|
-
GUIDER?: string;
|
|
31793
30961
|
SAMPLER?: string;
|
|
31794
30962
|
SIGMAS?: string;
|
|
30963
|
+
STYLE_MODEL?: string;
|
|
30964
|
+
VAE?: string;
|
|
31795
30965
|
TAESD?: string;
|
|
31796
30966
|
};
|
|
31797
30967
|
litegraph_base?: {
|
|
@@ -31914,15 +31084,15 @@ export declare class ComfyApp {
|
|
|
31914
31084
|
}, "strip", z.ZodTypeAny, {
|
|
31915
31085
|
shift?: boolean;
|
|
31916
31086
|
key?: string;
|
|
31087
|
+
meta?: boolean;
|
|
31917
31088
|
ctrl?: boolean;
|
|
31918
31089
|
alt?: boolean;
|
|
31919
|
-
meta?: boolean;
|
|
31920
31090
|
}, {
|
|
31921
31091
|
shift?: boolean;
|
|
31922
31092
|
key?: string;
|
|
31093
|
+
meta?: boolean;
|
|
31923
31094
|
ctrl?: boolean;
|
|
31924
31095
|
alt?: boolean;
|
|
31925
|
-
meta?: boolean;
|
|
31926
31096
|
}>;
|
|
31927
31097
|
targetSelector: z.ZodOptional<z.ZodString>;
|
|
31928
31098
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -31930,9 +31100,9 @@ export declare class ComfyApp {
|
|
|
31930
31100
|
combo?: {
|
|
31931
31101
|
shift?: boolean;
|
|
31932
31102
|
key?: string;
|
|
31103
|
+
meta?: boolean;
|
|
31933
31104
|
ctrl?: boolean;
|
|
31934
31105
|
alt?: boolean;
|
|
31935
|
-
meta?: boolean;
|
|
31936
31106
|
};
|
|
31937
31107
|
targetSelector?: string;
|
|
31938
31108
|
}, {
|
|
@@ -31940,9 +31110,9 @@ export declare class ComfyApp {
|
|
|
31940
31110
|
combo?: {
|
|
31941
31111
|
shift?: boolean;
|
|
31942
31112
|
key?: string;
|
|
31113
|
+
meta?: boolean;
|
|
31943
31114
|
ctrl?: boolean;
|
|
31944
31115
|
alt?: boolean;
|
|
31945
|
-
meta?: boolean;
|
|
31946
31116
|
};
|
|
31947
31117
|
targetSelector?: string;
|
|
31948
31118
|
}>, "many">;
|
|
@@ -31957,15 +31127,15 @@ export declare class ComfyApp {
|
|
|
31957
31127
|
}, "strip", z.ZodTypeAny, {
|
|
31958
31128
|
shift?: boolean;
|
|
31959
31129
|
key?: string;
|
|
31130
|
+
meta?: boolean;
|
|
31960
31131
|
ctrl?: boolean;
|
|
31961
31132
|
alt?: boolean;
|
|
31962
|
-
meta?: boolean;
|
|
31963
31133
|
}, {
|
|
31964
31134
|
shift?: boolean;
|
|
31965
31135
|
key?: string;
|
|
31136
|
+
meta?: boolean;
|
|
31966
31137
|
ctrl?: boolean;
|
|
31967
31138
|
alt?: boolean;
|
|
31968
|
-
meta?: boolean;
|
|
31969
31139
|
}>;
|
|
31970
31140
|
targetSelector: z.ZodOptional<z.ZodString>;
|
|
31971
31141
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -31973,9 +31143,9 @@ export declare class ComfyApp {
|
|
|
31973
31143
|
combo?: {
|
|
31974
31144
|
shift?: boolean;
|
|
31975
31145
|
key?: string;
|
|
31146
|
+
meta?: boolean;
|
|
31976
31147
|
ctrl?: boolean;
|
|
31977
31148
|
alt?: boolean;
|
|
31978
|
-
meta?: boolean;
|
|
31979
31149
|
};
|
|
31980
31150
|
targetSelector?: string;
|
|
31981
31151
|
}, {
|
|
@@ -31983,9 +31153,9 @@ export declare class ComfyApp {
|
|
|
31983
31153
|
combo?: {
|
|
31984
31154
|
shift?: boolean;
|
|
31985
31155
|
key?: string;
|
|
31156
|
+
meta?: boolean;
|
|
31986
31157
|
ctrl?: boolean;
|
|
31987
31158
|
alt?: boolean;
|
|
31988
|
-
meta?: boolean;
|
|
31989
31159
|
};
|
|
31990
31160
|
targetSelector?: string;
|
|
31991
31161
|
}>, "many">;
|
|
@@ -32027,16 +31197,16 @@ export declare class ComfyApp {
|
|
|
32027
31197
|
CLIP_VISION_OUTPUT?: string;
|
|
32028
31198
|
CONDITIONING?: string;
|
|
32029
31199
|
CONTROL_NET?: string;
|
|
31200
|
+
GUIDER?: string;
|
|
32030
31201
|
IMAGE?: string;
|
|
32031
31202
|
LATENT?: string;
|
|
32032
31203
|
MASK?: string;
|
|
32033
31204
|
MODEL?: string;
|
|
32034
|
-
STYLE_MODEL?: string;
|
|
32035
|
-
VAE?: string;
|
|
32036
31205
|
NOISE?: string;
|
|
32037
|
-
GUIDER?: string;
|
|
32038
31206
|
SAMPLER?: string;
|
|
32039
31207
|
SIGMAS?: string;
|
|
31208
|
+
STYLE_MODEL?: string;
|
|
31209
|
+
VAE?: string;
|
|
32040
31210
|
TAESD?: string;
|
|
32041
31211
|
}, {
|
|
32042
31212
|
CLIP?: string;
|
|
@@ -32044,16 +31214,16 @@ export declare class ComfyApp {
|
|
|
32044
31214
|
CLIP_VISION_OUTPUT?: string;
|
|
32045
31215
|
CONDITIONING?: string;
|
|
32046
31216
|
CONTROL_NET?: string;
|
|
31217
|
+
GUIDER?: string;
|
|
32047
31218
|
IMAGE?: string;
|
|
32048
31219
|
LATENT?: string;
|
|
32049
31220
|
MASK?: string;
|
|
32050
31221
|
MODEL?: string;
|
|
32051
|
-
STYLE_MODEL?: string;
|
|
32052
|
-
VAE?: string;
|
|
32053
31222
|
NOISE?: string;
|
|
32054
|
-
GUIDER?: string;
|
|
32055
31223
|
SAMPLER?: string;
|
|
32056
31224
|
SIGMAS?: string;
|
|
31225
|
+
STYLE_MODEL?: string;
|
|
31226
|
+
VAE?: string;
|
|
32057
31227
|
TAESD?: string;
|
|
32058
31228
|
}>;
|
|
32059
31229
|
litegraph_base: z.ZodObject<{
|
|
@@ -32200,16 +31370,16 @@ export declare class ComfyApp {
|
|
|
32200
31370
|
CLIP_VISION_OUTPUT?: string;
|
|
32201
31371
|
CONDITIONING?: string;
|
|
32202
31372
|
CONTROL_NET?: string;
|
|
31373
|
+
GUIDER?: string;
|
|
32203
31374
|
IMAGE?: string;
|
|
32204
31375
|
LATENT?: string;
|
|
32205
31376
|
MASK?: string;
|
|
32206
31377
|
MODEL?: string;
|
|
32207
|
-
STYLE_MODEL?: string;
|
|
32208
|
-
VAE?: string;
|
|
32209
31378
|
NOISE?: string;
|
|
32210
|
-
GUIDER?: string;
|
|
32211
31379
|
SAMPLER?: string;
|
|
32212
31380
|
SIGMAS?: string;
|
|
31381
|
+
STYLE_MODEL?: string;
|
|
31382
|
+
VAE?: string;
|
|
32213
31383
|
TAESD?: string;
|
|
32214
31384
|
};
|
|
32215
31385
|
litegraph_base?: {
|
|
@@ -32266,16 +31436,16 @@ export declare class ComfyApp {
|
|
|
32266
31436
|
CLIP_VISION_OUTPUT?: string;
|
|
32267
31437
|
CONDITIONING?: string;
|
|
32268
31438
|
CONTROL_NET?: string;
|
|
31439
|
+
GUIDER?: string;
|
|
32269
31440
|
IMAGE?: string;
|
|
32270
31441
|
LATENT?: string;
|
|
32271
31442
|
MASK?: string;
|
|
32272
31443
|
MODEL?: string;
|
|
32273
|
-
STYLE_MODEL?: string;
|
|
32274
|
-
VAE?: string;
|
|
32275
31444
|
NOISE?: string;
|
|
32276
|
-
GUIDER?: string;
|
|
32277
31445
|
SAMPLER?: string;
|
|
32278
31446
|
SIGMAS?: string;
|
|
31447
|
+
STYLE_MODEL?: string;
|
|
31448
|
+
VAE?: string;
|
|
32279
31449
|
TAESD?: string;
|
|
32280
31450
|
};
|
|
32281
31451
|
litegraph_base?: {
|
|
@@ -32364,7 +31534,7 @@ export declare class ComfyApp {
|
|
|
32364
31534
|
'Comfy.PreviewFormat'?: string;
|
|
32365
31535
|
'Comfy.PromptFilename'?: boolean;
|
|
32366
31536
|
'Comfy.Sidebar.Location'?: "left" | "right";
|
|
32367
|
-
'Comfy.Sidebar.Size'?: "
|
|
31537
|
+
'Comfy.Sidebar.Size'?: "normal" | "small";
|
|
32368
31538
|
'Comfy.SwitchUser'?: any;
|
|
32369
31539
|
'Comfy.SnapToGrid.GridSize'?: number;
|
|
32370
31540
|
'Comfy.TextareaWidget.FontSize'?: number;
|
|
@@ -32386,9 +31556,9 @@ export declare class ComfyApp {
|
|
|
32386
31556
|
combo?: {
|
|
32387
31557
|
shift?: boolean;
|
|
32388
31558
|
key?: string;
|
|
31559
|
+
meta?: boolean;
|
|
32389
31560
|
ctrl?: boolean;
|
|
32390
31561
|
alt?: boolean;
|
|
32391
|
-
meta?: boolean;
|
|
32392
31562
|
};
|
|
32393
31563
|
targetSelector?: string;
|
|
32394
31564
|
}[];
|
|
@@ -32397,9 +31567,9 @@ export declare class ComfyApp {
|
|
|
32397
31567
|
combo?: {
|
|
32398
31568
|
shift?: boolean;
|
|
32399
31569
|
key?: string;
|
|
31570
|
+
meta?: boolean;
|
|
32400
31571
|
ctrl?: boolean;
|
|
32401
31572
|
alt?: boolean;
|
|
32402
|
-
meta?: boolean;
|
|
32403
31573
|
};
|
|
32404
31574
|
targetSelector?: string;
|
|
32405
31575
|
}[];
|
|
@@ -32441,16 +31611,16 @@ export declare class ComfyApp {
|
|
|
32441
31611
|
CLIP_VISION_OUTPUT?: string;
|
|
32442
31612
|
CONDITIONING?: string;
|
|
32443
31613
|
CONTROL_NET?: string;
|
|
31614
|
+
GUIDER?: string;
|
|
32444
31615
|
IMAGE?: string;
|
|
32445
31616
|
LATENT?: string;
|
|
32446
31617
|
MASK?: string;
|
|
32447
31618
|
MODEL?: string;
|
|
32448
|
-
STYLE_MODEL?: string;
|
|
32449
|
-
VAE?: string;
|
|
32450
31619
|
NOISE?: string;
|
|
32451
|
-
GUIDER?: string;
|
|
32452
31620
|
SAMPLER?: string;
|
|
32453
31621
|
SIGMAS?: string;
|
|
31622
|
+
STYLE_MODEL?: string;
|
|
31623
|
+
VAE?: string;
|
|
32454
31624
|
TAESD?: string;
|
|
32455
31625
|
}, {
|
|
32456
31626
|
CLIP?: string;
|
|
@@ -32458,16 +31628,16 @@ export declare class ComfyApp {
|
|
|
32458
31628
|
CLIP_VISION_OUTPUT?: string;
|
|
32459
31629
|
CONDITIONING?: string;
|
|
32460
31630
|
CONTROL_NET?: string;
|
|
31631
|
+
GUIDER?: string;
|
|
32461
31632
|
IMAGE?: string;
|
|
32462
31633
|
LATENT?: string;
|
|
32463
31634
|
MASK?: string;
|
|
32464
31635
|
MODEL?: string;
|
|
32465
|
-
STYLE_MODEL?: string;
|
|
32466
|
-
VAE?: string;
|
|
32467
31636
|
NOISE?: string;
|
|
32468
|
-
GUIDER?: string;
|
|
32469
31637
|
SAMPLER?: string;
|
|
32470
31638
|
SIGMAS?: string;
|
|
31639
|
+
STYLE_MODEL?: string;
|
|
31640
|
+
VAE?: string;
|
|
32471
31641
|
TAESD?: string;
|
|
32472
31642
|
}>;
|
|
32473
31643
|
litegraph_base: z.ZodObject<{
|
|
@@ -32614,16 +31784,16 @@ export declare class ComfyApp {
|
|
|
32614
31784
|
CLIP_VISION_OUTPUT?: string;
|
|
32615
31785
|
CONDITIONING?: string;
|
|
32616
31786
|
CONTROL_NET?: string;
|
|
31787
|
+
GUIDER?: string;
|
|
32617
31788
|
IMAGE?: string;
|
|
32618
31789
|
LATENT?: string;
|
|
32619
31790
|
MASK?: string;
|
|
32620
31791
|
MODEL?: string;
|
|
32621
|
-
STYLE_MODEL?: string;
|
|
32622
|
-
VAE?: string;
|
|
32623
31792
|
NOISE?: string;
|
|
32624
|
-
GUIDER?: string;
|
|
32625
31793
|
SAMPLER?: string;
|
|
32626
31794
|
SIGMAS?: string;
|
|
31795
|
+
STYLE_MODEL?: string;
|
|
31796
|
+
VAE?: string;
|
|
32627
31797
|
TAESD?: string;
|
|
32628
31798
|
};
|
|
32629
31799
|
litegraph_base?: {
|
|
@@ -32680,16 +31850,16 @@ export declare class ComfyApp {
|
|
|
32680
31850
|
CLIP_VISION_OUTPUT?: string;
|
|
32681
31851
|
CONDITIONING?: string;
|
|
32682
31852
|
CONTROL_NET?: string;
|
|
31853
|
+
GUIDER?: string;
|
|
32683
31854
|
IMAGE?: string;
|
|
32684
31855
|
LATENT?: string;
|
|
32685
31856
|
MASK?: string;
|
|
32686
31857
|
MODEL?: string;
|
|
32687
|
-
STYLE_MODEL?: string;
|
|
32688
|
-
VAE?: string;
|
|
32689
31858
|
NOISE?: string;
|
|
32690
|
-
GUIDER?: string;
|
|
32691
31859
|
SAMPLER?: string;
|
|
32692
31860
|
SIGMAS?: string;
|
|
31861
|
+
STYLE_MODEL?: string;
|
|
31862
|
+
VAE?: string;
|
|
32693
31863
|
TAESD?: string;
|
|
32694
31864
|
};
|
|
32695
31865
|
litegraph_base?: {
|
|
@@ -32778,7 +31948,7 @@ export declare class ComfyApp {
|
|
|
32778
31948
|
'Comfy.PreviewFormat'?: string;
|
|
32779
31949
|
'Comfy.PromptFilename'?: boolean;
|
|
32780
31950
|
'Comfy.Sidebar.Location'?: "left" | "right";
|
|
32781
|
-
'Comfy.Sidebar.Size'?: "
|
|
31951
|
+
'Comfy.Sidebar.Size'?: "normal" | "small";
|
|
32782
31952
|
'Comfy.SwitchUser'?: any;
|
|
32783
31953
|
'Comfy.SnapToGrid.GridSize'?: number;
|
|
32784
31954
|
'Comfy.TextareaWidget.FontSize'?: number;
|
|
@@ -32800,9 +31970,9 @@ export declare class ComfyApp {
|
|
|
32800
31970
|
combo?: {
|
|
32801
31971
|
shift?: boolean;
|
|
32802
31972
|
key?: string;
|
|
31973
|
+
meta?: boolean;
|
|
32803
31974
|
ctrl?: boolean;
|
|
32804
31975
|
alt?: boolean;
|
|
32805
|
-
meta?: boolean;
|
|
32806
31976
|
};
|
|
32807
31977
|
targetSelector?: string;
|
|
32808
31978
|
}[];
|
|
@@ -32811,9 +31981,9 @@ export declare class ComfyApp {
|
|
|
32811
31981
|
combo?: {
|
|
32812
31982
|
shift?: boolean;
|
|
32813
31983
|
key?: string;
|
|
31984
|
+
meta?: boolean;
|
|
32814
31985
|
ctrl?: boolean;
|
|
32815
31986
|
alt?: boolean;
|
|
32816
|
-
meta?: boolean;
|
|
32817
31987
|
};
|
|
32818
31988
|
targetSelector?: string;
|
|
32819
31989
|
}[];
|
|
@@ -32936,6 +32106,15 @@ export declare class ComfyApp {
|
|
|
32936
32106
|
torch_vram_free?: number;
|
|
32937
32107
|
}>, "many">;
|
|
32938
32108
|
}, "strip", z.ZodTypeAny, {
|
|
32109
|
+
devices?: {
|
|
32110
|
+
type?: string;
|
|
32111
|
+
name?: string;
|
|
32112
|
+
index?: number;
|
|
32113
|
+
vram_total?: number;
|
|
32114
|
+
vram_free?: number;
|
|
32115
|
+
torch_vram_total?: number;
|
|
32116
|
+
torch_vram_free?: number;
|
|
32117
|
+
}[];
|
|
32939
32118
|
system?: {
|
|
32940
32119
|
os?: string;
|
|
32941
32120
|
python_version?: string;
|
|
@@ -32946,6 +32125,7 @@ export declare class ComfyApp {
|
|
|
32946
32125
|
ram_total?: number;
|
|
32947
32126
|
ram_free?: number;
|
|
32948
32127
|
};
|
|
32128
|
+
}, {
|
|
32949
32129
|
devices?: {
|
|
32950
32130
|
type?: string;
|
|
32951
32131
|
name?: string;
|
|
@@ -32955,7 +32135,6 @@ export declare class ComfyApp {
|
|
|
32955
32135
|
torch_vram_total?: number;
|
|
32956
32136
|
torch_vram_free?: number;
|
|
32957
32137
|
}[];
|
|
32958
|
-
}, {
|
|
32959
32138
|
system?: {
|
|
32960
32139
|
os?: string;
|
|
32961
32140
|
python_version?: string;
|
|
@@ -32966,15 +32145,6 @@ export declare class ComfyApp {
|
|
|
32966
32145
|
ram_total?: number;
|
|
32967
32146
|
ram_free?: number;
|
|
32968
32147
|
};
|
|
32969
|
-
devices?: {
|
|
32970
|
-
type?: string;
|
|
32971
|
-
name?: string;
|
|
32972
|
-
index?: number;
|
|
32973
|
-
vram_total?: number;
|
|
32974
|
-
vram_free?: number;
|
|
32975
|
-
torch_vram_total?: number;
|
|
32976
|
-
torch_vram_free?: number;
|
|
32977
|
-
}[];
|
|
32978
32148
|
}>;
|
|
32979
32149
|
|
|
32980
32150
|
declare const zUser: z.ZodObject<{
|
|
@@ -32996,12 +32166,12 @@ export declare class ComfyApp {
|
|
|
32996
32166
|
size: z.ZodNumber;
|
|
32997
32167
|
modified: z.ZodNumber;
|
|
32998
32168
|
}, "strip", z.ZodTypeAny, {
|
|
32999
|
-
path?: string;
|
|
33000
32169
|
size?: number;
|
|
32170
|
+
path?: string;
|
|
33001
32171
|
modified?: number;
|
|
33002
32172
|
}, {
|
|
33003
|
-
path?: string;
|
|
33004
32173
|
size?: number;
|
|
32174
|
+
path?: string;
|
|
33005
32175
|
modified?: number;
|
|
33006
32176
|
}>;
|
|
33007
32177
|
|