@compassdigital/sdk.typescript 4.694.0 → 4.696.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 +9 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +10 -0
- package/lib/index.js.map +1 -1
- package/lib/interface/delivery.d.ts +37 -1
- package/lib/interface/delivery.d.ts.map +1 -1
- package/lib/interface/location.d.ts +4 -0
- package/lib/interface/location.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +24 -0
- package/src/interface/delivery.ts +67 -1
- package/src/interface/location.ts +4 -0
package/lib/index.js
CHANGED
|
@@ -7622,6 +7622,16 @@ class ServiceClient extends base_1.BaseServiceClient {
|
|
|
7622
7622
|
post_delivery_order_close_lid(id, options) {
|
|
7623
7623
|
return this.request('delivery', '/delivery/order/{id}/close', 'POST', `/delivery/order/${id}/close`, null, options);
|
|
7624
7624
|
}
|
|
7625
|
+
/**
|
|
7626
|
+
* POST /delivery/order/{id}/status - Update a delivery order's status on its delivery-orders record
|
|
7627
|
+
*
|
|
7628
|
+
* @param id
|
|
7629
|
+
* @param body
|
|
7630
|
+
* @param options - additional request options
|
|
7631
|
+
*/
|
|
7632
|
+
post_delivery_order_status(id, body, options) {
|
|
7633
|
+
return this.request('delivery', '/delivery/order/{id}/status', 'POST', `/delivery/order/${id}/status`, body, options);
|
|
7634
|
+
}
|
|
7625
7635
|
}
|
|
7626
7636
|
exports.ServiceClient = ServiceClient;
|
|
7627
7637
|
//# sourceMappingURL=index.js.map
|