Revert "chore: typegen"

This reverts commit fc09ab7e13.
This commit is contained in:
psychedelicious 2023-10-13 21:47:31 +11:00
parent bf9f7271dd
commit 2716ae353b
No known key found for this signature in database

View File

@ -235,10 +235,6 @@ export type paths = {
/** Unstar Images In List */ /** Unstar Images In List */
post: operations["unstar_images_in_list"]; post: operations["unstar_images_in_list"];
}; };
"/api/v1/images/download": {
/** Download Images From List */
post: operations["download_images_from_list"];
};
"/api/v1/boards/": { "/api/v1/boards/": {
/** /**
* List Boards * List Boards
@ -9729,54 +9725,54 @@ export type components = {
/** Ui Order */ /** Ui Order */
ui_order?: number; ui_order?: number;
}; };
/**
* StableDiffusion1ModelFormat
* @description An enumeration.
* @enum {string}
*/
StableDiffusion1ModelFormat: "checkpoint" | "diffusers";
/**
* StableDiffusionXLModelFormat
* @description An enumeration.
* @enum {string}
*/
StableDiffusionXLModelFormat: "checkpoint" | "diffusers";
/**
* IPAdapterModelFormat
* @description An enumeration.
* @enum {string}
*/
IPAdapterModelFormat: "invokeai";
/**
* T2IAdapterModelFormat
* @description An enumeration.
* @enum {string}
*/
T2IAdapterModelFormat: "diffusers";
/** /**
* ControlNetModelFormat * ControlNetModelFormat
* @description An enumeration. * @description An enumeration.
* @enum {string} * @enum {string}
*/ */
ControlNetModelFormat: "checkpoint" | "diffusers"; ControlNetModelFormat: "checkpoint" | "diffusers";
/**
* StableDiffusion2ModelFormat
* @description An enumeration.
* @enum {string}
*/
StableDiffusion2ModelFormat: "checkpoint" | "diffusers";
/** /**
* CLIPVisionModelFormat * CLIPVisionModelFormat
* @description An enumeration. * @description An enumeration.
* @enum {string} * @enum {string}
*/ */
CLIPVisionModelFormat: "diffusers"; CLIPVisionModelFormat: "diffusers";
/**
* T2IAdapterModelFormat
* @description An enumeration.
* @enum {string}
*/
T2IAdapterModelFormat: "diffusers";
/**
* StableDiffusion2ModelFormat
* @description An enumeration.
* @enum {string}
*/
StableDiffusion2ModelFormat: "checkpoint" | "diffusers";
/**
* StableDiffusionXLModelFormat
* @description An enumeration.
* @enum {string}
*/
StableDiffusionXLModelFormat: "checkpoint" | "diffusers";
/** /**
* StableDiffusionOnnxModelFormat * StableDiffusionOnnxModelFormat
* @description An enumeration. * @description An enumeration.
* @enum {string} * @enum {string}
*/ */
StableDiffusionOnnxModelFormat: "olive" | "onnx"; StableDiffusionOnnxModelFormat: "olive" | "onnx";
/**
* StableDiffusion1ModelFormat
* @description An enumeration.
* @enum {string}
*/
StableDiffusion1ModelFormat: "checkpoint" | "diffusers";
/**
* IPAdapterModelFormat
* @description An enumeration.
* @enum {string}
*/
IPAdapterModelFormat: "invokeai";
}; };
responses: never; responses: never;
parameters: never; parameters: never;
@ -10872,20 +10868,20 @@ export type operations = {
download_images_from_list: { download_images_from_list: {
requestBody: { requestBody: {
content: { content: {
"application/json": components["schemas"]["Body_download_images_from_list"]; 'application/json': components['schemas']['Body_download_images_from_list'];
}; };
}; };
responses: { responses: {
/** @description Successful Response */ /** @description Successful Response */
200: { 200: {
content: { content: {
"application/json": components["schemas"]["ImagesDownloaded"]; 'application/json': components['schemas']['ImagesDownloaded'];
}; };
}; };
/** @description Validation Error */ /** @description Validation Error */
422: { 422: {
content: { content: {
"application/json": components["schemas"]["HTTPValidationError"]; 'application/json': components['schemas']['HTTPValidationError'];
}; };
}; };
}; };