@vonage/client-sdk 1.2.0-alpha.11 → 1.2.0-alpha.13
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/README.md +6 -2
- package/dist/client/VonageClient.d.ts +20 -3
- package/dist/client/index.cjs +11687 -11204
- package/dist/client/index.mjs +11688 -11204
- package/dist/kotlin/{ConversationEvents.d.ts → JsUnions.d.ts} +163 -98
- package/dist/kotlin/clientsdk-clientcore_js.d.ts +78 -40
- package/dist/utils/index.d.ts +1 -1
- package/dist/vonageClientSDK.js +11238 -10739
- package/dist/vonageClientSDK.min.js +1 -1
- package/dist/vonageClientSDK.min.mjs +1 -1
- package/dist/vonageClientSDK.mjs +11239 -10739
- package/package.json +1 -1
- package/dist/kotlin/From.d.ts +0 -26
package/package.json
CHANGED
package/dist/kotlin/From.d.ts
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { vonage } from './clientsdk-clientcore_js';
|
|
2
|
-
/**
|
|
3
|
-
* The EmbeddedInfo type
|
|
4
|
-
*
|
|
5
|
-
* @property kind the kind property of the EmbeddedInfo
|
|
6
|
-
* @property memberId the memberId property of the EmbeddedInfo
|
|
7
|
-
* @property user the user property of the EmbeddedInfo
|
|
8
|
-
* @interface
|
|
9
|
-
*/
|
|
10
|
-
export type EmbeddedInfo = {
|
|
11
|
-
kind: 'embeddedInfo';
|
|
12
|
-
} & vonage.EmbeddedInfoJS;
|
|
13
|
-
/**
|
|
14
|
-
* The System type
|
|
15
|
-
*
|
|
16
|
-
* @property kind the kind property of the System
|
|
17
|
-
* @interface
|
|
18
|
-
*/
|
|
19
|
-
export type System = {
|
|
20
|
-
kind: 'system';
|
|
21
|
-
} & typeof vonage.SystemJS;
|
|
22
|
-
/**
|
|
23
|
-
* A From is a union of EmbeddedInfo, System
|
|
24
|
-
* @interface
|
|
25
|
-
*/
|
|
26
|
-
export type From = EmbeddedInfo | System;
|