@compassdigital/sdk.typescript 4.751.0 → 4.753.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 -3
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +12 -2
- package/lib/index.js.map +1 -1
- package/lib/interface/centricos.d.ts +41 -0
- package/lib/interface/centricos.d.ts.map +1 -1
- package/lib/interface/menu.d.ts +8 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +25 -1
- package/src/interface/centricos.ts +76 -0
- package/src/interface/menu.ts +14 -0
package/lib/index.js
CHANGED
|
@@ -4523,6 +4523,15 @@ class ServiceClient extends base_1.BaseServiceClient {
|
|
|
4523
4523
|
patch_menu_v4_brand_menus_reorder(brand_id, body, options) {
|
|
4524
4524
|
return this.request('menu', '/menu/v4/brand/{brand_id}/menus/reorder', 'PATCH', `/menu/v4/brand/${brand_id}/menus/reorder`, body, options);
|
|
4525
4525
|
}
|
|
4526
|
+
/**
|
|
4527
|
+
* GET /menu/v4/brand/{id}/generate-barcode
|
|
4528
|
+
*
|
|
4529
|
+
* @param id
|
|
4530
|
+
* @param options - additional request options
|
|
4531
|
+
*/
|
|
4532
|
+
get_menu_v4_brand_generate_barcode(id, options) {
|
|
4533
|
+
return this.request('menu', '/menu/v4/brand/{id}/generate-barcode', 'GET', `/menu/v4/brand/${id}/generate-barcode`, null, options);
|
|
4534
|
+
}
|
|
4526
4535
|
/**
|
|
4527
4536
|
* GET /menu/v4/brand/{id}/items
|
|
4528
4537
|
*
|
|
@@ -6684,10 +6693,11 @@ class ServiceClient extends base_1.BaseServiceClient {
|
|
|
6684
6693
|
*
|
|
6685
6694
|
* @param station_id - TODO: cannot use CompassLongID as path parameter
|
|
6686
6695
|
* @param integration_type
|
|
6696
|
+
* @param body
|
|
6687
6697
|
* @param options - additional request options
|
|
6688
6698
|
*/
|
|
6689
|
-
put_centricos_station_integration(station_id, integration_type, options) {
|
|
6690
|
-
return this.request('centricos', '/centricos/station/{station_id}/integration/{integration_type}', 'PUT', `/centricos/station/${station_id}/integration/${integration_type}`,
|
|
6699
|
+
put_centricos_station_integration(station_id, integration_type, body, options) {
|
|
6700
|
+
return this.request('centricos', '/centricos/station/{station_id}/integration/{integration_type}', 'PUT', `/centricos/station/${station_id}/integration/${integration_type}`, body, options);
|
|
6691
6701
|
}
|
|
6692
6702
|
/**
|
|
6693
6703
|
* DELETE /centricos/station/{station_id}/{integration_type} - Delete station integration
|