@compassdigital/sdk.typescript 3.55.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 {
@@ -136,6 +137,7 @@ export interface Brand {
136
137
  calories_edit_enabled?: boolean;
137
138
  // admin panel toggle
138
139
  special_instructions?: boolean;
140
+ dining_hall?: boolean;
139
141
  [index: string]: any;
140
142
  };
141
143
  // brand
@@ -196,6 +198,7 @@ export interface Brand {
196
198
  delivery?: WaitTime;
197
199
  pickup?: WaitTime;
198
200
  };
201
+ state?: BrandOrMenuState;
199
202
  [index: string]: any;
200
203
  }
201
204
 
@@ -447,6 +450,8 @@ export interface WaitTime {
447
450
  ready_time: number;
448
451
  }
449
452
 
453
+ export type BrandOrMenuState = string;
454
+
450
455
  // POST /location - Create a new location
451
456
 
452
457
  export type PostLocationBody = Location;