mirror of
https://github.com/escalante29/WealthySmart.git
synced 2026-07-17 09:08:46 +02:00
Regenerate API types for MAF upgrade
This commit is contained in:
@@ -915,11 +915,9 @@ export interface components {
|
|||||||
AGUIRequest: {
|
AGUIRequest: {
|
||||||
/**
|
/**
|
||||||
* Availableinterrupts
|
* Availableinterrupts
|
||||||
* @description List of interrupts that can be resumed by the server
|
* @description Canonical AG-UI interrupts that can be resumed by the server
|
||||||
*/
|
*/
|
||||||
availableInterrupts?: {
|
availableInterrupts?: components["schemas"]["Interrupt"][] | null;
|
||||||
[key: string]: unknown;
|
|
||||||
}[] | null;
|
|
||||||
/**
|
/**
|
||||||
* Context
|
* Context
|
||||||
* @description List of context objects provided to the agent
|
* @description List of context objects provided to the agent
|
||||||
@@ -948,11 +946,9 @@ export interface components {
|
|||||||
parent_run_id?: string | null;
|
parent_run_id?: string | null;
|
||||||
/**
|
/**
|
||||||
* Resume
|
* Resume
|
||||||
* @description Resume payload containing interrupt responses
|
* @description Resume payload for continuing interrupted runs
|
||||||
*/
|
*/
|
||||||
resume?: {
|
resume?: components["schemas"]["ResumeEntry"][] | null;
|
||||||
[key: string]: unknown;
|
|
||||||
} | null;
|
|
||||||
/**
|
/**
|
||||||
* Run Id
|
* Run Id
|
||||||
* @description Optional run identifier for tracking
|
* @description Optional run identifier for tracking
|
||||||
@@ -1373,6 +1369,34 @@ export interface components {
|
|||||||
/** Num Installments */
|
/** Num Installments */
|
||||||
num_installments?: number | null;
|
num_installments?: number | null;
|
||||||
};
|
};
|
||||||
|
/**
|
||||||
|
* Interrupt
|
||||||
|
* @description A pause carried inside ``RunFinishedEvent.outcome`` when the outcome is
|
||||||
|
* ``RunFinishedInterruptOutcome``. The client resumes
|
||||||
|
* by addressing this interrupt in the resume array of the next RunAgentInput.
|
||||||
|
*/
|
||||||
|
Interrupt: {
|
||||||
|
/** Expiresat */
|
||||||
|
expiresAt?: string | null;
|
||||||
|
/** Id */
|
||||||
|
id: string;
|
||||||
|
/** Message */
|
||||||
|
message?: string | null;
|
||||||
|
/** Metadata */
|
||||||
|
metadata?: {
|
||||||
|
[key: string]: unknown;
|
||||||
|
} | null;
|
||||||
|
/** Reason */
|
||||||
|
reason: string;
|
||||||
|
/** Responseschema */
|
||||||
|
responseSchema?: {
|
||||||
|
[key: string]: unknown;
|
||||||
|
} | null;
|
||||||
|
/** Toolcallid */
|
||||||
|
toolCallId?: string | null;
|
||||||
|
} & {
|
||||||
|
[key: string]: unknown;
|
||||||
|
};
|
||||||
/** LoginRequest */
|
/** LoginRequest */
|
||||||
LoginRequest: {
|
LoginRequest: {
|
||||||
/** Password */
|
/** Password */
|
||||||
@@ -1831,6 +1855,23 @@ export interface components {
|
|||||||
[key: string]: unknown;
|
[key: string]: unknown;
|
||||||
} | null;
|
} | null;
|
||||||
};
|
};
|
||||||
|
/**
|
||||||
|
* ResumeEntry
|
||||||
|
* @description A per-interrupt response in the resume array of a RunAgentInput.
|
||||||
|
*/
|
||||||
|
ResumeEntry: {
|
||||||
|
/** Interruptid */
|
||||||
|
interruptId: string;
|
||||||
|
/** Payload */
|
||||||
|
payload?: unknown | null;
|
||||||
|
/**
|
||||||
|
* Status
|
||||||
|
* @enum {string}
|
||||||
|
*/
|
||||||
|
status: "resolved" | "cancelled";
|
||||||
|
} & {
|
||||||
|
[key: string]: unknown;
|
||||||
|
};
|
||||||
/** SalariosSummary */
|
/** SalariosSummary */
|
||||||
SalariosSummary: {
|
SalariosSummary: {
|
||||||
/** Count */
|
/** Count */
|
||||||
|
|||||||
Reference in New Issue
Block a user