@bigcommerce/checkout-sdk 1.211.0 → 1.212.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.
@@ -3353,17 +3353,20 @@ declare interface Consignment {
3353
3353
  shippingCost: number;
3354
3354
  availableShippingOptions?: ShippingOption[];
3355
3355
  selectedShippingOption?: ShippingOption;
3356
+ selectedPickupOption?: PickupOption;
3356
3357
  lineItemIds: string[];
3357
3358
  }
3358
3359
 
3359
3360
  declare interface ConsignmentAssignmentRequestBody {
3360
3361
  shippingAddress: AddressRequestBody;
3361
3362
  lineItems: ConsignmentLineItem[];
3363
+ pickupOption?: PickupOption;
3362
3364
  }
3363
3365
 
3364
3366
  declare interface ConsignmentCreateRequestBody {
3365
3367
  shippingAddress: AddressRequestBody;
3366
3368
  lineItems: ConsignmentLineItem[];
3369
+ pickupOption?: PickupOption;
3367
3370
  }
3368
3371
 
3369
3372
  declare interface ConsignmentLineItem {
@@ -3375,6 +3378,7 @@ declare interface ConsignmentUpdateRequestBody {
3375
3378
  id: string;
3376
3379
  shippingAddress?: AddressRequestBody;
3377
3380
  lineItems?: ConsignmentLineItem[];
3381
+ pickupOption?: PickupOption;
3378
3382
  }
3379
3383
 
3380
3384
  declare type ConsignmentsRequestBody = ConsignmentCreateRequestBody[];
@@ -5648,6 +5652,10 @@ declare interface PhysicalItem extends LineItem {
5648
5652
  };
5649
5653
  }
5650
5654
 
5655
+ declare interface PickupOption {
5656
+ pickupMethodId: number;
5657
+ }
5658
+
5651
5659
  declare interface Promotion {
5652
5660
  banners: Banner[];
5653
5661
  }