@compassdigital/sdk.typescript 4.501.0 → 4.502.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/interface/menu.d.ts
CHANGED
|
@@ -1864,6 +1864,11 @@ export interface FetchBrandItemsCategoryRequestDTO {
|
|
|
1864
1864
|
name: string;
|
|
1865
1865
|
[index: string]: any;
|
|
1866
1866
|
}
|
|
1867
|
+
export interface FetchBrandItemsMetaDTO {
|
|
1868
|
+
result_count: number;
|
|
1869
|
+
exceeds_item_cap: boolean;
|
|
1870
|
+
[index: string]: any;
|
|
1871
|
+
}
|
|
1867
1872
|
export interface FetchEntityWithMenusAndItemsDTO {
|
|
1868
1873
|
id: string;
|
|
1869
1874
|
name: string;
|
|
@@ -2024,6 +2029,11 @@ export interface FetchStationItemsSearchCategoryRequestDTO {
|
|
|
2024
2029
|
name: string;
|
|
2025
2030
|
[index: string]: any;
|
|
2026
2031
|
}
|
|
2032
|
+
export interface FetchStationItemsMetaDTO {
|
|
2033
|
+
result_count: number;
|
|
2034
|
+
exceeds_item_cap: boolean;
|
|
2035
|
+
[index: string]: any;
|
|
2036
|
+
}
|
|
2027
2037
|
export interface FetchSiteWithStationsDTO {
|
|
2028
2038
|
id: string;
|
|
2029
2039
|
name: string;
|
|
@@ -6721,7 +6731,7 @@ export interface PostMenuV4BrandItemsSearchBody {
|
|
|
6721
6731
|
[index: string]: any;
|
|
6722
6732
|
}
|
|
6723
6733
|
export interface PostMenuV4BrandItemsSearchResponse {
|
|
6724
|
-
meta:
|
|
6734
|
+
meta: FetchBrandItemsMetaDTO;
|
|
6725
6735
|
results: FetchEntityWithMenusAndItemsDTO[];
|
|
6726
6736
|
[index: string]: any;
|
|
6727
6737
|
}
|
|
@@ -8494,7 +8504,7 @@ export interface PostMenuV4StationItemsSearchBody {
|
|
|
8494
8504
|
[index: string]: any;
|
|
8495
8505
|
}
|
|
8496
8506
|
export interface PostMenuV4StationItemsSearchResponse {
|
|
8497
|
-
meta:
|
|
8507
|
+
meta: FetchStationItemsMetaDTO;
|
|
8498
8508
|
results: FetchSiteWithStationsDTO[];
|
|
8499
8509
|
[index: string]: any;
|
|
8500
8510
|
}
|