chore(ui): typegen

This commit is contained in:
psychedelicious 2024-08-29 17:49:15 +10:00
parent 56fbe751db
commit 2f81d1ac83

View File

@ -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'
@ -8663,10 +8673,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)
@ -8715,10 +8731,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)
@ -8784,10 +8806,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)
@ -9009,10 +9037,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)
@ -12083,10 +12117,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
@ -13445,9 +13485,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.
@ -13530,9 +13575,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.