@formant/realtime-sdk 1.4.1 → 1.4.3

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 CHANGED
@@ -18,47 +18,36 @@ Distributed under the MIT License. See LICENSE.txt for more information.
18
18
 
19
19
  ## Changelog
20
20
 
21
- ### **1.3.0** - 2024-09-09
22
-
23
- #### Fixed
24
-
25
- - Redact sensitive ICE credentials.
26
-
27
21
  ### **1.2.0** - 2023-08-18
28
22
 
29
23
  #### Added
30
-
31
- - Exporting `IRtcPeer` and `RtcStreamType`.
24
+ - Exporting `IRtcPeer` and `RtcStreamType`.
32
25
 
33
26
  ### **1.1.0** - 2023-08-18
34
-
27
+
35
28
  #### Fixed
36
-
37
- - Fixed debug logging level output.
29
+ - Fixed debug logging level output.
38
30
 
39
31
  ### **1.0.0** - 2023-07-19
40
32
 
41
33
  #### Added
42
-
43
- - Odometry over teleop
44
- - Add support for eventing on all event trigger types
34
+ - Odometry over teleop
35
+ - Add support for eventing on all event trigger types
45
36
 
46
37
  #### Changed
47
-
48
- - Reduce ICE gathering timeout to 3s
49
-
50
- #### Fixed
51
-
52
- - Workaround for lack of getConfiguration method on RTCPeerConnection
53
- - Project de-cycling
54
- - Fix Odom
55
- - Use previously implemented util for detecting STUN vs TURN
56
- - Partition connections in a single step…
57
- - Immediately eject a disconnected connection from the connection set
58
- - More cleanup on rtcClient shutdown
59
- - Record RTC connection type metric (host, relay, etc)
60
- - Make best-effort to _release_ the RtcPeerConnection on close
61
- - `isConnectionInitiator` never gets cleared, keeping RtcConnections alive
62
- - Add prettier plugin to deterministically sort import ordering
63
- - Dependency updates
64
- - Resolve realtime-sdk build warnings about re-exporting types
38
+ - Reduce ICE gathering timeout to 3s
39
+
40
+ #### Fixed
41
+ - Workaround for lack of getConfiguration method on RTCPeerConnection
42
+ - Project de-cycling
43
+ - Fix Odom
44
+ - Use previously implemented util for detecting STUN vs TURN
45
+ - Partition connections in a single step…
46
+ - Immediately eject a disconnected connection from the connection set
47
+ - More cleanup on rtcClient shutdown
48
+ - Record RTC connection type metric (host, relay, etc)
49
+ - Make best-effort to *release* the RtcPeerConnection on close
50
+ - `isConnectionInitiator` never gets cleared, keeping RtcConnections alive
51
+ - Add prettier plugin to deterministically sort import ordering
52
+ - Dependency updates
53
+ - Resolve realtime-sdk build warnings about re-exporting types
@@ -35,7 +35,7 @@ export declare class AuthClient extends FormantBaseClient {
35
35
  }): Promise<void>;
36
36
  getDeviceCredentials(token: string): Promise<IDeviceCredentials>;
37
37
  impersonate(token: string, userId: Uuid): Promise<ILoginResult>;
38
- createServiceAccount(token: string, name: string, roleId: Uuid, tags: ITags, description?: string): Promise<ICreateServiceAccountResponse>;
38
+ createServiceAccount(token: string, name: string, roleId: Uuid, tags: ITags): Promise<ICreateServiceAccountResponse>;
39
39
  getFeatures(token: string): Promise<Feature[]>;
40
40
  checkSso(email: string, allowUserAutoCreation?: boolean): Promise<ICheckSsoResult>;
41
41
  loginWithSso(token: string, refreshToken?: string): Promise<ILoginResult>;
@@ -2,4 +2,3 @@
2
2
  * Returns a copy of an object with sensitive information redacted.
3
3
  */
4
4
  export declare function redact(object: unknown, visited?: WeakSet<any>): any;
5
- export declare const redactStringifiedFields: (offerSignal: any) => Record<any, any>;