Skip to content

Commit

Permalink
chore(ui): typegen
Browse files Browse the repository at this point in the history
  • Loading branch information
psychedelicious committed Jan 17, 2025
1 parent 9dcbe3c commit 27b9c07
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions invokeai/frontend/web/src/services/api/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6463,8 +6463,9 @@ export type components = {
/**
* Floats
* @description The floats to batch over
* @default []
*/
floats: number[];
floats?: number[];
/**
* type
* @default float_batch
Expand Down Expand Up @@ -8399,8 +8400,9 @@ export type components = {
/**
* Images
* @description The images to batch over
* @default []
*/
images: components["schemas"]["ImageField"][];
images?: components["schemas"]["ImageField"][];
/**
* type
* @default image_batch
Expand Down Expand Up @@ -10093,8 +10095,9 @@ export type components = {
/**
* Integers
* @description The integers to batch over
* @default []
*/
integers: number[];
integers?: number[];
/**
* type
* @default integer_batch
Expand Down Expand Up @@ -17174,8 +17177,9 @@ export type components = {
/**
* Strings
* @description The strings to batch over
* @default []
*/
strings: string[];
strings?: string[];
/**
* type
* @default string_batch
Expand Down

0 comments on commit 27b9c07

Please sign in to comment.