mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
chore(ui): typegen
This commit is contained in:
@ -1637,9 +1637,14 @@ export type components = {
|
||||
batch_id?: string;
|
||||
/**
|
||||
* Origin
|
||||
* @description The origin of this batch.
|
||||
* @description The origin of this queue item. This data is used by the frontend to determine how to handle results.
|
||||
*/
|
||||
origin?: string | null;
|
||||
/**
|
||||
* Destination
|
||||
* @description The origin of this queue item. This data is used by the frontend to determine how to handle results
|
||||
*/
|
||||
destination?: string | null;
|
||||
/**
|
||||
* Data
|
||||
* @description The batch data collection.
|
||||
@ -1733,6 +1738,11 @@ export type components = {
|
||||
* @description The origin of the batch
|
||||
*/
|
||||
origin: string | null;
|
||||
/**
|
||||
* Destination
|
||||
* @description The destination of the batch
|
||||
*/
|
||||
destination: string | null;
|
||||
/**
|
||||
* Pending
|
||||
* @description Number of queue items with status 'pending'
|
||||
@ -8649,10 +8659,16 @@ export type components = {
|
||||
batch_id: string;
|
||||
/**
|
||||
* Origin
|
||||
* @description The origin of the batch
|
||||
* @description The origin of the queue item
|
||||
* @default null
|
||||
*/
|
||||
origin: string | null;
|
||||
/**
|
||||
* Destination
|
||||
* @description The destination of the queue item
|
||||
* @default null
|
||||
*/
|
||||
destination: string | null;
|
||||
/**
|
||||
* Session Id
|
||||
* @description The ID of the session (aka graph execution state)
|
||||
@ -8701,10 +8717,16 @@ export type components = {
|
||||
batch_id: string;
|
||||
/**
|
||||
* Origin
|
||||
* @description The origin of the batch
|
||||
* @description The origin of the queue item
|
||||
* @default null
|
||||
*/
|
||||
origin: string | null;
|
||||
/**
|
||||
* Destination
|
||||
* @description The destination of the queue item
|
||||
* @default null
|
||||
*/
|
||||
destination: string | null;
|
||||
/**
|
||||
* Session Id
|
||||
* @description The ID of the session (aka graph execution state)
|
||||
@ -8770,10 +8792,16 @@ export type components = {
|
||||
batch_id: string;
|
||||
/**
|
||||
* Origin
|
||||
* @description The origin of the batch
|
||||
* @description The origin of the queue item
|
||||
* @default null
|
||||
*/
|
||||
origin: string | null;
|
||||
/**
|
||||
* Destination
|
||||
* @description The destination of the queue item
|
||||
* @default null
|
||||
*/
|
||||
destination: string | null;
|
||||
/**
|
||||
* Session Id
|
||||
* @description The ID of the session (aka graph execution state)
|
||||
@ -8995,10 +9023,16 @@ export type components = {
|
||||
batch_id: string;
|
||||
/**
|
||||
* Origin
|
||||
* @description The origin of the batch
|
||||
* @description The origin of the queue item
|
||||
* @default null
|
||||
*/
|
||||
origin: string | null;
|
||||
/**
|
||||
* Destination
|
||||
* @description The destination of the queue item
|
||||
* @default null
|
||||
*/
|
||||
destination: string | null;
|
||||
/**
|
||||
* Session Id
|
||||
* @description The ID of the session (aka graph execution state)
|
||||
@ -12069,10 +12103,16 @@ export type components = {
|
||||
batch_id: string;
|
||||
/**
|
||||
* Origin
|
||||
* @description The origin of the batch
|
||||
* @description The origin of the queue item
|
||||
* @default null
|
||||
*/
|
||||
origin: string | null;
|
||||
/**
|
||||
* Destination
|
||||
* @description The destination of the queue item
|
||||
* @default null
|
||||
*/
|
||||
destination: string | null;
|
||||
/**
|
||||
* Status
|
||||
* @description The new status of the queue item
|
||||
@ -13431,9 +13471,14 @@ export type components = {
|
||||
batch_id: string;
|
||||
/**
|
||||
* Origin
|
||||
* @description The origin of this queue item.
|
||||
* @description The origin of this queue item. This data is used by the frontend to determine how to handle results.
|
||||
*/
|
||||
origin?: string | null;
|
||||
/**
|
||||
* Destination
|
||||
* @description The origin of this queue item. This data is used by the frontend to determine how to handle results
|
||||
*/
|
||||
destination?: string | null;
|
||||
/**
|
||||
* Session Id
|
||||
* @description The ID of the session associated with this queue item. The session doesn't exist in graph_executions until the queue item is executed.
|
||||
@ -13516,9 +13561,14 @@ export type components = {
|
||||
batch_id: string;
|
||||
/**
|
||||
* Origin
|
||||
* @description The origin of this queue item.
|
||||
* @description The origin of this queue item. This data is used by the frontend to determine how to handle results.
|
||||
*/
|
||||
origin?: string | null;
|
||||
/**
|
||||
* Destination
|
||||
* @description The origin of this queue item. This data is used by the frontend to determine how to handle results
|
||||
*/
|
||||
destination?: string | null;
|
||||
/**
|
||||
* Session Id
|
||||
* @description The ID of the session associated with this queue item. The session doesn't exist in graph_executions until the queue item is executed.
|
||||
|
Reference in New Issue
Block a user