@compassdigital/sdk.typescript 3.56.0 → 3.57.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.
@@ -45,7 +45,7 @@ export interface GetCompassconnectOmsTokenQuery {
45
45
  client_id: string;
46
46
  // The callback uri of the application calling the service
47
47
  callback_uri: string;
48
- // The urle
48
+ // The url
49
49
  oms_url: string;
50
50
  // Graphql query string
51
51
  _query?: string;
@@ -22,6 +22,7 @@ export interface MenuHours {
22
22
  is_pickup?: boolean;
23
23
  is_delivery?: boolean;
24
24
  is_frictionless?: boolean;
25
+ state?: BrandOrMenuState;
25
26
  }
26
27
 
27
28
  export interface Hours {
@@ -197,6 +198,7 @@ export interface Brand {
197
198
  delivery?: WaitTime;
198
199
  pickup?: WaitTime;
199
200
  };
201
+ state?: BrandOrMenuState;
200
202
  [index: string]: any;
201
203
  }
202
204
 
@@ -448,6 +450,8 @@ export interface WaitTime {
448
450
  ready_time: number;
449
451
  }
450
452
 
453
+ export type BrandOrMenuState = string;
454
+
451
455
  // POST /location - Create a new location
452
456
 
453
457
  export type PostLocationBody = Location;