mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
feat(ui,api): add starter bundles to MM
This commit is contained in:
committed by
Mary Hipp Rogers
parent
fe87c198eb
commit
5bd87ca89b
@@ -15166,6 +15166,15 @@ export type components = {
|
||||
/** Dependencies */
|
||||
dependencies?: components["schemas"]["StarterModelWithoutDependencies"][] | null;
|
||||
};
|
||||
/** StarterModelResponse */
|
||||
StarterModelResponse: {
|
||||
/** Starter Models */
|
||||
starter_models: components["schemas"]["StarterModel"][];
|
||||
/** Starter Bundles */
|
||||
starter_bundles: {
|
||||
[key: string]: components["schemas"]["StarterModel"][];
|
||||
};
|
||||
};
|
||||
/** StarterModelWithoutDependencies */
|
||||
StarterModelWithoutDependencies: {
|
||||
/** Description */
|
||||
@@ -17972,7 +17981,7 @@ export interface operations {
|
||||
[name: string]: unknown;
|
||||
};
|
||||
content: {
|
||||
"application/json": components["schemas"]["StarterModel"][];
|
||||
"application/json": components["schemas"]["StarterModelResponse"];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -243,3 +243,4 @@ export type PostUploadAction =
|
||||
| ReplaceLayerWithImagePostUploadAction;
|
||||
|
||||
export type BoardRecordOrderBy = S['BoardRecordOrderBy'];
|
||||
export type StarterModel = S['StarterModel'];
|
||||
|
||||
Reference in New Issue
Block a user