@compassdigital/sdk.typescript 4.624.0 → 4.626.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 +3 -3
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +3 -3
- package/lib/index.js.map +1 -1
- package/lib/interface/menu.d.ts +5 -5
- package/lib/interface/menu.d.ts.map +1 -1
- package/lib/interface/shoppingcart.d.ts +11 -0
- package/lib/interface/shoppingcart.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +6 -6
- package/src/interface/menu.ts +7 -7
- package/src/interface/shoppingcart.ts +12 -0
package/lib/interface/menu.d.ts
CHANGED
|
@@ -1737,7 +1737,7 @@ export interface BusinessUnitDTO {
|
|
|
1737
1737
|
sector_name: string;
|
|
1738
1738
|
[index: string]: any;
|
|
1739
1739
|
}
|
|
1740
|
-
export interface
|
|
1740
|
+
export interface MenuWorksMenuCollectionItemDTO {
|
|
1741
1741
|
menu_collection_id: number;
|
|
1742
1742
|
menu_collection_name: string;
|
|
1743
1743
|
[index: string]: any;
|
|
@@ -5804,14 +5804,14 @@ export interface GetMenuV3MenuworksBusinessUnitsResponse {
|
|
|
5804
5804
|
}
|
|
5805
5805
|
export interface GetMenuV3MenuworksBusinessUnitsRequest extends BaseRequest {
|
|
5806
5806
|
}
|
|
5807
|
-
export interface
|
|
5807
|
+
export interface GetMenuV3MenuworksBusinessUnitsMenuCollectionsPath {
|
|
5808
5808
|
unit_id: string;
|
|
5809
5809
|
}
|
|
5810
|
-
export interface
|
|
5811
|
-
results:
|
|
5810
|
+
export interface GetMenuV3MenuworksBusinessUnitsMenuCollectionsResponse {
|
|
5811
|
+
results: MenuWorksMenuCollectionItemDTO[];
|
|
5812
5812
|
[index: string]: any;
|
|
5813
5813
|
}
|
|
5814
|
-
export interface
|
|
5814
|
+
export interface GetMenuV3MenuworksBusinessUnitsMenuCollectionsRequest extends BaseRequest, GetMenuV3MenuworksBusinessUnitsMenuCollectionsPath {
|
|
5815
5815
|
}
|
|
5816
5816
|
export interface GetMenuV3MenuworksBusinessUnitsProductsPath {
|
|
5817
5817
|
unit_id: string;
|