chore(ui): regen types

This commit is contained in:
psychedelicious 2023-08-20 20:23:23 +10:00
parent bf04e913c2
commit 56245a7406

View File

@ -597,7 +597,6 @@ export type components = {
/** /**
* Collection * Collection
* @description The collection of boolean values * @description The collection of boolean values
* @default false
*/ */
collection?: (boolean)[]; collection?: (boolean)[];
}; };
@ -616,7 +615,7 @@ export type components = {
* Collection * Collection
* @description The output boolean collection * @description The output boolean collection
*/ */
collection?: (boolean)[]; collection: (boolean)[];
}; };
/** /**
* Boolean Primitive * Boolean Primitive
@ -843,7 +842,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
@ -1045,7 +1044,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
@ -1794,7 +1793,6 @@ export type components = {
/** /**
* Collection * Collection
* @description The collection of float values * @description The collection of float values
* @default 0
*/ */
collection?: (number)[]; collection?: (number)[];
}; };
@ -1813,7 +1811,7 @@ export type components = {
* Collection * Collection
* @description The float collection * @description The float collection
*/ */
collection?: (number)[]; collection: (number)[];
}; };
/** /**
* Float Primitive * Float Primitive
@ -2204,7 +2202,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
@ -3156,7 +3154,7 @@ export type components = {
* Collection * Collection
* @description The int collection * @description The int collection
*/ */
collection?: (number)[]; collection: (number)[];
}; };
/** /**
* Integer Primitive * Integer Primitive
@ -3280,7 +3278,6 @@ export type components = {
/** /**
* Collection * Collection
* @description The collection of latents tensors * @description The collection of latents tensors
* @default 0
*/ */
collection?: (components["schemas"]["LatentsField"])[]; collection?: (components["schemas"]["LatentsField"])[];
}; };
@ -3299,7 +3296,7 @@ export type components = {
* Collection * Collection
* @description Latents tensor * @description Latents tensor
*/ */
collection?: (components["schemas"]["LatentsField"])[]; collection: (components["schemas"]["LatentsField"])[];
}; };
/** /**
* LatentsField * LatentsField
@ -3644,7 +3641,7 @@ export type components = {
weight: number; weight: number;
}; };
/** /**
* LoRA Loader * LoRA
* @description Apply selected lora to unet and text_encoder. * @description Apply selected lora to unet and text_encoder.
*/ */
LoraLoaderInvocation: { LoraLoaderInvocation: {
@ -3725,7 +3722,7 @@ export type components = {
model_type: components["schemas"]["ModelType"]; model_type: components["schemas"]["ModelType"];
}; };
/** /**
* Main Model Loader * Main Model
* @description Loads a main model, outputting its submodels. * @description Loads a main model, outputting its submodels.
*/ */
MainModelLoaderInvocation: { MainModelLoaderInvocation: {
@ -4681,7 +4678,7 @@ export type components = {
model_type: components["schemas"]["ModelType"]; model_type: components["schemas"]["ModelType"];
}; };
/** /**
* ONNX Model Loader * ONNX Main Model
* @description Loads a main model, outputting its submodels. * @description Loads a main model, outputting its submodels.
*/ */
OnnxModelLoaderInvocation: { OnnxModelLoaderInvocation: {
@ -5195,7 +5192,7 @@ export type components = {
clip2?: components["schemas"]["ClipField"]; clip2?: components["schemas"]["ClipField"];
}; };
/** /**
* SDXL LoRA Loader * SDXL LoRA
* @description Apply selected lora to unet and text_encoder. * @description Apply selected lora to unet and text_encoder.
*/ */
SDXLLoraLoaderInvocation: { SDXLLoraLoaderInvocation: {
@ -5271,7 +5268,7 @@ export type components = {
clip2?: components["schemas"]["ClipField"]; clip2?: components["schemas"]["ClipField"];
}; };
/** /**
* SDXL Main Model Loader * SDXL Main Model
* @description Loads an sdxl base model, outputting its submodels. * @description Loads an sdxl base model, outputting its submodels.
*/ */
SDXLModelLoaderInvocation: { SDXLModelLoaderInvocation: {
@ -5391,7 +5388,7 @@ export type components = {
clip2?: components["schemas"]["ClipField"]; clip2?: components["schemas"]["ClipField"];
}; };
/** /**
* SDXL Refiner Model Loader * SDXL Refiner Model
* @description Loads an sdxl refiner model, outputting its submodels. * @description Loads an sdxl refiner model, outputting its submodels.
*/ */
SDXLRefinerModelLoaderInvocation: { SDXLRefinerModelLoaderInvocation: {
@ -5810,7 +5807,6 @@ export type components = {
/** /**
* Collection * Collection
* @description The collection of string values * @description The collection of string values
* @default 0
*/ */
collection?: (string)[]; collection?: (string)[];
}; };
@ -5829,7 +5825,7 @@ export type components = {
* Collection * Collection
* @description The output strings * @description The output strings
*/ */
collection?: (string)[]; collection: (string)[];
}; };
/** /**
* String Primitive * String Primitive
@ -6023,7 +6019,7 @@ export type components = {
vae: components["schemas"]["ModelInfo"]; vae: components["schemas"]["ModelInfo"];
}; };
/** /**
* VAE Loader * VAE
* @description Loads a VAE model, outputting a VaeLoaderOutput * @description Loads a VAE model, outputting a VaeLoaderOutput
*/ */
VaeLoaderInvocation: { VaeLoaderInvocation: {
@ -6193,6 +6189,18 @@ export type components = {
ui_hidden: boolean; ui_hidden: boolean;
ui_type?: components["schemas"]["UIType"]; ui_type?: components["schemas"]["UIType"];
}; };
/**
* ControlNetModelFormat
* @description An enumeration.
* @enum {string}
*/
ControlNetModelFormat: "checkpoint" | "diffusers";
/**
* StableDiffusion2ModelFormat
* @description An enumeration.
* @enum {string}
*/
StableDiffusion2ModelFormat: "checkpoint" | "diffusers";
/** /**
* StableDiffusionOnnxModelFormat * StableDiffusionOnnxModelFormat
* @description An enumeration. * @description An enumeration.
@ -6205,24 +6213,12 @@ export type components = {
* @enum {string} * @enum {string}
*/ */
StableDiffusion1ModelFormat: "checkpoint" | "diffusers"; StableDiffusion1ModelFormat: "checkpoint" | "diffusers";
/**
* ControlNetModelFormat
* @description An enumeration.
* @enum {string}
*/
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;