@situm/react-native 3.0.0-beta.5 → 3.0.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/android/gradlew.bat +84 -84
- package/lib/commonjs/index.js +12 -0
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/sdk/types/index.d.js +82 -109
- package/lib/commonjs/sdk/types/index.d.js.map +1 -1
- package/lib/commonjs/wayfinding/index.js +17 -0
- package/lib/commonjs/wayfinding/index.js.map +1 -1
- package/lib/module/index.js +1 -0
- package/lib/module/index.js.map +1 -1
- package/lib/module/sdk/types/index.d.js +82 -109
- package/lib/module/sdk/types/index.d.js.map +1 -1
- package/lib/module/wayfinding/index.js +1 -0
- package/lib/module/wayfinding/index.js.map +1 -1
- package/lib/typescript/src/index.d.ts +1 -0
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/wayfinding/index.d.ts +1 -1
- package/lib/typescript/src/wayfinding/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
- package/src/sdk/types/index.d.ts +83 -137
- package/src/wayfinding/index.ts +1 -1
- package/src/wayfinding/types/index.d.ts +7 -3
- package/android/.gradle/5.6.4/fileChanges/last-build.bin +0 -0
- package/android/.gradle/5.6.4/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/5.6.4/gc.properties +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2
2
|
/* eslint-disable @typescript-eslint/ban-types */
|
|
3
3
|
|
|
4
|
-
/**
|
|
5
|
-
* Building
|
|
6
|
-
* @description
|
|
7
|
-
*
|
|
4
|
+
/**
|
|
5
|
+
* @name Building
|
|
6
|
+
* @description A Building object definition
|
|
7
|
+
*
|
|
8
8
|
* @property {string} buildingIdentifier - The unique identifier of the resource
|
|
9
9
|
* @property {string} name - The building name that is appropriate for display to the user.
|
|
10
10
|
* @property {string} address - Te building address.
|
|
@@ -20,47 +20,42 @@
|
|
|
20
20
|
* @property {object} customFields - Map of custom fields, indexed by their name.
|
|
21
21
|
*/
|
|
22
22
|
|
|
23
|
-
/** @name
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
* Represents a rectangle bounds in a greographic 2D space.
|
|
23
|
+
/** @name Bounds
|
|
24
|
+
* @description Represents a rectangle bounds in a greographic 2D space.
|
|
25
|
+
*
|
|
27
26
|
* @property {Coordinate} northEast - The coordinate of the north-east corner of the bound.
|
|
28
27
|
* @property {Coordinate} northWest - The coordinate of the north-west corner of the bound.
|
|
29
28
|
* @property {Coordinate} southEast - The coordinate of the south-east corner of the bound.
|
|
30
29
|
* @property {Coordinate} southWest - The coordinate of the south-east corner of the bound.
|
|
31
30
|
*/
|
|
32
31
|
|
|
33
|
-
/** @name
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
* Define 2D dimensions of a rectangular area.
|
|
32
|
+
/** @name Dimensions
|
|
33
|
+
* @description Define 2D dimensions of a rectangular area.
|
|
34
|
+
*
|
|
37
35
|
* @property {number} width - Width of rectangle in meters
|
|
38
36
|
* @property {number} height - Height of rectangle in meters.
|
|
39
37
|
*/
|
|
40
38
|
|
|
41
39
|
/**
|
|
42
|
-
* @name
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
* A structure that contains geographical coordinate.
|
|
40
|
+
* @name Coordinate
|
|
41
|
+
* @description A structure that contains geographical coordinate.
|
|
42
|
+
*
|
|
46
43
|
* @property {number} latitude - Latitude in degrees
|
|
47
44
|
* @property {number} longitude - Longitude in degrees
|
|
48
45
|
*/
|
|
49
46
|
|
|
50
47
|
/**
|
|
51
|
-
* @name
|
|
52
|
-
*
|
|
53
|
-
*
|
|
54
|
-
* A structure that contains cartesian coordinate.
|
|
48
|
+
* @name CartesianCoordinate
|
|
49
|
+
* @description A structure that contains cartesian coordinate.
|
|
50
|
+
*
|
|
55
51
|
* @property {number} x - Value of coordinate at x-axis
|
|
56
52
|
* @property {number} y - Value of coordinate at y-axis
|
|
57
53
|
*/
|
|
58
54
|
|
|
59
55
|
/**
|
|
60
|
-
* @name
|
|
61
|
-
* Floor
|
|
62
|
-
*
|
|
63
|
-
* Floor of a building.
|
|
56
|
+
* @name Floor
|
|
57
|
+
* @description Floor of a building.
|
|
58
|
+
*
|
|
64
59
|
* @property {number} altitude - Altitude of the floor above ground level, in meters.
|
|
65
60
|
* @property {string} buildingIdentifier - The identifier of building which this floor belongs.
|
|
66
61
|
* @property {number} level - The number of the floor.
|
|
@@ -71,10 +66,9 @@
|
|
|
71
66
|
*/
|
|
72
67
|
|
|
73
68
|
/**
|
|
74
|
-
* @name
|
|
75
|
-
*
|
|
76
|
-
*
|
|
77
|
-
* Point of Interest, associated to a building, regardless of whether it's place inside or outside the building.
|
|
69
|
+
* @name POI
|
|
70
|
+
* @description Point of Interest, associated to a building, regardless of whether it's place inside or outside the building.
|
|
71
|
+
*
|
|
78
72
|
* @property {string} identifier - The unique identifier of the resource
|
|
79
73
|
* @property {string} buildingIdentifier - Identifier of building to which the POI belongs.
|
|
80
74
|
* @property {CartesianCoordinate} cartesianCoordinate - Cartesian coordinate of this position, relative to building {@link Bounds}.
|
|
@@ -90,10 +84,9 @@
|
|
|
90
84
|
*/
|
|
91
85
|
|
|
92
86
|
/**
|
|
93
|
-
* @name
|
|
94
|
-
*
|
|
95
|
-
*
|
|
96
|
-
* Point of Interest, associated to a building, regardless of whether it's place inside or outside the building.
|
|
87
|
+
* @name Geofence
|
|
88
|
+
* @description Point of Interest, associated to a building, regardless of whether it's place inside or outside the building.
|
|
89
|
+
*
|
|
97
90
|
* @property {string} identifier - The unique identifier of the resource
|
|
98
91
|
* @property {string} buildingIdentifier - Identifier of building to which the POI belongs.
|
|
99
92
|
* @property {string} floorIdentifier - If this POI is outside the building (isOutdoor == true), this field has no meaning.
|
|
@@ -104,10 +97,9 @@
|
|
|
104
97
|
*/
|
|
105
98
|
|
|
106
99
|
/**
|
|
107
|
-
* @name
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
* Category of Point of Interest.
|
|
100
|
+
* @name PoiCategory
|
|
101
|
+
* @description Category of Point of Interest.
|
|
102
|
+
*
|
|
111
103
|
* @property {string} poiCategoryCode - Unique code of the category
|
|
112
104
|
* @property {string} poiCategoryName - The category name appropriate for display to the user
|
|
113
105
|
* @property {string} icon_selected - The selected icon url
|
|
@@ -116,10 +108,9 @@
|
|
|
116
108
|
*/
|
|
117
109
|
|
|
118
110
|
/**
|
|
119
|
-
* @name
|
|
120
|
-
*
|
|
121
|
-
*
|
|
122
|
-
* Associate geographical coordinate (Location) with Building and Floor (Cartography) and cartesian coordinate relative to that building.
|
|
111
|
+
* @name Point
|
|
112
|
+
* @description Associate geographical coordinate (Location) with Building and Floor (Cartography) and cartesian coordinate relative to that building.
|
|
113
|
+
*
|
|
123
114
|
* @property {string} buildingIdentifier - Unique identifier for the building to which this point belongs
|
|
124
115
|
* @property {CartesianCoordinate} cartesianCoordinate - Cartesian coordinate (in meters) relative to the Bounds of building's base.
|
|
125
116
|
* @property {Coordinate} coordinate - Geographic coordinate (latitude, longitude) of the point, regardless of whether it's placed inside or outside the building.
|
|
@@ -129,10 +120,9 @@
|
|
|
129
120
|
*/
|
|
130
121
|
|
|
131
122
|
/**
|
|
132
|
-
* @name
|
|
133
|
-
* Route
|
|
134
|
-
*
|
|
135
|
-
* Route between two points.
|
|
123
|
+
* @name Route
|
|
124
|
+
* @description Route between two points.
|
|
125
|
+
*
|
|
136
126
|
* @property {RouteStep[]} edges - Ordered list of steps to go to the goal point
|
|
137
127
|
* @property {RouteStep} firstStep - First step
|
|
138
128
|
* @property {Point} from - Point where the route starts.
|
|
@@ -146,10 +136,9 @@
|
|
|
146
136
|
*/
|
|
147
137
|
|
|
148
138
|
/**
|
|
149
|
-
* @name
|
|
150
|
-
*
|
|
151
|
-
*
|
|
152
|
-
* 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.
|
|
139
|
+
* @name RouteStep
|
|
140
|
+
* @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.
|
|
141
|
+
*
|
|
153
142
|
* @property {number} distance - Distance between from and to in meters.
|
|
154
143
|
* @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).
|
|
155
144
|
* @property {Point} from - Start point of this step.
|
|
@@ -160,19 +149,17 @@
|
|
|
160
149
|
*/
|
|
161
150
|
|
|
162
151
|
/**
|
|
163
|
-
* @name
|
|
164
|
-
*
|
|
165
|
-
*
|
|
166
|
-
* A fragment of a route, described by a floor identifier and a list of consecutive points from the same floor
|
|
152
|
+
* @name RouteSegment
|
|
153
|
+
* @description A fragment of a route, described by a floor identifier and a list of consecutive points from the same floor
|
|
154
|
+
*
|
|
167
155
|
* @property {string} floorIdentifier - Identifier of the floor containing the points in this segment
|
|
168
156
|
* @property {Point[]} points - Consecutive points in the same floor forming a path
|
|
169
157
|
*/
|
|
170
158
|
|
|
171
159
|
/**
|
|
172
|
-
* @name
|
|
173
|
-
*
|
|
174
|
-
*
|
|
175
|
-
* Represents the instruction that a user should follow when on a RouteStep to continue the route.
|
|
160
|
+
* @name Indication
|
|
161
|
+
* @description Represents the instruction that a user should follow when on a RouteStep to continue the route.
|
|
162
|
+
*
|
|
176
163
|
* @property {number} distance - The distance between the origin and destination
|
|
177
164
|
* @property {number} distanceToNextLevel - The number of levels between the origin and destination
|
|
178
165
|
* @property {string} indicationType - The Indication.Action of the instruction as String
|
|
@@ -184,10 +171,9 @@
|
|
|
184
171
|
*/
|
|
185
172
|
|
|
186
173
|
/**
|
|
187
|
-
* @name
|
|
188
|
-
*
|
|
189
|
-
*
|
|
190
|
-
* Provides information of the progress of a user while following a route.
|
|
174
|
+
* @name NavigationProgress
|
|
175
|
+
* @description Provides information of the progress of a user while following a route.
|
|
176
|
+
*
|
|
191
177
|
* @property {Point} closestPointInRoute - Closest point in the route from the user location provided . @deprecated Use closestLocationInRoute instead.
|
|
192
178
|
* @property {Location} closestLocationInRoute - Closest location in the route from the user location provided .
|
|
193
179
|
* @property {number} distanceToClosestPointInRoute - Distance between the real user location (provided to updateWithLocation(Location)) and the closest route location.
|
|
@@ -204,10 +190,9 @@
|
|
|
204
190
|
*/
|
|
205
191
|
|
|
206
192
|
/**
|
|
207
|
-
* @name
|
|
208
|
-
*
|
|
209
|
-
*
|
|
210
|
-
* An event: POI with radius, conversion area and asociated statistics. It is intended for usage in marketing apps.
|
|
193
|
+
* @name SitumEvent
|
|
194
|
+
* @description An event: POI with radius, conversion area and asociated statistics. It is intended for usage in marketing apps.
|
|
195
|
+
*
|
|
211
196
|
* @property {number} buildingIdentifier - The identifier of the building this floor belongs to. Deprecated, use trigger.center.buildingIdentifier instead
|
|
212
197
|
* @property {number} identifier - Unique identifier of the SitumEvent.
|
|
213
198
|
* @property {number} floorIdentifier - The identifier of the floor this event is located at. @deprecated, use trigger.center.floorIdentifier instead
|
|
@@ -223,10 +208,9 @@
|
|
|
223
208
|
*/
|
|
224
209
|
|
|
225
210
|
/**
|
|
226
|
-
* @name
|
|
227
|
-
*
|
|
228
|
-
*
|
|
229
|
-
* A rectangular area of a floor defining the conversion area of an event
|
|
211
|
+
* @name SitumConversionArea
|
|
212
|
+
* @description A rectangular area of a floor defining the conversion area of an event
|
|
213
|
+
*
|
|
230
214
|
* @property {number} floorIdentifier - The identifier of the floor the SitumConversionArea is located at.
|
|
231
215
|
* @property {object} topLeft - Top-left corner
|
|
232
216
|
* @property {object} topRight - Top-right corner
|
|
@@ -235,19 +219,17 @@
|
|
|
235
219
|
*/
|
|
236
220
|
|
|
237
221
|
/**
|
|
238
|
-
* @name
|
|
239
|
-
*
|
|
240
|
-
*
|
|
241
|
-
* A circular area
|
|
222
|
+
* @name Circle
|
|
223
|
+
* @description A circular area
|
|
224
|
+
*
|
|
242
225
|
* @property {Point} center - The center of the circle
|
|
243
226
|
* @property {number} radius - The radius of the circle
|
|
244
227
|
*/
|
|
245
228
|
|
|
246
229
|
/**
|
|
247
|
-
* @name
|
|
248
|
-
*
|
|
249
|
-
*
|
|
250
|
-
* A data object that contains parameters for the location service, LocationManager.
|
|
230
|
+
* @name LocationOptions
|
|
231
|
+
* @description A data object that contains parameters for the location service, LocationManager.
|
|
232
|
+
*
|
|
251
233
|
* @property {number} buildingIdentifier - Identifier of the building on which the positioning will be started
|
|
252
234
|
* @property {number} interval - Default interval (in milliseconds) to notify location updates
|
|
253
235
|
* @property {string} indoorProvider - Default indoor provider. Possible values are INPHONE and SUPPORT
|
|
@@ -266,20 +248,17 @@
|
|
|
266
248
|
*/
|
|
267
249
|
|
|
268
250
|
/**
|
|
269
|
-
* @name
|
|
270
|
-
*
|
|
271
|
-
*
|
|
272
|
-
* A data object that contains parameters for the location service, LocationManager.
|
|
273
|
-
* @type {array}
|
|
251
|
+
* @name LocationRequest
|
|
252
|
+
* @description A data object that contains parameters for the location service, LocationManager.
|
|
253
|
+
*
|
|
274
254
|
* @property {Building} building 0 - Building on which the positioning will be started
|
|
275
255
|
* @property {LocationOptions} locationOptions 1 - Location options.
|
|
276
256
|
*/
|
|
277
257
|
|
|
278
258
|
/**
|
|
279
|
-
* @name
|
|
280
|
-
*
|
|
281
|
-
*
|
|
282
|
-
* A data object that contains parameters for the navigation service, NavigationManager.
|
|
259
|
+
* @name NavigationRequest
|
|
260
|
+
* @description A data object that contains parameters for the navigation service, NavigationManager.
|
|
261
|
+
*
|
|
283
262
|
* @property {number} distanceToChangeIndicationThreshold - Distance threshold from when the next indication is considered reached.
|
|
284
263
|
* @property {number} distanceToFloorChangeThreshold - Distance threshold from when a floor change is considered reached.
|
|
285
264
|
* @property {number} distanceToGoalThreshold - Distance threshold from when the goal is considered reached.
|
|
@@ -293,10 +272,9 @@
|
|
|
293
272
|
*/
|
|
294
273
|
|
|
295
274
|
/**
|
|
296
|
-
* @name
|
|
297
|
-
*
|
|
298
|
-
*
|
|
299
|
-
* A data object that contains the request for directions.
|
|
275
|
+
* @name DirectionsRequest
|
|
276
|
+
* @description A data object that contains the request for directions.
|
|
277
|
+
*
|
|
300
278
|
* @property {Building} positioningBuilding
|
|
301
279
|
* @property {Point|Location} from - Current user's position as the starting point of the route.
|
|
302
280
|
* @property {Point|POI} to - Point to, where the route should end.
|
|
@@ -304,10 +282,9 @@
|
|
|
304
282
|
*/
|
|
305
283
|
|
|
306
284
|
/**
|
|
307
|
-
* @name
|
|
308
|
-
*
|
|
309
|
-
*
|
|
310
|
-
* A data object that contains the directions options.
|
|
285
|
+
* @name DirectionsOptions
|
|
286
|
+
* @description A data object that contains the directions options.
|
|
287
|
+
*
|
|
311
288
|
* @property {boolean} minimizeFloorChanges - Defines wheter or not the route should be calculated minimizing the floor changes even if the result is longer.
|
|
312
289
|
* @property {boolean} accessibleRoute - Deprecated, use accessibilityMode. Defines wheter or not the route has to be suitable for wheel chairs (true) or not (false).
|
|
313
290
|
* @property {boolean} accessible - Deprecated, use accessibilityMode. Defines wheter or not the route has to be suitable for wheel chairs (true) or not (false).
|
|
@@ -316,10 +293,9 @@
|
|
|
316
293
|
*/
|
|
317
294
|
|
|
318
295
|
/**
|
|
319
|
-
* @name
|
|
320
|
-
*
|
|
321
|
-
*
|
|
322
|
-
* Outdoor location options are only used in indoor-outdoor mode (Only available for Android)
|
|
296
|
+
* @name OutdoorLocationOptions
|
|
297
|
+
* @description Outdoor location options are only used in indoor-outdoor mode (Only available for Android)
|
|
298
|
+
*
|
|
323
299
|
* @property {boolean} continuousMode - Environment detection continuous mode (true) or burst mode (false).
|
|
324
300
|
* @property {boolean} userDefinedThreshold
|
|
325
301
|
* @property {number} burstInterval - Interval to scan for GPS and detect the environment (in seconds).
|
|
@@ -327,27 +303,24 @@
|
|
|
327
303
|
*/
|
|
328
304
|
|
|
329
305
|
/**
|
|
330
|
-
* @name
|
|
331
|
-
*
|
|
332
|
-
*
|
|
333
|
-
* Represents a BLE filter. Now the only field is the BLE proximity UUID
|
|
306
|
+
* @name BeaconFilter
|
|
307
|
+
* @description Represents a BLE filter. Now the only field is the BLE proximity UUID
|
|
308
|
+
*
|
|
334
309
|
* @property {string} uuid - Assigns the proximity UUID
|
|
335
310
|
*/
|
|
336
311
|
|
|
337
312
|
/**
|
|
338
|
-
* @name
|
|
339
|
-
*
|
|
340
|
-
*
|
|
341
|
-
* A data object that contains the parameters to process realtime data of the users.
|
|
313
|
+
* @name RealTimeRequest
|
|
314
|
+
* @description A data object that contains the parameters to process realtime data of the users.
|
|
315
|
+
*
|
|
342
316
|
* @property {Building} building object
|
|
343
317
|
* @property {int} pollTime - Interval in milliseconds (minimum is 3000ms).
|
|
344
318
|
*/
|
|
345
319
|
|
|
346
320
|
/**
|
|
347
|
-
* @name
|
|
348
|
-
*
|
|
349
|
-
*
|
|
350
|
-
* A data object that contains information of the location of users in realtime.
|
|
321
|
+
* @name RealTimeData
|
|
322
|
+
* @description A data object that contains information of the location of users in realtime.
|
|
323
|
+
*
|
|
351
324
|
* @property {Array<Location>} locations object
|
|
352
325
|
*/
|
|
353
326
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["LocationStatusName","NavigationStatus","NavigationUpdateType"],"sourceRoot":"../../../../src","sources":["sdk/types/index.d.ts"],"mappings":"AAAA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;
|
|
1
|
+
{"version":3,"names":["LocationStatusName","NavigationStatus","NavigationUpdateType"],"sourceRoot":"../../../../src","sources":["sdk/types/index.d.ts"],"mappings":"AAAA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAiBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAQA;AACA;AACA;AACA;AACA;AACA;;AAMA;AACA;AACA;AACA;AACA;AACA;AACA;;AAMA;AACA;AACA;AACA;AACA;AACA;AACA;;AAMA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAWA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAgBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAUA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AASA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAeA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAcA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAWA;AACA;AACA;AACA;AACA;AACA;AACA;;AAMA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAYA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAiBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAgBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AASA;AACA;AACA;AACA;AACA;AACA;AACA;;AAMA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAmBA;AACA;AACA;AACA;AACA;AACA;AACA;;AAMA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAcA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAQA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AASA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAQA;AACA;AACA;AACA;AACA;AACA;;AAKA;AACA;AACA;AACA;AACA;AACA;AACA;;AAMA;AACA;AACA;AACA;AACA;AACA;;AAmCA,WAAYA,kBAAkB,0BAAlBA,kBAAkB;EAAlBA,kBAAkB;EAAlBA,kBAAkB;EAAlBA,kBAAkB;EAAlBA,kBAAkB;EAAlBA,kBAAkB;EAAA,OAAlBA,kBAAkB;AAAA;AAgC9B,WAAYC,gBAAgB,0BAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAA,OAAhBA,gBAAgB;AAAA;AAM5B,WAAYC,oBAAoB,0BAApBA,oBAAoB;EAApBA,oBAAoB;EAApBA,oBAAoB;EAApBA,oBAAoB;EAAA,OAApBA,oBAAoB;AAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["default","useSitum","SitumProvider","MapView"],"sourceRoot":"../../../src","sources":["wayfinding/index.ts"],"mappings":"AAAA;;
|
|
1
|
+
{"version":3,"names":["default","useSitum","SitumProvider","MapView"],"sourceRoot":"../../../src","sources":["wayfinding/index.ts"],"mappings":"AAAA;AACA,cAAc,SAAS;;AAEvB;AACA,SAASA,OAAO,IAAIC,QAAQ,QAAQ,SAAS;;AAE7C;AACA,SAASD,OAAO,IAAIE,aAAa,QAAQ,SAAS;;AAElD;AACA,SAASF,OAAO,IAAIG,OAAO,QAAQ,sBAAsB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,OAAO,CAAC;AAGhC,cAAc,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,WAAW,MAAM,OAAO,CAAC;AAGhC,cAAc,qBAAqB,CAAC;AACpC,cAAc,4BAA4B,CAAC;AAG3C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,cAAc,CAAC;AAC7B,eAAe,WAAW,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/wayfinding/index.ts"],"names":[],"mappings":"AACA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/wayfinding/index.ts"],"names":[],"mappings":"AACA,cAAc,SAAS,CAAC;AAGxB,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,SAAS,CAAC;AAG9C,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,SAAS,CAAC;AAGnD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,sBAAsB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@situm/react-native",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Set of utilities that allow any developer to build React Native location based apps using Situm's indoor positioning system.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"repository": "https://github.com/situmtech/react-native",
|
package/src/index.ts
CHANGED