react-native-steerpath-smart-map 1.20.0 → 1.21.0

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,11 @@ 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.21.0]
19
+
20
+ - Added externalFeedbackUrl to SmartMapObjectProperties
21
+ - Bump iOS Smart SDK version to 1.16.4
22
+
18
23
  ## [1.20.0] - 2023-03-02
19
24
 
20
25
  - Added missing configString prop to ConfigSDK interface
@@ -171,6 +171,7 @@ export interface SmartMapObjectProperties {
171
171
  'title:nb'?: string;
172
172
  'title:en'?: string;
173
173
  weekPlannerCapacity?: number;
174
+ externalFeedbackUrl?: string;
174
175
  [key: string]: any;
175
176
  }
176
177
  export interface SmartMapObject {
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.20.0",
4
+ "version": "1.21.0",
5
5
  "description": "Steerpath SmartMapView for React Native",
6
6
  "main": "dist/index.js",
7
7
  "scripts": {
@@ -20,7 +20,7 @@ Pod::Spec.new do |s|
20
20
  s.requires_arc = true
21
21
 
22
22
  s.dependency "React"
23
- s.dependency 'SteerpathSmartSDK', '~> 1.16.3'
23
+ s.dependency 'SteerpathSmartSDK', '~> 1.16.4'
24
24
  # s.dependency "..."
25
25
  end
26
26
 
@@ -235,6 +235,7 @@ export interface SmartMapObjectProperties {
235
235
  'title:nb'?: string;
236
236
  'title:en'?: string;
237
237
  weekPlannerCapacity?: number;
238
+ externalFeedbackUrl?: string;
238
239
  [key: string]: any; // Probably not the best practice, but this way we can get the access to properties that are not typed above.
239
240
  }
240
241