@bigcommerce/checkout-sdk 1.223.0 → 1.225.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.
@@ -1924,7 +1924,7 @@ declare class CheckoutService {
1924
1924
  * search_area: {
1925
1925
  * radius: {
1926
1926
  * value: 1.4,
1927
- * unit: 0
1927
+ * unit: 'KM'
1928
1928
  * },
1929
1929
  * coordinates: {
1930
1930
  * latitude: 1.4,
@@ -5829,7 +5829,12 @@ declare interface Promotion {
5829
5829
 
5830
5830
  declare interface Radius {
5831
5831
  value: number;
5832
- unit: number;
5832
+ unit: RadiusUnit;
5833
+ }
5834
+
5835
+ declare enum RadiusUnit {
5836
+ KM = "KM",
5837
+ MI = "MI"
5833
5838
  }
5834
5839
 
5835
5840
  declare interface Region {