@xapp/ovai-lib 1.62.4 → 1.62.7
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.
|
@@ -3,13 +3,13 @@ export interface PlacesDescriptionAddressComponent {
|
|
|
3
3
|
/**
|
|
4
4
|
* The full text description or name of the address component as returned by the Google Places API Geocoder.
|
|
5
5
|
*/
|
|
6
|
-
|
|
6
|
+
longName: string;
|
|
7
7
|
/**
|
|
8
8
|
* An abbreviated textual name for the address component, if available.
|
|
9
9
|
* For example, an address component for the state of Alaska may have a long_name of "Alaska"
|
|
10
10
|
* and a short_name of "AK" using the 2-letter postal abbreviation.
|
|
11
11
|
*/
|
|
12
|
-
|
|
12
|
+
shortName: string;
|
|
13
13
|
/**
|
|
14
14
|
* An array indicating the type of the address component
|
|
15
15
|
*
|
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.7",
|
|
8
8
|
"description": "Shared library for OVAI",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"main": "lib/index",
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/chai": "4.3.16",
|
|
19
19
|
"chai": "4.4.1",
|
|
20
|
-
"stentor-guards": "1.59.
|
|
21
|
-
"stentor-media": "1.59.
|
|
22
|
-
"stentor-models": "1.59.
|
|
20
|
+
"stentor-guards": "1.59.91",
|
|
21
|
+
"stentor-media": "1.59.91",
|
|
22
|
+
"stentor-models": "1.59.91",
|
|
23
23
|
"ts-node": "10.9.2",
|
|
24
|
-
"typescript": "5.5.
|
|
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.7",
|
|
28
|
+
"@xapp/stentor-media-manager": "1.62.7"
|
|
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": "323856ca9efcf1f9d417ba6d2c1140331636e8fe"
|
|
41
41
|
}
|