Skip to content

Commit

Permalink
Merge pull request #45 from coveo/fix-COM-108-add-scope-model
Browse files Browse the repository at this point in the history
fix: adding scope model [COM-108]
  • Loading branch information
toussaints authored Nov 18, 2019
2 parents bc9f830 + db4c53c commit 02fa1fb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/resources/Catalogs/CatalogInterfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface CatalogModel {
product: ProductHierarchyModel;
availability?: AvailabilityHierarchyModel;
description?: string;
scope?: string;
scope?: ScopeModel;
variant?: VariantHierarchyModel;
}

Expand All @@ -29,3 +29,7 @@ export interface AvailabilityHierarchyModel {
fields: string[];
objectType: string;
}

export interface ScopeModel {
query: string;
}

0 comments on commit 02fa1fb

Please sign in to comment.