From 3c8be3f5b9bbdd364b5259703468eca66998bded Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Sun, 21 Sep 2025 08:01:49 -0700 Subject: [PATCH] Gen models --- packages/plugin-runtime-types/src/bindings/gen_models.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugin-runtime-types/src/bindings/gen_models.ts b/packages/plugin-runtime-types/src/bindings/gen_models.ts index 0880935d..1136b85a 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, color: string | null, }; +export type Environment = { model: "environment", id: string, workspaceId: string, createdAt: string, updatedAt: string, name: string, public: boolean, variables: Array, color: string | null, parentModel: string, parentId: string | null, }; export type EnvironmentVariable = { enabled?: boolean, name: string, value: string, id?: string, };