@compassdigital/sdk.typescript 3.56.0 → 3.58.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.
@@ -110,6 +110,7 @@ export interface Order {
110
110
  out_for_delivery?: boolean;
111
111
  delivered?: boolean;
112
112
  checkin_order?: boolean;
113
+ dining_hall_order?: boolean;
113
114
  no_show?: boolean;
114
115
  collected?: boolean;
115
116
  };
@@ -196,6 +197,7 @@ export interface Order {
196
197
  past_issues?: Issue[];
197
198
  // Delivery user
198
199
  runner?: string;
200
+ reorder_eligibility?: string;
199
201
  [index: string]: any;
200
202
  }
201
203