18 lines
439 B
TypeScript
18 lines
439 B
TypeScript
/**
|
|
* Generated by orval v8.2.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { GatewayTemplatesSyncError } from "./gatewayTemplatesSyncError";
|
|
|
|
export interface GatewayTemplatesSyncResult {
|
|
gateway_id: string;
|
|
include_main: boolean;
|
|
reset_sessions: boolean;
|
|
agents_updated: number;
|
|
agents_skipped: number;
|
|
main_updated: boolean;
|
|
errors?: GatewayTemplatesSyncError[];
|
|
}
|