@xapp/ovai-lib 1.62.22 → 1.62.28
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.
|
@@ -34,6 +34,14 @@ export interface PlaceDescription {
|
|
|
34
34
|
* The formatted address, as returned by the Google Places API.
|
|
35
35
|
*/
|
|
36
36
|
formattedAddress?: string;
|
|
37
|
+
/**
|
|
38
|
+
* The location's latitude.
|
|
39
|
+
*/
|
|
40
|
+
latitude?: number;
|
|
41
|
+
/**
|
|
42
|
+
* The location's longitude.
|
|
43
|
+
*/
|
|
44
|
+
longitude?: number;
|
|
37
45
|
/**
|
|
38
46
|
* If the location is the default.
|
|
39
47
|
*/
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.62.
|
|
7
|
+
"version": "1.62.28",
|
|
8
8
|
"description": "Shared library for OVAI",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"main": "lib/index",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"typescript": "5.5.4"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@xapp/stentor-handler-media": "1.62.
|
|
28
|
-
"@xapp/stentor-media-manager": "1.62.
|
|
27
|
+
"@xapp/stentor-handler-media": "1.62.26",
|
|
28
|
+
"@xapp/stentor-media-manager": "1.62.26"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"stentor-guards": "1.x",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"clean": "rm -rf ./lib/*",
|
|
38
38
|
"test": "mocha --recursive -r ts-node/register \"./src/**/*.test.ts\""
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "c20c4e40b521aca22b589ab40d166da3f24c5852"
|
|
41
41
|
}
|