@bigcommerce/checkout-sdk 1.719.2 → 1.720.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.
@@ -3213,6 +3213,7 @@ declare interface CheckoutSettings {
3213
3213
  realtimeShippingProviders: string[];
3214
3214
  requiresMarketingConsent: boolean;
3215
3215
  remoteCheckoutProviders: any[];
3216
+ shouldRedirectToStorefrontForAuth: boolean;
3216
3217
  }
3217
3218
 
3218
3219
  /**
@@ -6209,6 +6210,13 @@ declare interface OrderShippingConsignment {
6209
6210
  name: string;
6210
6211
  value: string | null;
6211
6212
  }>;
6213
+ discounts: OrderShippingConsignmentDiscount[];
6214
+ }
6215
+
6216
+ declare interface OrderShippingConsignmentDiscount {
6217
+ id: number;
6218
+ amount: number;
6219
+ code: string | null;
6212
6220
  }
6213
6221
 
6214
6222
  declare interface PasswordRequirements {