From 88e87a19999b952a800379d9b79d1f082e50f9f6 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Sat, 7 Jun 2025 20:15:32 -0700 Subject: [PATCH] Fix stupid typo --- package.json | 2 +- packages/plugin-runtime-types/src/bindings/gen_events.ts | 8 +------- packages/plugin-runtime-types/src/bindings/gen_models.ts | 2 +- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index 596b034e..39249a98 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "plugins/template-function-response", "plugins/template-function-uuid", "plugins/template-function-xml", - "src-/tauri/yaak-crypto", + "src-tauri/yaak-crypto", "src-tauri/yaak-git", "src-tauri/yaak-license", "src-tauri/yaak-mac-window", diff --git a/packages/plugin-runtime-types/src/bindings/gen_events.ts b/packages/plugin-runtime-types/src/bindings/gen_events.ts index 3363706d..1a82fb1b 100644 --- a/packages/plugin-runtime-types/src/bindings/gen_events.ts +++ b/packages/plugin-runtime-types/src/bindings/gen_events.ts @@ -1,12 +1,6 @@ // 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 { HttpResponse } from "./gen_models.js"; +import type { Environment, Folder, GrpcRequest, HttpRequest, HttpResponse, WebsocketRequest, Workspace } from "./gen_models.js"; import type { JsonValue } from "./serde_json/JsonValue.js"; -import type { WebsocketRequest } from "./gen_models.js"; -import type { Workspace } from "./gen_models.js"; export type BootRequest = { dir: string, watch: boolean, }; diff --git a/packages/plugin-runtime-types/src/bindings/gen_models.ts b/packages/plugin-runtime-types/src/bindings/gen_models.ts index 8d95d78f..0880935d 100644 --- a/packages/plugin-runtime-types/src/bindings/gen_models.ts +++ b/packages/plugin-runtime-types/src/bindings/gen_models.ts @@ -1,6 +1,6 @@ // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. -export type Environment = { model: "environment", id: string, workspaceId: string, createdAt: string, updatedAt: string, name: string, public: boolean, base: boolean, variables: Array, }; +export type Environment = { model: "environment", id: string, workspaceId: string, createdAt: string, updatedAt: string, name: string, public: boolean, base: boolean, variables: Array, color: string | null, }; export type EnvironmentVariable = { enabled?: boolean, name: string, value: string, id?: string, };