@bigcommerce/checkout-sdk 1.223.1 → 1.224.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.
- package/CHANGELOG.md +7 -0
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-sdk.d.ts +7 -2
- package/dist/checkout-sdk.js +1 -1
- package/dist/checkout-sdk.js.map +1 -1
- package/dist/checkout-sdk.umd.js +2 -2
- package/dist/checkout-sdk.umd.js.map +1 -1
- package/docs/README.md +1 -0
- package/docs/classes/checkoutservice.md +1 -1
- package/docs/enums/radiusunit.md +22 -0
- package/docs/interfaces/radius.md +1 -1
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -1924,7 +1924,7 @@ declare class CheckoutService {
|
|
|
1924
1924
|
* search_area: {
|
|
1925
1925
|
* radius: {
|
|
1926
1926
|
* value: 1.4,
|
|
1927
|
-
* unit:
|
|
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:
|
|
5832
|
+
unit: RadiusUnit;
|
|
5833
|
+
}
|
|
5834
|
+
|
|
5835
|
+
declare enum RadiusUnit {
|
|
5836
|
+
KM = "KM",
|
|
5837
|
+
MI = "MI"
|
|
5833
5838
|
}
|
|
5834
5839
|
|
|
5835
5840
|
declare interface Region {
|