From 13dae319352c6c43a6fcbf4746f4f5cdb2a0bc38 Mon Sep 17 00:00:00 2001 From: Nikita Nek Dudnik Date: Thu, 28 May 2020 13:29:25 +0200 Subject: [PATCH] fix: add missing type --- plugins/catalog/src/api/types.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/plugins/catalog/src/api/types.ts b/plugins/catalog/src/api/types.ts index 9f1cfb8529..8ed5748e7c 100644 --- a/plugins/catalog/src/api/types.ts +++ b/plugins/catalog/src/api/types.ts @@ -14,7 +14,11 @@ * limitations under the License. */ -import { ComponentDescriptorV1beta1 } from './descriptors/ComponentDescriptorV1beta1Parser'; +export interface ComponentDescriptorV1beta1 extends DescriptorEnvelope { + spec: { + type: string; + }; +} export type ComponentDescriptor = ComponentDescriptorV1beta1;