@comfyorg/comfyui-frontend-types 1.6.11 → 1.6.12
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 +216 -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;
|
|
@@ -1076,19 +995,6 @@ export declare class ComfyApp {
|
|
|
1076
995
|
|
|
1077
996
|
declare type NodeId = z.infer<typeof zNodeId>;
|
|
1078
997
|
|
|
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
998
|
declare type PendingTaskItem = z.infer<typeof zPendingTaskItem>;
|
|
1093
999
|
|
|
1094
1000
|
/** {@link Pick} only properties that evaluate to `never`. */
|
|
@@ -1102,8 +1008,6 @@ export declare class ComfyApp {
|
|
|
1102
1008
|
|
|
1103
1009
|
declare type RunningTaskItem = z.infer<typeof zRunningTaskItem>;
|
|
1104
1010
|
|
|
1105
|
-
declare type SearchAuxScore = number[];
|
|
1106
|
-
|
|
1107
1011
|
declare type SettingCustomRenderer = (name: string, setter: (v: any) => void, value: any, attrs: any) => HTMLElement;
|
|
1108
1012
|
|
|
1109
1013
|
declare type SettingInputType = 'boolean' | 'number' | 'slider' | 'combo' | 'text' | 'image' | 'color' | 'hidden';
|
|
@@ -1274,800 +1178,6 @@ export declare class ComfyApp {
|
|
|
1274
1178
|
|
|
1275
1179
|
declare type Widgets = Record<string, ComfyWidgetConstructor>;
|
|
1276
1180
|
|
|
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
1181
|
declare const zComfyNodeDef: z.ZodObject<{
|
|
2072
1182
|
input: z.ZodOptional<z.ZodObject<{
|
|
2073
1183
|
required: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodTuple<[z.ZodLiteral<"INT">, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -2875,9 +1985,7 @@ export declare class ComfyApp {
|
|
|
2875
1985
|
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
2876
1986
|
experimental: z.ZodOptional<z.ZodBoolean>;
|
|
2877
1987
|
}, "strip", z.ZodTypeAny, {
|
|
2878
|
-
|
|
2879
|
-
description?: string;
|
|
2880
|
-
output?: (string | any[])[];
|
|
1988
|
+
deprecated?: boolean;
|
|
2881
1989
|
input?: {
|
|
2882
1990
|
required?: Record<string, any[] | ("INT" | {})[] | ("FLOAT" | {})[] | ("BOOLEAN" | {})[] | ("STRING" | {})[] | (any[] | {})[] | (string | {})[] | ["INT", z.objectOutputType<z.objectUtil.extendShape<{
|
|
2883
1991
|
default: z.ZodOptional<z.ZodAny>;
|
|
@@ -3039,19 +2147,19 @@ export declare class ComfyApp {
|
|
|
3039
2147
|
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
3040
2148
|
}, z.ZodTypeAny, "passthrough">, ...unknown[]]>;
|
|
3041
2149
|
};
|
|
2150
|
+
output?: (string | any[])[];
|
|
2151
|
+
experimental?: boolean;
|
|
2152
|
+
name?: string;
|
|
2153
|
+
display_name?: string;
|
|
2154
|
+
description?: string;
|
|
3042
2155
|
output_is_list?: boolean[];
|
|
3043
2156
|
output_name?: string[];
|
|
3044
2157
|
output_tooltips?: string[];
|
|
3045
|
-
display_name?: string;
|
|
3046
2158
|
category?: string;
|
|
3047
2159
|
output_node?: boolean;
|
|
3048
2160
|
python_module?: string;
|
|
3049
|
-
deprecated?: boolean;
|
|
3050
|
-
experimental?: boolean;
|
|
3051
2161
|
}, {
|
|
3052
|
-
|
|
3053
|
-
description?: string;
|
|
3054
|
-
output?: (string | any[])[];
|
|
2162
|
+
deprecated?: boolean;
|
|
3055
2163
|
input?: {
|
|
3056
2164
|
required?: Record<string, string | any[] | ["INT", ...unknown[]] | ["FLOAT", ...unknown[]] | ["BOOLEAN", ...unknown[]] | ["STRING", ...unknown[]] | [any[], ...unknown[]] | [string, ...unknown[]] | ["INT", z.objectInputType<z.objectUtil.extendShape<{
|
|
3057
2165
|
default: z.ZodOptional<z.ZodAny>;
|
|
@@ -3213,19 +2321,19 @@ export declare class ComfyApp {
|
|
|
3213
2321
|
advanced: z.ZodOptional<z.ZodBoolean>;
|
|
3214
2322
|
}, z.ZodTypeAny, "passthrough">, ...unknown[]]>;
|
|
3215
2323
|
};
|
|
2324
|
+
output?: (string | any[])[];
|
|
2325
|
+
experimental?: boolean;
|
|
2326
|
+
name?: string;
|
|
2327
|
+
display_name?: string;
|
|
2328
|
+
description?: string;
|
|
3216
2329
|
output_is_list?: boolean[];
|
|
3217
2330
|
output_name?: string[];
|
|
3218
2331
|
output_tooltips?: string[];
|
|
3219
|
-
display_name?: string;
|
|
3220
2332
|
category?: string;
|
|
3221
2333
|
output_node?: boolean;
|
|
3222
2334
|
python_module?: string;
|
|
3223
|
-
deprecated?: boolean;
|
|
3224
|
-
experimental?: boolean;
|
|
3225
2335
|
}>;
|
|
3226
2336
|
|
|
3227
|
-
declare const zComfyOutputTypesSpec: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodAny, "many">]>, "many">;
|
|
3228
|
-
|
|
3229
2337
|
/** Schema version 0.4 */
|
|
3230
2338
|
declare const zComfyWorkflow: z.ZodObject<{
|
|
3231
2339
|
last_node_id: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -7994,9 +7102,6 @@ export declare class ComfyApp {
|
|
|
7994
7102
|
}, z.ZodTypeAny, "passthrough">>;
|
|
7995
7103
|
merge: z.ZodOptional<z.ZodBoolean>;
|
|
7996
7104
|
}>, "strip", z.ZodTypeAny, {
|
|
7997
|
-
prompt_id?: string;
|
|
7998
|
-
node?: string | number;
|
|
7999
|
-
display_node?: string | number;
|
|
8000
7105
|
output?: {
|
|
8001
7106
|
audio?: {
|
|
8002
7107
|
type?: string;
|
|
@@ -8012,11 +7117,11 @@ export declare class ComfyApp {
|
|
|
8012
7117
|
} & {
|
|
8013
7118
|
[k: string]: unknown;
|
|
8014
7119
|
};
|
|
8015
|
-
merge?: boolean;
|
|
8016
|
-
}, {
|
|
8017
7120
|
prompt_id?: string;
|
|
8018
7121
|
node?: string | number;
|
|
8019
7122
|
display_node?: string | number;
|
|
7123
|
+
merge?: boolean;
|
|
7124
|
+
}, {
|
|
8020
7125
|
output?: {
|
|
8021
7126
|
audio?: {
|
|
8022
7127
|
type?: string;
|
|
@@ -8032,6 +7137,9 @@ export declare class ComfyApp {
|
|
|
8032
7137
|
} & {
|
|
8033
7138
|
[k: string]: unknown;
|
|
8034
7139
|
};
|
|
7140
|
+
prompt_id?: string;
|
|
7141
|
+
node?: string | number;
|
|
7142
|
+
display_node?: string | number;
|
|
8035
7143
|
merge?: boolean;
|
|
8036
7144
|
}>;
|
|
8037
7145
|
|
|
@@ -14745,8 +13853,8 @@ export declare class ComfyApp {
|
|
|
14745
13853
|
}, "strip", z.ZodTypeAny, {
|
|
14746
13854
|
extra_pnginfo?: {
|
|
14747
13855
|
workflow?: {
|
|
14748
|
-
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
14749
13856
|
version?: number;
|
|
13857
|
+
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
14750
13858
|
last_node_id?: string | number;
|
|
14751
13859
|
last_link_id?: number;
|
|
14752
13860
|
nodes?: z.objectOutputType<{
|
|
@@ -14863,11 +13971,11 @@ export declare class ComfyApp {
|
|
|
14863
13971
|
[k: string]: unknown;
|
|
14864
13972
|
};
|
|
14865
13973
|
info?: {
|
|
13974
|
+
version?: string;
|
|
14866
13975
|
name?: string;
|
|
14867
|
-
author?: string;
|
|
14868
13976
|
description?: string;
|
|
14869
|
-
version?: string;
|
|
14870
13977
|
created?: string;
|
|
13978
|
+
author?: string;
|
|
14871
13979
|
modified?: string;
|
|
14872
13980
|
software?: string;
|
|
14873
13981
|
} & {
|
|
@@ -14915,8 +14023,8 @@ export declare class ComfyApp {
|
|
|
14915
14023
|
}, {
|
|
14916
14024
|
extra_pnginfo?: {
|
|
14917
14025
|
workflow?: {
|
|
14918
|
-
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
14919
14026
|
version?: number;
|
|
14027
|
+
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
14920
14028
|
last_node_id?: string | number;
|
|
14921
14029
|
last_link_id?: number;
|
|
14922
14030
|
nodes?: z.objectInputType<{
|
|
@@ -15036,11 +14144,11 @@ export declare class ComfyApp {
|
|
|
15036
14144
|
[k: string]: unknown;
|
|
15037
14145
|
};
|
|
15038
14146
|
info?: {
|
|
14147
|
+
version?: string;
|
|
15039
14148
|
name?: string;
|
|
15040
|
-
author?: string;
|
|
15041
14149
|
description?: string;
|
|
15042
|
-
version?: string;
|
|
15043
14150
|
created?: string;
|
|
14151
|
+
author?: string;
|
|
15044
14152
|
modified?: string;
|
|
15045
14153
|
software?: string;
|
|
15046
14154
|
} & {
|
|
@@ -15175,8 +14283,6 @@ export declare class ComfyApp {
|
|
|
15175
14283
|
current_outputs?: any;
|
|
15176
14284
|
}>], null>]>, "many">;
|
|
15177
14285
|
}, "strip", z.ZodTypeAny, {
|
|
15178
|
-
status_str?: "success" | "error";
|
|
15179
|
-
completed?: boolean;
|
|
15180
14286
|
messages?: (["execution_start", {
|
|
15181
14287
|
prompt_id?: string;
|
|
15182
14288
|
timestamp?: number;
|
|
@@ -15205,9 +14311,9 @@ export declare class ComfyApp {
|
|
|
15205
14311
|
current_inputs?: any;
|
|
15206
14312
|
current_outputs?: any;
|
|
15207
14313
|
}, ...unknown[]])[];
|
|
15208
|
-
|
|
15209
|
-
status_str?: "success" | "error";
|
|
14314
|
+
status_str?: "error" | "success";
|
|
15210
14315
|
completed?: boolean;
|
|
14316
|
+
}, {
|
|
15211
14317
|
messages?: (["execution_start", {
|
|
15212
14318
|
prompt_id?: string;
|
|
15213
14319
|
timestamp?: number;
|
|
@@ -15236,6 +14342,8 @@ export declare class ComfyApp {
|
|
|
15236
14342
|
current_inputs?: any;
|
|
15237
14343
|
current_outputs?: any;
|
|
15238
14344
|
}, ...unknown[]])[];
|
|
14345
|
+
status_str?: "error" | "success";
|
|
14346
|
+
completed?: boolean;
|
|
15239
14347
|
}>>;
|
|
15240
14348
|
outputs: z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodObject<{
|
|
15241
14349
|
audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -15323,9 +14431,36 @@ export declare class ComfyApp {
|
|
|
15323
14431
|
animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
|
|
15324
14432
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
15325
14433
|
}, "strip", z.ZodTypeAny, {
|
|
14434
|
+
outputs?: Record<string | number, z.objectOutputType<{
|
|
14435
|
+
audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14436
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
14437
|
+
subfolder: z.ZodOptional<z.ZodString>;
|
|
14438
|
+
type: z.ZodOptional<z.ZodString>;
|
|
14439
|
+
}, "strip", z.ZodTypeAny, {
|
|
14440
|
+
type?: string;
|
|
14441
|
+
filename?: string;
|
|
14442
|
+
subfolder?: string;
|
|
14443
|
+
}, {
|
|
14444
|
+
type?: string;
|
|
14445
|
+
filename?: string;
|
|
14446
|
+
subfolder?: string;
|
|
14447
|
+
}>, "many">>;
|
|
14448
|
+
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14449
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
14450
|
+
subfolder: z.ZodOptional<z.ZodString>;
|
|
14451
|
+
type: z.ZodOptional<z.ZodString>;
|
|
14452
|
+
}, "strip", z.ZodTypeAny, {
|
|
14453
|
+
type?: string;
|
|
14454
|
+
filename?: string;
|
|
14455
|
+
subfolder?: string;
|
|
14456
|
+
}, {
|
|
14457
|
+
type?: string;
|
|
14458
|
+
filename?: string;
|
|
14459
|
+
subfolder?: string;
|
|
14460
|
+
}>, "many">>;
|
|
14461
|
+
animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
|
|
14462
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
15326
14463
|
status?: {
|
|
15327
|
-
status_str?: "success" | "error";
|
|
15328
|
-
completed?: boolean;
|
|
15329
14464
|
messages?: (["execution_start", {
|
|
15330
14465
|
prompt_id?: string;
|
|
15331
14466
|
timestamp?: number;
|
|
@@ -15354,36 +14489,9 @@ export declare class ComfyApp {
|
|
|
15354
14489
|
current_inputs?: any;
|
|
15355
14490
|
current_outputs?: any;
|
|
15356
14491
|
}, ...unknown[]])[];
|
|
14492
|
+
status_str?: "error" | "success";
|
|
14493
|
+
completed?: boolean;
|
|
15357
14494
|
};
|
|
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
14495
|
taskType?: "History";
|
|
15388
14496
|
prompt?: [number, string, Record<string, {
|
|
15389
14497
|
inputs?: Record<string, any>;
|
|
@@ -15391,8 +14499,8 @@ export declare class ComfyApp {
|
|
|
15391
14499
|
}>, {
|
|
15392
14500
|
extra_pnginfo?: {
|
|
15393
14501
|
workflow?: {
|
|
15394
|
-
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
15395
14502
|
version?: number;
|
|
14503
|
+
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
15396
14504
|
last_node_id?: string | number;
|
|
15397
14505
|
last_link_id?: number;
|
|
15398
14506
|
nodes?: z.objectOutputType<{
|
|
@@ -15509,11 +14617,11 @@ export declare class ComfyApp {
|
|
|
15509
14617
|
[k: string]: unknown;
|
|
15510
14618
|
};
|
|
15511
14619
|
info?: {
|
|
14620
|
+
version?: string;
|
|
15512
14621
|
name?: string;
|
|
15513
|
-
author?: string;
|
|
15514
14622
|
description?: string;
|
|
15515
|
-
version?: string;
|
|
15516
14623
|
created?: string;
|
|
14624
|
+
author?: string;
|
|
15517
14625
|
modified?: string;
|
|
15518
14626
|
software?: string;
|
|
15519
14627
|
} & {
|
|
@@ -15560,9 +14668,36 @@ export declare class ComfyApp {
|
|
|
15560
14668
|
client_id?: string;
|
|
15561
14669
|
}, (string | number)[], ...unknown[]];
|
|
15562
14670
|
}, {
|
|
14671
|
+
outputs?: Record<string | number, z.objectInputType<{
|
|
14672
|
+
audio: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14673
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
14674
|
+
subfolder: z.ZodOptional<z.ZodString>;
|
|
14675
|
+
type: z.ZodOptional<z.ZodString>;
|
|
14676
|
+
}, "strip", z.ZodTypeAny, {
|
|
14677
|
+
type?: string;
|
|
14678
|
+
filename?: string;
|
|
14679
|
+
subfolder?: string;
|
|
14680
|
+
}, {
|
|
14681
|
+
type?: string;
|
|
14682
|
+
filename?: string;
|
|
14683
|
+
subfolder?: string;
|
|
14684
|
+
}>, "many">>;
|
|
14685
|
+
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14686
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
14687
|
+
subfolder: z.ZodOptional<z.ZodString>;
|
|
14688
|
+
type: z.ZodOptional<z.ZodString>;
|
|
14689
|
+
}, "strip", z.ZodTypeAny, {
|
|
14690
|
+
type?: string;
|
|
14691
|
+
filename?: string;
|
|
14692
|
+
subfolder?: string;
|
|
14693
|
+
}, {
|
|
14694
|
+
type?: string;
|
|
14695
|
+
filename?: string;
|
|
14696
|
+
subfolder?: string;
|
|
14697
|
+
}>, "many">>;
|
|
14698
|
+
animated: z.ZodOptional<z.ZodArray<z.ZodBoolean, "many">>;
|
|
14699
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
15563
14700
|
status?: {
|
|
15564
|
-
status_str?: "success" | "error";
|
|
15565
|
-
completed?: boolean;
|
|
15566
14701
|
messages?: (["execution_start", {
|
|
15567
14702
|
prompt_id?: string;
|
|
15568
14703
|
timestamp?: number;
|
|
@@ -15591,36 +14726,9 @@ export declare class ComfyApp {
|
|
|
15591
14726
|
current_inputs?: any;
|
|
15592
14727
|
current_outputs?: any;
|
|
15593
14728
|
}, ...unknown[]])[];
|
|
14729
|
+
status_str?: "error" | "success";
|
|
14730
|
+
completed?: boolean;
|
|
15594
14731
|
};
|
|
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
14732
|
taskType?: "History";
|
|
15625
14733
|
prompt?: [number, string, Record<string, {
|
|
15626
14734
|
inputs?: Record<string, any>;
|
|
@@ -15628,8 +14736,8 @@ export declare class ComfyApp {
|
|
|
15628
14736
|
}>, {
|
|
15629
14737
|
extra_pnginfo?: {
|
|
15630
14738
|
workflow?: {
|
|
15631
|
-
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
15632
14739
|
version?: number;
|
|
14740
|
+
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
15633
14741
|
last_node_id?: string | number;
|
|
15634
14742
|
last_link_id?: number;
|
|
15635
14743
|
nodes?: z.objectInputType<{
|
|
@@ -15749,11 +14857,11 @@ export declare class ComfyApp {
|
|
|
15749
14857
|
[k: string]: unknown;
|
|
15750
14858
|
};
|
|
15751
14859
|
info?: {
|
|
14860
|
+
version?: string;
|
|
15752
14861
|
name?: string;
|
|
15753
|
-
author?: string;
|
|
15754
14862
|
description?: string;
|
|
15755
|
-
version?: string;
|
|
15756
14863
|
created?: string;
|
|
14864
|
+
author?: string;
|
|
15757
14865
|
modified?: string;
|
|
15758
14866
|
software?: string;
|
|
15759
14867
|
} & {
|
|
@@ -16048,15 +15156,15 @@ export declare class ComfyApp {
|
|
|
16048
15156
|
}, "strip", z.ZodTypeAny, {
|
|
16049
15157
|
shift?: boolean;
|
|
16050
15158
|
key?: string;
|
|
15159
|
+
meta?: boolean;
|
|
16051
15160
|
ctrl?: boolean;
|
|
16052
15161
|
alt?: boolean;
|
|
16053
|
-
meta?: boolean;
|
|
16054
15162
|
}, {
|
|
16055
15163
|
shift?: boolean;
|
|
16056
15164
|
key?: string;
|
|
15165
|
+
meta?: boolean;
|
|
16057
15166
|
ctrl?: boolean;
|
|
16058
15167
|
alt?: boolean;
|
|
16059
|
-
meta?: boolean;
|
|
16060
15168
|
}>;
|
|
16061
15169
|
targetSelector: z.ZodOptional<z.ZodString>;
|
|
16062
15170
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16064,9 +15172,9 @@ export declare class ComfyApp {
|
|
|
16064
15172
|
combo?: {
|
|
16065
15173
|
shift?: boolean;
|
|
16066
15174
|
key?: string;
|
|
15175
|
+
meta?: boolean;
|
|
16067
15176
|
ctrl?: boolean;
|
|
16068
15177
|
alt?: boolean;
|
|
16069
|
-
meta?: boolean;
|
|
16070
15178
|
};
|
|
16071
15179
|
targetSelector?: string;
|
|
16072
15180
|
}, {
|
|
@@ -16074,9 +15182,9 @@ export declare class ComfyApp {
|
|
|
16074
15182
|
combo?: {
|
|
16075
15183
|
shift?: boolean;
|
|
16076
15184
|
key?: string;
|
|
15185
|
+
meta?: boolean;
|
|
16077
15186
|
ctrl?: boolean;
|
|
16078
15187
|
alt?: boolean;
|
|
16079
|
-
meta?: boolean;
|
|
16080
15188
|
};
|
|
16081
15189
|
targetSelector?: string;
|
|
16082
15190
|
}>;
|
|
@@ -22786,8 +21894,8 @@ export declare class ComfyApp {
|
|
|
22786
21894
|
}, "strip", z.ZodTypeAny, {
|
|
22787
21895
|
extra_pnginfo?: {
|
|
22788
21896
|
workflow?: {
|
|
22789
|
-
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
22790
21897
|
version?: number;
|
|
21898
|
+
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
22791
21899
|
last_node_id?: string | number;
|
|
22792
21900
|
last_link_id?: number;
|
|
22793
21901
|
nodes?: z.objectOutputType<{
|
|
@@ -22904,11 +22012,11 @@ export declare class ComfyApp {
|
|
|
22904
22012
|
[k: string]: unknown;
|
|
22905
22013
|
};
|
|
22906
22014
|
info?: {
|
|
22015
|
+
version?: string;
|
|
22907
22016
|
name?: string;
|
|
22908
|
-
author?: string;
|
|
22909
22017
|
description?: string;
|
|
22910
|
-
version?: string;
|
|
22911
22018
|
created?: string;
|
|
22019
|
+
author?: string;
|
|
22912
22020
|
modified?: string;
|
|
22913
22021
|
software?: string;
|
|
22914
22022
|
} & {
|
|
@@ -22956,8 +22064,8 @@ export declare class ComfyApp {
|
|
|
22956
22064
|
}, {
|
|
22957
22065
|
extra_pnginfo?: {
|
|
22958
22066
|
workflow?: {
|
|
22959
|
-
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
22960
22067
|
version?: number;
|
|
22068
|
+
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
22961
22069
|
last_node_id?: string | number;
|
|
22962
22070
|
last_link_id?: number;
|
|
22963
22071
|
nodes?: z.objectInputType<{
|
|
@@ -23077,11 +22185,11 @@ export declare class ComfyApp {
|
|
|
23077
22185
|
[k: string]: unknown;
|
|
23078
22186
|
};
|
|
23079
22187
|
info?: {
|
|
22188
|
+
version?: string;
|
|
23080
22189
|
name?: string;
|
|
23081
|
-
author?: string;
|
|
23082
22190
|
description?: string;
|
|
23083
|
-
version?: string;
|
|
23084
22191
|
created?: string;
|
|
22192
|
+
author?: string;
|
|
23085
22193
|
modified?: string;
|
|
23086
22194
|
software?: string;
|
|
23087
22195
|
} & {
|
|
@@ -23135,8 +22243,8 @@ export declare class ComfyApp {
|
|
|
23135
22243
|
}>, {
|
|
23136
22244
|
extra_pnginfo?: {
|
|
23137
22245
|
workflow?: {
|
|
23138
|
-
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
23139
22246
|
version?: number;
|
|
22247
|
+
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
23140
22248
|
last_node_id?: string | number;
|
|
23141
22249
|
last_link_id?: number;
|
|
23142
22250
|
nodes?: z.objectOutputType<{
|
|
@@ -23253,11 +22361,11 @@ export declare class ComfyApp {
|
|
|
23253
22361
|
[k: string]: unknown;
|
|
23254
22362
|
};
|
|
23255
22363
|
info?: {
|
|
22364
|
+
version?: string;
|
|
23256
22365
|
name?: string;
|
|
23257
|
-
author?: string;
|
|
23258
22366
|
description?: string;
|
|
23259
|
-
version?: string;
|
|
23260
22367
|
created?: string;
|
|
22368
|
+
author?: string;
|
|
23261
22369
|
modified?: string;
|
|
23262
22370
|
software?: string;
|
|
23263
22371
|
} & {
|
|
@@ -23311,8 +22419,8 @@ export declare class ComfyApp {
|
|
|
23311
22419
|
}>, {
|
|
23312
22420
|
extra_pnginfo?: {
|
|
23313
22421
|
workflow?: {
|
|
23314
|
-
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
23315
22422
|
version?: number;
|
|
22423
|
+
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
23316
22424
|
last_node_id?: string | number;
|
|
23317
22425
|
last_link_id?: number;
|
|
23318
22426
|
nodes?: z.objectInputType<{
|
|
@@ -23432,11 +22540,11 @@ export declare class ComfyApp {
|
|
|
23432
22540
|
[k: string]: unknown;
|
|
23433
22541
|
};
|
|
23434
22542
|
info?: {
|
|
22543
|
+
version?: string;
|
|
23435
22544
|
name?: string;
|
|
23436
|
-
author?: string;
|
|
23437
22545
|
description?: string;
|
|
23438
|
-
version?: string;
|
|
23439
22546
|
created?: string;
|
|
22547
|
+
author?: string;
|
|
23440
22548
|
modified?: string;
|
|
23441
22549
|
software?: string;
|
|
23442
22550
|
} & {
|
|
@@ -30146,8 +29254,8 @@ export declare class ComfyApp {
|
|
|
30146
29254
|
}, "strip", z.ZodTypeAny, {
|
|
30147
29255
|
extra_pnginfo?: {
|
|
30148
29256
|
workflow?: {
|
|
30149
|
-
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
30150
29257
|
version?: number;
|
|
29258
|
+
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
30151
29259
|
last_node_id?: string | number;
|
|
30152
29260
|
last_link_id?: number;
|
|
30153
29261
|
nodes?: z.objectOutputType<{
|
|
@@ -30264,11 +29372,11 @@ export declare class ComfyApp {
|
|
|
30264
29372
|
[k: string]: unknown;
|
|
30265
29373
|
};
|
|
30266
29374
|
info?: {
|
|
29375
|
+
version?: string;
|
|
30267
29376
|
name?: string;
|
|
30268
|
-
author?: string;
|
|
30269
29377
|
description?: string;
|
|
30270
|
-
version?: string;
|
|
30271
29378
|
created?: string;
|
|
29379
|
+
author?: string;
|
|
30272
29380
|
modified?: string;
|
|
30273
29381
|
software?: string;
|
|
30274
29382
|
} & {
|
|
@@ -30316,8 +29424,8 @@ export declare class ComfyApp {
|
|
|
30316
29424
|
}, {
|
|
30317
29425
|
extra_pnginfo?: {
|
|
30318
29426
|
workflow?: {
|
|
30319
|
-
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
30320
29427
|
version?: number;
|
|
29428
|
+
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
30321
29429
|
last_node_id?: string | number;
|
|
30322
29430
|
last_link_id?: number;
|
|
30323
29431
|
nodes?: z.objectInputType<{
|
|
@@ -30437,11 +29545,11 @@ export declare class ComfyApp {
|
|
|
30437
29545
|
[k: string]: unknown;
|
|
30438
29546
|
};
|
|
30439
29547
|
info?: {
|
|
29548
|
+
version?: string;
|
|
30440
29549
|
name?: string;
|
|
30441
|
-
author?: string;
|
|
30442
29550
|
description?: string;
|
|
30443
|
-
version?: string;
|
|
30444
29551
|
created?: string;
|
|
29552
|
+
author?: string;
|
|
30445
29553
|
modified?: string;
|
|
30446
29554
|
software?: string;
|
|
30447
29555
|
} & {
|
|
@@ -30505,8 +29613,8 @@ export declare class ComfyApp {
|
|
|
30505
29613
|
}>, {
|
|
30506
29614
|
extra_pnginfo?: {
|
|
30507
29615
|
workflow?: {
|
|
30508
|
-
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
30509
29616
|
version?: number;
|
|
29617
|
+
links?: [number, string | number, number, string | number, number, string | number | string[], ...unknown[]][];
|
|
30510
29618
|
last_node_id?: string | number;
|
|
30511
29619
|
last_link_id?: number;
|
|
30512
29620
|
nodes?: z.objectOutputType<{
|
|
@@ -30623,11 +29731,11 @@ export declare class ComfyApp {
|
|
|
30623
29731
|
[k: string]: unknown;
|
|
30624
29732
|
};
|
|
30625
29733
|
info?: {
|
|
29734
|
+
version?: string;
|
|
30626
29735
|
name?: string;
|
|
30627
|
-
author?: string;
|
|
30628
29736
|
description?: string;
|
|
30629
|
-
version?: string;
|
|
30630
29737
|
created?: string;
|
|
29738
|
+
author?: string;
|
|
30631
29739
|
modified?: string;
|
|
30632
29740
|
software?: string;
|
|
30633
29741
|
} & {
|
|
@@ -30685,8 +29793,8 @@ export declare class ComfyApp {
|
|
|
30685
29793
|
}>, {
|
|
30686
29794
|
extra_pnginfo?: {
|
|
30687
29795
|
workflow?: {
|
|
30688
|
-
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
30689
29796
|
version?: number;
|
|
29797
|
+
links?: [number, string | number, string | number, string | number, string | number, string | number | string[], ...unknown[]][];
|
|
30690
29798
|
last_node_id?: string | number;
|
|
30691
29799
|
last_link_id?: number;
|
|
30692
29800
|
nodes?: z.objectInputType<{
|
|
@@ -30806,11 +29914,11 @@ export declare class ComfyApp {
|
|
|
30806
29914
|
[k: string]: unknown;
|
|
30807
29915
|
};
|
|
30808
29916
|
info?: {
|
|
29917
|
+
version?: string;
|
|
30809
29918
|
name?: string;
|
|
30810
|
-
author?: string;
|
|
30811
29919
|
description?: string;
|
|
30812
|
-
version?: string;
|
|
30813
29920
|
created?: string;
|
|
29921
|
+
author?: string;
|
|
30814
29922
|
modified?: string;
|
|
30815
29923
|
software?: string;
|
|
30816
29924
|
} & {
|
|
@@ -30891,16 +29999,16 @@ export declare class ComfyApp {
|
|
|
30891
29999
|
CLIP_VISION_OUTPUT?: string;
|
|
30892
30000
|
CONDITIONING?: string;
|
|
30893
30001
|
CONTROL_NET?: string;
|
|
30002
|
+
GUIDER?: string;
|
|
30894
30003
|
IMAGE?: string;
|
|
30895
30004
|
LATENT?: string;
|
|
30896
30005
|
MASK?: string;
|
|
30897
30006
|
MODEL?: string;
|
|
30898
|
-
STYLE_MODEL?: string;
|
|
30899
|
-
VAE?: string;
|
|
30900
30007
|
NOISE?: string;
|
|
30901
|
-
GUIDER?: string;
|
|
30902
30008
|
SAMPLER?: string;
|
|
30903
30009
|
SIGMAS?: string;
|
|
30010
|
+
STYLE_MODEL?: string;
|
|
30011
|
+
VAE?: string;
|
|
30904
30012
|
TAESD?: string;
|
|
30905
30013
|
}, {
|
|
30906
30014
|
CLIP?: string;
|
|
@@ -30908,16 +30016,16 @@ export declare class ComfyApp {
|
|
|
30908
30016
|
CLIP_VISION_OUTPUT?: string;
|
|
30909
30017
|
CONDITIONING?: string;
|
|
30910
30018
|
CONTROL_NET?: string;
|
|
30019
|
+
GUIDER?: string;
|
|
30911
30020
|
IMAGE?: string;
|
|
30912
30021
|
LATENT?: string;
|
|
30913
30022
|
MASK?: string;
|
|
30914
30023
|
MODEL?: string;
|
|
30915
|
-
STYLE_MODEL?: string;
|
|
30916
|
-
VAE?: string;
|
|
30917
30024
|
NOISE?: string;
|
|
30918
|
-
GUIDER?: string;
|
|
30919
30025
|
SAMPLER?: string;
|
|
30920
30026
|
SIGMAS?: string;
|
|
30027
|
+
STYLE_MODEL?: string;
|
|
30028
|
+
VAE?: string;
|
|
30921
30029
|
TAESD?: string;
|
|
30922
30030
|
}>;
|
|
30923
30031
|
litegraph_base: z.ZodObject<{
|
|
@@ -31064,16 +30172,16 @@ export declare class ComfyApp {
|
|
|
31064
30172
|
CLIP_VISION_OUTPUT?: string;
|
|
31065
30173
|
CONDITIONING?: string;
|
|
31066
30174
|
CONTROL_NET?: string;
|
|
30175
|
+
GUIDER?: string;
|
|
31067
30176
|
IMAGE?: string;
|
|
31068
30177
|
LATENT?: string;
|
|
31069
30178
|
MASK?: string;
|
|
31070
30179
|
MODEL?: string;
|
|
31071
|
-
STYLE_MODEL?: string;
|
|
31072
|
-
VAE?: string;
|
|
31073
30180
|
NOISE?: string;
|
|
31074
|
-
GUIDER?: string;
|
|
31075
30181
|
SAMPLER?: string;
|
|
31076
30182
|
SIGMAS?: string;
|
|
30183
|
+
STYLE_MODEL?: string;
|
|
30184
|
+
VAE?: string;
|
|
31077
30185
|
TAESD?: string;
|
|
31078
30186
|
};
|
|
31079
30187
|
litegraph_base?: {
|
|
@@ -31130,16 +30238,16 @@ export declare class ComfyApp {
|
|
|
31130
30238
|
CLIP_VISION_OUTPUT?: string;
|
|
31131
30239
|
CONDITIONING?: string;
|
|
31132
30240
|
CONTROL_NET?: string;
|
|
30241
|
+
GUIDER?: string;
|
|
31133
30242
|
IMAGE?: string;
|
|
31134
30243
|
LATENT?: string;
|
|
31135
30244
|
MASK?: string;
|
|
31136
30245
|
MODEL?: string;
|
|
31137
|
-
STYLE_MODEL?: string;
|
|
31138
|
-
VAE?: string;
|
|
31139
30246
|
NOISE?: string;
|
|
31140
|
-
GUIDER?: string;
|
|
31141
30247
|
SAMPLER?: string;
|
|
31142
30248
|
SIGMAS?: string;
|
|
30249
|
+
STYLE_MODEL?: string;
|
|
30250
|
+
VAE?: string;
|
|
31143
30251
|
TAESD?: string;
|
|
31144
30252
|
};
|
|
31145
30253
|
litegraph_base?: {
|
|
@@ -31217,16 +30325,16 @@ export declare class ComfyApp {
|
|
|
31217
30325
|
CLIP_VISION_OUTPUT?: string;
|
|
31218
30326
|
CONDITIONING?: string;
|
|
31219
30327
|
CONTROL_NET?: string;
|
|
30328
|
+
GUIDER?: string;
|
|
31220
30329
|
IMAGE?: string;
|
|
31221
30330
|
LATENT?: string;
|
|
31222
30331
|
MASK?: string;
|
|
31223
30332
|
MODEL?: string;
|
|
31224
|
-
STYLE_MODEL?: string;
|
|
31225
|
-
VAE?: string;
|
|
31226
30333
|
NOISE?: string;
|
|
31227
|
-
GUIDER?: string;
|
|
31228
30334
|
SAMPLER?: string;
|
|
31229
30335
|
SIGMAS?: string;
|
|
30336
|
+
STYLE_MODEL?: string;
|
|
30337
|
+
VAE?: string;
|
|
31230
30338
|
TAESD?: string;
|
|
31231
30339
|
}, {
|
|
31232
30340
|
CLIP?: string;
|
|
@@ -31234,16 +30342,16 @@ export declare class ComfyApp {
|
|
|
31234
30342
|
CLIP_VISION_OUTPUT?: string;
|
|
31235
30343
|
CONDITIONING?: string;
|
|
31236
30344
|
CONTROL_NET?: string;
|
|
30345
|
+
GUIDER?: string;
|
|
31237
30346
|
IMAGE?: string;
|
|
31238
30347
|
LATENT?: string;
|
|
31239
30348
|
MASK?: string;
|
|
31240
30349
|
MODEL?: string;
|
|
31241
|
-
STYLE_MODEL?: string;
|
|
31242
|
-
VAE?: string;
|
|
31243
30350
|
NOISE?: string;
|
|
31244
|
-
GUIDER?: string;
|
|
31245
30351
|
SAMPLER?: string;
|
|
31246
30352
|
SIGMAS?: string;
|
|
30353
|
+
STYLE_MODEL?: string;
|
|
30354
|
+
VAE?: string;
|
|
31247
30355
|
TAESD?: string;
|
|
31248
30356
|
}>;
|
|
31249
30357
|
litegraph_base: z.ZodObject<{
|
|
@@ -31390,16 +30498,16 @@ export declare class ComfyApp {
|
|
|
31390
30498
|
CLIP_VISION_OUTPUT?: string;
|
|
31391
30499
|
CONDITIONING?: string;
|
|
31392
30500
|
CONTROL_NET?: string;
|
|
30501
|
+
GUIDER?: string;
|
|
31393
30502
|
IMAGE?: string;
|
|
31394
30503
|
LATENT?: string;
|
|
31395
30504
|
MASK?: string;
|
|
31396
30505
|
MODEL?: string;
|
|
31397
|
-
STYLE_MODEL?: string;
|
|
31398
|
-
VAE?: string;
|
|
31399
30506
|
NOISE?: string;
|
|
31400
|
-
GUIDER?: string;
|
|
31401
30507
|
SAMPLER?: string;
|
|
31402
30508
|
SIGMAS?: string;
|
|
30509
|
+
STYLE_MODEL?: string;
|
|
30510
|
+
VAE?: string;
|
|
31403
30511
|
TAESD?: string;
|
|
31404
30512
|
};
|
|
31405
30513
|
litegraph_base?: {
|
|
@@ -31456,16 +30564,16 @@ export declare class ComfyApp {
|
|
|
31456
30564
|
CLIP_VISION_OUTPUT?: string;
|
|
31457
30565
|
CONDITIONING?: string;
|
|
31458
30566
|
CONTROL_NET?: string;
|
|
30567
|
+
GUIDER?: string;
|
|
31459
30568
|
IMAGE?: string;
|
|
31460
30569
|
LATENT?: string;
|
|
31461
30570
|
MASK?: string;
|
|
31462
30571
|
MODEL?: string;
|
|
31463
|
-
STYLE_MODEL?: string;
|
|
31464
|
-
VAE?: string;
|
|
31465
30572
|
NOISE?: string;
|
|
31466
|
-
GUIDER?: string;
|
|
31467
30573
|
SAMPLER?: string;
|
|
31468
30574
|
SIGMAS?: string;
|
|
30575
|
+
STYLE_MODEL?: string;
|
|
30576
|
+
VAE?: string;
|
|
31469
30577
|
TAESD?: string;
|
|
31470
30578
|
};
|
|
31471
30579
|
litegraph_base?: {
|
|
@@ -31543,16 +30651,16 @@ export declare class ComfyApp {
|
|
|
31543
30651
|
CLIP_VISION_OUTPUT?: string;
|
|
31544
30652
|
CONDITIONING?: string;
|
|
31545
30653
|
CONTROL_NET?: string;
|
|
30654
|
+
GUIDER?: string;
|
|
31546
30655
|
IMAGE?: string;
|
|
31547
30656
|
LATENT?: string;
|
|
31548
30657
|
MASK?: string;
|
|
31549
30658
|
MODEL?: string;
|
|
31550
|
-
STYLE_MODEL?: string;
|
|
31551
|
-
VAE?: string;
|
|
31552
30659
|
NOISE?: string;
|
|
31553
|
-
GUIDER?: string;
|
|
31554
30660
|
SAMPLER?: string;
|
|
31555
30661
|
SIGMAS?: string;
|
|
30662
|
+
STYLE_MODEL?: string;
|
|
30663
|
+
VAE?: string;
|
|
31556
30664
|
TAESD?: string;
|
|
31557
30665
|
}, {
|
|
31558
30666
|
CLIP?: string;
|
|
@@ -31560,16 +30668,16 @@ export declare class ComfyApp {
|
|
|
31560
30668
|
CLIP_VISION_OUTPUT?: string;
|
|
31561
30669
|
CONDITIONING?: string;
|
|
31562
30670
|
CONTROL_NET?: string;
|
|
30671
|
+
GUIDER?: string;
|
|
31563
30672
|
IMAGE?: string;
|
|
31564
30673
|
LATENT?: string;
|
|
31565
30674
|
MASK?: string;
|
|
31566
30675
|
MODEL?: string;
|
|
31567
|
-
STYLE_MODEL?: string;
|
|
31568
|
-
VAE?: string;
|
|
31569
30676
|
NOISE?: string;
|
|
31570
|
-
GUIDER?: string;
|
|
31571
30677
|
SAMPLER?: string;
|
|
31572
30678
|
SIGMAS?: string;
|
|
30679
|
+
STYLE_MODEL?: string;
|
|
30680
|
+
VAE?: string;
|
|
31573
30681
|
TAESD?: string;
|
|
31574
30682
|
}>;
|
|
31575
30683
|
litegraph_base: z.ZodObject<{
|
|
@@ -31716,16 +30824,16 @@ export declare class ComfyApp {
|
|
|
31716
30824
|
CLIP_VISION_OUTPUT?: string;
|
|
31717
30825
|
CONDITIONING?: string;
|
|
31718
30826
|
CONTROL_NET?: string;
|
|
30827
|
+
GUIDER?: string;
|
|
31719
30828
|
IMAGE?: string;
|
|
31720
30829
|
LATENT?: string;
|
|
31721
30830
|
MASK?: string;
|
|
31722
30831
|
MODEL?: string;
|
|
31723
|
-
STYLE_MODEL?: string;
|
|
31724
|
-
VAE?: string;
|
|
31725
30832
|
NOISE?: string;
|
|
31726
|
-
GUIDER?: string;
|
|
31727
30833
|
SAMPLER?: string;
|
|
31728
30834
|
SIGMAS?: string;
|
|
30835
|
+
STYLE_MODEL?: string;
|
|
30836
|
+
VAE?: string;
|
|
31729
30837
|
TAESD?: string;
|
|
31730
30838
|
};
|
|
31731
30839
|
litegraph_base?: {
|
|
@@ -31782,16 +30890,16 @@ export declare class ComfyApp {
|
|
|
31782
30890
|
CLIP_VISION_OUTPUT?: string;
|
|
31783
30891
|
CONDITIONING?: string;
|
|
31784
30892
|
CONTROL_NET?: string;
|
|
30893
|
+
GUIDER?: string;
|
|
31785
30894
|
IMAGE?: string;
|
|
31786
30895
|
LATENT?: string;
|
|
31787
30896
|
MASK?: string;
|
|
31788
30897
|
MODEL?: string;
|
|
31789
|
-
STYLE_MODEL?: string;
|
|
31790
|
-
VAE?: string;
|
|
31791
30898
|
NOISE?: string;
|
|
31792
|
-
GUIDER?: string;
|
|
31793
30899
|
SAMPLER?: string;
|
|
31794
30900
|
SIGMAS?: string;
|
|
30901
|
+
STYLE_MODEL?: string;
|
|
30902
|
+
VAE?: string;
|
|
31795
30903
|
TAESD?: string;
|
|
31796
30904
|
};
|
|
31797
30905
|
litegraph_base?: {
|
|
@@ -31914,15 +31022,15 @@ export declare class ComfyApp {
|
|
|
31914
31022
|
}, "strip", z.ZodTypeAny, {
|
|
31915
31023
|
shift?: boolean;
|
|
31916
31024
|
key?: string;
|
|
31025
|
+
meta?: boolean;
|
|
31917
31026
|
ctrl?: boolean;
|
|
31918
31027
|
alt?: boolean;
|
|
31919
|
-
meta?: boolean;
|
|
31920
31028
|
}, {
|
|
31921
31029
|
shift?: boolean;
|
|
31922
31030
|
key?: string;
|
|
31031
|
+
meta?: boolean;
|
|
31923
31032
|
ctrl?: boolean;
|
|
31924
31033
|
alt?: boolean;
|
|
31925
|
-
meta?: boolean;
|
|
31926
31034
|
}>;
|
|
31927
31035
|
targetSelector: z.ZodOptional<z.ZodString>;
|
|
31928
31036
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -31930,9 +31038,9 @@ export declare class ComfyApp {
|
|
|
31930
31038
|
combo?: {
|
|
31931
31039
|
shift?: boolean;
|
|
31932
31040
|
key?: string;
|
|
31041
|
+
meta?: boolean;
|
|
31933
31042
|
ctrl?: boolean;
|
|
31934
31043
|
alt?: boolean;
|
|
31935
|
-
meta?: boolean;
|
|
31936
31044
|
};
|
|
31937
31045
|
targetSelector?: string;
|
|
31938
31046
|
}, {
|
|
@@ -31940,9 +31048,9 @@ export declare class ComfyApp {
|
|
|
31940
31048
|
combo?: {
|
|
31941
31049
|
shift?: boolean;
|
|
31942
31050
|
key?: string;
|
|
31051
|
+
meta?: boolean;
|
|
31943
31052
|
ctrl?: boolean;
|
|
31944
31053
|
alt?: boolean;
|
|
31945
|
-
meta?: boolean;
|
|
31946
31054
|
};
|
|
31947
31055
|
targetSelector?: string;
|
|
31948
31056
|
}>, "many">;
|
|
@@ -31957,15 +31065,15 @@ export declare class ComfyApp {
|
|
|
31957
31065
|
}, "strip", z.ZodTypeAny, {
|
|
31958
31066
|
shift?: boolean;
|
|
31959
31067
|
key?: string;
|
|
31068
|
+
meta?: boolean;
|
|
31960
31069
|
ctrl?: boolean;
|
|
31961
31070
|
alt?: boolean;
|
|
31962
|
-
meta?: boolean;
|
|
31963
31071
|
}, {
|
|
31964
31072
|
shift?: boolean;
|
|
31965
31073
|
key?: string;
|
|
31074
|
+
meta?: boolean;
|
|
31966
31075
|
ctrl?: boolean;
|
|
31967
31076
|
alt?: boolean;
|
|
31968
|
-
meta?: boolean;
|
|
31969
31077
|
}>;
|
|
31970
31078
|
targetSelector: z.ZodOptional<z.ZodString>;
|
|
31971
31079
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -31973,9 +31081,9 @@ export declare class ComfyApp {
|
|
|
31973
31081
|
combo?: {
|
|
31974
31082
|
shift?: boolean;
|
|
31975
31083
|
key?: string;
|
|
31084
|
+
meta?: boolean;
|
|
31976
31085
|
ctrl?: boolean;
|
|
31977
31086
|
alt?: boolean;
|
|
31978
|
-
meta?: boolean;
|
|
31979
31087
|
};
|
|
31980
31088
|
targetSelector?: string;
|
|
31981
31089
|
}, {
|
|
@@ -31983,9 +31091,9 @@ export declare class ComfyApp {
|
|
|
31983
31091
|
combo?: {
|
|
31984
31092
|
shift?: boolean;
|
|
31985
31093
|
key?: string;
|
|
31094
|
+
meta?: boolean;
|
|
31986
31095
|
ctrl?: boolean;
|
|
31987
31096
|
alt?: boolean;
|
|
31988
|
-
meta?: boolean;
|
|
31989
31097
|
};
|
|
31990
31098
|
targetSelector?: string;
|
|
31991
31099
|
}>, "many">;
|
|
@@ -32027,16 +31135,16 @@ export declare class ComfyApp {
|
|
|
32027
31135
|
CLIP_VISION_OUTPUT?: string;
|
|
32028
31136
|
CONDITIONING?: string;
|
|
32029
31137
|
CONTROL_NET?: string;
|
|
31138
|
+
GUIDER?: string;
|
|
32030
31139
|
IMAGE?: string;
|
|
32031
31140
|
LATENT?: string;
|
|
32032
31141
|
MASK?: string;
|
|
32033
31142
|
MODEL?: string;
|
|
32034
|
-
STYLE_MODEL?: string;
|
|
32035
|
-
VAE?: string;
|
|
32036
31143
|
NOISE?: string;
|
|
32037
|
-
GUIDER?: string;
|
|
32038
31144
|
SAMPLER?: string;
|
|
32039
31145
|
SIGMAS?: string;
|
|
31146
|
+
STYLE_MODEL?: string;
|
|
31147
|
+
VAE?: string;
|
|
32040
31148
|
TAESD?: string;
|
|
32041
31149
|
}, {
|
|
32042
31150
|
CLIP?: string;
|
|
@@ -32044,16 +31152,16 @@ export declare class ComfyApp {
|
|
|
32044
31152
|
CLIP_VISION_OUTPUT?: string;
|
|
32045
31153
|
CONDITIONING?: string;
|
|
32046
31154
|
CONTROL_NET?: string;
|
|
31155
|
+
GUIDER?: string;
|
|
32047
31156
|
IMAGE?: string;
|
|
32048
31157
|
LATENT?: string;
|
|
32049
31158
|
MASK?: string;
|
|
32050
31159
|
MODEL?: string;
|
|
32051
|
-
STYLE_MODEL?: string;
|
|
32052
|
-
VAE?: string;
|
|
32053
31160
|
NOISE?: string;
|
|
32054
|
-
GUIDER?: string;
|
|
32055
31161
|
SAMPLER?: string;
|
|
32056
31162
|
SIGMAS?: string;
|
|
31163
|
+
STYLE_MODEL?: string;
|
|
31164
|
+
VAE?: string;
|
|
32057
31165
|
TAESD?: string;
|
|
32058
31166
|
}>;
|
|
32059
31167
|
litegraph_base: z.ZodObject<{
|
|
@@ -32200,16 +31308,16 @@ export declare class ComfyApp {
|
|
|
32200
31308
|
CLIP_VISION_OUTPUT?: string;
|
|
32201
31309
|
CONDITIONING?: string;
|
|
32202
31310
|
CONTROL_NET?: string;
|
|
31311
|
+
GUIDER?: string;
|
|
32203
31312
|
IMAGE?: string;
|
|
32204
31313
|
LATENT?: string;
|
|
32205
31314
|
MASK?: string;
|
|
32206
31315
|
MODEL?: string;
|
|
32207
|
-
STYLE_MODEL?: string;
|
|
32208
|
-
VAE?: string;
|
|
32209
31316
|
NOISE?: string;
|
|
32210
|
-
GUIDER?: string;
|
|
32211
31317
|
SAMPLER?: string;
|
|
32212
31318
|
SIGMAS?: string;
|
|
31319
|
+
STYLE_MODEL?: string;
|
|
31320
|
+
VAE?: string;
|
|
32213
31321
|
TAESD?: string;
|
|
32214
31322
|
};
|
|
32215
31323
|
litegraph_base?: {
|
|
@@ -32266,16 +31374,16 @@ export declare class ComfyApp {
|
|
|
32266
31374
|
CLIP_VISION_OUTPUT?: string;
|
|
32267
31375
|
CONDITIONING?: string;
|
|
32268
31376
|
CONTROL_NET?: string;
|
|
31377
|
+
GUIDER?: string;
|
|
32269
31378
|
IMAGE?: string;
|
|
32270
31379
|
LATENT?: string;
|
|
32271
31380
|
MASK?: string;
|
|
32272
31381
|
MODEL?: string;
|
|
32273
|
-
STYLE_MODEL?: string;
|
|
32274
|
-
VAE?: string;
|
|
32275
31382
|
NOISE?: string;
|
|
32276
|
-
GUIDER?: string;
|
|
32277
31383
|
SAMPLER?: string;
|
|
32278
31384
|
SIGMAS?: string;
|
|
31385
|
+
STYLE_MODEL?: string;
|
|
31386
|
+
VAE?: string;
|
|
32279
31387
|
TAESD?: string;
|
|
32280
31388
|
};
|
|
32281
31389
|
litegraph_base?: {
|
|
@@ -32364,7 +31472,7 @@ export declare class ComfyApp {
|
|
|
32364
31472
|
'Comfy.PreviewFormat'?: string;
|
|
32365
31473
|
'Comfy.PromptFilename'?: boolean;
|
|
32366
31474
|
'Comfy.Sidebar.Location'?: "left" | "right";
|
|
32367
|
-
'Comfy.Sidebar.Size'?: "
|
|
31475
|
+
'Comfy.Sidebar.Size'?: "normal" | "small";
|
|
32368
31476
|
'Comfy.SwitchUser'?: any;
|
|
32369
31477
|
'Comfy.SnapToGrid.GridSize'?: number;
|
|
32370
31478
|
'Comfy.TextareaWidget.FontSize'?: number;
|
|
@@ -32386,9 +31494,9 @@ export declare class ComfyApp {
|
|
|
32386
31494
|
combo?: {
|
|
32387
31495
|
shift?: boolean;
|
|
32388
31496
|
key?: string;
|
|
31497
|
+
meta?: boolean;
|
|
32389
31498
|
ctrl?: boolean;
|
|
32390
31499
|
alt?: boolean;
|
|
32391
|
-
meta?: boolean;
|
|
32392
31500
|
};
|
|
32393
31501
|
targetSelector?: string;
|
|
32394
31502
|
}[];
|
|
@@ -32397,9 +31505,9 @@ export declare class ComfyApp {
|
|
|
32397
31505
|
combo?: {
|
|
32398
31506
|
shift?: boolean;
|
|
32399
31507
|
key?: string;
|
|
31508
|
+
meta?: boolean;
|
|
32400
31509
|
ctrl?: boolean;
|
|
32401
31510
|
alt?: boolean;
|
|
32402
|
-
meta?: boolean;
|
|
32403
31511
|
};
|
|
32404
31512
|
targetSelector?: string;
|
|
32405
31513
|
}[];
|
|
@@ -32441,16 +31549,16 @@ export declare class ComfyApp {
|
|
|
32441
31549
|
CLIP_VISION_OUTPUT?: string;
|
|
32442
31550
|
CONDITIONING?: string;
|
|
32443
31551
|
CONTROL_NET?: string;
|
|
31552
|
+
GUIDER?: string;
|
|
32444
31553
|
IMAGE?: string;
|
|
32445
31554
|
LATENT?: string;
|
|
32446
31555
|
MASK?: string;
|
|
32447
31556
|
MODEL?: string;
|
|
32448
|
-
STYLE_MODEL?: string;
|
|
32449
|
-
VAE?: string;
|
|
32450
31557
|
NOISE?: string;
|
|
32451
|
-
GUIDER?: string;
|
|
32452
31558
|
SAMPLER?: string;
|
|
32453
31559
|
SIGMAS?: string;
|
|
31560
|
+
STYLE_MODEL?: string;
|
|
31561
|
+
VAE?: string;
|
|
32454
31562
|
TAESD?: string;
|
|
32455
31563
|
}, {
|
|
32456
31564
|
CLIP?: string;
|
|
@@ -32458,16 +31566,16 @@ export declare class ComfyApp {
|
|
|
32458
31566
|
CLIP_VISION_OUTPUT?: string;
|
|
32459
31567
|
CONDITIONING?: string;
|
|
32460
31568
|
CONTROL_NET?: string;
|
|
31569
|
+
GUIDER?: string;
|
|
32461
31570
|
IMAGE?: string;
|
|
32462
31571
|
LATENT?: string;
|
|
32463
31572
|
MASK?: string;
|
|
32464
31573
|
MODEL?: string;
|
|
32465
|
-
STYLE_MODEL?: string;
|
|
32466
|
-
VAE?: string;
|
|
32467
31574
|
NOISE?: string;
|
|
32468
|
-
GUIDER?: string;
|
|
32469
31575
|
SAMPLER?: string;
|
|
32470
31576
|
SIGMAS?: string;
|
|
31577
|
+
STYLE_MODEL?: string;
|
|
31578
|
+
VAE?: string;
|
|
32471
31579
|
TAESD?: string;
|
|
32472
31580
|
}>;
|
|
32473
31581
|
litegraph_base: z.ZodObject<{
|
|
@@ -32614,16 +31722,16 @@ export declare class ComfyApp {
|
|
|
32614
31722
|
CLIP_VISION_OUTPUT?: string;
|
|
32615
31723
|
CONDITIONING?: string;
|
|
32616
31724
|
CONTROL_NET?: string;
|
|
31725
|
+
GUIDER?: string;
|
|
32617
31726
|
IMAGE?: string;
|
|
32618
31727
|
LATENT?: string;
|
|
32619
31728
|
MASK?: string;
|
|
32620
31729
|
MODEL?: string;
|
|
32621
|
-
STYLE_MODEL?: string;
|
|
32622
|
-
VAE?: string;
|
|
32623
31730
|
NOISE?: string;
|
|
32624
|
-
GUIDER?: string;
|
|
32625
31731
|
SAMPLER?: string;
|
|
32626
31732
|
SIGMAS?: string;
|
|
31733
|
+
STYLE_MODEL?: string;
|
|
31734
|
+
VAE?: string;
|
|
32627
31735
|
TAESD?: string;
|
|
32628
31736
|
};
|
|
32629
31737
|
litegraph_base?: {
|
|
@@ -32680,16 +31788,16 @@ export declare class ComfyApp {
|
|
|
32680
31788
|
CLIP_VISION_OUTPUT?: string;
|
|
32681
31789
|
CONDITIONING?: string;
|
|
32682
31790
|
CONTROL_NET?: string;
|
|
31791
|
+
GUIDER?: string;
|
|
32683
31792
|
IMAGE?: string;
|
|
32684
31793
|
LATENT?: string;
|
|
32685
31794
|
MASK?: string;
|
|
32686
31795
|
MODEL?: string;
|
|
32687
|
-
STYLE_MODEL?: string;
|
|
32688
|
-
VAE?: string;
|
|
32689
31796
|
NOISE?: string;
|
|
32690
|
-
GUIDER?: string;
|
|
32691
31797
|
SAMPLER?: string;
|
|
32692
31798
|
SIGMAS?: string;
|
|
31799
|
+
STYLE_MODEL?: string;
|
|
31800
|
+
VAE?: string;
|
|
32693
31801
|
TAESD?: string;
|
|
32694
31802
|
};
|
|
32695
31803
|
litegraph_base?: {
|
|
@@ -32778,7 +31886,7 @@ export declare class ComfyApp {
|
|
|
32778
31886
|
'Comfy.PreviewFormat'?: string;
|
|
32779
31887
|
'Comfy.PromptFilename'?: boolean;
|
|
32780
31888
|
'Comfy.Sidebar.Location'?: "left" | "right";
|
|
32781
|
-
'Comfy.Sidebar.Size'?: "
|
|
31889
|
+
'Comfy.Sidebar.Size'?: "normal" | "small";
|
|
32782
31890
|
'Comfy.SwitchUser'?: any;
|
|
32783
31891
|
'Comfy.SnapToGrid.GridSize'?: number;
|
|
32784
31892
|
'Comfy.TextareaWidget.FontSize'?: number;
|
|
@@ -32800,9 +31908,9 @@ export declare class ComfyApp {
|
|
|
32800
31908
|
combo?: {
|
|
32801
31909
|
shift?: boolean;
|
|
32802
31910
|
key?: string;
|
|
31911
|
+
meta?: boolean;
|
|
32803
31912
|
ctrl?: boolean;
|
|
32804
31913
|
alt?: boolean;
|
|
32805
|
-
meta?: boolean;
|
|
32806
31914
|
};
|
|
32807
31915
|
targetSelector?: string;
|
|
32808
31916
|
}[];
|
|
@@ -32811,9 +31919,9 @@ export declare class ComfyApp {
|
|
|
32811
31919
|
combo?: {
|
|
32812
31920
|
shift?: boolean;
|
|
32813
31921
|
key?: string;
|
|
31922
|
+
meta?: boolean;
|
|
32814
31923
|
ctrl?: boolean;
|
|
32815
31924
|
alt?: boolean;
|
|
32816
|
-
meta?: boolean;
|
|
32817
31925
|
};
|
|
32818
31926
|
targetSelector?: string;
|
|
32819
31927
|
}[];
|
|
@@ -32936,6 +32044,15 @@ export declare class ComfyApp {
|
|
|
32936
32044
|
torch_vram_free?: number;
|
|
32937
32045
|
}>, "many">;
|
|
32938
32046
|
}, "strip", z.ZodTypeAny, {
|
|
32047
|
+
devices?: {
|
|
32048
|
+
type?: string;
|
|
32049
|
+
name?: string;
|
|
32050
|
+
index?: number;
|
|
32051
|
+
vram_total?: number;
|
|
32052
|
+
vram_free?: number;
|
|
32053
|
+
torch_vram_total?: number;
|
|
32054
|
+
torch_vram_free?: number;
|
|
32055
|
+
}[];
|
|
32939
32056
|
system?: {
|
|
32940
32057
|
os?: string;
|
|
32941
32058
|
python_version?: string;
|
|
@@ -32946,6 +32063,7 @@ export declare class ComfyApp {
|
|
|
32946
32063
|
ram_total?: number;
|
|
32947
32064
|
ram_free?: number;
|
|
32948
32065
|
};
|
|
32066
|
+
}, {
|
|
32949
32067
|
devices?: {
|
|
32950
32068
|
type?: string;
|
|
32951
32069
|
name?: string;
|
|
@@ -32955,7 +32073,6 @@ export declare class ComfyApp {
|
|
|
32955
32073
|
torch_vram_total?: number;
|
|
32956
32074
|
torch_vram_free?: number;
|
|
32957
32075
|
}[];
|
|
32958
|
-
}, {
|
|
32959
32076
|
system?: {
|
|
32960
32077
|
os?: string;
|
|
32961
32078
|
python_version?: string;
|
|
@@ -32966,15 +32083,6 @@ export declare class ComfyApp {
|
|
|
32966
32083
|
ram_total?: number;
|
|
32967
32084
|
ram_free?: number;
|
|
32968
32085
|
};
|
|
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
32086
|
}>;
|
|
32979
32087
|
|
|
32980
32088
|
declare const zUser: z.ZodObject<{
|
|
@@ -32996,12 +32104,12 @@ export declare class ComfyApp {
|
|
|
32996
32104
|
size: z.ZodNumber;
|
|
32997
32105
|
modified: z.ZodNumber;
|
|
32998
32106
|
}, "strip", z.ZodTypeAny, {
|
|
32999
|
-
path?: string;
|
|
33000
32107
|
size?: number;
|
|
32108
|
+
path?: string;
|
|
33001
32109
|
modified?: number;
|
|
33002
32110
|
}, {
|
|
33003
|
-
path?: string;
|
|
33004
32111
|
size?: number;
|
|
32112
|
+
path?: string;
|
|
33005
32113
|
modified?: number;
|
|
33006
32114
|
}>;
|
|
33007
32115
|
|