diff --git a/client/ts/generate_types.mjs b/client/ts/generate_types.mjs index ae74fec14..a5ed956c3 100644 --- a/client/ts/generate_types.mjs +++ b/client/ts/generate_types.mjs @@ -26,6 +26,7 @@ function fix_types() { const fixed = contents .toString() .replaceAll("ResourceTargetVariant", 'ResourceTarget["type"]') - .replaceAll("AlertDataVariant", 'AlertData["type"]'); + .replaceAll("AlertDataVariant", 'AlertData["type"]') + .replaceAll("ProcedureConfigVariant", 'ProcedureConfig["type"]'); writeFileSync(types_path, fixed); }