chore: updating api-report and fixing the warnings

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-02-16 10:43:02 +01:00
parent a4d53fe18e
commit f1cfb215ce
2 changed files with 11 additions and 3 deletions
+10 -2
View File
@@ -33,9 +33,9 @@ export interface TaskSpecV1beta2 {
export interface TaskSpecV1beta3 {
// (undocumented)
apiVersion: 'scaffolder.backstage.io/v1beta3';
// (undocumented)
// @deprecated (undocumented)
baseUrl?: string;
// (undocumented)
// @deprecated (undocumented)
metadata?: TemplateMetadata;
// (undocumented)
output: {
@@ -45,6 +45,8 @@ export interface TaskSpecV1beta3 {
parameters: JsonObject;
// (undocumented)
steps: TaskStep[];
// (undocumented)
templateInfo?: TemplateInfo;
}
// @public
@@ -116,6 +118,12 @@ export interface TemplateEntityV1beta3 extends Entity {
export const templateEntityV1beta3Validator: KindValidator;
// @public
export type TemplateInfo = {
name: string;
baseUrl?: string;
};
// @public @deprecated
export type TemplateMetadata = {
name: string;
};
+1 -1
View File
@@ -21,7 +21,7 @@ import { JsonValue, JsonObject } from '@backstage/types';
* stored in the database.
*
* @public
* @deprecated
* @deprecated use templateInfo on the spec instead
*/
export type TemplateMetadata = {
name: string;