chore(ui): typegen

This commit is contained in:
psychedelicious 2023-08-22 15:15:00 +10:00
parent 35d14fc0f9
commit 089ada8cd1

View File

@ -317,7 +317,7 @@ export type components = {
* Added Image Names * Added Image Names
* @description The image names that were added to the board * @description The image names that were added to the board
*/ */
added_image_names: (string)[]; added_image_names: string[];
}; };
/** /**
* Add Integers * Add Integers
@ -363,22 +363,22 @@ export type components = {
* Infill Methods * Infill Methods
* @description List of available infill methods * @description List of available infill methods
*/ */
infill_methods: (string)[]; infill_methods: string[];
/** /**
* Upscaling Methods * Upscaling Methods
* @description List of upscaling methods * @description List of upscaling methods
*/ */
upscaling_methods: (components["schemas"]["Upscaler"])[]; upscaling_methods: components["schemas"]["Upscaler"][];
/** /**
* Nsfw Methods * Nsfw Methods
* @description List of NSFW checking methods * @description List of NSFW checking methods
*/ */
nsfw_methods: (string)[]; nsfw_methods: string[];
/** /**
* Watermarking Methods * Watermarking Methods
* @description List of invisible watermark methods * @description List of invisible watermark methods
*/ */
watermarking_methods: (string)[]; watermarking_methods: string[];
}; };
/** /**
* AppVersion * AppVersion
@ -397,6 +397,45 @@ export type components = {
* @enum {string} * @enum {string}
*/ */
BaseModelType: "sd-1" | "sd-2" | "sdxl" | "sdxl-refiner"; BaseModelType: "sd-1" | "sd-2" | "sdxl" | "sdxl-refiner";
/**
* Blend Latents
* @description Blend two latents using a given alpha. Latents must have same size.
*/
BlendLatentsInvocation: {
/**
* Id
* @description The id of this node. Must be unique among all nodes.
*/
id: string;
/**
* Is Intermediate
* @description Whether or not this node is an intermediate node.
* @default false
*/
is_intermediate?: boolean;
/**
* Type
* @default lblend
* @enum {string}
*/
type: "lblend";
/**
* Latents A
* @description Latents tensor
*/
latents_a?: components["schemas"]["LatentsField"];
/**
* Latents B
* @description Latents tensor
*/
latents_b?: components["schemas"]["LatentsField"];
/**
* Alpha
* @description Blending factor. 0.0 = use input A only, 1.0 = use input B only, 0.5 = 50% mix of input A and input B.
* @default 0.5
*/
alpha?: number;
};
/** BoardChanges */ /** BoardChanges */
BoardChanges: { BoardChanges: {
/** /**
@ -475,7 +514,7 @@ export type components = {
* Image Names * Image Names
* @description The names of the images to add * @description The names of the images to add
*/ */
image_names: (string)[]; image_names: string[];
}; };
/** Body_delete_images_from_list */ /** Body_delete_images_from_list */
Body_delete_images_from_list: { Body_delete_images_from_list: {
@ -483,7 +522,7 @@ export type components = {
* Image Names * Image Names
* @description The list of names of images to delete * @description The list of names of images to delete
*/ */
image_names: (string)[]; image_names: string[];
}; };
/** Body_import_model */ /** Body_import_model */
Body_import_model: { Body_import_model: {
@ -506,7 +545,7 @@ export type components = {
* Model Names * Model Names
* @description model name * @description model name
*/ */
model_names: (string)[]; model_names: string[];
/** /**
* Merged Model Name * Merged Model Name
* @description Name of destination model * @description Name of destination model
@ -546,7 +585,7 @@ export type components = {
* Image Names * Image Names
* @description The names of the images to remove * @description The names of the images to remove
*/ */
image_names: (string)[]; image_names: string[];
}; };
/** Body_star_images_in_list */ /** Body_star_images_in_list */
Body_star_images_in_list: { Body_star_images_in_list: {
@ -554,7 +593,7 @@ export type components = {
* Image Names * Image Names
* @description The list of names of images to star * @description The list of names of images to star
*/ */
image_names: (string)[]; image_names: string[];
}; };
/** Body_unstar_images_in_list */ /** Body_unstar_images_in_list */
Body_unstar_images_in_list: { Body_unstar_images_in_list: {
@ -562,7 +601,7 @@ export type components = {
* Image Names * Image Names
* @description The list of names of images to unstar * @description The list of names of images to unstar
*/ */
image_names: (string)[]; image_names: string[];
}; };
/** Body_upload_image */ /** Body_upload_image */
Body_upload_image: { Body_upload_image: {
@ -598,7 +637,7 @@ export type components = {
* Collection * Collection
* @description The collection of boolean values * @description The collection of boolean values
*/ */
collection?: (boolean)[]; collection?: boolean[];
}; };
/** /**
* BooleanCollectionOutput * BooleanCollectionOutput
@ -615,7 +654,7 @@ export type components = {
* Collection * Collection
* @description The output boolean collection * @description The output boolean collection
*/ */
collection: (boolean)[]; collection: boolean[];
}; };
/** /**
* Boolean Primitive * Boolean Primitive
@ -724,7 +763,7 @@ export type components = {
* Loras * Loras
* @description Loras to apply on model loading * @description Loras to apply on model loading
*/ */
loras: (components["schemas"]["LoraInfo"])[]; loras: components["schemas"]["LoraInfo"][];
}; };
/** /**
* CLIP Skip * CLIP Skip
@ -808,7 +847,7 @@ export type components = {
* Collection * Collection
* @description The collection, will be provided on execution * @description The collection, will be provided on execution
*/ */
collection?: (unknown)[]; collection?: unknown[];
}; };
/** /**
* CollectInvocationOutput * CollectInvocationOutput
@ -825,7 +864,7 @@ export type components = {
* Collection * Collection
* @description The collection of input items * @description The collection of input items
*/ */
collection: (unknown)[]; collection: unknown[];
}; };
/** /**
* ColorCollectionOutput * ColorCollectionOutput
@ -842,7 +881,7 @@ export type components = {
* Collection * Collection
* @description The output colors * @description The output colors
*/ */
collection: (components["schemas"]["ColorField"])[]; collection: components["schemas"]["ColorField"][];
}; };
/** /**
* Color Correct * Color Correct
@ -1027,7 +1066,7 @@ export type components = {
* @description The collection of conditioning tensors * @description The collection of conditioning tensors
* @default 0 * @default 0
*/ */
collection?: (components["schemas"]["ConditioningField"])[]; collection?: components["schemas"]["ConditioningField"][];
}; };
/** /**
* ConditioningCollectionOutput * ConditioningCollectionOutput
@ -1044,7 +1083,7 @@ export type components = {
* Collection * Collection
* @description The output conditioning tensors * @description The output conditioning tensors
*/ */
collection: (components["schemas"]["ConditioningField"])[]; collection: components["schemas"]["ConditioningField"][];
}; };
/** /**
* ConditioningField * ConditioningField
@ -1177,7 +1216,7 @@ export type components = {
* @description The weight given to the ControlNet * @description The weight given to the ControlNet
* @default 1 * @default 1
*/ */
control_weight?: number | (number)[]; control_weight?: number | number[];
/** /**
* Begin Step Percent * Begin Step Percent
* @description When the ControlNet is first applied (% of total steps) * @description When the ControlNet is first applied (% of total steps)
@ -1243,7 +1282,7 @@ export type components = {
* @description The weight given to the ControlNet * @description The weight given to the ControlNet
* @default 1 * @default 1
*/ */
control_weight?: number | (number)[]; control_weight?: number | number[];
/** /**
* Begin Step Percent * Begin Step Percent
* @description When the ControlNet is first applied (% of total steps) * @description When the ControlNet is first applied (% of total steps)
@ -1420,12 +1459,12 @@ export type components = {
* Controlnets * Controlnets
* @description The ControlNets used for inference * @description The ControlNets used for inference
*/ */
controlnets: (components["schemas"]["ControlField"])[]; controlnets: components["schemas"]["ControlField"][];
/** /**
* Loras * Loras
* @description The LoRAs used for inference * @description The LoRAs used for inference
*/ */
loras: (components["schemas"]["LoRAMetadataField"])[]; loras: components["schemas"]["LoRAMetadataField"][];
/** /**
* Vae * Vae
* @description The VAE used for decoding, if the main model's default was not used * @description The VAE used for decoding, if the main model's default was not used
@ -1531,17 +1570,17 @@ export type components = {
* Deleted Board Images * Deleted Board Images
* @description The image names of the board-images relationships that were deleted. * @description The image names of the board-images relationships that were deleted.
*/ */
deleted_board_images: (string)[]; deleted_board_images: string[];
/** /**
* Deleted Images * Deleted Images
* @description The names of the images that were deleted. * @description The names of the images that were deleted.
*/ */
deleted_images: (string)[]; deleted_images: string[];
}; };
/** DeleteImagesFromListResult */ /** DeleteImagesFromListResult */
DeleteImagesFromListResult: { DeleteImagesFromListResult: {
/** Deleted Images */ /** Deleted Images */
deleted_images: (string)[]; deleted_images: string[];
}; };
/** /**
* Denoise Latents * Denoise Latents
@ -1581,7 +1620,7 @@ export type components = {
* @description Classifier-Free Guidance scale * @description Classifier-Free Guidance scale
* @default 7.5 * @default 7.5
*/ */
cfg_scale?: number | (number)[]; cfg_scale?: number | number[];
/** /**
* Denoising Start * Denoising Start
* @description When to start denoising, expressed a percentage of total steps * @description When to start denoising, expressed a percentage of total steps
@ -1605,7 +1644,7 @@ export type components = {
* Control * Control
* @description ControlNet(s) to apply * @description ControlNet(s) to apply
*/ */
control?: components["schemas"]["ControlField"] | (components["schemas"]["ControlField"])[]; control?: components["schemas"]["ControlField"] | components["schemas"]["ControlField"][];
/** /**
* Latents * Latents
* @description Latents tensor * @description Latents tensor
@ -1794,7 +1833,7 @@ export type components = {
* Collection * Collection
* @description The collection of float values * @description The collection of float values
*/ */
collection?: (number)[]; collection?: number[];
}; };
/** /**
* FloatCollectionOutput * FloatCollectionOutput
@ -1811,7 +1850,7 @@ export type components = {
* Collection * Collection
* @description The float collection * @description The float collection
*/ */
collection: (number)[]; collection: number[];
}; };
/** /**
* Float Primitive * Float Primitive
@ -1912,13 +1951,13 @@ export type components = {
* @description The nodes in this graph * @description The nodes in this graph
*/ */
nodes?: { nodes?: {
[key: string]: (components["schemas"]["BooleanInvocation"] | components["schemas"]["BooleanCollectionInvocation"] | components["schemas"]["IntegerInvocation"] | components["schemas"]["IntegerCollectionInvocation"] | components["schemas"]["FloatInvocation"] | components["schemas"]["FloatCollectionInvocation"] | components["schemas"]["StringInvocation"] | components["schemas"]["StringCollectionInvocation"] | components["schemas"]["ImageInvocation"] | components["schemas"]["ImageCollectionInvocation"] | components["schemas"]["LatentsInvocation"] | components["schemas"]["LatentsCollectionInvocation"] | components["schemas"]["ColorInvocation"] | components["schemas"]["ConditioningInvocation"] | components["schemas"]["ConditioningCollectionInvocation"] | components["schemas"]["ControlNetInvocation"] | components["schemas"]["ImageProcessorInvocation"] | components["schemas"]["MainModelLoaderInvocation"] | components["schemas"]["LoraLoaderInvocation"] | components["schemas"]["SDXLLoraLoaderInvocation"] | components["schemas"]["VaeLoaderInvocation"] | components["schemas"]["MetadataAccumulatorInvocation"] | components["schemas"]["SDXLModelLoaderInvocation"] | components["schemas"]["SDXLRefinerModelLoaderInvocation"] | components["schemas"]["CompelInvocation"] | components["schemas"]["SDXLCompelPromptInvocation"] | components["schemas"]["SDXLRefinerCompelPromptInvocation"] | components["schemas"]["ClipSkipInvocation"] | components["schemas"]["DenoiseLatentsInvocation"] | components["schemas"]["LatentsToImageInvocation"] | components["schemas"]["ResizeLatentsInvocation"] | components["schemas"]["ScaleLatentsInvocation"] | components["schemas"]["ImageToLatentsInvocation"] | components["schemas"]["ONNXPromptInvocation"] | components["schemas"]["ONNXTextToLatentsInvocation"] | components["schemas"]["ONNXLatentsToImageInvocation"] | components["schemas"]["OnnxModelLoaderInvocation"] | components["schemas"]["ShowImageInvocation"] | components["schemas"]["ImageCropInvocation"] | components["schemas"]["ImagePasteInvocation"] | components["schemas"]["MaskFromAlphaInvocation"] | components["schemas"]["ImageMultiplyInvocation"] | components["schemas"]["ImageChannelInvocation"] | components["schemas"]["ImageConvertInvocation"] | components["schemas"]["ImageBlurInvocation"] | components["schemas"]["ImageResizeInvocation"] | components["schemas"]["ImageScaleInvocation"] | components["schemas"]["ImageLerpInvocation"] | components["schemas"]["ImageInverseLerpInvocation"] | components["schemas"]["ImageNSFWBlurInvocation"] | components["schemas"]["ImageWatermarkInvocation"] | components["schemas"]["MaskEdgeInvocation"] | components["schemas"]["MaskCombineInvocation"] | components["schemas"]["ColorCorrectInvocation"] | components["schemas"]["ImageHueAdjustmentInvocation"] | components["schemas"]["ImageLuminosityAdjustmentInvocation"] | components["schemas"]["ImageSaturationAdjustmentInvocation"] | components["schemas"]["DynamicPromptInvocation"] | components["schemas"]["PromptsFromFileInvocation"] | components["schemas"]["CvInpaintInvocation"] | components["schemas"]["FloatLinearRangeInvocation"] | components["schemas"]["StepParamEasingInvocation"] | components["schemas"]["AddInvocation"] | components["schemas"]["SubtractInvocation"] | components["schemas"]["MultiplyInvocation"] | components["schemas"]["DivideInvocation"] | components["schemas"]["RandomIntInvocation"] | components["schemas"]["NoiseInvocation"] | components["schemas"]["RangeInvocation"] | components["schemas"]["RangeOfSizeInvocation"] | components["schemas"]["RandomRangeInvocation"] | components["schemas"]["ESRGANInvocation"] | components["schemas"]["InfillColorInvocation"] | components["schemas"]["InfillTileInvocation"] | components["schemas"]["InfillPatchMatchInvocation"] | components["schemas"]["GraphInvocation"] | components["schemas"]["IterateInvocation"] | components["schemas"]["CollectInvocation"] | components["schemas"]["CannyImageProcessorInvocation"] | components["schemas"]["HedImageProcessorInvocation"] | components["schemas"]["LineartImageProcessorInvocation"] | components["schemas"]["LineartAnimeImageProcessorInvocation"] | components["schemas"]["OpenposeImageProcessorInvocation"] | components["schemas"]["MidasDepthImageProcessorInvocation"] | components["schemas"]["NormalbaeImageProcessorInvocation"] | components["schemas"]["MlsdImageProcessorInvocation"] | components["schemas"]["PidiImageProcessorInvocation"] | components["schemas"]["ContentShuffleImageProcessorInvocation"] | components["schemas"]["ZoeDepthImageProcessorInvocation"] | components["schemas"]["MediapipeFaceProcessorInvocation"] | components["schemas"]["LeresImageProcessorInvocation"] | components["schemas"]["TileResamplerProcessorInvocation"] | components["schemas"]["SegmentAnythingProcessorInvocation"]) | undefined; [key: string]: components["schemas"]["BooleanInvocation"] | components["schemas"]["BooleanCollectionInvocation"] | components["schemas"]["IntegerInvocation"] | components["schemas"]["IntegerCollectionInvocation"] | components["schemas"]["FloatInvocation"] | components["schemas"]["FloatCollectionInvocation"] | components["schemas"]["StringInvocation"] | components["schemas"]["StringCollectionInvocation"] | components["schemas"]["ImageInvocation"] | components["schemas"]["ImageCollectionInvocation"] | components["schemas"]["LatentsInvocation"] | components["schemas"]["LatentsCollectionInvocation"] | components["schemas"]["ColorInvocation"] | components["schemas"]["ConditioningInvocation"] | components["schemas"]["ConditioningCollectionInvocation"] | components["schemas"]["ControlNetInvocation"] | components["schemas"]["ImageProcessorInvocation"] | components["schemas"]["MainModelLoaderInvocation"] | components["schemas"]["LoraLoaderInvocation"] | components["schemas"]["SDXLLoraLoaderInvocation"] | components["schemas"]["VaeLoaderInvocation"] | components["schemas"]["MetadataAccumulatorInvocation"] | components["schemas"]["SDXLModelLoaderInvocation"] | components["schemas"]["SDXLRefinerModelLoaderInvocation"] | components["schemas"]["CompelInvocation"] | components["schemas"]["SDXLCompelPromptInvocation"] | components["schemas"]["SDXLRefinerCompelPromptInvocation"] | components["schemas"]["ClipSkipInvocation"] | components["schemas"]["DenoiseLatentsInvocation"] | components["schemas"]["LatentsToImageInvocation"] | components["schemas"]["ResizeLatentsInvocation"] | components["schemas"]["ScaleLatentsInvocation"] | components["schemas"]["ImageToLatentsInvocation"] | components["schemas"]["BlendLatentsInvocation"] | components["schemas"]["ONNXPromptInvocation"] | components["schemas"]["ONNXTextToLatentsInvocation"] | components["schemas"]["ONNXLatentsToImageInvocation"] | components["schemas"]["OnnxModelLoaderInvocation"] | components["schemas"]["ShowImageInvocation"] | components["schemas"]["ImageCropInvocation"] | components["schemas"]["ImagePasteInvocation"] | components["schemas"]["MaskFromAlphaInvocation"] | components["schemas"]["ImageMultiplyInvocation"] | components["schemas"]["ImageChannelInvocation"] | components["schemas"]["ImageConvertInvocation"] | components["schemas"]["ImageBlurInvocation"] | components["schemas"]["ImageResizeInvocation"] | components["schemas"]["ImageScaleInvocation"] | components["schemas"]["ImageLerpInvocation"] | components["schemas"]["ImageInverseLerpInvocation"] | components["schemas"]["ImageNSFWBlurInvocation"] | components["schemas"]["ImageWatermarkInvocation"] | components["schemas"]["MaskEdgeInvocation"] | components["schemas"]["MaskCombineInvocation"] | components["schemas"]["ColorCorrectInvocation"] | components["schemas"]["ImageHueAdjustmentInvocation"] | components["schemas"]["ImageLuminosityAdjustmentInvocation"] | components["schemas"]["ImageSaturationAdjustmentInvocation"] | components["schemas"]["DynamicPromptInvocation"] | components["schemas"]["PromptsFromFileInvocation"] | components["schemas"]["CvInpaintInvocation"] | components["schemas"]["FloatLinearRangeInvocation"] | components["schemas"]["StepParamEasingInvocation"] | components["schemas"]["AddInvocation"] | components["schemas"]["SubtractInvocation"] | components["schemas"]["MultiplyInvocation"] | components["schemas"]["DivideInvocation"] | components["schemas"]["RandomIntInvocation"] | components["schemas"]["NoiseInvocation"] | components["schemas"]["RangeInvocation"] | components["schemas"]["RangeOfSizeInvocation"] | components["schemas"]["RandomRangeInvocation"] | components["schemas"]["ESRGANInvocation"] | components["schemas"]["InfillColorInvocation"] | components["schemas"]["InfillTileInvocation"] | components["schemas"]["InfillPatchMatchInvocation"] | components["schemas"]["GraphInvocation"] | components["schemas"]["IterateInvocation"] | components["schemas"]["CollectInvocation"] | components["schemas"]["CannyImageProcessorInvocation"] | components["schemas"]["HedImageProcessorInvocation"] | components["schemas"]["LineartImageProcessorInvocation"] | components["schemas"]["LineartAnimeImageProcessorInvocation"] | components["schemas"]["OpenposeImageProcessorInvocation"] | components["schemas"]["MidasDepthImageProcessorInvocation"] | components["schemas"]["NormalbaeImageProcessorInvocation"] | components["schemas"]["MlsdImageProcessorInvocation"] | components["schemas"]["PidiImageProcessorInvocation"] | components["schemas"]["ContentShuffleImageProcessorInvocation"] | components["schemas"]["ZoeDepthImageProcessorInvocation"] | components["schemas"]["MediapipeFaceProcessorInvocation"] | components["schemas"]["LeresImageProcessorInvocation"] | components["schemas"]["TileResamplerProcessorInvocation"] | components["schemas"]["SegmentAnythingProcessorInvocation"];
}; };
/** /**
* Edges * Edges
* @description The connections between nodes and their fields in this graph * @description The connections between nodes and their fields in this graph
*/ */
edges?: (components["schemas"]["Edge"])[]; edges?: components["schemas"]["Edge"][];
}; };
/** /**
* GraphExecutionState * GraphExecutionState
@ -1944,39 +1983,39 @@ export type components = {
* Executed * Executed
* @description The set of node ids that have been executed * @description The set of node ids that have been executed
*/ */
executed: (string)[]; executed: string[];
/** /**
* Executed History * Executed History
* @description The list of node ids that have been executed, in order of execution * @description The list of node ids that have been executed, in order of execution
*/ */
executed_history: (string)[]; executed_history: string[];
/** /**
* Results * Results
* @description The results of node executions * @description The results of node executions
*/ */
results: { results: {
[key: string]: (components["schemas"]["BooleanOutput"] | components["schemas"]["BooleanCollectionOutput"] | components["schemas"]["IntegerOutput"] | components["schemas"]["IntegerCollectionOutput"] | components["schemas"]["FloatOutput"] | components["schemas"]["FloatCollectionOutput"] | components["schemas"]["StringOutput"] | components["schemas"]["StringCollectionOutput"] | components["schemas"]["ImageOutput"] | components["schemas"]["ImageCollectionOutput"] | components["schemas"]["LatentsOutput"] | components["schemas"]["LatentsCollectionOutput"] | components["schemas"]["ColorOutput"] | components["schemas"]["ColorCollectionOutput"] | components["schemas"]["ConditioningOutput"] | components["schemas"]["ConditioningCollectionOutput"] | components["schemas"]["ControlOutput"] | components["schemas"]["ModelLoaderOutput"] | components["schemas"]["LoraLoaderOutput"] | components["schemas"]["SDXLLoraLoaderOutput"] | components["schemas"]["VaeLoaderOutput"] | components["schemas"]["MetadataAccumulatorOutput"] | components["schemas"]["SDXLModelLoaderOutput"] | components["schemas"]["SDXLRefinerModelLoaderOutput"] | components["schemas"]["ClipSkipInvocationOutput"] | components["schemas"]["ONNXModelLoaderOutput"] | components["schemas"]["NoiseOutput"] | components["schemas"]["GraphInvocationOutput"] | components["schemas"]["IterateInvocationOutput"] | components["schemas"]["CollectInvocationOutput"]) | undefined; [key: string]: components["schemas"]["BooleanOutput"] | components["schemas"]["BooleanCollectionOutput"] | components["schemas"]["IntegerOutput"] | components["schemas"]["IntegerCollectionOutput"] | components["schemas"]["FloatOutput"] | components["schemas"]["FloatCollectionOutput"] | components["schemas"]["StringOutput"] | components["schemas"]["StringCollectionOutput"] | components["schemas"]["ImageOutput"] | components["schemas"]["ImageCollectionOutput"] | components["schemas"]["LatentsOutput"] | components["schemas"]["LatentsCollectionOutput"] | components["schemas"]["ColorOutput"] | components["schemas"]["ColorCollectionOutput"] | components["schemas"]["ConditioningOutput"] | components["schemas"]["ConditioningCollectionOutput"] | components["schemas"]["ControlOutput"] | components["schemas"]["ModelLoaderOutput"] | components["schemas"]["LoraLoaderOutput"] | components["schemas"]["SDXLLoraLoaderOutput"] | components["schemas"]["VaeLoaderOutput"] | components["schemas"]["MetadataAccumulatorOutput"] | components["schemas"]["SDXLModelLoaderOutput"] | components["schemas"]["SDXLRefinerModelLoaderOutput"] | components["schemas"]["ClipSkipInvocationOutput"] | components["schemas"]["ONNXModelLoaderOutput"] | components["schemas"]["NoiseOutput"] | components["schemas"]["GraphInvocationOutput"] | components["schemas"]["IterateInvocationOutput"] | components["schemas"]["CollectInvocationOutput"];
}; };
/** /**
* Errors * Errors
* @description Errors raised when executing nodes * @description Errors raised when executing nodes
*/ */
errors: { errors: {
[key: string]: string | undefined; [key: string]: string;
}; };
/** /**
* Prepared Source Mapping * Prepared Source Mapping
* @description The map of prepared nodes to original graph nodes * @description The map of prepared nodes to original graph nodes
*/ */
prepared_source_mapping: { prepared_source_mapping: {
[key: string]: string | undefined; [key: string]: string;
}; };
/** /**
* Source Prepared Mapping * Source Prepared Mapping
* @description The map of original graph nodes to prepared nodes * @description The map of original graph nodes to prepared nodes
*/ */
source_prepared_mapping: { source_prepared_mapping: {
[key: string]: (string)[] | undefined; [key: string]: string[];
}; };
}; };
/** /**
@ -2022,7 +2061,7 @@ export type components = {
/** HTTPValidationError */ /** HTTPValidationError */
HTTPValidationError: { HTTPValidationError: {
/** Detail */ /** Detail */
detail?: (components["schemas"]["ValidationError"])[]; detail?: components["schemas"]["ValidationError"][];
}; };
/** /**
* HED (softedge) Processor * HED (softedge) Processor
@ -2185,7 +2224,7 @@ export type components = {
* @description The collection of image values * @description The collection of image values
* @default 0 * @default 0
*/ */
collection?: (components["schemas"]["ImageField"])[]; collection?: components["schemas"]["ImageField"][];
}; };
/** /**
* ImageCollectionOutput * ImageCollectionOutput
@ -2202,7 +2241,7 @@ export type components = {
* Collection * Collection
* @description The output images * @description The output images
*/ */
collection: (components["schemas"]["ImageField"])[]; collection: components["schemas"]["ImageField"][];
}; };
/** /**
* Convert Image Mode * Convert Image Mode
@ -3002,7 +3041,7 @@ export type components = {
* Updated Image Names * Updated Image Names
* @description The image names that were updated * @description The image names that were updated
*/ */
updated_image_names: (string)[]; updated_image_names: string[];
}; };
/** /**
* Solid Color Infill * Solid Color Infill
@ -3137,7 +3176,7 @@ export type components = {
* @description The collection of integer values * @description The collection of integer values
* @default 0 * @default 0
*/ */
collection?: (number)[]; collection?: number[];
}; };
/** /**
* IntegerCollectionOutput * IntegerCollectionOutput
@ -3154,7 +3193,7 @@ export type components = {
* Collection * Collection
* @description The int collection * @description The int collection
*/ */
collection: (number)[]; collection: number[];
}; };
/** /**
* Integer Primitive * Integer Primitive
@ -3228,7 +3267,7 @@ export type components = {
* Collection * Collection
* @description The list of items to iterate over * @description The list of items to iterate over
*/ */
collection?: (unknown)[]; collection?: unknown[];
/** /**
* Index * Index
* @description The index, will be provided on executed iterators * @description The index, will be provided on executed iterators
@ -3279,7 +3318,7 @@ export type components = {
* Collection * Collection
* @description The collection of latents tensors * @description The collection of latents tensors
*/ */
collection?: (components["schemas"]["LatentsField"])[]; collection?: components["schemas"]["LatentsField"][];
}; };
/** /**
* LatentsCollectionOutput * LatentsCollectionOutput
@ -3296,7 +3335,7 @@ export type components = {
* Collection * Collection
* @description Latents tensor * @description Latents tensor
*/ */
collection: (components["schemas"]["LatentsField"])[]; collection: components["schemas"]["LatentsField"][];
}; };
/** /**
* LatentsField * LatentsField
@ -3996,12 +4035,12 @@ export type components = {
* Controlnets * Controlnets
* @description The ControlNets used for inference * @description The ControlNets used for inference
*/ */
controlnets?: (components["schemas"]["ControlField"])[]; controlnets?: components["schemas"]["ControlField"][];
/** /**
* Loras * Loras
* @description The LoRAs used for inference * @description The LoRAs used for inference
*/ */
loras?: (components["schemas"]["LoRAMetadataField"])[]; loras?: components["schemas"]["LoRAMetadataField"][];
/** /**
* Strength * Strength
* @description The strength used for latents-to-latents * @description The strength used for latents-to-latents
@ -4584,7 +4623,7 @@ export type components = {
* @description Classifier-Free Guidance scale * @description Classifier-Free Guidance scale
* @default 7.5 * @default 7.5
*/ */
cfg_scale?: number | (number)[]; cfg_scale?: number | number[];
/** /**
* Scheduler * Scheduler
* @description Scheduler to use during inference * @description Scheduler to use during inference
@ -4608,7 +4647,7 @@ export type components = {
* Control * Control
* @description ControlNet(s) to apply * @description ControlNet(s) to apply
*/ */
control?: components["schemas"]["ControlField"] | (components["schemas"]["ControlField"])[]; control?: components["schemas"]["ControlField"] | components["schemas"]["ControlField"][];
}; };
/** /**
* OffsetPaginatedResults[BoardDTO] * OffsetPaginatedResults[BoardDTO]
@ -4619,7 +4658,7 @@ export type components = {
* Items * Items
* @description Items * @description Items
*/ */
items: (components["schemas"]["BoardDTO"])[]; items: components["schemas"]["BoardDTO"][];
/** /**
* Offset * Offset
* @description Offset from which to retrieve items * @description Offset from which to retrieve items
@ -4645,7 +4684,7 @@ export type components = {
* Items * Items
* @description Items * @description Items
*/ */
items: (components["schemas"]["ImageDTO"])[]; items: components["schemas"]["ImageDTO"][];
/** /**
* Offset * Offset
* @description Offset from which to retrieve items * @description Offset from which to retrieve items
@ -4760,7 +4799,7 @@ export type components = {
* Items * Items
* @description Items * @description Items
*/ */
items: (components["schemas"]["GraphExecutionState"])[]; items: components["schemas"]["GraphExecutionState"][];
/** /**
* Page * Page
* @description Current Page * @description Current Page
@ -5053,7 +5092,7 @@ export type components = {
* Removed Image Names * Removed Image Names
* @description The image names that were removed from their board * @description The image names that were removed from their board
*/ */
removed_image_names: (string)[]; removed_image_names: string[];
}; };
/** /**
* Resize Latents * Resize Latents
@ -5808,7 +5847,7 @@ export type components = {
* Collection * Collection
* @description The collection of string values * @description The collection of string values
*/ */
collection?: (string)[]; collection?: string[];
}; };
/** /**
* StringCollectionOutput * StringCollectionOutput
@ -5825,7 +5864,7 @@ export type components = {
* Collection * Collection
* @description The output strings * @description The output strings
*/ */
collection: (string)[]; collection: string[];
}; };
/** /**
* String Primitive * String Primitive
@ -5982,7 +6021,7 @@ export type components = {
* Loras * Loras
* @description Loras to apply on model loading * @description Loras to apply on model loading
*/ */
loras: (components["schemas"]["LoraInfo"])[]; loras: components["schemas"]["LoraInfo"][];
}; };
/** Upscaler */ /** Upscaler */
Upscaler: { Upscaler: {
@ -5995,7 +6034,7 @@ export type components = {
* Upscaling Models * Upscaling Models
* @description List of upscaling models for this method * @description List of upscaling models for this method
*/ */
upscaling_models: (string)[]; upscaling_models: string[];
}; };
/** /**
* VAEModelField * VAEModelField
@ -6134,7 +6173,7 @@ export type components = {
* Tags * Tags
* @description The tags to display in the UI * @description The tags to display in the UI
*/ */
tags?: (string)[]; tags?: string[];
/** /**
* Title * Title
* @description The display name of the node * @description The display name of the node
@ -6190,17 +6229,11 @@ export type components = {
ui_type?: components["schemas"]["UIType"]; ui_type?: components["schemas"]["UIType"];
}; };
/** /**
* ControlNetModelFormat * StableDiffusion1ModelFormat
* @description An enumeration. * @description An enumeration.
* @enum {string} * @enum {string}
*/ */
ControlNetModelFormat: "checkpoint" | "diffusers"; StableDiffusion1ModelFormat: "checkpoint" | "diffusers";
/**
* StableDiffusion2ModelFormat
* @description An enumeration.
* @enum {string}
*/
StableDiffusion2ModelFormat: "checkpoint" | "diffusers";
/** /**
* StableDiffusionOnnxModelFormat * StableDiffusionOnnxModelFormat
* @description An enumeration. * @description An enumeration.
@ -6208,17 +6241,23 @@ export type components = {
*/ */
StableDiffusionOnnxModelFormat: "olive" | "onnx"; StableDiffusionOnnxModelFormat: "olive" | "onnx";
/** /**
* StableDiffusion1ModelFormat * ControlNetModelFormat
* @description An enumeration. * @description An enumeration.
* @enum {string} * @enum {string}
*/ */
StableDiffusion1ModelFormat: "checkpoint" | "diffusers"; ControlNetModelFormat: "checkpoint" | "diffusers";
/** /**
* StableDiffusionXLModelFormat * StableDiffusionXLModelFormat
* @description An enumeration. * @description An enumeration.
* @enum {string} * @enum {string}
*/ */
StableDiffusionXLModelFormat: "checkpoint" | "diffusers"; StableDiffusionXLModelFormat: "checkpoint" | "diffusers";
/**
* StableDiffusion2ModelFormat
* @description An enumeration.
* @enum {string}
*/
StableDiffusion2ModelFormat: "checkpoint" | "diffusers";
}; };
responses: never; responses: never;
parameters: never; parameters: never;
@ -6227,6 +6266,8 @@ export type components = {
pathItems: never; pathItems: never;
}; };
export type $defs = Record<string, never>;
export type external = Record<string, never>; export type external = Record<string, never>;
export type operations = { export type operations = {
@ -6279,7 +6320,9 @@ export type operations = {
}; };
}; };
/** @description Invalid json */ /** @description Invalid json */
400: never; 400: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -6307,7 +6350,9 @@ export type operations = {
}; };
}; };
/** @description Session not found */ /** @description Session not found */
404: never; 404: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -6329,7 +6374,7 @@ export type operations = {
}; };
requestBody: { requestBody: {
content: { content: {
"application/json": components["schemas"]["BooleanInvocation"] | components["schemas"]["BooleanCollectionInvocation"] | components["schemas"]["IntegerInvocation"] | components["schemas"]["IntegerCollectionInvocation"] | components["schemas"]["FloatInvocation"] | components["schemas"]["FloatCollectionInvocation"] | components["schemas"]["StringInvocation"] | components["schemas"]["StringCollectionInvocation"] | components["schemas"]["ImageInvocation"] | components["schemas"]["ImageCollectionInvocation"] | components["schemas"]["LatentsInvocation"] | components["schemas"]["LatentsCollectionInvocation"] | components["schemas"]["ColorInvocation"] | components["schemas"]["ConditioningInvocation"] | components["schemas"]["ConditioningCollectionInvocation"] | components["schemas"]["ControlNetInvocation"] | components["schemas"]["ImageProcessorInvocation"] | components["schemas"]["MainModelLoaderInvocation"] | components["schemas"]["LoraLoaderInvocation"] | components["schemas"]["SDXLLoraLoaderInvocation"] | components["schemas"]["VaeLoaderInvocation"] | components["schemas"]["MetadataAccumulatorInvocation"] | components["schemas"]["SDXLModelLoaderInvocation"] | components["schemas"]["SDXLRefinerModelLoaderInvocation"] | components["schemas"]["CompelInvocation"] | components["schemas"]["SDXLCompelPromptInvocation"] | components["schemas"]["SDXLRefinerCompelPromptInvocation"] | components["schemas"]["ClipSkipInvocation"] | components["schemas"]["DenoiseLatentsInvocation"] | components["schemas"]["LatentsToImageInvocation"] | components["schemas"]["ResizeLatentsInvocation"] | components["schemas"]["ScaleLatentsInvocation"] | components["schemas"]["ImageToLatentsInvocation"] | components["schemas"]["ONNXPromptInvocation"] | components["schemas"]["ONNXTextToLatentsInvocation"] | components["schemas"]["ONNXLatentsToImageInvocation"] | components["schemas"]["OnnxModelLoaderInvocation"] | components["schemas"]["ShowImageInvocation"] | components["schemas"]["ImageCropInvocation"] | components["schemas"]["ImagePasteInvocation"] | components["schemas"]["MaskFromAlphaInvocation"] | components["schemas"]["ImageMultiplyInvocation"] | components["schemas"]["ImageChannelInvocation"] | components["schemas"]["ImageConvertInvocation"] | components["schemas"]["ImageBlurInvocation"] | components["schemas"]["ImageResizeInvocation"] | components["schemas"]["ImageScaleInvocation"] | components["schemas"]["ImageLerpInvocation"] | components["schemas"]["ImageInverseLerpInvocation"] | components["schemas"]["ImageNSFWBlurInvocation"] | components["schemas"]["ImageWatermarkInvocation"] | components["schemas"]["MaskEdgeInvocation"] | components["schemas"]["MaskCombineInvocation"] | components["schemas"]["ColorCorrectInvocation"] | components["schemas"]["ImageHueAdjustmentInvocation"] | components["schemas"]["ImageLuminosityAdjustmentInvocation"] | components["schemas"]["ImageSaturationAdjustmentInvocation"] | components["schemas"]["DynamicPromptInvocation"] | components["schemas"]["PromptsFromFileInvocation"] | components["schemas"]["CvInpaintInvocation"] | components["schemas"]["FloatLinearRangeInvocation"] | components["schemas"]["StepParamEasingInvocation"] | components["schemas"]["AddInvocation"] | components["schemas"]["SubtractInvocation"] | components["schemas"]["MultiplyInvocation"] | components["schemas"]["DivideInvocation"] | components["schemas"]["RandomIntInvocation"] | components["schemas"]["NoiseInvocation"] | components["schemas"]["RangeInvocation"] | components["schemas"]["RangeOfSizeInvocation"] | components["schemas"]["RandomRangeInvocation"] | components["schemas"]["ESRGANInvocation"] | components["schemas"]["InfillColorInvocation"] | components["schemas"]["InfillTileInvocation"] | components["schemas"]["InfillPatchMatchInvocation"] | components["schemas"]["GraphInvocation"] | components["schemas"]["IterateInvocation"] | components["schemas"]["CollectInvocation"] | components["schemas"]["CannyImageProcessorInvocation"] | components["schemas"]["HedImageProcessorInvocation"] | components["schemas"]["LineartImageProcessorInvocation"] | components["schemas"]["LineartAnimeImageProcessorInvocation"] | components["schemas"]["OpenposeImageProcessorInvocation"] | components["schemas"]["MidasDepthImageProcessorInvocation"] | components["schemas"]["NormalbaeImageProcessorInvocation"] | components["schemas"]["MlsdImageProcessorInvocation"] | components["schemas"]["PidiImageProcessorInvocation"] | components["schemas"]["ContentShuffleImageProcessorInvocation"] | components["schemas"]["ZoeDepthImageProcessorInvocation"] | components["schemas"]["MediapipeFaceProcessorInvocation"] | components["schemas"]["LeresImageProcessorInvocation"] | components["schemas"]["TileResamplerProcessorInvocation"] | components["schemas"]["SegmentAnythingProcessorInvocation"]; "application/json": components["schemas"]["BooleanInvocation"] | components["schemas"]["BooleanCollectionInvocation"] | components["schemas"]["IntegerInvocation"] | components["schemas"]["IntegerCollectionInvocation"] | components["schemas"]["FloatInvocation"] | components["schemas"]["FloatCollectionInvocation"] | components["schemas"]["StringInvocation"] | components["schemas"]["StringCollectionInvocation"] | components["schemas"]["ImageInvocation"] | components["schemas"]["ImageCollectionInvocation"] | components["schemas"]["LatentsInvocation"] | components["schemas"]["LatentsCollectionInvocation"] | components["schemas"]["ColorInvocation"] | components["schemas"]["ConditioningInvocation"] | components["schemas"]["ConditioningCollectionInvocation"] | components["schemas"]["ControlNetInvocation"] | components["schemas"]["ImageProcessorInvocation"] | components["schemas"]["MainModelLoaderInvocation"] | components["schemas"]["LoraLoaderInvocation"] | components["schemas"]["SDXLLoraLoaderInvocation"] | components["schemas"]["VaeLoaderInvocation"] | components["schemas"]["MetadataAccumulatorInvocation"] | components["schemas"]["SDXLModelLoaderInvocation"] | components["schemas"]["SDXLRefinerModelLoaderInvocation"] | components["schemas"]["CompelInvocation"] | components["schemas"]["SDXLCompelPromptInvocation"] | components["schemas"]["SDXLRefinerCompelPromptInvocation"] | components["schemas"]["ClipSkipInvocation"] | components["schemas"]["DenoiseLatentsInvocation"] | components["schemas"]["LatentsToImageInvocation"] | components["schemas"]["ResizeLatentsInvocation"] | components["schemas"]["ScaleLatentsInvocation"] | components["schemas"]["ImageToLatentsInvocation"] | components["schemas"]["BlendLatentsInvocation"] | components["schemas"]["ONNXPromptInvocation"] | components["schemas"]["ONNXTextToLatentsInvocation"] | components["schemas"]["ONNXLatentsToImageInvocation"] | components["schemas"]["OnnxModelLoaderInvocation"] | components["schemas"]["ShowImageInvocation"] | components["schemas"]["ImageCropInvocation"] | components["schemas"]["ImagePasteInvocation"] | components["schemas"]["MaskFromAlphaInvocation"] | components["schemas"]["ImageMultiplyInvocation"] | components["schemas"]["ImageChannelInvocation"] | components["schemas"]["ImageConvertInvocation"] | components["schemas"]["ImageBlurInvocation"] | components["schemas"]["ImageResizeInvocation"] | components["schemas"]["ImageScaleInvocation"] | components["schemas"]["ImageLerpInvocation"] | components["schemas"]["ImageInverseLerpInvocation"] | components["schemas"]["ImageNSFWBlurInvocation"] | components["schemas"]["ImageWatermarkInvocation"] | components["schemas"]["MaskEdgeInvocation"] | components["schemas"]["MaskCombineInvocation"] | components["schemas"]["ColorCorrectInvocation"] | components["schemas"]["ImageHueAdjustmentInvocation"] | components["schemas"]["ImageLuminosityAdjustmentInvocation"] | components["schemas"]["ImageSaturationAdjustmentInvocation"] | components["schemas"]["DynamicPromptInvocation"] | components["schemas"]["PromptsFromFileInvocation"] | components["schemas"]["CvInpaintInvocation"] | components["schemas"]["FloatLinearRangeInvocation"] | components["schemas"]["StepParamEasingInvocation"] | components["schemas"]["AddInvocation"] | components["schemas"]["SubtractInvocation"] | components["schemas"]["MultiplyInvocation"] | components["schemas"]["DivideInvocation"] | components["schemas"]["RandomIntInvocation"] | components["schemas"]["NoiseInvocation"] | components["schemas"]["RangeInvocation"] | components["schemas"]["RangeOfSizeInvocation"] | components["schemas"]["RandomRangeInvocation"] | components["schemas"]["ESRGANInvocation"] | components["schemas"]["InfillColorInvocation"] | components["schemas"]["InfillTileInvocation"] | components["schemas"]["InfillPatchMatchInvocation"] | components["schemas"]["GraphInvocation"] | components["schemas"]["IterateInvocation"] | components["schemas"]["CollectInvocation"] | components["schemas"]["CannyImageProcessorInvocation"] | components["schemas"]["HedImageProcessorInvocation"] | components["schemas"]["LineartImageProcessorInvocation"] | components["schemas"]["LineartAnimeImageProcessorInvocation"] | components["schemas"]["OpenposeImageProcessorInvocation"] | components["schemas"]["MidasDepthImageProcessorInvocation"] | components["schemas"]["NormalbaeImageProcessorInvocation"] | components["schemas"]["MlsdImageProcessorInvocation"] | components["schemas"]["PidiImageProcessorInvocation"] | components["schemas"]["ContentShuffleImageProcessorInvocation"] | components["schemas"]["ZoeDepthImageProcessorInvocation"] | components["schemas"]["MediapipeFaceProcessorInvocation"] | components["schemas"]["LeresImageProcessorInvocation"] | components["schemas"]["TileResamplerProcessorInvocation"] | components["schemas"]["SegmentAnythingProcessorInvocation"];
}; };
}; };
responses: { responses: {
@ -6340,9 +6385,13 @@ export type operations = {
}; };
}; };
/** @description Invalid node or link */ /** @description Invalid node or link */
400: never; 400: {
content: never;
};
/** @description Session not found */ /** @description Session not found */
404: never; 404: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -6366,7 +6415,7 @@ export type operations = {
}; };
requestBody: { requestBody: {
content: { content: {
"application/json": components["schemas"]["BooleanInvocation"] | components["schemas"]["BooleanCollectionInvocation"] | components["schemas"]["IntegerInvocation"] | components["schemas"]["IntegerCollectionInvocation"] | components["schemas"]["FloatInvocation"] | components["schemas"]["FloatCollectionInvocation"] | components["schemas"]["StringInvocation"] | components["schemas"]["StringCollectionInvocation"] | components["schemas"]["ImageInvocation"] | components["schemas"]["ImageCollectionInvocation"] | components["schemas"]["LatentsInvocation"] | components["schemas"]["LatentsCollectionInvocation"] | components["schemas"]["ColorInvocation"] | components["schemas"]["ConditioningInvocation"] | components["schemas"]["ConditioningCollectionInvocation"] | components["schemas"]["ControlNetInvocation"] | components["schemas"]["ImageProcessorInvocation"] | components["schemas"]["MainModelLoaderInvocation"] | components["schemas"]["LoraLoaderInvocation"] | components["schemas"]["SDXLLoraLoaderInvocation"] | components["schemas"]["VaeLoaderInvocation"] | components["schemas"]["MetadataAccumulatorInvocation"] | components["schemas"]["SDXLModelLoaderInvocation"] | components["schemas"]["SDXLRefinerModelLoaderInvocation"] | components["schemas"]["CompelInvocation"] | components["schemas"]["SDXLCompelPromptInvocation"] | components["schemas"]["SDXLRefinerCompelPromptInvocation"] | components["schemas"]["ClipSkipInvocation"] | components["schemas"]["DenoiseLatentsInvocation"] | components["schemas"]["LatentsToImageInvocation"] | components["schemas"]["ResizeLatentsInvocation"] | components["schemas"]["ScaleLatentsInvocation"] | components["schemas"]["ImageToLatentsInvocation"] | components["schemas"]["ONNXPromptInvocation"] | components["schemas"]["ONNXTextToLatentsInvocation"] | components["schemas"]["ONNXLatentsToImageInvocation"] | components["schemas"]["OnnxModelLoaderInvocation"] | components["schemas"]["ShowImageInvocation"] | components["schemas"]["ImageCropInvocation"] | components["schemas"]["ImagePasteInvocation"] | components["schemas"]["MaskFromAlphaInvocation"] | components["schemas"]["ImageMultiplyInvocation"] | components["schemas"]["ImageChannelInvocation"] | components["schemas"]["ImageConvertInvocation"] | components["schemas"]["ImageBlurInvocation"] | components["schemas"]["ImageResizeInvocation"] | components["schemas"]["ImageScaleInvocation"] | components["schemas"]["ImageLerpInvocation"] | components["schemas"]["ImageInverseLerpInvocation"] | components["schemas"]["ImageNSFWBlurInvocation"] | components["schemas"]["ImageWatermarkInvocation"] | components["schemas"]["MaskEdgeInvocation"] | components["schemas"]["MaskCombineInvocation"] | components["schemas"]["ColorCorrectInvocation"] | components["schemas"]["ImageHueAdjustmentInvocation"] | components["schemas"]["ImageLuminosityAdjustmentInvocation"] | components["schemas"]["ImageSaturationAdjustmentInvocation"] | components["schemas"]["DynamicPromptInvocation"] | components["schemas"]["PromptsFromFileInvocation"] | components["schemas"]["CvInpaintInvocation"] | components["schemas"]["FloatLinearRangeInvocation"] | components["schemas"]["StepParamEasingInvocation"] | components["schemas"]["AddInvocation"] | components["schemas"]["SubtractInvocation"] | components["schemas"]["MultiplyInvocation"] | components["schemas"]["DivideInvocation"] | components["schemas"]["RandomIntInvocation"] | components["schemas"]["NoiseInvocation"] | components["schemas"]["RangeInvocation"] | components["schemas"]["RangeOfSizeInvocation"] | components["schemas"]["RandomRangeInvocation"] | components["schemas"]["ESRGANInvocation"] | components["schemas"]["InfillColorInvocation"] | components["schemas"]["InfillTileInvocation"] | components["schemas"]["InfillPatchMatchInvocation"] | components["schemas"]["GraphInvocation"] | components["schemas"]["IterateInvocation"] | components["schemas"]["CollectInvocation"] | components["schemas"]["CannyImageProcessorInvocation"] | components["schemas"]["HedImageProcessorInvocation"] | components["schemas"]["LineartImageProcessorInvocation"] | components["schemas"]["LineartAnimeImageProcessorInvocation"] | components["schemas"]["OpenposeImageProcessorInvocation"] | components["schemas"]["MidasDepthImageProcessorInvocation"] | components["schemas"]["NormalbaeImageProcessorInvocation"] | components["schemas"]["MlsdImageProcessorInvocation"] | components["schemas"]["PidiImageProcessorInvocation"] | components["schemas"]["ContentShuffleImageProcessorInvocation"] | components["schemas"]["ZoeDepthImageProcessorInvocation"] | components["schemas"]["MediapipeFaceProcessorInvocation"] | components["schemas"]["LeresImageProcessorInvocation"] | components["schemas"]["TileResamplerProcessorInvocation"] | components["schemas"]["SegmentAnythingProcessorInvocation"]; "application/json": components["schemas"]["BooleanInvocation"] | components["schemas"]["BooleanCollectionInvocation"] | components["schemas"]["IntegerInvocation"] | components["schemas"]["IntegerCollectionInvocation"] | components["schemas"]["FloatInvocation"] | components["schemas"]["FloatCollectionInvocation"] | components["schemas"]["StringInvocation"] | components["schemas"]["StringCollectionInvocation"] | components["schemas"]["ImageInvocation"] | components["schemas"]["ImageCollectionInvocation"] | components["schemas"]["LatentsInvocation"] | components["schemas"]["LatentsCollectionInvocation"] | components["schemas"]["ColorInvocation"] | components["schemas"]["ConditioningInvocation"] | components["schemas"]["ConditioningCollectionInvocation"] | components["schemas"]["ControlNetInvocation"] | components["schemas"]["ImageProcessorInvocation"] | components["schemas"]["MainModelLoaderInvocation"] | components["schemas"]["LoraLoaderInvocation"] | components["schemas"]["SDXLLoraLoaderInvocation"] | components["schemas"]["VaeLoaderInvocation"] | components["schemas"]["MetadataAccumulatorInvocation"] | components["schemas"]["SDXLModelLoaderInvocation"] | components["schemas"]["SDXLRefinerModelLoaderInvocation"] | components["schemas"]["CompelInvocation"] | components["schemas"]["SDXLCompelPromptInvocation"] | components["schemas"]["SDXLRefinerCompelPromptInvocation"] | components["schemas"]["ClipSkipInvocation"] | components["schemas"]["DenoiseLatentsInvocation"] | components["schemas"]["LatentsToImageInvocation"] | components["schemas"]["ResizeLatentsInvocation"] | components["schemas"]["ScaleLatentsInvocation"] | components["schemas"]["ImageToLatentsInvocation"] | components["schemas"]["BlendLatentsInvocation"] | components["schemas"]["ONNXPromptInvocation"] | components["schemas"]["ONNXTextToLatentsInvocation"] | components["schemas"]["ONNXLatentsToImageInvocation"] | components["schemas"]["OnnxModelLoaderInvocation"] | components["schemas"]["ShowImageInvocation"] | components["schemas"]["ImageCropInvocation"] | components["schemas"]["ImagePasteInvocation"] | components["schemas"]["MaskFromAlphaInvocation"] | components["schemas"]["ImageMultiplyInvocation"] | components["schemas"]["ImageChannelInvocation"] | components["schemas"]["ImageConvertInvocation"] | components["schemas"]["ImageBlurInvocation"] | components["schemas"]["ImageResizeInvocation"] | components["schemas"]["ImageScaleInvocation"] | components["schemas"]["ImageLerpInvocation"] | components["schemas"]["ImageInverseLerpInvocation"] | components["schemas"]["ImageNSFWBlurInvocation"] | components["schemas"]["ImageWatermarkInvocation"] | components["schemas"]["MaskEdgeInvocation"] | components["schemas"]["MaskCombineInvocation"] | components["schemas"]["ColorCorrectInvocation"] | components["schemas"]["ImageHueAdjustmentInvocation"] | components["schemas"]["ImageLuminosityAdjustmentInvocation"] | components["schemas"]["ImageSaturationAdjustmentInvocation"] | components["schemas"]["DynamicPromptInvocation"] | components["schemas"]["PromptsFromFileInvocation"] | components["schemas"]["CvInpaintInvocation"] | components["schemas"]["FloatLinearRangeInvocation"] | components["schemas"]["StepParamEasingInvocation"] | components["schemas"]["AddInvocation"] | components["schemas"]["SubtractInvocation"] | components["schemas"]["MultiplyInvocation"] | components["schemas"]["DivideInvocation"] | components["schemas"]["RandomIntInvocation"] | components["schemas"]["NoiseInvocation"] | components["schemas"]["RangeInvocation"] | components["schemas"]["RangeOfSizeInvocation"] | components["schemas"]["RandomRangeInvocation"] | components["schemas"]["ESRGANInvocation"] | components["schemas"]["InfillColorInvocation"] | components["schemas"]["InfillTileInvocation"] | components["schemas"]["InfillPatchMatchInvocation"] | components["schemas"]["GraphInvocation"] | components["schemas"]["IterateInvocation"] | components["schemas"]["CollectInvocation"] | components["schemas"]["CannyImageProcessorInvocation"] | components["schemas"]["HedImageProcessorInvocation"] | components["schemas"]["LineartImageProcessorInvocation"] | components["schemas"]["LineartAnimeImageProcessorInvocation"] | components["schemas"]["OpenposeImageProcessorInvocation"] | components["schemas"]["MidasDepthImageProcessorInvocation"] | components["schemas"]["NormalbaeImageProcessorInvocation"] | components["schemas"]["MlsdImageProcessorInvocation"] | components["schemas"]["PidiImageProcessorInvocation"] | components["schemas"]["ContentShuffleImageProcessorInvocation"] | components["schemas"]["ZoeDepthImageProcessorInvocation"] | components["schemas"]["MediapipeFaceProcessorInvocation"] | components["schemas"]["LeresImageProcessorInvocation"] | components["schemas"]["TileResamplerProcessorInvocation"] | components["schemas"]["SegmentAnythingProcessorInvocation"];
}; };
}; };
responses: { responses: {
@ -6377,9 +6426,13 @@ export type operations = {
}; };
}; };
/** @description Invalid node or link */ /** @description Invalid node or link */
400: never; 400: {
content: never;
};
/** @description Session not found */ /** @description Session not found */
404: never; 404: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -6409,9 +6462,13 @@ export type operations = {
}; };
}; };
/** @description Invalid node or link */ /** @description Invalid node or link */
400: never; 400: {
content: never;
};
/** @description Session not found */ /** @description Session not found */
404: never; 404: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -6444,9 +6501,13 @@ export type operations = {
}; };
}; };
/** @description Invalid node or link */ /** @description Invalid node or link */
400: never; 400: {
content: never;
};
/** @description Session not found */ /** @description Session not found */
404: never; 404: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -6482,9 +6543,13 @@ export type operations = {
}; };
}; };
/** @description Invalid node or link */ /** @description Invalid node or link */
400: never; 400: {
content: never;
};
/** @description Session not found */ /** @description Session not found */
404: never; 404: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -6516,11 +6581,17 @@ export type operations = {
}; };
}; };
/** @description The invocation is queued */ /** @description The invocation is queued */
202: never; 202: {
content: never;
};
/** @description The session has no invocations ready to invoke */ /** @description The session has no invocations ready to invoke */
400: never; 400: {
content: never;
};
/** @description Session not found */ /** @description Session not found */
404: never; 404: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -6548,7 +6619,9 @@ export type operations = {
}; };
}; };
/** @description The invocation is canceled */ /** @description The invocation is canceled */
202: never; 202: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -6565,7 +6638,7 @@ export type operations = {
parameters: { parameters: {
query?: { query?: {
/** @description Base models to include */ /** @description Base models to include */
base_models?: (components["schemas"]["BaseModelType"])[]; base_models?: components["schemas"]["BaseModelType"][];
/** @description The type of model to get */ /** @description The type of model to get */
model_type?: components["schemas"]["ModelType"]; model_type?: components["schemas"]["ModelType"];
}; };
@ -6602,9 +6675,13 @@ export type operations = {
}; };
responses: { responses: {
/** @description Model deleted successfully */ /** @description Model deleted successfully */
204: never; 204: {
content: never;
};
/** @description Model not found */ /** @description Model not found */
404: never; 404: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -6641,11 +6718,17 @@ export type operations = {
}; };
}; };
/** @description Bad request */ /** @description Bad request */
400: never; 400: {
content: never;
};
/** @description The model could not be found */ /** @description The model could not be found */
404: never; 404: {
content: never;
};
/** @description There is already a model corresponding to the new name */ /** @description There is already a model corresponding to the new name */
409: never; 409: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -6672,11 +6755,17 @@ export type operations = {
}; };
}; };
/** @description The model could not be found */ /** @description The model could not be found */
404: never; 404: {
content: never;
};
/** @description There is already a model corresponding to this path or repo_id */ /** @description There is already a model corresponding to this path or repo_id */
409: never; 409: {
content: never;
};
/** @description Unrecognized file/folder format */ /** @description Unrecognized file/folder format */
415: never; 415: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -6684,7 +6773,9 @@ export type operations = {
}; };
}; };
/** @description The model appeared to import successfully, but could not be found in the model manager */ /** @description The model appeared to import successfully, but could not be found in the model manager */
424: never; 424: {
content: never;
};
}; };
}; };
/** /**
@ -6705,9 +6796,13 @@ export type operations = {
}; };
}; };
/** @description The model could not be found */ /** @description The model could not be found */
404: never; 404: {
content: never;
};
/** @description There is already a model corresponding to this path or repo_id */ /** @description There is already a model corresponding to this path or repo_id */
409: never; 409: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -6715,7 +6810,9 @@ export type operations = {
}; };
}; };
/** @description The model appeared to add successfully, but could not be found in the model manager */ /** @description The model appeared to add successfully, but could not be found in the model manager */
424: never; 424: {
content: never;
};
}; };
}; };
/** /**
@ -6745,9 +6842,13 @@ export type operations = {
}; };
}; };
/** @description Bad request */ /** @description Bad request */
400: never; 400: {
content: never;
};
/** @description Model not found */ /** @description Model not found */
404: never; 404: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -6768,11 +6869,13 @@ export type operations = {
/** @description Directory searched successfully */ /** @description Directory searched successfully */
200: { 200: {
content: { content: {
"application/json": (string)[]; "application/json": string[];
}; };
}; };
/** @description Invalid directory path */ /** @description Invalid directory path */
404: never; 404: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -6790,7 +6893,7 @@ export type operations = {
/** @description paths retrieved successfully */ /** @description paths retrieved successfully */
200: { 200: {
content: { content: {
"application/json": (string)[]; "application/json": string[];
}; };
}; };
}; };
@ -6834,9 +6937,13 @@ export type operations = {
}; };
}; };
/** @description Incompatible models */ /** @description Incompatible models */
400: never; 400: {
content: never;
};
/** @description One or more models not found */ /** @description One or more models not found */
404: never; 404: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -6877,7 +6984,9 @@ export type operations = {
}; };
}; };
/** @description Image upload failed */ /** @description Image upload failed */
415: never; 415: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -7028,7 +7137,9 @@ export type operations = {
}; };
}; };
/** @description Image not found */ /** @description Image not found */
404: never; 404: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -7056,7 +7167,9 @@ export type operations = {
}; };
}; };
/** @description Image not found */ /** @description Image not found */
404: never; 404: {
content: never;
};
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
@ -7101,7 +7214,7 @@ export type operations = {
/** @description The origin of images to list. */ /** @description The origin of images to list. */
image_origin?: components["schemas"]["ResourceOrigin"]; image_origin?: components["schemas"]["ResourceOrigin"];
/** @description The categories of image to include. */ /** @description The categories of image to include. */
categories?: (components["schemas"]["ImageCategory"])[]; categories?: components["schemas"]["ImageCategory"][];
/** @description Whether to list intermediate images. */ /** @description Whether to list intermediate images. */
is_intermediate?: boolean; is_intermediate?: boolean;
/** @description The board id to filter by. Use 'none' to find images without a board. */ /** @description The board id to filter by. Use 'none' to find images without a board. */
@ -7212,7 +7325,7 @@ export type operations = {
/** @description Successful Response */ /** @description Successful Response */
200: { 200: {
content: { content: {
"application/json": components["schemas"]["OffsetPaginatedResults_BoardDTO_"] | (components["schemas"]["BoardDTO"])[]; "application/json": components["schemas"]["OffsetPaginatedResults_BoardDTO_"] | components["schemas"]["BoardDTO"][];
}; };
}; };
/** @description Validation Error */ /** @description Validation Error */
@ -7351,7 +7464,7 @@ export type operations = {
/** @description Successful Response */ /** @description Successful Response */
200: { 200: {
content: { content: {
"application/json": (string)[]; "application/json": string[];
}; };
}; };
/** @description Validation Error */ /** @description Validation Error */