@vonage/client-sdk 0.1.3-alpha.21 → 0.1.3-alpha.22
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.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/kotlin/clientsdk-clientcore.js +4752 -4641
- package/dist/kotlin/clientsdk-clientcore.js.map +1 -1
- package/dist/kotlin/clientsdk-clientcore_js.d.ts +18 -1
- package/dist/kotlin/clientsdk-clientcore_js.js +295 -172
- package/dist/kotlin/clientsdk-clientcore_js.js.map +1 -1
- package/package.json +1 -1
package/dist/Client.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export declare type VonageEvent = vonage.CoreClientEvents;
|
|
|
9
9
|
export declare type Invite = vonage.VoiceInviteJS;
|
|
10
10
|
export declare type VoiceCall = vonage.VoiceCallJS;
|
|
11
11
|
export declare type Conversation = vonage.ConversationJS;
|
|
12
|
+
export declare type RTCQuality = vonage.RTCQualityJS;
|
|
12
13
|
export declare enum ConfigRegion {
|
|
13
14
|
AP = 0,
|
|
14
15
|
EU = 1,
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import './coreExtend';
|
|
2
|
-
export { default as VoiceClient, Invite, VoiceCall, Conversation, ConfigRegion, ClientConfig } from './Client';
|
|
2
|
+
export { default as VoiceClient, Invite, VoiceCall, Conversation, ConfigRegion, ClientConfig, RTCQuality } from './Client';
|
|
3
3
|
export {} from './coreExtend';
|