Updated API reports due to the package change

Signed-off-by: Andre Wanlin <awanlin@spotify.com>
This commit is contained in:
Andre Wanlin
2026-02-23 06:29:04 -06:00
parent d0469f605a
commit 4541817031
16 changed files with 81 additions and 230 deletions
+3 -16
View File
@@ -11,11 +11,7 @@ import { TemplateGlobal as TemplateGlobal_2 } from '@backstage/plugin-scaffolder
import { z } from 'zod';
// @alpha
export type AutocompleteHandler = ({
resource,
token,
context,
}: {
export type AutocompleteHandler = (input: {
resource: string;
token: string;
context: Record<string, string>;
@@ -125,10 +121,7 @@ export const restoreWorkspace: (opts: {
// @alpha
export interface ScaffolderAutocompleteExtensionPoint {
// (undocumented)
addAutocompleteProvider({
id,
handler,
}: {
addAutocompleteProvider(input: {
id: string;
handler: AutocompleteHandler;
}): void;
@@ -217,13 +210,7 @@ export interface WorkspaceProvider {
targetPath: string;
}): Promise<void>;
// (undocumented)
serializeWorkspace({
path,
taskId,
}: {
path: string;
taskId: string;
}): Promise<void>;
serializeWorkspace(input: { path: string; taskId: string }): Promise<void>;
}
// @alpha (undocumented)