From a765f01c08cb27f8559808ab9b00f98d8f5c755a Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Mon, 4 Sep 2023 10:23:48 +1000 Subject: [PATCH] chore(ui): typegen --- .../frontend/web/src/services/api/schema.d.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/invokeai/frontend/web/src/services/api/schema.d.ts b/invokeai/frontend/web/src/services/api/schema.d.ts index 8f17985bbd..a895e6a230 100644 --- a/invokeai/frontend/web/src/services/api/schema.d.ts +++ b/invokeai/frontend/web/src/services/api/schema.d.ts @@ -6804,7 +6804,7 @@ export type components = { * Seamless Axes * @description Axes("x" and "y") to which apply seamless */ - seamless_axes?: string[]; + seamless_axes: string[]; }; /** Upscaler */ Upscaler: { @@ -6843,7 +6843,7 @@ export type components = { * Seamless Axes * @description Axes("x" and "y") to which apply seamless */ - seamless_axes?: string[]; + seamless_axes: string[]; }; /** * VAE @@ -7042,12 +7042,6 @@ export type components = { * @enum {string} */ StableDiffusion1ModelFormat: "checkpoint" | "diffusers"; - /** - * StableDiffusionOnnxModelFormat - * @description An enumeration. - * @enum {string} - */ - StableDiffusionOnnxModelFormat: "olive" | "onnx"; /** * ControlNetModelFormat * @description An enumeration. @@ -7066,6 +7060,12 @@ export type components = { * @enum {string} */ StableDiffusion2ModelFormat: "checkpoint" | "diffusers"; + /** + * StableDiffusionOnnxModelFormat + * @description An enumeration. + * @enum {string} + */ + StableDiffusionOnnxModelFormat: "olive" | "onnx"; }; responses: never; parameters: never;