@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 +21 -32
- package/dist/client/AuthClient.d.ts +1 -1
- package/dist/common/redact.d.ts +0 -1
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +7 -5
- package/dist/model/IFilter.d.ts +2 -2
- package/dist/model/ILoginRequest.d.ts +0 -2
- package/dist/model/IUser.d.ts +0 -1
- package/dist/protos/api/signaling/v1/signaling_grpc_web_pb.d.ts +45 -45
- package/dist/protos/api/signaling/v1/signaling_grpc_web_pb.js +1 -1
- package/dist/protos/api/signaling/v1/signaling_pb.js +8 -8
- package/package.json +5 -19
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
|
-
-
|
|
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
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
-
|
|
53
|
-
-
|
|
54
|
-
-
|
|
55
|
-
-
|
|
56
|
-
-
|
|
57
|
-
-
|
|
58
|
-
-
|
|
59
|
-
-
|
|
60
|
-
-
|
|
61
|
-
-
|
|
62
|
-
-
|
|
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
|
|
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>;
|
package/dist/common/redact.d.ts
CHANGED