@nice2dev/ui-communication 1.0.11 → 1.0.12
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/collaboration/collaborative-form.d.ts +1 -1
- package/dist/components/NiceChannelView.d.ts +1 -1
- package/dist/components/NiceCollaborativeEditor.d.ts +1 -1
- package/dist/components/NiceWhiteboard.d.ts +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.mjs +1402 -1402
- package/dist/services/pstnGatewayService.d.ts +1 -1
- package/dist/transport/communicationTransport.d.ts +1 -1
- package/package.json +2 -2
|
@@ -119,7 +119,7 @@ export declare class MockTransport extends TypedEventEmitter implements ICommuni
|
|
|
119
119
|
connect(_signalingUrl: string, _userId: string): Promise<void>;
|
|
120
120
|
disconnect(): void;
|
|
121
121
|
isConnected(): boolean;
|
|
122
|
-
getLocalStream(
|
|
122
|
+
getLocalStream(_constraints: MediaStreamConstraints): Promise<MediaStream>;
|
|
123
123
|
releaseLocalStream(): void;
|
|
124
124
|
startCall(participantIds: string[], type: CallType): Promise<CallSession>;
|
|
125
125
|
acceptCall(callId: string): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nice2dev/ui-communication",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.12",
|
|
4
4
|
"description": "NiceCommunication — full-spectrum communication suite: chat bubble, messenger, voice/video calls, multi-party conference, and Teams-style workspace. Provider-agnostic RTC transport.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"prepublishOnly": "npm run build"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@nice2dev/ui": "1.0.
|
|
34
|
+
"@nice2dev/ui": "^1.0.12",
|
|
35
35
|
"react": ">=17.0.0",
|
|
36
36
|
"react-dom": ">=17.0.0"
|
|
37
37
|
},
|