Skip to content

Commit d7ae2cd

Browse files
chore(ui): typegen
1 parent 6172c85 commit d7ae2cd

File tree

1 file changed

+8
-1
lines changed
  • invokeai/frontend/web/src/services/api

1 file changed

+8
-1
lines changed

invokeai/frontend/web/src/services/api/schema.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19799,13 +19799,20 @@ export type components = {
1979919799
/** Dependencies */
1980019800
dependencies?: components["schemas"]["StarterModelWithoutDependencies"][] | null;
1980119801
};
19802+
/** StarterModelBundle */
19803+
StarterModelBundle: {
19804+
/** Name */
19805+
name: string;
19806+
/** Models */
19807+
models: components["schemas"]["StarterModel"][];
19808+
};
1980219809
/** StarterModelResponse */
1980319810
StarterModelResponse: {
1980419811
/** Starter Models */
1980519812
starter_models: components["schemas"]["StarterModel"][];
1980619813
/** Starter Bundles */
1980719814
starter_bundles: {
19808-
[key: string]: components["schemas"]["StarterModel"][];
19815+
[key: string]: components["schemas"]["StarterModelBundle"];
1980919816
};
1981019817
};
1981119818
/** StarterModelWithoutDependencies */

0 commit comments

Comments
 (0)