@bzbs/react-api-client 1.3.3 → 1.3.4
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 +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -605,7 +605,10 @@ interface LineAuthResponse {
|
|
|
605
605
|
interface Place {
|
|
606
606
|
name?: string;
|
|
607
607
|
id?: string;
|
|
608
|
-
location?:
|
|
608
|
+
location?: {
|
|
609
|
+
latitude: number;
|
|
610
|
+
longitude: number;
|
|
611
|
+
};
|
|
609
612
|
isBuzzeBeesPlace?: boolean;
|
|
610
613
|
rank?: number;
|
|
611
614
|
distance?: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -605,7 +605,10 @@ interface LineAuthResponse {
|
|
|
605
605
|
interface Place {
|
|
606
606
|
name?: string;
|
|
607
607
|
id?: string;
|
|
608
|
-
location?:
|
|
608
|
+
location?: {
|
|
609
|
+
latitude: number;
|
|
610
|
+
longitude: number;
|
|
611
|
+
};
|
|
609
612
|
isBuzzeBeesPlace?: boolean;
|
|
610
613
|
rank?: number;
|
|
611
614
|
distance?: number;
|