@compassdigital/sdk.typescript 4.586.0 → 4.588.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -52,9 +52,31 @@ export interface ProductionSheetPaginatedResultsDto {
52
52
  response_id?: string;
53
53
  }
54
54
 
55
+ export interface ProductionSheetBrandFacetDto {
56
+ // Brand display name
57
+ label: string;
58
+ // Brand IDs represented by this display name
59
+ value: string[];
60
+ }
61
+
62
+ export interface ProductionSheetMenuFacetDto {
63
+ // Menu display name
64
+ label: string;
65
+ // Menu ID
66
+ value: string;
67
+ // Brand IDs that contain this menu
68
+ brandIds: string[];
69
+ }
70
+
71
+ export interface ProductionSheetFacetsDto {
72
+ brands: ProductionSheetBrandFacetDto[];
73
+ menus: ProductionSheetMenuFacetDto[];
74
+ }
75
+
55
76
  export interface ProductionSheetPaginatedResponseDto {
56
77
  meta: ProductionSheetPaginatedMetaDto;
57
78
  results: ProductionSheetPaginatedResultsDto;
79
+ facets: ProductionSheetFacetsDto;
58
80
  }
59
81
 
60
82
  export interface ProductionSheetItemForecastDiffDto {