File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
invokeai/frontend/web/src/services/api Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -19799,13 +19799,20 @@ export type components = {
19799
19799
/** Dependencies */
19800
19800
dependencies?: components["schemas"]["StarterModelWithoutDependencies"][] | null;
19801
19801
};
19802
+ /** StarterModelBundle */
19803
+ StarterModelBundle: {
19804
+ /** Name */
19805
+ name: string;
19806
+ /** Models */
19807
+ models: components["schemas"]["StarterModel"][];
19808
+ };
19802
19809
/** StarterModelResponse */
19803
19810
StarterModelResponse: {
19804
19811
/** Starter Models */
19805
19812
starter_models: components["schemas"]["StarterModel"][];
19806
19813
/** Starter Bundles */
19807
19814
starter_bundles: {
19808
- [key: string]: components["schemas"]["StarterModel"][ ];
19815
+ [key: string]: components["schemas"]["StarterModelBundle" ];
19809
19816
};
19810
19817
};
19811
19818
/** StarterModelWithoutDependencies */
You can’t perform that action at this time.
0 commit comments