chore: reset the changes to the catalog-model

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

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2021-10-11 14:31:53 +02:00
parent 8893feca73
commit 18404c795b
2 changed files with 0 additions and 29 deletions
-27
View File
@@ -553,33 +553,6 @@ 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[];
@@ -52,8 +52,6 @@ export type {
} from './SystemEntityV1alpha1';
export { templateEntityV1beta2Validator } from './TemplateEntityV1beta2';
export type { TemplateEntityV1beta2 } from './TemplateEntityV1beta2';
export { templateEntityV1beta3Validator } from './TemplateEntityV1beta3';
export type { TemplateEntityV1beta3 } from './TemplateEntityV1beta3';
export type { KindValidator } from './types';
export { userEntityV1alpha1Validator } from './UserEntityV1alpha1';
export type {