@situm/react-native 3.0.0-beta.6 → 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.
@@ -1,10 +1,10 @@
1
1
  /* eslint-disable @typescript-eslint/no-explicit-any */
2
2
  /* eslint-disable @typescript-eslint/ban-types */
3
3
 
4
- /** @name
5
- * Building
6
- * @description
7
- * A Building object definition
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
- * Bounds
25
- * @description
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
- * Dimensions
35
- * @description
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
- * Coordinate
44
- * @description
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
- * CartesianCoordinate
53
- * @description
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
- * @description
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
- * POI
76
- * @description
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
- * Geofence
95
- * @description
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
- * PoiCategory
109
- * @description
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
- * Point
121
- * @description
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
- * @description
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
- * RouteStep
151
- * @description
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
- * RouteSegment
165
- * @description
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
- * Indication
174
- * @description
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
- * NavigationProgress
189
- * @description
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
- * SitumEvent
209
- * @description
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
- * SitumConversionArea
228
- * @description
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
- * Circle
240
- * @description
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
- * LocationOptions
249
- * @description
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
- * LocationRequest
271
- * @description
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
- * NavigationRequest
281
- * @description
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
- * DirectionsRequest
298
- * @description
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
- * DirectionsOptions
309
- * @description
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
- * OutdoorLocationOptions
321
- * @description
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
- * BeaconFilter
332
- * @description
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
- * RealTimeRequest
340
- * @description
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
- * RealTimeData
349
- * @description
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;;AAkBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AASA;AACA;AACA;AACA;AACA;AACA;AACA;;AAOA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAOA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAOA;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;;AAWA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAUA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAgBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAeA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAYA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAOA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAaA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAkBA;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;;AAUA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAOA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAoBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAOA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAeA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AASA;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;;AAMA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAOA;AACA;AACA;AACA;AACA;AACA;AACA;;AAoCA,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
+ {"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,4 +1,5 @@
1
1
  // Definitions
2
+ export * from "./types";
2
3
 
3
4
  // Hook
4
5
  export { default as useSitum } from "./hooks";
@@ -1 +1 @@
1
- {"version":3,"names":["default","useSitum","SitumProvider","MapView"],"sourceRoot":"../../../src","sources":["wayfinding/index.ts"],"mappings":"AAAA;;AAGA;AACA,SAASA,OAAO,IAAIC,QAAQ,QAAQ,SAAS;;AAE7C;AACA,SAASD,OAAO,IAAIE,aAAa,QAAQ,SAAS;;AAElD;AACA,SAASF,OAAO,IAAIG,OAAO,QAAQ,sBAAsB"}
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,4 +1,4 @@
1
- export type * from "./types";
1
+ export * from "./types";
2
2
  export { default as useSitum } from "./hooks";
3
3
  export { default as SitumProvider } from "./store";
4
4
  export { default as MapView } from "./components/MapView";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/wayfinding/index.ts"],"names":[],"mappings":"AACA,mBAAmB,SAAS,CAAC;AAG7B,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"}
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-beta.6",
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",