@formant/data-sdk 1.78.2 → 1.79.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,23 +1,23 @@
1
1
  import { IRtcPeer } from "@formant/realtime-sdk";
2
+ import { createDevice } from "../api/createDevice";
3
+ import { disableDevice } from "../api/disableDevice";
4
+ import { getDevicesData } from "../api/getDevicesData";
5
+ import { patchDevice } from "../api/patchDevice";
6
+ import { queryDevicesData } from "../api/queryDevicesData";
2
7
  import { CaptureStream } from "../CaptureStream";
3
- import { InterventionType } from "../model/InterventionType";
4
- import { IInterventionTypeMap } from "../model/IInterventionTypeMap";
5
- import { IInterventionResponse } from "../model/IInterventionResponse";
6
- import { IEventQuery } from "../model/IEventQuery";
7
8
  import { AggregateLevel } from "../model/AggregateLevel";
8
9
  import { EventType } from "../model/EventType";
10
+ import { IEvent } from "../model/IEvent";
11
+ import { IEventQuery } from "../model/IEventQuery";
12
+ import { IInterventionResponse } from "../model/IInterventionResponse";
13
+ import { IInterventionTypeMap } from "../model/IInterventionTypeMap";
14
+ import { InterventionType } from "../model/InterventionType";
9
15
  import { IShare } from "../model/IShare";
10
- import { SessionType } from "../model/SessionType";
11
- import { Command, ConfigurationDocument, IStartRealtimeConnectionOptions, TelemetryStream } from "./device.types";
12
- import { BaseDevice } from "./BaseDevice";
13
16
  import { ITags } from "../model/ITags";
14
- import { createDevice } from "../api/createDevice";
15
- import { patchDevice } from "../api/patchDevice";
16
- import { getDevicesData } from "../api/getDevicesData";
17
- import { queryDevicesData } from "../api/queryDevicesData";
18
- import { disableDevice } from "../api/disableDevice";
17
+ import { SessionType } from "../model/SessionType";
19
18
  import { TelemetryResult } from "../model/TelemetryResult";
