@putiikkipalvelu/storefront-sdk 0.4.1 → 0.4.2
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.
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -628,6 +628,10 @@ interface ShipmentMethodsResponse {
|
|
|
628
628
|
homeDelivery: HomeDeliveryOption[];
|
|
629
629
|
/** Pickup point options (sorted by distance) */
|
|
630
630
|
pickupPoints: PickupPointOption[];
|
|
631
|
+
/** Lowest free shipping threshold across ALL applicable methods.
|
|
632
|
+
* Use this for "Add €X for free shipping" messages to show the easiest path to free shipping.
|
|
633
|
+
* null if no methods have free shipping thresholds configured. */
|
|
634
|
+
lowestFreeShippingThreshold: number | null;
|
|
631
635
|
}
|
|
632
636
|
|
|
633
637
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -628,6 +628,10 @@ interface ShipmentMethodsResponse {
|
|
|
628
628
|
homeDelivery: HomeDeliveryOption[];
|
|
629
629
|
/** Pickup point options (sorted by distance) */
|
|
630
630
|
pickupPoints: PickupPointOption[];
|
|
631
|
+
/** Lowest free shipping threshold across ALL applicable methods.
|
|
632
|
+
* Use this for "Add €X for free shipping" messages to show the easiest path to free shipping.
|
|
633
|
+
* null if no methods have free shipping thresholds configured. */
|
|
634
|
+
lowestFreeShippingThreshold: number | null;
|
|
631
635
|
}
|
|
632
636
|
|
|
633
637
|
/**
|