From e5070513ac7323f183f2b68e2ab5152f3d09f159 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Tue, 13 May 2025 10:45:41 -0700 Subject: [PATCH] Regenerate types --- src-tauri/yaak-models/bindings/gen_models.ts | 2 +- src-tauri/yaak-models/bindings/gen_util.ts | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src-tauri/yaak-models/bindings/gen_models.ts b/src-tauri/yaak-models/bindings/gen_models.ts index 02e4fcf5..e59ed39f 100644 --- a/src-tauri/yaak-models/bindings/gen_models.ts +++ b/src-tauri/yaak-models/bindings/gen_models.ts @@ -54,7 +54,7 @@ export type Plugin = { model: "plugin", id: string, createdAt: string, updatedAt export type PluginKeyValue = { model: "plugin_key_value", createdAt: string, updatedAt: string, pluginName: string, key: string, value: string, }; -export type ProxySetting = { "type": "enabled", http: string, https: string, auth: ProxySettingAuth | null, } | { "type": "disabled" }; +export type ProxySetting = { "type": "enabled", disabled: boolean, http: string, https: string, auth: ProxySettingAuth | null, } | { "type": "disabled" }; export type ProxySettingAuth = { user: string, password: string, }; diff --git a/src-tauri/yaak-models/bindings/gen_util.ts b/src-tauri/yaak-models/bindings/gen_util.ts index 482d1902..a38424de 100644 --- a/src-tauri/yaak-models/bindings/gen_util.ts +++ b/src-tauri/yaak-models/bindings/gen_util.ts @@ -1,9 +1,9 @@ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. -import type { Environment } from "./gen_models.js"; -import type { Folder } from "./gen_models.js"; -import type { GrpcRequest } from "./gen_models.js"; -import type { HttpRequest } from "./gen_models.js"; -import type { WebsocketRequest } from "./gen_models.js"; -import type { Workspace } from "./gen_models.js"; +import type { Environment } from "./gen_models"; +import type { Folder } from "./gen_models"; +import type { GrpcRequest } from "./gen_models"; +import type { HttpRequest } from "./gen_models"; +import type { WebsocketRequest } from "./gen_models"; +import type { Workspace } from "./gen_models"; export type BatchUpsertResult = { workspaces: Array, environments: Array, folders: Array, httpRequests: Array, grpcRequests: Array, websocketRequests: Array, };