chore: updating API reports

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-05-04 16:23:43 +02:00
parent 76a294331c
commit 5b2d1dd6b4
2 changed files with 13 additions and 0 deletions
+5
View File
@@ -7,6 +7,7 @@ import { Entity } from '@backstage/catalog-model';
import { JsonObject } from '@backstage/types';
import { JsonValue } from '@backstage/types';
import { KindValidator } from '@backstage/catalog-model';
import { UserEntity } from '@backstage/catalog-model';
// @public
export type TaskSpec = TaskSpecV1beta3;
@@ -20,6 +21,10 @@ export interface TaskSpecV1beta3 {
parameters: JsonObject;
steps: TaskStep[];
templateInfo?: TemplateInfo;
user?: {
entity?: UserEntity;
ref?: string;
};
}
// @public