@situm/react-native 3.15.0-beta.5 → 3.15.1-beta.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/README.md +187 -0
- package/lib/commonjs/index.js +1 -2
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/sdk/index.js +22 -12
- package/lib/commonjs/sdk/index.js.map +1 -1
- package/lib/commonjs/sdk/types/index.js +99 -342
- package/lib/commonjs/sdk/types/index.js.map +1 -1
- package/lib/commonjs/wayfinding/components/MapView.js +1 -2
- package/lib/commonjs/wayfinding/components/MapView.js.map +1 -1
- package/lib/commonjs/wayfinding/store/index.js +1 -2
- package/lib/commonjs/wayfinding/store/index.js.map +1 -1
- package/lib/module/sdk/index.js +22 -12
- package/lib/module/sdk/index.js.map +1 -1
- package/lib/module/sdk/types/index.js +90 -333
- package/lib/module/sdk/types/index.js.map +1 -1
- package/lib/typescript/sdk/index.d.ts +11 -11
- package/lib/typescript/sdk/index.d.ts.map +1 -1
- package/lib/typescript/sdk/types/index.d.ts +224 -289
- package/lib/typescript/sdk/types/index.d.ts.map +1 -1
- package/lib/typescript/wayfinding/components/MapView.d.ts +2 -2
- package/package.json +5 -5
- package/src/sdk/index.ts +21 -12
- package/src/sdk/types/index.ts +224 -295
- package/src/wayfinding/components/MapView.tsx +2 -2
|
@@ -6,213 +6,58 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.InternalCall = exports.ForegroundServiceNotificationsTapAction = exports.ErrorType = exports.ErrorCode = void 0;
|
|
7
7
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
*
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
*
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
*
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
*
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
*
|
|
25
|
-
*/
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
*
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
*
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
*
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
*
|
|
43
|
-
*/
|
|
44
|
-
/**
|
|
45
|
-
*
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
*
|
|
49
|
-
*/
|
|
50
|
-
/**
|
|
51
|
-
*
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
*
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
*
|
|
61
|
-
* @property {number} x - Value of coordinate at x-axis
|
|
62
|
-
* @property {number} y - Value of coordinate at y-axis
|
|
63
|
-
*/
|
|
64
|
-
/**
|
|
65
|
-
* @name Floor
|
|
66
|
-
* @description Floor of a building.
|
|
67
|
-
*
|
|
68
|
-
* @property {number} altitude - Altitude of the floor above ground level, in meters.
|
|
69
|
-
* @property {string} buildingIdentifier - The identifier of building which this floor belongs.
|
|
70
|
-
* @property {number} level - The number of the floor.
|
|
71
|
-
* @property {string} name - The name of the floor
|
|
72
|
-
* @property {string} mapUrl - The floor map image url
|
|
73
|
-
* @property {number} scale - The scale of the floor image, in px/meters
|
|
74
|
-
* @property {string} floorIdentifier - The unique identifier of the resource
|
|
75
|
-
*/
|
|
76
|
-
/**
|
|
77
|
-
* @name POI
|
|
78
|
-
* @description Point of Interest, associated to a building, regardless of whether it's place inside or outside the building.
|
|
79
|
-
*
|
|
80
|
-
* @property {string} identifier - The unique identifier of the resource
|
|
81
|
-
* @property {string} buildingIdentifier - Identifier of building to which the POI belongs.
|
|
82
|
-
* @property {CartesianCoordinate} cartesianCoordinate - Cartesian coordinate of this position, relative to building {@link Bounds}.
|
|
83
|
-
* @property {Coordinate} coordinate - Geographical coordinate of this position
|
|
84
|
-
* @property {string} floorIdentifier - If this POI is outside the building (isOutdoor == true), this field has no meaning.
|
|
85
|
-
* @property {string} poiName - A name for the POI, appropriate for display to the user.
|
|
86
|
-
* @property {Point} position - {@link Point} where the point is located.
|
|
87
|
-
* @property {boolean} isIndoor - Whether the POI is placed outside the building or not.
|
|
88
|
-
* @property {boolean} isOutdoor - Whether the POI is placed outside the building or not.
|
|
89
|
-
* @property {PoiCategory} category - Category of the POI
|
|
90
|
-
* @property {string} infoHtml - Additional information about POI, in HTML
|
|
91
|
-
* @property {object} customFields - Map of custom fields, indexed by their name.
|
|
92
|
-
*/
|
|
93
|
-
/**
|
|
94
|
-
* @name Geofence
|
|
95
|
-
* @description Point of Interest, associated to a building, regardless of whether it's place inside or outside the building.
|
|
96
|
-
*
|
|
97
|
-
* @property {string} identifier - The unique identifier of the resource
|
|
98
|
-
* @property {string} buildingIdentifier - Identifier of building to which the POI belongs.
|
|
99
|
-
* @property {string} floorIdentifier - If this POI is outside the building (isOutdoor == true), this field has no meaning.
|
|
100
|
-
* @property {string} name - A name for the geofence, appropriate for display to the user.
|
|
101
|
-
* @property {string} infoHtml - Additional information about POI, in HTML
|
|
102
|
-
* @property {Point[]} polygonPoints - List of points of that define the area of the geofence
|
|
103
|
-
* @property {object} customFields - Map of custom fields, indexed by their name.
|
|
104
|
-
*/
|
|
105
|
-
/**
|
|
106
|
-
* @name PoiCategory
|
|
107
|
-
* @description Category of Point of Interest.
|
|
108
|
-
*
|
|
109
|
-
* @property {string} poiCategoryCode - Unique code of the category
|
|
110
|
-
* @property {string} poiCategoryName - The category name appropriate for display to the user
|
|
111
|
-
* @property {string} icon_selected - The selected icon url
|
|
112
|
-
* @property {string} icon_unselected - The unselected icon url
|
|
113
|
-
* @property {boolean} public - Whether the category is public or not
|
|
114
|
-
*/
|
|
115
|
-
/**
|
|
116
|
-
* @name PoiIcon
|
|
117
|
-
* @description Category of Point of Interest.
|
|
118
|
-
*
|
|
119
|
-
* @property {string} data - Base64 POI icon image
|
|
120
|
-
*/
|
|
121
|
-
/**
|
|
122
|
-
* @name Point
|
|
123
|
-
* @description Associate geographical coordinate (Location) with Building and Floor (Cartography) and cartesian coordinate relative to that building.
|
|
124
|
-
*
|
|
125
|
-
* @property {string} buildingIdentifier - Unique identifier for the building to which this point belongs
|
|
126
|
-
* @property {CartesianCoordinate} cartesianCoordinate - Cartesian coordinate (in meters) relative to the Bounds of building's base.
|
|
127
|
-
* @property {Coordinate} coordinate - Geographic coordinate (latitude, longitude) of the point, regardless of whether it's placed inside or outside the building.
|
|
128
|
-
* @property {string} floorIdentifier - Floor identifier (inside the building) where this point is placed.
|
|
129
|
-
* @property {boolean} isIndoor - If the POI is inside the building.
|
|
130
|
-
* @property {boolean} idOutdoor - If the POI is outside the building.
|
|
131
|
-
*/
|
|
132
|
-
/**
|
|
133
|
-
* @name Route
|
|
134
|
-
* @description Route between two points.
|
|
135
|
-
*
|
|
136
|
-
* @property {Poi} poiTo - The destination Poi the user is currently navigating to.
|
|
137
|
-
* @property {RouteStep[]} edges - Ordered list of steps to go to the goal point
|
|
138
|
-
* @property {RouteStep} firstStep - First step
|
|
139
|
-
* @property {Point} from - Point where the route starts.
|
|
140
|
-
* @property {Indication} indications - Ordered list of instructions to go to the destination
|
|
141
|
-
* @property {RouteStep} lastStep - Last step
|
|
142
|
-
* @property {Point[]} nodes - A collection of points of the route (not ordered)
|
|
143
|
-
* @property {Point[]} points - List of ordered points of the route
|
|
144
|
-
* @property {Point} to - Last point and goal of the route.
|
|
145
|
-
* @property {RouteStep[]} steps - Ordered list of steps to go to the goal point
|
|
146
|
-
* @property {RouteSegment[]} segments - List of segments formed by consecutive points and a floor identifier
|
|
147
|
-
*/
|
|
148
|
-
/**
|
|
149
|
-
* @name RouteStep
|
|
150
|
-
* @description A fragment of a route, described by the initial point from and the last point to of the fragment, and some information about the step within the route.
|
|
151
|
-
*
|
|
152
|
-
* @property {number} distance - Distance between from and to in meters.
|
|
153
|
-
* @property {number} distanceToGoal - Distance in meters between the start point of this step (from) and the last point in the route ('to' of the last step).
|
|
154
|
-
* @property {Point} from - Start point of this step.
|
|
155
|
-
* @property {number} id - Position of this RouteStep in the list of steps (Route.steps) of the route to which it belongs.
|
|
156
|
-
* @property {Point} to - End point of this step.
|
|
157
|
-
* @property {boolean} isFirst - Returns true if this is the first step in the route.
|
|
158
|
-
* @property {boolean} isLast - Returns true if this is the last step in the route.
|
|
159
|
-
*/
|
|
160
|
-
/**
|
|
161
|
-
* @name RouteSegment
|
|
162
|
-
* @description A fragment of a route, described by a floor identifier and a list of consecutive points from the same floor
|
|
163
|
-
*
|
|
164
|
-
* @property {string} floorIdentifier - Identifier of the floor containing the points in this segment
|
|
165
|
-
* @property {Point[]} points - Consecutive points in the same floor forming a path
|
|
166
|
-
*/
|
|
167
|
-
/**
|
|
168
|
-
* @name Indication
|
|
169
|
-
* @description Represents the instruction that a user should follow when on a RouteStep to continue the route.
|
|
170
|
-
*
|
|
171
|
-
* @property {number} distance - The distance between the origin and destination
|
|
172
|
-
* @property {number} distanceToNextLevel - The number of levels between the origin and destination
|
|
173
|
-
* @property {string} indicationType - The Indication.Action of the instruction as String
|
|
174
|
-
* @property {number} orientation - The angle a user should change his direction in order to go from the origin to the destination.
|
|
175
|
-
* @property {string} orientationType - The Indication.Orientation of the instruction as String
|
|
176
|
-
* @property {number} stepIdxDestination - The index of the indication's step of destination.
|
|
177
|
-
* @property {number} stepIdxOrigin - The index of the indication's step of origin
|
|
178
|
-
* @property {boolean} neededLevelChange - If the user should change the level in order to arrive at the destination.
|
|
179
|
-
*/
|
|
180
|
-
/**
|
|
181
|
-
* @name NavigationProgress
|
|
182
|
-
* @description Provides information of the progress of a user while following a route.
|
|
183
|
-
*
|
|
184
|
-
* @property {Location} closestLocationInRoute - Closest location in the route from the user location provided .
|
|
185
|
-
* @property {number} distanceToClosestPointInRoute - Distance between the real user location (provided to updateWithLocation(Location)) and the closest route location.
|
|
186
|
-
* @property {Indication} currentIndication - The current indication.
|
|
187
|
-
* @property {Indication} nextIndication - The next indication.
|
|
188
|
-
* @property {number} currentStepIndex - The index of the closest route step to the user, where closestLocationInRoute is.
|
|
189
|
-
* @property {number} distanceToGoal - The distance in meters from closestLocationInRoute to route's goal point.
|
|
190
|
-
* @property {number} distanceToEndStep - The distance in meters to go from closestLocationInRoute to the end of the current step.
|
|
191
|
-
* @property {number} timeToEndStep - The estimated time to go from closestLocationInRoute to the end of the current route step, considering a speed of 1 meter/second.
|
|
192
|
-
* @property {number} timeToGoal - The estimated time to go from closestLocationInRoute to the goal/end of route, considering a speed of 1 meter/second.
|
|
193
|
-
* @property {RouteStep} routeStep - The closest route step to the user, where closestLocationInRoute is.
|
|
194
|
-
* @property {Point[]} points - List of ordered points of the remaining route
|
|
195
|
-
* @property {RouteSegment[]} segments - List of segments formed by consecutive points and a floor identifier
|
|
196
|
-
*/
|
|
197
|
-
/**
|
|
198
|
-
* @name LocationRequest
|
|
199
|
-
* @description A data object that contains parameters for the location service, LocationManager.
|
|
200
|
-
*
|
|
201
|
-
* @property {number} buildingIdentifier - Identifier of the building on which the positioning will be started
|
|
202
|
-
* @property {number} interval - Default interval (in milliseconds) to notify location updates
|
|
203
|
-
* @property {string} indoorProvider - Default indoor provider. Possible values are INPHONE and SUPPORT
|
|
204
|
-
* @property {boolean} useBle - Defines whether or not to use BLE for positioning
|
|
205
|
-
* @property {boolean} useWifi - Defines whether or not to use Wi-Fi for positioning
|
|
206
|
-
* @property {boolean} useGps - Defines whether or not to use GPS for indoor positioning
|
|
207
|
-
* @property {boolean} useBarometer - Defines whether or not to use the barometer for indoor positioning
|
|
208
|
-
* @property {string} motionMode - Default motion mode. Possible values are BY_CAR, BY_FOOT, and RADIOMAX
|
|
209
|
-
* @property {boolean} useForegroundService - Defines whether or not to activate the {@link http://developers.situm.es/pages/android/using_situm_sdk_background.html foreground service}
|
|
210
|
-
* @property {boolean} useDeadReckoning - Defines whether or not to use dead reckoning to get fast position updates using only the inertial sensors, between the server position updates.
|
|
211
|
-
* @property {OutdoorLocationOptions} outdoorLocationOptions - Outdoor location options. Only used in an indoor/outdoor request
|
|
212
|
-
* @property {BeaconFilter[]} beaconFilters - Deprecated - Beacon filters to be handled during scan time, otherwise only Situm beacons will be scanned. Can be invoked multiple times to add as much beacon filters as you want. The SitumSDK now does it automatically
|
|
213
|
-
* @property {number} smallestDisplacement - Default smallest displacement to notify location updates
|
|
214
|
-
* @property {string} realtimeUpdateInterval - Default interval to send locations to the Realtime. Possible values are REALTIME, FAST, NORMAL, SLOW, and BATTERY_SAVER
|
|
215
|
-
* @property {ForegroundServiceNotificationOptions} foregroundServiceNotificationOptions - Used to configure the notification options for a foreground service, allowing the definition of the title, message, stop button, button text, and the {@link ForegroundServiceNotificationsTapAction}.
|
|
9
|
+
* A Building object definition.
|
|
10
|
+
*/
|
|
11
|
+
/**
|
|
12
|
+
* Full information of a building
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Represents a rectangle bounds in a greographic 2D space.
|
|
16
|
+
*/
|
|
17
|
+
/**
|
|
18
|
+
* Define 2D dimensions of a rectangular area.
|
|
19
|
+
*/
|
|
20
|
+
/**
|
|
21
|
+
* A structure that contains geographical coordinate.
|
|
22
|
+
*/
|
|
23
|
+
/**
|
|
24
|
+
* A structure that contains cartesian coordinate.
|
|
25
|
+
*/
|
|
26
|
+
/**
|
|
27
|
+
* Floor of a building.
|
|
28
|
+
*/
|
|
29
|
+
/**
|
|
30
|
+
* Point of Interest, associated to a building, regardless of whether it's placed inside or outside the building.
|
|
31
|
+
*/
|
|
32
|
+
/**
|
|
33
|
+
* Point of Interest, associated to a building, regardless of whether it's placed inside or outside the building.
|
|
34
|
+
*/
|
|
35
|
+
/**
|
|
36
|
+
* Category of Point of Interest.
|
|
37
|
+
*/
|
|
38
|
+
/**
|
|
39
|
+
* Category of Point of Interest.
|
|
40
|
+
*/
|
|
41
|
+
/**
|
|
42
|
+
* Associate geographical coordinate (Location) with Building and Floor (Cartography) and cartesian coordinate relative to that building.
|
|
43
|
+
*/
|
|
44
|
+
/**
|
|
45
|
+
* Route between two points.
|
|
46
|
+
*/
|
|
47
|
+
/**
|
|
48
|
+
* A fragment of a route, described by the initial point from and the last point to of the fragment, and some information about the step within the route.
|
|
49
|
+
*/
|
|
50
|
+
/**
|
|
51
|
+
* A fragment of a route, described by a floor identifier and a list of consecutive points from the same floor
|
|
52
|
+
*/
|
|
53
|
+
/**
|
|
54
|
+
* Represents the instruction that a user should follow when on a RouteStep to continue the route.
|
|
55
|
+
*/
|
|
56
|
+
/**
|
|
57
|
+
* Provides information of the progress of a user while following a route.
|
|
58
|
+
*/
|
|
59
|
+
/**
|
|
60
|
+
* A data object that contains parameters for the location service, LocationManager.
|
|
216
61
|
*/
|
|
217
62
|
/**
|
|
218
63
|
* A data object that let you customize the Foreground Service Notification
|
|
@@ -220,11 +65,9 @@ exports.InternalCall = exports.ForegroundServiceNotificationsTapAction = exports
|
|
|
220
65
|
* Foreground Service.
|
|
221
66
|
* To be used with {@link LocationRequest}.
|
|
222
67
|
* Only applies for Android.
|
|
223
|
-
* @property {ForegroundServiceNotificationOptions} foregroundServiceNotificationOptions
|
|
224
68
|
*/
|
|
225
69
|
/**
|
|
226
|
-
*
|
|
227
|
-
* @description Predefined actions performed when tapping the Situm Foreground Service Notification.
|
|
70
|
+
* Predefined actions performed when tapping the Situm Foreground Service Notification.
|
|
228
71
|
*/
|
|
229
72
|
let ForegroundServiceNotificationsTapAction = exports.ForegroundServiceNotificationsTapAction = /*#__PURE__*/function (ForegroundServiceNotificationsTapAction) {
|
|
230
73
|
/**
|
|
@@ -232,7 +75,7 @@ let ForegroundServiceNotificationsTapAction = exports.ForegroundServiceNotificat
|
|
|
232
75
|
*/
|
|
233
76
|
ForegroundServiceNotificationsTapAction["LaunchApp"] = "LAUNCH_APP";
|
|
234
77
|
/**
|
|
235
|
-
*
|
|
78
|
+
* Launch the operating system settings screen for the current app.
|
|
236
79
|
*/
|
|
237
80
|
ForegroundServiceNotificationsTapAction["LaunchSettings"] = "LAUNCH_SETTINGS";
|
|
238
81
|
/**
|
|
@@ -242,145 +85,69 @@ let ForegroundServiceNotificationsTapAction = exports.ForegroundServiceNotificat
|
|
|
242
85
|
return ForegroundServiceNotificationsTapAction;
|
|
243
86
|
}({});
|
|
244
87
|
/**
|
|
245
|
-
*
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
*
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
*
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
*
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
*
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
*
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
*
|
|
267
|
-
* @
|
|
268
|
-
*/
|
|
269
|
-
/**
|
|
270
|
-
*
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
*
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
*
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
* @name OutdoorLocationOptions
|
|
281
|
-
* @description Outdoor location options are only used in indoor-outdoor mode (Only available for Android)
|
|
282
|
-
*
|
|
283
|
-
* @property {boolean} continuousMode - Environment detection continuous mode (true) or burst mode (false).
|
|
284
|
-
* @property {boolean} userDefinedThreshold
|
|
285
|
-
* @property {number} burstInterval - Interval to scan for GPS and detect the environment (in seconds).
|
|
286
|
-
* @property {number} averageSnrThreshold
|
|
287
|
-
*/
|
|
288
|
-
/**
|
|
289
|
-
* @name BeaconFilter
|
|
290
|
-
* @description Represents a BLE filter. Now the only field is the BLE proximity UUID
|
|
291
|
-
*
|
|
292
|
-
* @property {string} uuid - Assigns the proximity UUID
|
|
293
|
-
*/
|
|
294
|
-
/**
|
|
295
|
-
* @name RealTimeRequest
|
|
296
|
-
* @description A data object that contains the parameters to process realtime data of the users.
|
|
297
|
-
*
|
|
298
|
-
* @property {Building} building object
|
|
299
|
-
* @property {int} pollTime - Interval in milliseconds (minimum is 3000ms).
|
|
300
|
-
*/
|
|
301
|
-
/**
|
|
302
|
-
* @name RealTimeData
|
|
303
|
-
* @description A data object that contains information of the location of users in realtime.
|
|
304
|
-
*
|
|
305
|
-
* @property {Array<Location>} locations object
|
|
306
|
-
*/
|
|
307
|
-
/**
|
|
308
|
-
* @name SdkVersion
|
|
309
|
-
* @description Represents the version information of the SDK and its compatibility with different platforms.
|
|
310
|
-
*
|
|
311
|
-
* @type
|
|
312
|
-
* @property {string} react_native - The version of React Native used in the SDK.
|
|
313
|
-
* @property {string} [ios] - Optional. The specific version of the Situm SDK for the iOS platform.
|
|
314
|
-
* @property {string} [android] - Optional. The specific version of the Situm SDK for the Android platform.
|
|
315
|
-
*/
|
|
316
|
-
/**
|
|
317
|
-
* @name ConfigurationOptions
|
|
318
|
-
* @description Configuration options for initializing the SDK or other modules.
|
|
319
|
-
*
|
|
320
|
-
* @type
|
|
321
|
-
* @property {boolean} [useRemoteConfig] - Optional. Determines whether to use Remote Configuration settings.
|
|
322
|
-
* @property {number} [cacheMaxAge] - Optional. The maximum age of the cache in seconds.
|
|
323
|
-
*/
|
|
324
|
-
/**
|
|
325
|
-
* @name Location
|
|
326
|
-
* @description Represents a location with various attributes including position, accuracy, and bearing.
|
|
327
|
-
*
|
|
328
|
-
* @interface
|
|
329
|
-
* @property {Position} [position] - Optional. The position information of the location.
|
|
330
|
-
* @property {number} [accuracy] - Optional. The accuracy of the location information in meters.
|
|
331
|
-
* @property {Object} [bearing] - Optional. Bearing information including degrees and degreesClockwise.
|
|
332
|
-
* @property {boolean} [hasBearing] - Optional. Indicates if bearing information is available.
|
|
333
|
-
*/
|
|
334
|
-
/**
|
|
335
|
-
* @name LocationStatus
|
|
336
|
-
* @description Represents the status of a location, including a name and a numeric code.
|
|
337
|
-
*
|
|
338
|
-
* @interface
|
|
339
|
-
* @property {LocationStatusName} statusName - The name of the location status.
|
|
340
|
-
* @property {number} statusCode - The numeric code representing the location status.
|
|
341
|
-
*/
|
|
342
|
-
/**
|
|
343
|
-
* @name ErrorType
|
|
344
|
-
* @description Enumeration of error types to categorize the severity of errors.
|
|
345
|
-
*
|
|
346
|
-
* @enum {string}
|
|
347
|
-
* @property {string} CRITICAL - Represents critical errors that will cause the system not to work (e.g. positioning will be stopped).
|
|
348
|
-
* @property {string} NON_CRITICAL - Represents non-critical errors that are less severe.
|
|
88
|
+
* A data object that contains the request for navigation.
|
|
89
|
+
*/
|
|
90
|
+
/**
|
|
91
|
+
* A data object that contains the request for directions.
|
|
92
|
+
*/
|
|
93
|
+
/**
|
|
94
|
+
* A data object that contains the directions options.
|
|
95
|
+
*/
|
|
96
|
+
/**
|
|
97
|
+
* Outdoor location options are only used in indoor-outdoor mode (Only available for Android)
|
|
98
|
+
*/
|
|
99
|
+
/**
|
|
100
|
+
* Represents a BLE filter. Now the only field is the BLE proximity UUID
|
|
101
|
+
*/
|
|
102
|
+
/**
|
|
103
|
+
* A data object that contains the parameters to process realtime data of the users.
|
|
104
|
+
*/
|
|
105
|
+
/**
|
|
106
|
+
* A data object that contains information of the location of users in realtime.
|
|
107
|
+
*/
|
|
108
|
+
/**
|
|
109
|
+
* Represents the version information of the SDK and its compatibility with different platforms.
|
|
110
|
+
* @deprecated This type will be removed in future versions.
|
|
111
|
+
*/
|
|
112
|
+
/**
|
|
113
|
+
* Configuration options for initializing the SDK or other modules.
|
|
114
|
+
*/
|
|
115
|
+
/**
|
|
116
|
+
* Represents a location with various attributes including position, accuracy, and bearing.
|
|
117
|
+
*/
|
|
118
|
+
/**
|
|
119
|
+
* Represents the status of a location, including a name and a numeric code.
|
|
120
|
+
*/
|
|
121
|
+
/**
|
|
122
|
+
* Enumeration of error types to categorize the severity of errors.
|
|
349
123
|
*/
|
|
350
124
|
let ErrorType = exports.ErrorType = /*#__PURE__*/function (ErrorType) {
|
|
125
|
+
/** Represents critical errors that will cause the system not to work (e.g. positioning will be stopped) */
|
|
351
126
|
ErrorType["CRITICAL"] = "CRITICAL";
|
|
127
|
+
/** Represents non-critical errors that are less severe */
|
|
352
128
|
ErrorType["NON_CRITICAL"] = "NON_CRITICAL";
|
|
353
129
|
return ErrorType;
|
|
354
130
|
}({});
|
|
355
131
|
/**
|
|
356
|
-
*
|
|
357
|
-
* @description Enumeration of error codes provided by Situm SDK.
|
|
358
|
-
*
|
|
359
|
-
* @enum {string}
|
|
360
|
-
* @property {string} LOCATION_PERMISSION_DENIED - Indicates that location permissions were not granted by the user.
|
|
361
|
-
* @property {string} BLUETOOTH_PERMISSION_DENIED - Indicates that Bluetooth permissions were not granted.
|
|
362
|
-
* @property {string} BLUETOOTH_DISABLED - Indicates that Bluetooth is disabled on the device.
|
|
363
|
-
* @property {string} LOCATION_DISABLED - Indicates that the location services are disabled on the device.
|
|
364
|
-
* @property {string} REDUCED_ACCURACY - Indicates that the precise location has been turned off on the device.
|
|
365
|
-
* @property {string} UNKNOWN - Represents an unknown error or an error that does not fit other categories.
|
|
132
|
+
* Enumeration of error codes provided by Situm SDK.
|
|
366
133
|
*/
|
|
367
134
|
let ErrorCode = exports.ErrorCode = /*#__PURE__*/function (ErrorCode) {
|
|
135
|
+
/** Indicates that location permissions were not granted by the user */
|
|
368
136
|
ErrorCode["LOCATION_PERMISSION_DENIED"] = "LOCATION_PERMISSION_DENIED";
|
|
137
|
+
/** Indicates that Bluetooth permissions were not granted */
|
|
369
138
|
ErrorCode["BLUETOOTH_PERMISSION_DENIED"] = "BLUETOOTH_PERMISSION_DENIED";
|
|
139
|
+
/** Indicates that Bluetooth is disabled on the device */
|
|
370
140
|
ErrorCode["BLUETOOTH_DISABLED"] = "BLUETOOTH_DISABLED";
|
|
141
|
+
/** Indicates that the location services are disabled on the device */
|
|
371
142
|
ErrorCode["LOCATION_DISABLED"] = "LOCATION_DISABLED";
|
|
143
|
+
/** Indicates that the precise location has been turned off on the device */
|
|
372
144
|
ErrorCode["REDUCED_ACCURACY"] = "REDUCED_ACCURACY";
|
|
145
|
+
/** Represents an unknown error or an error that does not fit other categories */
|
|
373
146
|
ErrorCode["UNKNOWN"] = "UNKNOWN";
|
|
374
147
|
return ErrorCode;
|
|
375
148
|
}({});
|
|
376
149
|
/**
|
|
377
|
-
*
|
|
378
|
-
* @description Represents an error with a specific code, message, and type.
|
|
379
|
-
*
|
|
380
|
-
* @interface
|
|
381
|
-
* @property {ErrorCode} code - The specific error code associated with this error.
|
|
382
|
-
* @property {string} message - A descriptive message providing more details about the error.
|
|
383
|
-
* @property {ErrorType} type - The type of the error indicating its severity (critical or non-critical).
|
|
150
|
+
* Represents an error with a specific code, message, and type.
|
|
384
151
|
*/
|
|
385
152
|
// TODO: add types
|
|
386
153
|
class InternalCall {
|
|
@@ -394,21 +161,11 @@ class InternalCall {
|
|
|
394
161
|
}
|
|
395
162
|
|
|
396
163
|
/**
|
|
397
|
-
* @name
|
|
398
|
-
* UserHelperColorScheme
|
|
399
|
-
* @description
|
|
400
164
|
* Color scheme for the user helper UI.
|
|
401
|
-
* @property {string} primaryColor - Primary color for the user helper UI. Use HEX color code (e.g. "#ff5733").
|
|
402
|
-
* @property {string} secondaryColor - Secondary color for the user helper UI. Use HEX color code (e.g. "#ff5733").
|
|
403
165
|
*/
|
|
404
166
|
|
|
405
167
|
/**
|
|
406
|
-
* @name
|
|
407
|
-
* UserHelperOptions
|
|
408
|
-
* @description
|
|
409
168
|
* Configuration options for the user helper.
|
|
410
|
-
* @property {boolean} enabled - Whether the user helper is enabled. Equivalent to the underlying native SitumSdk.userHelperManager#autoManage(true).
|
|
411
|
-
* @property {UserHelperColorScheme} colorScheme - Color scheme for the user helper UI.
|
|
412
169
|
*/
|
|
413
170
|
exports.InternalCall = InternalCall;
|
|
414
171
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["ForegroundServiceNotificationsTapAction","exports","ErrorType","ErrorCode","InternalCall","constructor","type","data","get"],"sourceRoot":"../../../../src","sources":["sdk/types/index.ts"],"mappings":";;;;;;AAAA;AASA;AACA;AACA;
|
|
1
|
+
{"version":3,"names":["ForegroundServiceNotificationsTapAction","exports","ErrorType","ErrorCode","InternalCall","constructor","type","data","get"],"sourceRoot":"../../../../src","sources":["sdk/types/index.ts"],"mappings":";;;;;;AAAA;AASA;AACA;AACA;AA8BA;AACA;AACA;AAcA;AACA;AACA;AAYA;AACA;AACA;AAQA;AACA;AACA;AAQA;AACA;AACA;AAQA;AACA;AACA;AAkBA;AACA;AACA;AA4BA;AACA;AACA;AAkBA;AACA;AACA;AAcA;AACA;AACA;AAMA;AACA;AACA;AAgBA;AACA;AACA;AA0BA;AACA;AACA;AAkBA;AACA;AACA;AAQA;AACA;AACA;AAoBA;AACA;AACA;AA6BA;AACA;AACA;AAoCA;AACA;AACA;AACA;AACA;AACA;AACA;AAcA;AACA;AACA;AAFA,IAGYA,uCAAuC,GAAAC,OAAA,CAAAD,uCAAA,0BAAvCA,uCAAuC;EACjD;AACF;AACA;EAHYA,uCAAuC;EAKjD;AACF;AACA;EAPYA,uCAAuC;EASjD;AACF;AACA;EAXYA,uCAAuC;EAAA,OAAvCA,uCAAuC;AAAA;AAenD;AACA;AACA;AAyBA;AACA;AACA;AASA;AACA;AACA;AAwBA;AACA;AACA;AAUA;AACA;AACA;AAMA;AACA;AACA;AAQA;AACA;AACA;AAMA;AACA;AACA;AACA;AAUA;AACA;AACA;AAQA;AACA;AACA;AA8BA;AACA;AACA;AAQA;AACA;AACA;AAFA,IAGYE,SAAS,GAAAD,OAAA,CAAAC,SAAA,0BAATA,SAAS;EACnB;EADUA,SAAS;EAGnB;EAHUA,SAAS;EAAA,OAATA,SAAS;AAAA;AAOrB;AACA;AACA;AAFA,IAGYC,SAAS,GAAAF,OAAA,CAAAE,SAAA,0BAATA,SAAS;EACnB;EADUA,SAAS;EAGnB;EAHUA,SAAS;EAKnB;EALUA,SAAS;EAOnB;EAPUA,SAAS;EASnB;EATUA,SAAS;EAWnB;EAXUA,SAAS;EAAA,OAATA,SAAS;AAAA;AAerB;AACA;AACA;AAUA;AAGO,MAAMC,YAAY,CAAU;EAIjCC,WAAWA,CAACC,IAAsB,EAAEC,IAAO,EAAE;IAC3C,IAAI,CAACD,IAAI,GAAGA,IAAI;IAChB,IAAI,CAACC,IAAI,GAAGA,IAAI;EAClB;EAEAC,GAAGA,CAAA,EAAS;IACV,OAAO,IAAI,CAACD,IAAI;EAClB;AACF;;AAEA;AACA;AACA;;AAQA;AACA;AACA;AAFAN,OAAA,CAAAG,YAAA,GAAAA,YAAA","ignoreList":[]}
|
|
@@ -15,8 +15,7 @@ var _mapper = _interopRequireDefault(require("../utils/mapper"));
|
|
|
15
15
|
var _store = require("../store");
|
|
16
16
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
17
17
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
18
|
-
function
|
|
19
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
18
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
20
19
|
/* eslint-disable @typescript-eslint/no-empty-function */
|
|
21
20
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
22
21
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_reactNativeWebview","_interopRequireDefault","_sdk","_hooks","_constants","_utils","_mapper","_store","_jsxRuntime","e","__esModule","default","_getRequireWildcardCache","WeakMap","r","t","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","SITUM_BASE_DOMAIN","NETWORK_ERROR_CODE","android","ios","windows","macos","web","viewerStyles","StyleSheet","create","webview","minHeight","minWidth","MapView","React","forwardRef","configuration","style","onLoad","onLoadError","onPoiSelected","onPoiDeselected","onFloorChanged","onExternalLinkClicked","undefined","onFavoritePoisUpdated","ref","webViewRef","useRef","_onDirectionsRequestInterceptor","setInterceptor","useState","mapLoaded","setMapLoaded","buildingIdentifier","setBuildingIdentifier","init","location","locationStatus","directions","navigation","calculateRoute","startNavigation","stopNavigation","error","useSitum","sendFollowUser","current","position","_followUser","_navigateToPoi","useCallback","payload","identifier","sendMessageToViewer","ViewerMapper","navigateToPoi","followUser","_navigateToCar","navigateToCar","_navigateToPoint","lat","lng","floorIdentifier","navigateToPoint","_selectPoi","poiId","selectPoi","_selectCar","selectCar","_selectPoiCategory","categoryId","SitumPlugin","navigationIsRunning","console","selectPoiCategory","_selectFloor","floorId","options","selectFloor","_search","search","_setDirectionsOptions","directionsOptions","setDirectionsOptions","_setFavoritePois","poiIds","setFavoritePois","_onMapIsReady","locationError","useImperativeHandle","unfollowUser","deselectPoi","setOnDirectionsRequestInterceptor","directionRequestInterceptor","cancelNavigation","useEffect","validateMapViewProjectSettings","code","message","setLocationStatus","setError","route","language","setLanguage","initialConfiguration","handleRequestFromViewer","event","eventParsed","JSON","parse","nativeEvent","data","type","favoritePoisIds","currentPoisIdentifiers","favoritePois","toString","updateNavigationState","_onShouldStartLoadWithRequest","request","url","startsWith","viewerDomain","Linking","openURL","_effectiveProfile","effectiveProfile","profile","remoteIdentifier","length","warn","jsx","source","uri","situmApiKey","flatten","limitsNavigationsToAppBoundDomains","javaScriptEnabled","domStorageEnabled","startInLoadingState","cacheEnabled","onMessage","onShouldStartLoadWithRequest","onError","evt","Platform","OS","name","ErrorName","ERR_INTERNET_DISCONNECTED","description","ERR_INTERNAL_SERVER_ERROR","_default","exports"],"sourceRoot":"../../../../src","sources":["wayfinding/components/MapView.tsx"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_reactNativeWebview","_interopRequireDefault","_sdk","_hooks","_constants","_utils","_mapper","_store","_jsxRuntime","e","__esModule","default","t","WeakMap","r","n","o","i","f","__proto__","has","get","set","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","SITUM_BASE_DOMAIN","NETWORK_ERROR_CODE","android","ios","windows","macos","web","viewerStyles","StyleSheet","create","webview","minHeight","minWidth","MapView","React","forwardRef","configuration","style","onLoad","onLoadError","onPoiSelected","onPoiDeselected","onFloorChanged","onExternalLinkClicked","undefined","onFavoritePoisUpdated","ref","webViewRef","useRef","_onDirectionsRequestInterceptor","setInterceptor","useState","mapLoaded","setMapLoaded","buildingIdentifier","setBuildingIdentifier","init","location","locationStatus","directions","navigation","calculateRoute","startNavigation","stopNavigation","error","useSitum","sendFollowUser","current","position","_followUser","_navigateToPoi","useCallback","payload","identifier","sendMessageToViewer","ViewerMapper","navigateToPoi","followUser","_navigateToCar","navigateToCar","_navigateToPoint","lat","lng","floorIdentifier","navigateToPoint","_selectPoi","poiId","selectPoi","_selectCar","selectCar","_selectPoiCategory","categoryId","SitumPlugin","navigationIsRunning","console","selectPoiCategory","_selectFloor","floorId","options","selectFloor","_search","search","_setDirectionsOptions","directionsOptions","setDirectionsOptions","_setFavoritePois","poiIds","setFavoritePois","_onMapIsReady","locationError","useImperativeHandle","unfollowUser","deselectPoi","setOnDirectionsRequestInterceptor","directionRequestInterceptor","cancelNavigation","useEffect","validateMapViewProjectSettings","code","message","setLocationStatus","setError","route","language","setLanguage","initialConfiguration","handleRequestFromViewer","event","eventParsed","JSON","parse","nativeEvent","data","type","favoritePoisIds","currentPoisIdentifiers","favoritePois","toString","updateNavigationState","_onShouldStartLoadWithRequest","request","url","startsWith","viewerDomain","Linking","openURL","_effectiveProfile","effectiveProfile","profile","remoteIdentifier","length","warn","jsx","source","uri","situmApiKey","flatten","limitsNavigationsToAppBoundDomains","javaScriptEnabled","domStorageEnabled","startInLoadingState","cacheEnabled","onMessage","onShouldStartLoadWithRequest","onError","evt","Platform","OS","name","ErrorName","ERR_INTERNET_DISCONNECTED","description","ERR_INTERNAL_SERVER_ERROR","_default","exports"],"sourceRoot":"../../../../src","sources":["wayfinding/components/MapView.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -8,8 +8,7 @@ var _react = _interopRequireWildcard(require("react"));
|
|
|
8
8
|
var _hooks = require("../hooks");
|
|
9
9
|
var _utils = require("./utils");
|
|
10
10
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
11
|
-
function
|
|
12
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
11
|
+
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
13
12
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
14
13
|
|
|
15
14
|
const initialState = exports.initialState = {
|