@compassdigital/sdk.typescript 4.722.0 → 4.723.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.js CHANGED
@@ -7663,6 +7663,15 @@ class ServiceClient extends base_1.BaseServiceClient {
7663
7663
  get_delivery_health(options) {
7664
7664
  return this.request('delivery', '/delivery/health', 'GET', `/delivery/health`, null, options);
7665
7665
  }
7666
+ /**
7667
+ * GET /delivery/order/{id} - Get guest-facing delivery status and ETAs for an order
7668
+ *
7669
+ * @param id
7670
+ * @param options - additional request options
7671
+ */
7672
+ get_delivery_order(id, options) {
7673
+ return this.request('delivery', '/delivery/order/{id}', 'GET', `/delivery/order/${id}`, null, options);
7674
+ }
7666
7675
  /**
7667
7676
  * POST /delivery/order/{id}/ready - Mark an AVRIDE order ready for robot pickup
7668
7677
  *