@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.
@@ -1,5 +1,6 @@
1
1
  import vonage from '../utils/vonage';
2
- import { Conversation, ConversationsPage, Member, MembersPage, PresentingOrder, ConversationEvent, PersistentConversationEvent, OrderBy, ClientInitConfigObject } from '../utils';
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
  *