run api-report

Signed-off-by: Paul Cowan <paul.cowan@cutting.scot>
This commit is contained in:
Paul Cowan
2022-08-22 16:48:35 +01:00
parent 1ff817b3f0
commit bfbccc3be9
2 changed files with 7 additions and 2 deletions
+4 -2
View File
@@ -4,10 +4,11 @@
```ts
import { Entity } from '@backstage/catalog-model';
import type { EntityMeta } from '@backstage/catalog-model';
import { JsonObject } from '@backstage/types';
import { JsonValue } from '@backstage/types';
import type { JsonValue } from '@backstage/types';
import { KindValidator } from '@backstage/catalog-model';
import { UserEntity } from '@backstage/catalog-model';
import type { UserEntity } from '@backstage/catalog-model';
// @public
export type TaskSpec = TaskSpecV1beta3;
@@ -64,5 +65,6 @@ export const templateEntityV1beta3Validator: KindValidator;
export type TemplateInfo = {
entityRef: string;
baseUrl?: string;
entityMetadata: EntityMeta;
};
```
@@ -33,6 +33,9 @@ export type TemplateInfo = {
*/
baseUrl?: string;
/**
* The Template entity's metadata
*/
entityMetadata: EntityMeta;
};