20
- import { IEvent } from "../model/IEvent";
19
+ import { BaseDevice } from "./BaseDevice";
20
+ import { Command, ConfigurationDocument, IStartRealtimeConnectionOptions, TelemetryStream } from "./device.types";
21
21
  export declare class Device extends BaseDevice {
22
22
  id: string;
23
23
  name: string;
@@ -58,8 +58,8 @@ export declare class Device extends BaseDevice {
58
58
  getRemotePeer(): Promise<IRtcPeer>;
59
59
  stopRealtimeConnection(): Promise<void>;
60
60
  isInRealtimeSession(): Promise<boolean>;
61
- getAvailableCommands(): Promise<Command[]>;
62
- sendCommand(name: string, data?: string, time?: Date, metadata?: {}): Promise<Response>;
61
+ getAvailableCommands(includeDisabled?: boolean): Promise<Command[]>;
62
+ sendCommand(name: string, data?: string, time?: Date, metadata?: {}, id?: string): Promise<Response>;
63
63
  getCommand(id: string): Promise<Response>;
64
64
  createCaptureStream(streamName: string): Promise<CaptureStream>;
65
65
  getTelemetry(streamNameOrStreamNames: string | string[], start: Date, end: Date, tags?: {
@@ -41,7 +41,7 @@ export declare class AuthenticationStore implements IAuthenticationStore {
41
41
  login(email: string, password: string, options: {
42
42
  advanced: true;
43
43
  }): Promise<AuthenticationResult>;
44
- loginWithToken(token: string, refreshToken?: string, skipUserFetch?: boolean): Promise<void>;
44
+ loginWithToken(token: string, refreshToken?: string): Promise<void>;
45
45
  isAuthenticated(): boolean;
46
46
  loginToPeer(peerUrl: string, username: string, password: string): Promise<void>;
47
47
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@formant/data-sdk",
3
- "version": "1.78.2",
3
+ "version": "1.79.0",
4
4
  "description": "A library for getting data from Formant",
5
5
  "repository": {
6
6
  "type": "git",
package/CHANGELOG.md DELETED
@@ -1,579 +0,0 @@
1
- ## [1.78.2] - 2025-04-25
2
-
3
- - Skip user fectch option to loginWithToken #208
4
-
5
- ## [1.78.1] - 2025-04-14
6
-
7
- - Increment version for Vercel deploys
8
-
9
- ## [1.78.0] - 2025-04-14
10
-
11
- - Add in IJoy type
12
-
13
- ## [1.77.0] - 2025-03-13
14
-
15
- - Fix occupancy gridmap data fetching
16
-
17
- ## [1.76.1] - 2025-02-25
18
-
19
- - Republish
20
-
21
- ## [1.76.0] - 2025-02-25
22
-
23
- - Support teleop views
24
-
25
- ## [1.75.0] - 2025-02-22
26
-
27
- - Setting api env changes global
28
-
29
- ## [1.74.0] - 2025-02-22
30
-
31
- - Allow programattic env set
32
-
33
- ## [1.73.0] - 2025-02-20
34
-
35
- - Updating task summary
36
-
37
- ## [1.72.0] - 2025-01-22
38
-
39
- - Add geometry subscription in live universe data
40
-
41
- ## [1.71.0] - 2024-12-09
42
-
43
- - fix pointcloud realtime subscription
44
-
45
- ## [1.70.0] - 2024-11-26
46
-
47
- - Add in twist stream type
48
- - Fix API resolution in the data sdk to support localhost on prod
49
-
50
- ## [1.69.0] - 2024-11-22
51
-
52
- - Bump realtime-sdk in deployment
53
-
54
- ## [1.68.0] - 2024-11-22
55
-
56
- - Add in boolean stream type
57
-
58
- ## [1.67.0] - 2024-10-18
59
-
60
- - Add apiURL getter/setter interface updates.
61
-
62
- ## [1.66.0] - 2024-10-18
63
-
64
- - Export apiURL helper functions for View Embed usage.
65
-
66
- ## [1.65.0] - 2024-10-18
67
-
68
- - Adding apiURL scope adjustment for View Embed usage.
69
-
70
- ## [1.63.0] - 2024-10-16
71
-
72
- - Prevent repeated and out of order requests in subscribeToOdometry and subscribeToPath
73
-
74
- ## [1.62.0] - 2024-10-10
75
-
76
- - prevent flickering when subscribing to odometry
77
-
78
- ## [1.61.0] - 2024-10-3
79
-
80
- - prioritize url params to determine which api to use
81
-
82
- ## [1.60.0] - 2024-10-3
83
-
84
- - Made the workers dynamic; they now spawn and terminate on demand.
85
-
86
- ## [1.59.0] - 2024-9-30
87
-
88
- - web worker static list fix
89
-
90
- ## [1.58.0] - 2024-9-18
91
-
92
- - url fix
93
-
94
- ## [1.57.0] - 2024-9-18
95
-
96
- - preventing flickering
97
-
98
- ## [1.56.0] - 2024-8-26
99
-
100
- - bumping realtime sdk
101
-
102
- ## [1.55.0] - 2024-8-26
103
-
104
- - bumping realtime sdk
105
-
106
- ## [1.54.0] - 2024-8-26
107
-
108
- - bumping realtime sdk
109
-
110
- ## [1.53.0] - 2024-8-26
111
-
112
- - Exposing more realtime SDK
113
-
114
- ## [1.52.0] - 2024-8-26
115
-
116
- - Exposing more realtime SDK
117
-
118
- ## [1.51.0] - 2024-8-23
119
-
120
- ### Upgrade
121
-
122
- - Upgrade `@formant/realtime-sdk` to 1.4.0.
123
-
124
- ## [1.49.0] - 2024-8-19
125
-
126
- - local improvements
127
-
128
- ## [1.48.0] - 2024-6-21
129
-
130
- - 3d scene path improvements
131
-
132
- ## [1.47.0] - 2024-6-21
133
-
134
- - fix latest data point
135
-
136
- ## [1.46.0] - 2024-6-20
137
-
138
- - return geometry json when it doesn't come as url
139
-
140
- ## [1.45.0] - 2024-06-20
141
-
142
- - improvements for local
143
-
144
- ## [1.44.1] - 2024-06-10
145
-
146
- - fix version
147
-
148
- ## [1.44.0] - 2024-06-10
149
-
150
- - Passing url for gridMaps in UniverseData connect
151
-
152
- ## [1.43.0] - 2024-05-21
153
-
154
- - Fixes to UniverseData connect
155
-
156
- ## [1.41.0] - 2024-05-20
157
-
158
- - Improvements to UniverseData connect
159
-
160
- ## [1.40.0] - 2024-05-16
161
-
162
- - missing intervention request data field
163
-
164
- ## [1.39.0] - 2024-05-16
165
-
166
- - new intervention request type
167
-
168
- ## [1.38.0] - 2024-04-19
169
-
170
- - adding more agent apis
171
-
172
- ## [1.37.0] - 2024-04-19
173
-
174
- - adding latestOnly support for getTelemetry
175
-
176
- ## [1.36.0] - 2024-04-19
177
-
178
- - adding agent getTelemetry
179
-
180
- ## [1.34.0] - 2024-04-03
181
-
182
- - New auth mechanism
183
-
184
- ## [1.33.1] - 2024-03-19
185
-
186
- - Remove JSON subscription as an option for pointclouds in universe-connector
187
-
188
- ## [1.33.0] - 2024-03-11
189
-
190
- - Caching universe-connector network calls
191
- - Using workers to fetch external assets
192
-
193
- ## [1.32.0] - 2024-03-06
194
-
195
- - Adding support for multiple pointclouds subscriptions
196
-
197
- ## [1.31.0] - 2024-02-27
198
-
199
- - adding physical events
200
-
201
- ## [1.30.0] - 2024-02-27
202
-
203
- - adding more events
204
-
205
- ## [1.29.0] - 2024-02-27
206
-
207
- - fixing interface of IAnnotation
208
-
209
- ## [1.28.0] - 2024-02-27
210
-
211
- - fixing interface of ITriggeredEvent
212
-
213
- ## [1.26.0] - 2024-01-24
214
-
215
- - targeting es2019
216
-
217
- ## [1.26.0] - 2024-01-24
218
-
219
- - Merging in data connector
220
-
221
- ## [1.25.0] - 2024-01-24
222
-
223
- ### Added
224
-
225
- - PeerDevice function to get commands
226
-
227
- ## [1.24.0] - 2024-01-24
228
-
229
- ### Added
230
-
231
- - Exposing function on interface
232
-
233
- ## [1.23.0] - 2024-01-22
234
-
235
- ### Added
236
-
237
- - Authentication method for peer
238
-
239
- ## [1.22.0] - 2024-01-17
240
-
241
- ### Added
242
-
243
- - bundling deps to prevent typing issues
244
-
245
- ## [1.21.0] - 2024-01-17
246
-
247
- ### Added
248
-
249
- - exposing realtime message creator
250
-
251
- ## [1.20.0] - 2024-01-17
252
-
253
- ### Added
254
-
255
- - exposed new interface IMarker3DArray
256
-
257
- ## [1.19.0] - 2024-01-17
258
-
259
- ### Added
260
-
261
- - exposed new interface IMarker3D
262
-
263
- ## [1.18.0] - 2023-12-29
264
-
265
- ### Added
266
-
267
- - improvements to storeCache
268
-
269
- ## [1.17.0] - 2023-10-09
270
-
271
- ### Added
272
-
273
- - New functions for looking up SSO login information and logging in with SSO tokens
274
-
275
- ## [1.16.0] - 2023-09-21
276
-
277
- ### Fixed
278
-
279
- - Device entity should have correct organization property set. (#138)
280
-
281
- ## [1.15.0] - 2023-09-21
282
-
283
- ### Added
284
-
285
- - Add support for agent version querying (#136)
286
-
287
- ## [1.14.1] - 2023-09-06
288
-
289
- ### Added
290
-
291
- - Add parameter to query desire configuration vs reported configuration (#132)
292
-
293
- ## [1.14.0] - 2023-09-06
294
-
295
- ### Fixed
296
-
297
- - Fixed delete account error handling (#131)
298
-
299
- ## [1.13.2] - 2023-08-27
300
-
301
- ### Fixed
302
-
303
- - Fix IAuthenticationStore types for login() method.
304
-
305
- ## [1.13.1] - 2023-08-25
306
-
307
- ### Fixed
308
-
309
- - Only resolve `Authentication.respondToNewPasswordRequiredChallenge` on `response.ok`.
310
-
311
- ## [1.13.0] - 2023-08-25
312
-
313
- ### Added
314
-
315
- - Enhance Authentication.login() method for _advanced_ login flows.
316
-
317
- ## [1.12.0] - 2023-08-07
318
-
319
- ### Upgrade
320
-
321
- - Added support for `HEADLESS` session types in RtcClientPool.
322
- - Upgrade `@formant/realtime-sdk` to 1.2.0.
323
-
324
- ## [1.11.1] - 2023-08-07
325
-
326
- ### Added
327
-
328
- - Added right files
329
-
330
- ## [1.11.0] - 2023-08-07
331
-
332
- ### Added
333
-
334
- - Add getAllEventTriggerGroup, getEventTriggerGroup, and patchEventTriggerGroup
335
-
336
- ## [1.10.0] - 2023-07-25
337
-
338
- ### Upgrade
339
-
340
- - Upgrade grpc-web to 1.4.2
341
-
342
- ## [1.9.0] - 2023-07-24
343
-
344
- ### Upgrade
345
-
346
- - Upgrade data-sdk realtime-sdk to 1.0.0 (#117)
347
-
348
- ## [1.8.0] - 2023-07-17
349
-
350
- ### Added
351
-
352
- - query to KeyValue (#116)
353
-
354
- ## [1.7.0] - 2023-07-14
355
-
356
- ### Added
357
-
358
- - disableDevice, and timeout (#115)
359
-
360
- ## [1.6.0] - 2023-07-09
361
-
362
- ### Added
363
-
364
- - createFleet
365
-
366
- ## [1.5.4] - 2023-07-03
367
-
368
- ### Added
369
-
370
- - createDevice, patchDevice, getDeviceData, and queryDevicesData (#113)
371
-
372
- ## [1.5.3] - 2023-06-30
373
-
374
- ### Fixed
375
-
376
- - DataChannel check ready fix (#112)
377
-
378
- ## [1.5.2] - 2023-06-29
379
-
380
- ### Fixed
381
-
382
- - Resolve leaky reference to `NodeJS.Timeout`.
383
-
384
- ## [1.5.1] - 2023-06-29
385
-
386
- ### Fixed
387
-
388
- - Resolve dependency cycles. (#111)
389
-
390
- ## [1.5.0] - 2023-06-28
391
-
392
- ### Changed
393
-
394
- - Rework data-sdk bundle/package (#92)
395
- - packages `cjs`/`es` for package.json/bundlers _exclude_ all of their dependencies.
396
- - pre-bundled assets `umd`/`es6` bundles all required dependencies for stand-alone use.
397
-
398
- ### Update Notes
399
-
400
- The dependency tree has changed slightly to support better performance/security updates moving forward. As such the
401
- `@formant/realtime-sdk` dependency has been changed from a `"dependency"` to a `"peerDependency"`. You will need to add
402
- this dependency as well:
403
-
404
- ```sh
405
- $ npm install --save @formant/realtime-sdk@latest
406
-
407
- # or with
408
-
409
- $ yarn add @formant/realtime-sdk@latest
410
- ```
411
-
412
- ## [1.4.0] - 2023-06-28
413
-
414
- ### Added
415
-
416
- - Support for react native env (#108)
417
- - Implement `sendCommand` for `PeerDevice` (#106)
418
-
419
- ### Fixed
420
-
421
- - Ensure `Realtime*` types get exported at the top-level from `BaseDevice` (#110)
422
- - Remove debug logs (#109)
423
-
424
- ## [1.3.1] - 2023-06-27
425
-
426
- ### Fixed
427
-
428
- - Ensure `Realtime*` types get exported at the top-level from `BaseDevice` (#110)
429
-
430
- ## [1.3.0] - 2023-06-22
431
-
432
- ### Added
433
-
434
- - Improving API support for `/users`, `/accounts`, and `/fleets` (#107)
435
- - Support for offline direct RTC (#99)
436
-
437
- ## [1.2.0] - 2023-06-15
438
-
439
- ### Added
440
-
441
- - Added `tags` support to `Device` and `Command` entity. (#104)
442
-
443
- ## [1.1.0] - 2023-06-15
444
-
445
- _Released…_
446
-
447
- ## [1.1.0-rc.0] - 2023-06-15
448
-
449
- ### Added
450
-
451
- - Add support for custom API paths with `formant_url` query parameter. (#97) (MC-90)
452
-
453
- ## [1.0.0] - 2023-06-05
454
-
455
- ### Added
456
-
457
- - Add time information to `request_date` message. (#93)
458
-
459
- ### Fixed
460
-
461
- - Possible to removeListener too early when waiting for `request_date` to respond. (#93)
462
-
463
- ## [1.0.0-rc.3] - 2023-05-25
464
-
465
- `Device.startRealtimeConnection()` now accepts an optional `options` argument, to more fine-grained control over
466
- the connection handshake behavior.
467
-
468
- ```ts
469
- const device = Fleet.getCurrentDevice();
470
- await device.startRealtimeConnection({
471
- sessionType: SessionType.Observe,
472
- // wait an entire minute for a connection to establish.
473
- deadlineMs: 60_000,
474
- });
475
- ```
476
-
477
- The default value for `deadlineMs` is `10000`, or 10 seconds. If `device.startRealtimeConnection()` is unsuccessful
478
- in establishing a connection within the deadline, it will throw an error.
479
-
480
- ```ts
481
- try {
482
- await device.startRealtimeConnection({
483
- sessionType: SessionType.Observe,
484
- });
485
- } catch (err) {
486
- console.error("Unable to estbalish connection!");
487
- return;
488
- }
489
- ```
490
-
491
- If you would like to wait _forever_ for the connection, you can use:
492
-
493
- ```ts
494
- await device.startRealtimeConnection({
495
- sessionType: SessionType.Observe,
496
- deadlineMs: Infinity,
497
- });
498
- ```
499
-
500
- ### Added
501
-
502
- - Improvements to `Device.startRealtimeConnection()` implementation (#91)
503
-
504
- ### Changed
505
-
506
- - Pool `RtcClients` by `sessionType` to reduce network overhead for multiple conections (#89)
507
-
508
- ## [1.0.0-rc.2] - 2023-05-18
509
-
510
- ### Added
511
-
512
- - Added App.disableAnalyticsBottomBar() to hide date picker in analytics view (#84)
513
-
514
- ### Fixed
515
-
516
- - Increase number of tries to create a connection (#88)
517
- - Re-enforce type constraints on aggregateByDateFunctions (#85)
518
-
519
- ## [1.0.0-rc.1] - 2023-05-17
520
-
521
- ### Added
522
-
523
- - Adding WAN connectivity helpers (#83)
524
- - `App.isOnline` returns the last-known connectivity status to formant apis.
525
- - `App.checkConnection(ms?: number)` returns a promise for the _current_ connectivity status to formant apis.
526
- - `App.waitForConnection(ms?: number)` returns a promise that will resolve when `App.isOnline` is `true`.
527
-
528
- ### Fixed
529
-
530
- - Prefer cached remoteDevicePeerId when set. (#81)
531
- - Adding logging to RealtimeVideo and RealtimeDataStream methods (#82)
532
- - Try to reconnect when rtc.connect returns undefined (#78)
533
- - Update function to use remotePeerId (#80)
534
-
535
- ## 1.0.0-rc.0 - 2023-05-12
536
-
537
- ### Added
538
-
539
- - Improve typescript definitions `ConfigurationDocument` (#77)
540
- - Added `adapters`
541
- - Added `tags`
542
-
543
- ### Fixed
544
-
545
- - correct support for `getLatestTelemetry(oneUuid)` (#76)
546
-
547
- [1.51.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.50.0...release/data-sdk/1.51.0~
548
- [1.18.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.17.0...release/data-sdk/1.18.0~
549
- [1.17.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.16.0...release/data-sdk/1.17.0~
550
- [1.16.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.15.0...release/data-sdk/1.16.0~
551
- [1.15.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.14.1...release/data-sdk/1.15.0~
552
- [1.14.1]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.14.0...release/data-sdk/1.14.1~
553
- [1.14.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.13.2...release/data-sdk/1.14.0~
554
- [1.13.2]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.13.1...release/data-sdk/1.13.2~
555
- [1.13.1]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.13.0...release/data-sdk/1.13.1~
556
- [1.13.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.12.0...release/data-sdk/1.13.0~
557
- [1.12.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.11.1...release/data-sdk/1.12.0~
558
- [1.11.1]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.11.0...release/data-sdk/1.11.1~
559
- [1.11.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.10.0...release/data-sdk/1.11.0~
560
- [1.10.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.9.0...release/data-sdk/1.10.0~
561
- [1.9.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.8.0...release/data-sdk/1.9.0~
562
- [1.8.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.7.0...release/data-sdk/1.8.0~
563
- [1.7.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.6.0...release/data-sdk/1.7.0~
564
- [1.6.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.5.4...release/data-sdk/1.6.0~
565
- [1.5.4]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.5.3...release/data-sdk/1.5.4~
566
- [1.5.3]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.5.2...release/data-sdk/1.5.3~
567
- [1.5.2]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.5.1...release/data-sdk/1.5.2~
568
- [1.5.1]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.5.0...release/data-sdk/1.5.1~
569
- [1.5.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.4.0...release/data-sdk/1.5.0~
570
- [1.4.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.3.0...release/data-sdk/1.4.0~
571
- [1.3.1]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.3.0...release/data-sdk/1.3.1~
572
- [1.3.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.2.0...release/data-sdk/1.3.0~
573
- [1.2.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.1.0...release/data-sdk/1.2.0~
574
- [1.1.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.1.0-rc.0...release/data-sdk/1.1.0~
575
- [1.1.0-rc.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.0.0...release/data-sdk/1.1.0-rc.0~
576
- [1.0.0]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.0.0-rc.3...release/data-sdk/1.0.0~
577
- [1.0.0-rc.3]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.0.0-rc.2...release/data-sdk/1.0.0-rc.3~
578
- [1.0.0-rc.2]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.0.0-rc.1...release/data-sdk/1.0.0-rc.2~
579
- [1.0.0-rc.1]: https://github.com/FormantIO/toolkit/compare/release/data-sdk/1.0.0-rc.0...release/data-sdk/1.0.0-rc.1~