@nice2dev/ui-communication 1.0.10 → 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.
@@ -302,7 +302,7 @@ export declare class PstnGatewayService {
302
302
  /**
303
303
  * Process SDP answer from WebRTC peer.
304
304
  */
305
- processSdpAnswer(sdp: string): void;
305
+ processSdpAnswer(_sdp: string): void;
306
306
  }
307
307
  /**
308
308
  * Get the default PSTN gateway instance.
@@ -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(constraints: MediaStreamConstraints): Promise<MediaStream>;
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,7 +1,7 @@
1
1
  {
2
2
  "name": "@nice2dev/ui-communication",
3
- "version": "1.0.10",
4
- "description": "NiceCommunication full-spectrum communication suite: chat bubble, messenger, voice/video calls, multi-party conference, and Teams-style workspace. Provider-agnostic RTC transport.",
3
+ "version": "1.0.12",
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",
7
7
  "module": "dist/index.mjs",
@@ -31,7 +31,7 @@
31
31
  "prepublishOnly": "npm run build"
32
32
  },
33
33
  "peerDependencies": {
34
- "@nice2dev/ui": "^1.0.10",
34
+ "@nice2dev/ui": "^1.0.12",
35
35
  "react": ">=17.0.0",
36
36
  "react-dom": ">=17.0.0"
37
37
  },