Remove deprecated ActionExample

Signed-off-by: solimant <solimant@users.noreply.github.com>
This commit is contained in:
solimant
2025-06-18 07:19:34 +00:00
parent 182e77ba82
commit 0afb6e8e4f
2 changed files with 2 additions and 13 deletions
+1 -4
View File
@@ -22,12 +22,9 @@ export type Action = {
input?: JSONSchema7;
output?: JSONSchema7;
};
examples?: ActionExample[];
examples?: ScaffolderUsageExample[];
};
// @public @deprecated
export type ActionExample = ScaffolderUsageExample;
// @public
export const isTemplateEntityV1beta3: (
entity: Entity,
+1 -9
View File
@@ -60,14 +60,6 @@ export type ScaffolderUsageExample = {
notes?: string;
};
/**
* A single action example
*
* @public
* @deprecated in favor of ScaffolderUsageExample
*/
export type ActionExample = ScaffolderUsageExample;
/**
* The response shape for a single action in the `listActions` call to the `scaffolder-backend`
*
@@ -80,7 +72,7 @@ export type Action = {
input?: JSONSchema7;
output?: JSONSchema7;
};
examples?: ActionExample[];
examples?: ScaffolderUsageExample[];
};
/**