@compassdigital/sdk.typescript 3.59.0 → 3.61.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.
@@ -198,7 +198,10 @@ export interface Brand {
198
198
  delivery?: WaitTime;
199
199
  pickup?: WaitTime;
200
200
  };
201
- state?: BrandOrMenuState;
201
+ state?: {
202
+ pickup?: BrandOrMenuState;
203
+ delivery?: BrandOrMenuState;
204
+ };
202
205
  [index: string]: any;
203
206
  }
204
207