@compassdigital/sdk.typescript 4.138.0 → 4.139.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.
@@ -269,6 +269,11 @@ export interface ShoppingCartRequest {
269
269
  brand?: string;
270
270
  promo?: PromoDetails;
271
271
  discount?: PromoDetails;
272
+ discounts?: {
273
+ stacked_total?: MonetaryValue;
274
+ stacked_discounts?: Discount[];
275
+ app?: string;
276
+ };
272
277
  payment_method?: PaymentMethod;
273
278
  taxes?: Taxes;
274
279
  exemptions?: {
@@ -4,7 +4,7 @@ export interface SendPushNotificationCommand {
4
4
  id: string;
5
5
  type: 'SendPushNotificationCommand';
6
6
  version: '0.0.1';
7
- emittedAt: string;
7
+ timestamp: string;
8
8
  traceContext: {
9
9
  traceId?: string;
10
10
  };
@@ -18,4 +18,5 @@ export interface SendPushNotificationCommand {
18
18
  data?: Record<string, any>;
19
19
  };
20
20
  };
21
+ source: string;
21
22
  }