diff --git a/packages/spec-dashboard/src/apis.ts b/packages/spec-dashboard/src/apis.ts index 3e6090d3d7..1be51dfc2d 100644 --- a/packages/spec-dashboard/src/apis.ts +++ b/packages/spec-dashboard/src/apis.ts @@ -8,30 +8,18 @@ const storageAccountName = "typespec"; export type GeneratorNames = | "@typespec/http-client-python" - | "@azure-tools/typespec-python" - | "@azure-tools/typespec-go" - | "@azure-tools/typespec-csharp" | "@typespec/http-client-csharp" | "@azure-tools/typespec-ts-rlc" | "@azure-tools/typespec-ts-modular" - | "@azure-tools/typespec-java" | "@typespec/http-client-java" - | "@azure-tools/typespec-cpp" - | "@azure-tools/typespec-rust" | "test"; const query = new URLSearchParams(window.location.search); const generatorNames: GeneratorNames[] = [ "@typespec/http-client-python", - "@azure-tools/typespec-python", - "@azure-tools/typespec-go", - "@azure-tools/typespec-csharp", "@typespec/http-client-csharp", "@azure-tools/typespec-ts-rlc", "@azure-tools/typespec-ts-modular", - "@azure-tools/typespec-java", "@typespec/http-client-java", - "@azure-tools/typespec-cpp", - "@azure-tools/typespec-rust", ...(query.has("showtest") ? (["test"] as const) : []), ];