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