From df4f6b4f406678ac36594d598668768bb2e8532c Mon Sep 17 00:00:00 2001 From: Gregor Zavodnik Date: Tue, 30 Jul 2024 09:55:10 +0200 Subject: [PATCH] Type is now string --- src/model/PlatformConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model/PlatformConfig.ts b/src/model/PlatformConfig.ts index 2457c2e..a7ad925 100644 --- a/src/model/PlatformConfig.ts +++ b/src/model/PlatformConfig.ts @@ -42,7 +42,7 @@ type AzureConfig = { export type PlatformConfigAzure = PlatformConfigBase & AzureConfig; type CustomConfig = { - type: "custom"; + type: string; }; export type PlatformConfigCustom = PlatformConfigBase & CustomConfig;