Change triggered by the following update actions:

- [Add Parcel](ctp:api:type:OrderAddParcelToDeliveryAction) on Orders.
- [Add Parcel](ctp:api:type:StagedOrderAddParcelToDeliveryAction) on Staged Orders.
interface AddParcelToDeliveryChange {
    change: string;
    deliveryId: string;
    nextValue: Parcel;
    type: "AddParcelToDeliveryChange";
}

Properties

change: string
deliveryId: string

id of the Delivery to which the Parcel was added.

nextValue: Parcel

Value after the change.

type: "AddParcelToDeliveryChange"