@vonage/client-sdk 1.2.1-snapshot.36.0 → 1.2.1-snapshot.40.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/VonageClient.d.ts +5 -5
- package/dist/client/index.cjs +268 -262
- package/dist/client/index.mjs +267 -263
- package/dist/coreExtend.d.ts +7 -7
- package/dist/kotlin/clientsdk-clientcore_js.d.ts +21 -2
- package/dist/utils/ClientConfig.d.ts +3 -3
- package/dist/utils/index.d.ts +2 -2
- package/dist/utils/logging.d.ts +5 -4
- package/dist/vonageClientSDK.js +268 -262
- package/dist/vonageClientSDK.min.js +1 -1
- package/dist/vonageClientSDK.min.mjs +1 -1
- package/dist/vonageClientSDK.mjs +267 -263
- package/package.json +1 -1
|
@@ -73,7 +73,7 @@ export declare class VonageClient extends vonage.CombinedClientJS {
|
|
|
73
73
|
* Register a callback for an event.
|
|
74
74
|
*
|
|
75
75
|
* @example
|
|
76
|
-
* [[include:
|
|
76
|
+
* [[include: snippet_OnConversationEventListener.txt]]
|
|
77
77
|
*
|
|
78
78
|
* @param event - the event to register for (e.g. 'legStatusUpdate')
|
|
79
79
|
* @param callback - the callback to register for the event
|
|
@@ -100,7 +100,7 @@ export declare class VonageClient extends vonage.CombinedClientJS {
|
|
|
100
100
|
* Clear all callbacks for an event.
|
|
101
101
|
*
|
|
102
102
|
* @example
|
|
103
|
-
* [[include:
|
|
103
|
+
* [[include: snippet_ClearCallbacks.txt]]
|
|
104
104
|
*
|
|
105
105
|
* @param event - the event to unregister from (e.g. 'legStatusUpdate')
|
|
106
106
|
* @returns void
|
|
@@ -155,7 +155,7 @@ export declare class VonageClient extends vonage.CombinedClientJS {
|
|
|
155
155
|
* Hangup a call.
|
|
156
156
|
*
|
|
157
157
|
* @example
|
|
158
|
-
* [[include:
|
|
158
|
+
* [[include: snippet_Hangup.txt]]
|
|
159
159
|
*
|
|
160
160
|
* @group Voice
|
|
161
161
|
* @param callId - the `callId` of the call to hangup
|
|
@@ -177,7 +177,7 @@ export declare class VonageClient extends vonage.CombinedClientJS {
|
|
|
177
177
|
* Sends a TTS message to the Call
|
|
178
178
|
*
|
|
179
179
|
* @example
|
|
180
|
-
* [[include:
|
|
180
|
+
* [[include: snippet_Say.txt]]
|
|
181
181
|
*
|
|
182
182
|
* @group Voice
|
|
183
183
|
* @param callId - the `callId` of the call to send the message to
|
|
@@ -363,7 +363,7 @@ export declare class VonageClient extends vonage.CombinedClientJS {
|
|
|
363
363
|
* Delete an Event in a Conversation
|
|
364
364
|
*
|
|
365
365
|
* @example
|
|
366
|
-
* [[include:
|
|
366
|
+
* [[include:snippet_DeleteEvent.txt]]
|
|
367
367
|
*
|
|
368
368
|
* @group Chat
|
|
369
369
|
* @beta
|