fix: Update generated TypeScript API models for allow_insecure_tls field

Co-authored-by: abhi1693 <5083532+abhi1693@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-22 07:37:25 +00:00
parent 87b210b34d
commit c072749b35
3 changed files with 3 additions and 0 deletions

View File

@@ -12,5 +12,6 @@ export interface GatewayCreate {
name: string;
url: string;
workspace_root: string;
allow_insecure_tls?: boolean;
token?: string | null;
}

View File

@@ -12,6 +12,7 @@ export interface GatewayRead {
name: string;
url: string;
workspace_root: string;
allow_insecure_tls: boolean;
id: string;
organization_id: string;
token?: string | null;

View File

@@ -13,4 +13,5 @@ export interface GatewayUpdate {
url?: string | null;
token?: string | null;
workspace_root?: string | null;
allow_insecure_tls?: boolean | null;
}