From 52b916a745a61a399f90d1d9ca593fd3dab17744 Mon Sep 17 00:00:00 2001 From: manu Date: Tue, 16 Jul 2024 09:03:28 +0200 Subject: [PATCH] Add local field to API types A new optional field, `local`, was added to the API types definition in the shared-lib. This was done to allow for more flexibility when defining new API types. --- shared-lib/src/types/api.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/shared-lib/src/types/api.ts b/shared-lib/src/types/api.ts index 1d5c9c0c..826af175 100644 --- a/shared-lib/src/types/api.ts +++ b/shared-lib/src/types/api.ts @@ -547,6 +547,7 @@ export type ExtraVar = { value?: string; required?: boolean; canBeOverride?: boolean; + local?: boolean; }; export type Image = {