@vonage/client-sdk 1.2.1-beta.5 → 1.2.1-beta.7
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/VonageClient.d.ts +12 -1
- package/dist/client/index.cjs +3590 -3455
- package/dist/client/index.mjs +3591 -3454
- package/dist/coreExtend.d.ts +0 -10
- package/dist/kotlin/JsUnions.d.ts +11 -1
- package/dist/kotlin/clientsdk-clientcore_js.d.ts +37 -67
- package/dist/utils/ClientConfig.d.ts +9 -4
- package/dist/utils/ConversationModels.d.ts +14 -8
- package/dist/vonageClientSDK.js +3610 -3455
- package/dist/vonageClientSDK.min.js +1 -1
- package/dist/vonageClientSDK.min.mjs +1 -1
- package/dist/vonageClientSDK.mjs +3611 -3454
- package/package.json +1 -1
- /package/dist/{utils → lib}/ConnectivityManager.d.ts +0 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import vonage from '../utils/vonage';
|
|
2
|
-
import { Conversation, ConversationsPage, Member, MembersPage, PresentingOrder,
|
|
2
|
+
import { Conversation, ConversationsPage, Member, MembersPage, PresentingOrder, OrderBy, ClientInitConfigObject, ClientConfigObject } from '../utils';
|
|
3
|
+
import { ConversationEvent, PersistentConversationEvent } from '../kotlin/JsUnions';
|
|
3
4
|
/**
|
|
4
5
|
* The Vonage Client SDK for JS/TS provides a simple interface
|
|
5
6
|
* For the Vonage Voice and Messaging APIs.
|
|
@@ -57,6 +58,16 @@ export declare const setVonageClientLoggingLevel: typeof vonage.setDefaultLoggin
|
|
|
57
58
|
*/
|
|
58
59
|
export declare class VonageClient extends vonage.CombinedClientJS {
|
|
59
60
|
constructor(config?: ClientInitConfigObject);
|
|
61
|
+
/**
|
|
62
|
+
* Set a configuration for the client SDK
|
|
63
|
+
*
|
|
64
|
+
* @example
|
|
65
|
+
* [[include: snippet_SetClientConfig.txt]]
|
|
66
|
+
*
|
|
67
|
+
* @param config - A configuration object
|
|
68
|
+
* @returns void
|
|
69
|
+
*/
|
|
70
|
+
setConfig(config: ClientConfigObject): void;
|
|
60
71
|
/**
|
|
61
72
|
* Register a callback for an event.
|
|
62
73
|
*
|