Fixing SelfServeType enum to work in MPAC (#2057)

This commit is contained in:
vchske
2025-02-18 09:59:51 -08:00
committed by GitHub
parent d7923db108
commit 4ac41031e6
2 changed files with 9 additions and 8 deletions

View File

@@ -29,10 +29,11 @@ export enum SelfServeType {
// Unsupported self serve type passed as feature flag
invalid = "invalid",
// Add your self serve types here
// NOTE: text and casing of the enum's value must match the corresponding file in Localization\en\
example = "example",
sqlx = "sqlx",
graphapicompute = "graphapicompute",
materializedviewsbuilder = "materializedviewsbuilder",
sqlx = "SqlX",
graphapicompute = "GraphAPICompute",
materializedviewsbuilder = "MaterializedViewsBuilder",
}
/**