From db4c53cf2377fc3be101ec24835b385477e649bc Mon Sep 17 00:00:00 2001 From: Simon Toussaint Date: Mon, 18 Nov 2019 08:21:36 -0500 Subject: [PATCH] fix: adding scope model [COM-108] --- src/resources/Catalogs/CatalogInterfaces.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/resources/Catalogs/CatalogInterfaces.ts b/src/resources/Catalogs/CatalogInterfaces.ts index 9ad334aa5..8dad876a3 100644 --- a/src/resources/Catalogs/CatalogInterfaces.ts +++ b/src/resources/Catalogs/CatalogInterfaces.ts @@ -9,7 +9,7 @@ export interface CatalogModel { product: ProductHierarchyModel; availability?: AvailabilityHierarchyModel; description?: string; - scope?: string; + scope?: ScopeModel; variant?: VariantHierarchyModel; } @@ -29,3 +29,7 @@ export interface AvailabilityHierarchyModel { fields: string[]; objectType: string; } + +export interface ScopeModel { + query: string; +}