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:
@@ -12,5 +12,6 @@ export interface GatewayCreate {
|
|||||||
name: string;
|
name: string;
|
||||||
url: string;
|
url: string;
|
||||||
workspace_root: string;
|
workspace_root: string;
|
||||||
|
allow_insecure_tls?: boolean;
|
||||||
token?: string | null;
|
token?: string | null;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ export interface GatewayRead {
|
|||||||
name: string;
|
name: string;
|
||||||
url: string;
|
url: string;
|
||||||
workspace_root: string;
|
workspace_root: string;
|
||||||
|
allow_insecure_tls: boolean;
|
||||||
id: string;
|
id: string;
|
||||||
organization_id: string;
|
organization_id: string;
|
||||||
token?: string | null;
|
token?: string | null;
|
||||||
|
|||||||
@@ -13,4 +13,5 @@ export interface GatewayUpdate {
|
|||||||
url?: string | null;
|
url?: string | null;
|
||||||
token?: string | null;
|
token?: string | null;
|
||||||
workspace_root?: string | null;
|
workspace_root?: string | null;
|
||||||
|
allow_insecure_tls?: boolean | null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user