react-native-steerpath-smart-map 1.16.0 → 1.16.1

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 CHANGED
@@ -15,6 +15,10 @@ This package is built on top of Steerpath's Smart SDK, and most of releases are
15
15
  - [iOS](https://s3-eu-west-1.amazonaws.com/steerpath/ios/releases/smart-sdk-changelog/index.html)
16
16
  - [Web](https://s3-eu-west-1.amazonaws.com/steerpath-web-sdk/documentation/smart/latest/index.html)
17
17
 
18
+ # [1.16.1] - 2022-06-08
19
+
20
+ - Fixed typoes in localized description properties in SmartMapObjectProperties interface. These props are optional.
21
+
18
22
  # [1.16.0] - 2022-06-01
19
23
 
20
24
  - Update build.gradle to make the library compatible with apps using gradle version 7+
@@ -132,10 +132,10 @@ export interface SmartMapObjectProperties {
132
132
  cateringEmail?: string;
133
133
  css_class: string;
134
134
  description?: string;
135
- 'description:fi?': string;
136
- 'description:nb?': string;
137
- 'description:sv?': string;
138
- 'description:en?': string;
135
+ 'description:fi'?: string;
136
+ 'description:nb'?: string;
137
+ 'description:sv'?: string;
138
+ 'description:en'?: string;
139
139
  images?: ImageProperty[];
140
140
  'images:fi'?: ImageProperty[];
141
141
  'images:sv'?: ImageProperty[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-native-steerpath-smart-map",
3
3
  "title": "React Native Steerpath Smart Map",
4
- "version": "1.16.0",
4
+ "version": "1.16.1",
5
5
  "description": "Steerpath SmartMapView for React Native",
6
6
  "main": "dist/index.js",
7
7
  "scripts": {
@@ -198,10 +198,10 @@ export interface SmartMapObjectProperties {
198
198
  cateringEmail?: string;
199
199
  css_class: string;
200
200
  description?: string;
201
- 'description:fi?': string;
202
- 'description:nb?': string;
203
- 'description:sv?': string;
204
- 'description:en?': string;
201
+ 'description:fi'?: string;
202
+ 'description:nb'?: string;
203
+ 'description:sv'?: string;
204
+ 'description:en'?: string;
205
205
  images?: ImageProperty[];
206
206
  'images:fi'?: ImageProperty[];
207
207
  'images:sv'?: ImageProperty[];