@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.
- package/lib/index.d.ts +11 -6
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +12 -3
- package/lib/index.js.map +1 -1
- package/lib/interface/catalog.d.ts +11 -12
- package/lib/interface/catalog.d.ts.map +1 -1
- package/lib/interface/centricos.d.ts +13 -0
- package/lib/interface/centricos.d.ts.map +1 -1
- package/lib/interface/consumer.d.ts +2 -0
- package/lib/interface/consumer.d.ts.map +1 -1
- package/lib/interface/forecasting.d.ts +14 -0
- package/lib/interface/forecasting.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +29 -10
- package/src/interface/catalog.ts +19 -19
- package/src/interface/centricos.ts +25 -0
- package/src/interface/consumer.ts +3 -0
- package/src/interface/forecasting.ts +22 -0
|
@@ -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 {
|