Regenerate API types for MAF upgrade
All checks were successful
Deploy to VPS / test (push) Successful in 1m44s
Deploy to VPS / deploy (push) Successful in 2m29s

This commit is contained in:
Carlos Escalante
2026-07-14 21:52:50 -06:00
parent fbc0816be6
commit 352b77ea07

View File

@@ -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 */