feat: remove skyll_enabled attribute and related functionality from gateways

This commit is contained in:
Abhimanyu Saharan
2026-02-07 00:30:53 +05:30
parent 4bab455912
commit 5f603b205a
12 changed files with 54 additions and 372 deletions

View File

@@ -8,7 +8,6 @@
export interface GatewayCreate {
main_session_key: string;
name: string;
skyll_enabled?: boolean;
token?: string | null;
url: string;
workspace_root: string;

View File

@@ -10,7 +10,6 @@ export interface GatewayRead {
id: string;
main_session_key: string;
name: string;
skyll_enabled?: boolean;
token?: string | null;
updated_at: string;
url: string;

View File

@@ -8,7 +8,6 @@
export interface GatewayUpdate {
main_session_key?: string | null;
name?: string | null;
skyll_enabled?: boolean | null;
token?: string | null;
url?: string | null;
workspace_root?: string | null;