replace ProcedureConfigVariant

This commit is contained in:
mbecker20
2024-01-07 14:18:54 -08:00
parent 5925cf5cc9
commit f1cbe6fba9

View File

@@ -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);
}