@vonage/client-sdk 1.3.0-alpha.0 → 1.3.0-snapshot.42.0
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/client/index.cjs +314 -297
- package/dist/client/index.mjs +314 -297
- package/dist/kotlin/clientsdk-clientcore_js.d.ts +12 -12
- package/dist/vonageClientSDK.js +315 -298
- package/dist/vonageClientSDK.min.js +1 -1
- package/dist/vonageClientSDK.min.mjs +1 -1
- package/dist/vonageClientSDK.mjs +315 -298
- package/package.json +1 -1
|
@@ -1019,7 +1019,7 @@ export declare namespace vonage {
|
|
|
1019
1019
|
enableRtcStatsCollection(interval: any/* kotlin.Number */, mediaId: string): void;
|
|
1020
1020
|
}
|
|
1021
1021
|
interface MediaClientDelegateJS {
|
|
1022
|
-
onRtcStats(rtcStats:
|
|
1022
|
+
onRtcStats(rtcStats: vonage.RTCStatsJS, legId: string): void;
|
|
1023
1023
|
onConnectionChange(id: string, status: string): void;
|
|
1024
1024
|
onNetworkChange(legId: string, status: string): void;
|
|
1025
1025
|
}
|
|
@@ -1090,17 +1090,17 @@ export declare namespace vonage {
|
|
|
1090
1090
|
equals(other: Nullable<any>): boolean;
|
|
1091
1091
|
}
|
|
1092
1092
|
class RTCStatsJS {
|
|
1093
|
-
constructor(audioRecvPackets: any/* kotlin.
|
|
1094
|
-
get audioRecvPackets(): any/* kotlin.
|
|
1095
|
-
get audioRecvPacketsLost():
|
|
1096
|
-
get audioRecvBytes(): any/* kotlin.
|
|
1097
|
-
get audioRecvJitter():
|
|
1098
|
-
get audioSentPackets(): any/* kotlin.
|
|
1099
|
-
get audioSentBytes(): any/* kotlin.
|
|
1100
|
-
get audioSentPacketsLost():
|
|
1101
|
-
get audioRtt():
|
|
1102
|
-
get audioSentJitter():
|
|
1103
|
-
copy(audioRecvPackets?: any/* kotlin.
|
|
1093
|
+
constructor(audioRecvPackets: any/* kotlin.Number */, audioRecvPacketsLost: any/* kotlin.Number */, audioRecvBytes: any/* kotlin.Number */, audioRecvJitter: any/* kotlin.Number */, audioSentPackets: any/* kotlin.Number */, audioSentBytes: any/* kotlin.Number */, audioSentPacketsLost: any/* kotlin.Number */, audioRtt: any/* kotlin.Number */, audioSentJitter: any/* kotlin.Number */);
|
|
1094
|
+
get audioRecvPackets(): any/* kotlin.Number */;
|
|
1095
|
+
get audioRecvPacketsLost(): any/* kotlin.Number */;
|
|
1096
|
+
get audioRecvBytes(): any/* kotlin.Number */;
|
|
1097
|
+
get audioRecvJitter(): any/* kotlin.Number */;
|
|
1098
|
+
get audioSentPackets(): any/* kotlin.Number */;
|
|
1099
|
+
get audioSentBytes(): any/* kotlin.Number */;
|
|
1100
|
+
get audioSentPacketsLost(): any/* kotlin.Number */;
|
|
1101
|
+
get audioRtt(): any/* kotlin.Number */;
|
|
1102
|
+
get audioSentJitter(): any/* kotlin.Number */;
|
|
1103
|
+
copy(audioRecvPackets?: any/* kotlin.Number */, audioRecvPacketsLost?: any/* kotlin.Number */, audioRecvBytes?: any/* kotlin.Number */, audioRecvJitter?: any/* kotlin.Number */, audioSentPackets?: any/* kotlin.Number */, audioSentBytes?: any/* kotlin.Number */, audioSentPacketsLost?: any/* kotlin.Number */, audioRtt?: any/* kotlin.Number */, audioSentJitter?: any/* kotlin.Number */): vonage.RTCStatsJS;
|
|
1104
1104
|
toString(): string;
|
|
1105
1105
|
hashCode(): number;
|
|
1106
1106
|
equals(other: Nullable<any>): boolean;
|