@bigcommerce/checkout-sdk 1.215.0 → 1.215.1

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.
@@ -4949,6 +4949,7 @@ declare interface Order {
4949
4949
  billingAddress: BillingAddress;
4950
4950
  cartId: string;
4951
4951
  coupons: Coupon[];
4952
+ consignments: OrderConsignment[];
4952
4953
  currency: Currency;
4953
4954
  customerCanBeCreated: boolean;
4954
4955
  customerId: number;
@@ -4973,6 +4974,10 @@ declare interface Order {
4973
4974
  mandateUrl?: string;
4974
4975
  }
4975
4976
 
4977
+ declare interface OrderConsignment {
4978
+ shipping: OrderShippingConsignment[];
4979
+ }
4980
+
4976
4981
  declare interface OrderPayment {
4977
4982
  providerId: string;
4978
4983
  gatewayId?: string;
@@ -5022,6 +5027,44 @@ declare interface OrderRequestBody {
5022
5027
  useStoreCredit?: boolean;
5023
5028
  }
5024
5029
 
5030
+ declare interface OrderShippingConsignment {
5031
+ lineItems: Array<{
5032
+ id: number;
5033
+ }>;
5034
+ shippingAddressId: number;
5035
+ firstName: string;
5036
+ lastName: string;
5037
+ company: string;
5038
+ address1: string;
5039
+ address2: string;
5040
+ city: string;
5041
+ stateOrProvince: string;
5042
+ postalCode: string;
5043
+ country: string;
5044
+ countryCode: string;
5045
+ email: string;
5046
+ phone: string;
5047
+ itemsTotal: number;
5048
+ itemsShipped: number;
5049
+ shippingMethod: string;
5050
+ baseCost: number;
5051
+ costExTax: number;
5052
+ costIncTax: number;
5053
+ costTax: number;
5054
+ costTaxClassId: number;
5055
+ baseHandlingCost: number;
5056
+ handlingCostExTax: number;
5057
+ handlingCostIncTax: number;
5058
+ handlingCostTax: number;
5059
+ handlingCostTaxClassId: number;
5060
+ shippingZoneId: number;
5061
+ shippingZoneName: string;
5062
+ customFields: Array<{
5063
+ name: string;
5064
+ value: string | null;
5065
+ }>;
5066
+ }
5067
+
5025
5068
  declare interface PasswordRequirements {
5026
5069
  alpha: string;
5027
5070
  numeric: string;