@compassdigital/sdk.typescript 4.104.0 → 4.106.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.
@@ -28,9 +28,9 @@ export interface CreateOrder {
28
28
  active_override?: boolean;
29
29
  [index: string]: any;
30
30
  };
31
- //@deprecated
31
+ // @deprecated
32
32
  pickup?: string;
33
- //@deprecated
33
+ // @deprecated
34
34
  pickup_name?: string;
35
35
  requested_date?: string;
36
36
  details?: {
@@ -54,7 +54,7 @@ export interface Error {
54
54
  export interface Issue {
55
55
  id?: string;
56
56
  type?: string;
57
- //@deprecated
57
+ // @deprecated
58
58
  item?: Record<string, any>;
59
59
  // Array of Items with issues
60
60
  items?: ItemsWithIssue[];
@@ -134,11 +134,11 @@ export interface Order {
134
134
  // Date order was polled for kds
135
135
  polled?: string;
136
136
  };
137
- //@deprecated
137
+ // @deprecated
138
138
  pickup?: string;
139
- //@deprecated
139
+ // @deprecated
140
140
  pickup_name?: string;
141
- //@deprecated
141
+ // @deprecated
142
142
  pickup_id?: string;
143
143
  requested_date?: string;
144
144
  details?: {
@@ -298,7 +298,7 @@ export interface MealPlan {
298
298
  export interface OrderIssue {
299
299
  // Type of issue
300
300
  type?: string;
301
- //@deprecated
301
+ // @deprecated
302
302
  item?: Record<string, any>;
303
303
  // Array of Items with issues
304
304
  items?: ItemsWithIssue[];
@@ -502,9 +502,9 @@ export interface GetOrderCustomerOrdersPath {
502
502
  export interface GetOrderCustomerOrdersQuery {
503
503
  // Sort the customers order by order created date, pickup date or requested date. Possible values: created, pickup. Default is created.
504
504
  sort?: string;
505
- //@deprecated
505
+ // @deprecated
506
506
  pickup_start?: number;
507
- //@deprecated
507
+ // @deprecated
508
508
  pickup_end?: number;
509
509
  // Filter orders by their requested date. Only return orders that have a date less than or equal to the date. Default is 24 hours from the current time in milliseconds.
510
510
  end?: number;
@@ -558,9 +558,9 @@ export interface GetOrderLocationBrandPath {
558
558
  }
559
559
 
560
560
  export interface GetOrderLocationBrandQuery {
561
- //@deprecated
561
+ // @deprecated
562
562
  pickup_start?: number;
563
- //@deprecated
563
+ // @deprecated
564
564
  pickup_end?: number;
565
565
  // Filter orders to just those with this ready state
566
566
  ready?: boolean;
@@ -595,9 +595,9 @@ export interface GetOrderLocationOrdersPath {
595
595
  }
596
596
 
597
597
  export interface GetOrderLocationOrdersQuery {
598
- //@deprecated
598
+ // @deprecated
599
599
  pickup_start?: number;
600
- //@deprecated
600
+ // @deprecated
601
601
  pickup_end?: number;
602
602
  // Filter orders to just those with this ready state
603
603
  ready?: boolean;
@@ -50,7 +50,7 @@ export interface ShoppingCartResponse {
50
50
  }[];
51
51
  };
52
52
  };
53
- //@deprecated
53
+ // @deprecated
54
54
  loyalty?: {
55
55
  coupon?: {
56
56
  code?: string;
@@ -451,9 +451,9 @@ export interface Brand {
451
451
  };
452
452
  timezone?: string;
453
453
  description?: string;
454
- //@deprecated
454
+ // @deprecated
455
455
  latitude?: number;
456
- //@deprecated
456
+ // @deprecated
457
457
  longitude?: number;
458
458
  address?: Address;
459
459
  menus?: MenuHours[];
@@ -522,7 +522,7 @@ export interface Brand {
522
522
  group?: string;
523
523
  // The CDL id representing the payment provider of this brand
524
524
  payment_provider?: string;
525
- //@deprecated
525
+ // @deprecated
526
526
  location_description?: string;
527
527
  // The CDL id representing the company of this brand
528
528
  company?: string;
@@ -747,7 +747,7 @@ export interface Group {
747
747
  ingredients?: Record<string, any>[];
748
748
  amount_off_exclusions?: AmountOffExclusionTypes[];
749
749
  nutrition?: {
750
- //@deprecated
750
+ // @deprecated
751
751
  kcal?: number;
752
752
  calories?: Nutrition;
753
753
  serving_size?: Nutrition;
@@ -831,7 +831,7 @@ export interface Group {
831
831
  };
832
832
  sku?: number;
833
833
  nutrition?: {
834
- //@deprecated
834
+ // @deprecated
835
835
  kcal?: number;
836
836
  calories?: Nutrition;
837
837
  };
@@ -976,7 +976,7 @@ export interface Group {
976
976
  secondary?: string;
977
977
  };
978
978
  };
979
- //@deprecated
979
+ // @deprecated
980
980
  is_deleted?: boolean;
981
981
  is?: {
982
982
  disabled?: boolean;
@@ -987,7 +987,7 @@ export interface Group {
987
987
  featured?: boolean;
988
988
  };
989
989
  }[];
990
- //@deprecated
990
+ // @deprecated
991
991
  is_disabled?: boolean;
992
992
  is?: {
993
993
  disabled?: boolean;
@@ -314,7 +314,7 @@ export interface ShoppingCartResponse {
314
314
  amount?: MonetaryValue;
315
315
  };
316
316
  promo?: PromoDetails;
317
- //@deprecated
317
+ // @deprecated
318
318
  loyalty?: {
319
319
  coupon?: {
320
320
  code?: string;
@@ -130,7 +130,7 @@ export interface OrderIssue {
130
130
  // issue
131
131
  id?: string;
132
132
  type?: string;
133
- //@deprecated
133
+ // @deprecated
134
134
  item?: Record<string, any>;
135
135
  // Array of Items with issues
136
136
  items?: Record<string, any>[];
@@ -36,7 +36,7 @@ export interface User {
36
36
  locked_out?: boolean;
37
37
  // If the users email is verified
38
38
  verified?: boolean;
39
- //@deprecated
39
+ // @deprecated
40
40
  phone_verified?: boolean;
41
41
  // User deleted status
42
42
  deleted?: boolean;
@@ -98,7 +98,7 @@ export interface success {
98
98
  }
99
99
 
100
100
  export interface auth {
101
- //@deprecated
101
+ // @deprecated
102
102
  token?: string;
103
103
  access?: {
104
104
  token?: string;
@@ -113,7 +113,7 @@ export interface auth {
113
113
  }
114
114
 
115
115
  export interface guestAuth {
116
- //@deprecated
116
+ // @deprecated
117
117
  token?: string;
118
118
  access?: {
119
119
  token?: string;
@@ -141,7 +141,7 @@ export interface omsauth {
141
141
  }
142
142
 
143
143
  export interface guestAuthToken {
144
- //@deprecated
144
+ // @deprecated
145
145
  token?: string;
146
146
  access?: {
147
147
  token?: string;
@@ -304,7 +304,7 @@ export interface UserMeta {
304
304
  attempts?: number;
305
305
  first_attempted?: string;
306
306
  };
307
- //@deprecated
307
+ // @deprecated
308
308
  phone_verification?: {
309
309
  verification_code?: string;
310
310
  date_generated?: number;