@betterstore/sdk 0.5.13 → 0.5.14
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.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -93,6 +93,7 @@ interface CheckoutSession {
|
|
|
93
93
|
type AutosuggestAddressResult = {
|
|
94
94
|
id: string;
|
|
95
95
|
title: string;
|
|
96
|
+
countryCode: string;
|
|
96
97
|
position: {
|
|
97
98
|
lat: number;
|
|
98
99
|
lng: number;
|
|
@@ -524,6 +525,8 @@ declare class Client {
|
|
|
524
525
|
id: string;
|
|
525
526
|
title: string;
|
|
526
527
|
position: AutosuggestAddressResult["position"];
|
|
528
|
+
countryCode: string;
|
|
529
|
+
locale?: string;
|
|
527
530
|
}): Promise<GeocodeAddressResult[]>;
|
|
528
531
|
}
|
|
529
532
|
|
package/dist/index.d.ts
CHANGED
|
@@ -93,6 +93,7 @@ interface CheckoutSession {
|
|
|
93
93
|
type AutosuggestAddressResult = {
|
|
94
94
|
id: string;
|
|
95
95
|
title: string;
|
|
96
|
+
countryCode: string;
|
|
96
97
|
position: {
|
|
97
98
|
lat: number;
|
|
98
99
|
lng: number;
|
|
@@ -524,6 +525,8 @@ declare class Client {
|
|
|
524
525
|
id: string;
|
|
525
526
|
title: string;
|
|
526
527
|
position: AutosuggestAddressResult["position"];
|
|
528
|
+
countryCode: string;
|
|
529
|
+
locale?: string;
|
|
527
530
|
}): Promise<GeocodeAddressResult[]>;
|
|
528
531
|
}
|
|
529
532
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@betterstore/sdk",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.14",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"tsup": "^8.4.0",
|
|
15
15
|
"eslint": "^9.29.0",
|
|
16
16
|
"typescript": "5.8.2",
|
|
17
|
-
"@betterstore/
|
|
18
|
-
"@betterstore/
|
|
17
|
+
"@betterstore/typescript-config": "0.0.0",
|
|
18
|
+
"@betterstore/eslint-config": "0.0.0"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"axios": "^1.8.2",
|