feat(catalog-model/docs): Updating api-report for catalog-model

Signed-off-by: blam <ben@blam.sh>

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2021-09-28 14:01:51 +02:00
parent f8355c99cb
commit 5a0d2e9fa5
+27
View File
@@ -553,6 +553,33 @@ export interface TemplateEntityV1beta2 extends Entity {
// @public (undocumented)
export const templateEntityV1beta2Validator: KindValidator;
// @public (undocumented)
export interface TemplateEntityV1beta3 extends Entity {
// (undocumented)
apiVersion: 'backstage.io/v1beta3';
// (undocumented)
kind: 'Template';
// (undocumented)
spec: {
type: string;
parameters?: JsonObject | JsonObject[];
steps: Array<{
id?: string;
name?: string;
action: string;
input?: JsonObject;
if?: string | boolean;
}>;
output?: {
[name: string]: string;
};
owner?: string;
};
}
// @public (undocumented)
export const templateEntityV1beta3Validator: KindValidator;
// @alpha
export type UNSTABLE_EntityStatus = {
items?: UNSTABLE_EntityStatusItem[];