@compassdigital/sdk.typescript 4.324.0 → 4.326.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compassdigital/sdk.typescript",
3
- "version": "4.324.0",
3
+ "version": "4.326.0",
4
4
  "description": "Compass Digital Labs TypeScript SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./lib/index.js",
@@ -246,15 +246,15 @@ export interface PutDiscountPublishResponseDTO {
246
246
  // user id of most recent update
247
247
  updatedBy: string;
248
248
  // What the discount applies to
249
- appliesTo?: 'order' | 'items';
249
+ appliesTo: 'order' | 'items';
250
+ is: DiscountIs;
251
+ meta: DiscountMeta;
252
+ schedule: DiscountSchedule;
253
+ channelConfig: DiscountChannelConfig;
250
254
  createdAt: string;
251
255
  updatedAt: string;
252
256
  name: string;
253
257
  status: DiscountStatus;
254
- is?: DiscountIs;
255
- meta?: DiscountMeta;
256
- schedule?: DiscountSchedule;
257
- channelConfig?: DiscountChannelConfig;
258
258
  }
259
259
 
260
260
  export interface DeleteDiscountResponseDTO {
@@ -7914,6 +7914,7 @@ export interface GetMenuV4BrandQuery {
7914
7914
 
7915
7915
  export interface GetMenuV4BrandResponse {
7916
7916
  price_levels?: Record<string, any>;
7917
+ menu_labels?: Record<string, any>;
7917
7918
  parent?: DraftBrandDTO;
7918
7919
  children?: DraftBrandDTO[];
7919
7920
  menus?: DraftMenuDTO[];