@putiikkipalvelu/storefront-sdk 0.4.1 → 0.4.3
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 +8 -0
- package/dist/index.d.ts +8 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -376,6 +376,10 @@ interface Category {
|
|
|
376
376
|
name: string;
|
|
377
377
|
/** URL-friendly slug */
|
|
378
378
|
slug: string;
|
|
379
|
+
/** SEO meta title for search engines (max 60 chars) */
|
|
380
|
+
metaTitle: string | null;
|
|
381
|
+
/** SEO meta description for search engines (max 160 chars) */
|
|
382
|
+
metaDescription: string | null;
|
|
379
383
|
/** Store ID this category belongs to */
|
|
380
384
|
storeId: string;
|
|
381
385
|
/** Parent category ID (null if root category) */
|
|
@@ -628,6 +632,10 @@ interface ShipmentMethodsResponse {
|
|
|
628
632
|
homeDelivery: HomeDeliveryOption[];
|
|
629
633
|
/** Pickup point options (sorted by distance) */
|
|
630
634
|
pickupPoints: PickupPointOption[];
|
|
635
|
+
/** Lowest free shipping threshold across ALL applicable methods.
|
|
636
|
+
* Use this for "Add €X for free shipping" messages to show the easiest path to free shipping.
|
|
637
|
+
* null if no methods have free shipping thresholds configured. */
|
|
638
|
+
lowestFreeShippingThreshold: number | null;
|
|
631
639
|
}
|
|
632
640
|
|
|
633
641
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -376,6 +376,10 @@ interface Category {
|
|
|
376
376
|
name: string;
|
|
377
377
|
/** URL-friendly slug */
|
|
378
378
|
slug: string;
|
|
379
|
+
/** SEO meta title for search engines (max 60 chars) */
|
|
380
|
+
metaTitle: string | null;
|
|
381
|
+
/** SEO meta description for search engines (max 160 chars) */
|
|
382
|
+
metaDescription: string | null;
|
|
379
383
|
/** Store ID this category belongs to */
|
|
380
384
|
storeId: string;
|
|
381
385
|
/** Parent category ID (null if root category) */
|
|
@@ -628,6 +632,10 @@ interface ShipmentMethodsResponse {
|
|
|
628
632
|
homeDelivery: HomeDeliveryOption[];
|
|
629
633
|
/** Pickup point options (sorted by distance) */
|
|
630
634
|
pickupPoints: PickupPointOption[];
|
|
635
|
+
/** Lowest free shipping threshold across ALL applicable methods.
|
|
636
|
+
* Use this for "Add €X for free shipping" messages to show the easiest path to free shipping.
|
|
637
|
+
* null if no methods have free shipping thresholds configured. */
|
|
638
|
+
lowestFreeShippingThreshold: number | null;
|
|
631
639
|
}
|
|
632
640
|
|
|
633
641
|
/**
|