@signalapp/ringrtc 2.54.0 → 2.54.1
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/dist/acknowledgments.md
CHANGED
|
@@ -669,7 +669,7 @@ For more information on this, and how to apply and follow the GNU AGPL, see
|
|
|
669
669
|
|
|
670
670
|
```
|
|
671
671
|
|
|
672
|
-
## libsignal-account-keys 0.1.0, libsignal-core 0.1.0, mrp 2.54.
|
|
672
|
+
## libsignal-account-keys 0.1.0, libsignal-core 0.1.0, mrp 2.54.1, protobuf 2.54.1, ringrtc 2.54.1, regex-aot 0.1.0, partial-default-derive 0.1.0
|
|
673
673
|
|
|
674
674
|
```
|
|
675
675
|
GNU AFFERO GENERAL PUBLIC LICENSE
|
|
@@ -229,7 +229,7 @@ export declare class RingRTCType {
|
|
|
229
229
|
deleteCallLink(sfuUrl: string, authCredentialPresentation: Buffer, linkRootKey: CallLinkRootKey, epoch: CallLinkEpoch | undefined, adminPasskey: Buffer): Promise<HttpResult<undefined>>;
|
|
230
230
|
receivedHttpResponse(requestId: number, status: number, body: Buffer): void;
|
|
231
231
|
httpRequestFailed(requestId: number, debugInfo: string | undefined): void;
|
|
232
|
-
getGroupCall(groupId: Buffer, sfuUrl: string,
|
|
232
|
+
getGroupCall(groupId: Buffer, sfuUrl: string, hkdfExtraInfo: Buffer, audioLevelsIntervalMillis: number | undefined, observer: GroupCallObserver): GroupCall | undefined;
|
|
233
233
|
getCallLinkCall(sfuUrl: string, endorsementPublicKey: Buffer, authCredentialPresentation: Buffer, rootKey: CallLinkRootKey, epoch: CallLinkEpoch | undefined, adminPasskey: Buffer | undefined, hkdfExtraInfo: Buffer, audioLevelsIntervalMillis: number | undefined, observer: GroupCallObserver): GroupCall | undefined;
|
|
234
234
|
peekGroupCall(sfuUrl: string, membershipProof: Buffer, groupMembers: Array<GroupMemberInfo>): Promise<PeekInfo>;
|
|
235
235
|
peekCallLinkCall(sfuUrl: string, authCredentialPresentation: Buffer, rootKey: CallLinkRootKey, epoch: CallLinkEpoch | undefined): Promise<HttpResult<PeekInfo>>;
|
|
@@ -674,7 +674,7 @@ export interface CallManager {
|
|
|
674
674
|
receivedCallMessage(remoteUserId: Buffer, remoteDeviceId: DeviceId, localDeviceId: DeviceId, data: Buffer, messageAgeSec: number): void;
|
|
675
675
|
receivedHttpResponse(requestId: number, status: number, body: Buffer): void;
|
|
676
676
|
httpRequestFailed(requestId: number, debugInfo: string | undefined): void;
|
|
677
|
-
createGroupCallClient(groupId: Buffer, sfuUrl: string,
|
|
677
|
+
createGroupCallClient(groupId: Buffer, sfuUrl: string, hkdfExtraInfo: Buffer, audioLevelsIntervalMillis: number): GroupCallClientId;
|
|
678
678
|
createCallLinkCallClient(sfuUrl: string, endorsementPublicKey: Buffer, authCredentialPresentation: Buffer, linkRootKey: Buffer, epoch: number | undefined, adminPasskey: Buffer | undefined, hkdfExtraInfo: Buffer, audioLevelsIntervalMillis: number): GroupCallClientId;
|
|
679
679
|
deleteGroupCallClient(clientId: GroupCallClientId): void;
|
|
680
680
|
connect(clientId: GroupCallClientId): void;
|
package/dist/ringrtc/Service.js
CHANGED
|
@@ -727,8 +727,8 @@ class RingRTCType {
|
|
|
727
727
|
}
|
|
728
728
|
// Group Calls
|
|
729
729
|
// Called by UX
|
|
730
|
-
getGroupCall(groupId, sfuUrl,
|
|
731
|
-
const clientId = this.callManager.createGroupCallClient(groupId, sfuUrl,
|
|
730
|
+
getGroupCall(groupId, sfuUrl, hkdfExtraInfo, audioLevelsIntervalMillis, observer) {
|
|
731
|
+
const clientId = this.callManager.createGroupCallClient(groupId, sfuUrl, hkdfExtraInfo, audioLevelsIntervalMillis || 0);
|
|
732
732
|
if (clientId === INVALID_CLIENT_ID) {
|
|
733
733
|
// Return undefined since the group call client creation failed.
|
|
734
734
|
return undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signalapp/ringrtc",
|
|
3
|
-
"version": "2.54.
|
|
3
|
+
"version": "2.54.1",
|
|
4
4
|
"description": "Signal Messenger voice and video calling library.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"config": {
|
|
27
27
|
"prebuildUrl": "https://build-artifacts.signal.org/libraries/ringrtc-desktop-build-v${npm_package_version}.tar.gz",
|
|
28
|
-
"prebuildChecksum": "
|
|
28
|
+
"prebuildChecksum": "2c2282f9fc6aad33362d39e370bc420608e05028918f025ec7cafae1982a4a5d"
|
|
29
29
|
},
|
|
30
30
|
"author": "",
|
|
31
31
|
"license": "AGPL-3.0-only",
|