feat(ui,api): add starter bundles to MM

This commit is contained in:
Mary Hipp
2024-10-10 20:05:03 -04:00
committed by Mary Hipp Rogers
parent fe87c198eb
commit 5bd87ca89b
10 changed files with 774 additions and 508 deletions

View File

@@ -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"];
};
};
};

View File

@@ -243,3 +243,4 @@ export type PostUploadAction =
| ReplaceLayerWithImagePostUploadAction;
export type BoardRecordOrderBy = S['BoardRecordOrderBy'];
export type StarterModel = S['StarterModel'];