@vonage/client-sdk 1.2.0-alpha.5 → 1.2.0-alpha.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/index.cjs +24313 -32985
- package/dist/client/index.mjs +24313 -32985
- package/dist/kotlin/clientsdk-clientcore_js.d.ts +69 -73
- package/dist/vonageClientSDK.js +23906 -30515
- package/dist/vonageClientSDK.min.js +2 -2
- package/dist/vonageClientSDK.min.mjs +2 -2
- package/dist/vonageClientSDK.mjs +23906 -30515
- package/package.json +1 -1
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
type Nullable<T> = T | null | undefined
|
|
2
|
-
declare
|
|
3
|
-
type __doNotImplementIt = typeof __doNotImplementIt
|
|
4
|
-
export namespace vonage {
|
|
2
|
+
export declare namespace vonage {
|
|
5
3
|
interface CombinedEvents extends vonage.VoiceEvents, vonage.ChatEvents {
|
|
6
4
|
callInvite(callId: string, from: string, channelType: string): void;
|
|
7
5
|
callInviteCancel(callId: string, reason: vonage.CancelReasonJS): void;
|
|
@@ -17,7 +15,7 @@ export namespace vonage {
|
|
|
17
15
|
conversationEvent(event: vonage.ConversationEventJS): void;
|
|
18
16
|
}
|
|
19
17
|
}
|
|
20
|
-
export namespace vonage {
|
|
18
|
+
export declare namespace vonage {
|
|
21
19
|
class CombinedClientJS implements vonage.IChatClientJS, vonage.IVoiceClientJS {
|
|
22
20
|
constructor(http: vonage.HttpClientJS, socket: vonage.SocketClientJS, media: vonage.MediaClientJS);
|
|
23
21
|
get media(): vonage.MediaClientJS;
|
|
@@ -54,10 +52,10 @@ export namespace vonage {
|
|
|
54
52
|
enableEarmuff(callId: string): Promise<any>;
|
|
55
53
|
disableEarmuff(callId: string): Promise<any>;
|
|
56
54
|
sendDTMF(callId: string, digits: string): Promise<any>;
|
|
57
|
-
readonly
|
|
55
|
+
readonly __doNotUseOrImplementIt: vonage.IChatClientJS["__doNotUseOrImplementIt"] & vonage.IVoiceClientJS["__doNotUseOrImplementIt"];
|
|
58
56
|
}
|
|
59
57
|
}
|
|
60
|
-
export namespace vonage {
|
|
58
|
+
export declare namespace vonage {
|
|
61
59
|
class EventsPageJS {
|
|
62
60
|
private constructor();
|
|
63
61
|
get events(): Array<vonage.ConversationEventJS>;
|
|
@@ -65,24 +63,29 @@ export namespace vonage {
|
|
|
65
63
|
get nextCursor(): Nullable<string>;
|
|
66
64
|
}
|
|
67
65
|
interface FromJS {
|
|
68
|
-
readonly
|
|
66
|
+
readonly __doNotUseOrImplementIt: {
|
|
67
|
+
readonly "vonage.FromJS": unique symbol;
|
|
68
|
+
};
|
|
69
69
|
}
|
|
70
70
|
class EmbeddedInfoJS implements vonage.FromJS {
|
|
71
71
|
private constructor();
|
|
72
72
|
get kind(): string;
|
|
73
73
|
get memberId(): string;
|
|
74
74
|
get user(): vonage.UserJS;
|
|
75
|
-
readonly
|
|
75
|
+
readonly __doNotUseOrImplementIt: vonage.FromJS["__doNotUseOrImplementIt"];
|
|
76
76
|
}
|
|
77
77
|
const SystemJS: {
|
|
78
78
|
get kind(): string;
|
|
79
|
+
readonly __doNotUseOrImplementIt: vonage.FromJS["__doNotUseOrImplementIt"];
|
|
79
80
|
} & vonage.FromJS;
|
|
80
81
|
interface ConversationEventJS {
|
|
81
82
|
readonly id: Nullable<number>;
|
|
82
83
|
readonly timestamp: string;
|
|
83
84
|
readonly conversationId: string;
|
|
84
85
|
readonly from: Nullable<vonage.FromJS>;
|
|
85
|
-
readonly
|
|
86
|
+
readonly __doNotUseOrImplementIt: {
|
|
87
|
+
readonly "vonage.ConversationEventJS": unique symbol;
|
|
88
|
+
};
|
|
86
89
|
}
|
|
87
90
|
interface MemberEventJS extends vonage.ConversationEventJS {
|
|
88
91
|
readonly body: vonage.MemberEventBodyJS;
|
|
@@ -90,7 +93,9 @@ export namespace vonage {
|
|
|
90
93
|
readonly timestamp: string;
|
|
91
94
|
readonly conversationId: string;
|
|
92
95
|
readonly from: Nullable<vonage.FromJS>;
|
|
93
|
-
readonly
|
|
96
|
+
readonly __doNotUseOrImplementIt: {
|
|
97
|
+
readonly "vonage.MemberEventJS": unique symbol;
|
|
98
|
+
} & vonage.ConversationEventJS["__doNotUseOrImplementIt"];
|
|
94
99
|
}
|
|
95
100
|
class MemberEventBodyJS {
|
|
96
101
|
private constructor();
|
|
@@ -104,7 +109,7 @@ export namespace vonage {
|
|
|
104
109
|
get conversationId(): string;
|
|
105
110
|
get from(): vonage.FromJS;
|
|
106
111
|
get body(): vonage.MemberEventBodyJS;
|
|
107
|
-
readonly
|
|
112
|
+
readonly __doNotUseOrImplementIt: vonage.MemberEventJS["__doNotUseOrImplementIt"];
|
|
108
113
|
}
|
|
109
114
|
class MemberJoinedEventJS implements vonage.MemberEventJS {
|
|
110
115
|
private constructor();
|
|
@@ -113,7 +118,7 @@ export namespace vonage {
|
|
|
113
118
|
get conversationId(): string;
|
|
114
119
|
get from(): vonage.FromJS;
|
|
115
120
|
get body(): vonage.MemberEventBodyJS;
|
|
116
|
-
readonly
|
|
121
|
+
readonly __doNotUseOrImplementIt: vonage.MemberEventJS["__doNotUseOrImplementIt"];
|
|
117
122
|
}
|
|
118
123
|
class MemberLeftEventJS implements vonage.MemberEventJS {
|
|
119
124
|
private constructor();
|
|
@@ -122,16 +127,18 @@ export namespace vonage {
|
|
|
122
127
|
get conversationId(): string;
|
|
123
128
|
get from(): vonage.FromJS;
|
|
124
129
|
get body(): vonage.MemberEventBodyJS;
|
|
125
|
-
readonly
|
|
130
|
+
readonly __doNotUseOrImplementIt: vonage.MemberEventJS["__doNotUseOrImplementIt"];
|
|
126
131
|
}
|
|
127
132
|
}
|
|
128
|
-
export namespace vonage {
|
|
133
|
+
export declare namespace vonage {
|
|
129
134
|
interface MessageEventJS extends vonage.ConversationEventJS {
|
|
130
135
|
readonly id: number;
|
|
131
136
|
readonly timestamp: string;
|
|
132
137
|
readonly conversationId: string;
|
|
133
138
|
readonly from: Nullable<vonage.FromJS>;
|
|
134
|
-
readonly
|
|
139
|
+
readonly __doNotUseOrImplementIt: {
|
|
140
|
+
readonly "vonage.MessageEventJS": unique symbol;
|
|
141
|
+
} & vonage.ConversationEventJS["__doNotUseOrImplementIt"];
|
|
135
142
|
}
|
|
136
143
|
class TextMessageEventJS implements vonage.MessageEventJS {
|
|
137
144
|
private constructor();
|
|
@@ -140,7 +147,7 @@ export namespace vonage {
|
|
|
140
147
|
get conversationId(): string;
|
|
141
148
|
get from(): vonage.FromJS;
|
|
142
149
|
get body(): vonage.TextMessageEventJS.Body;
|
|
143
|
-
readonly
|
|
150
|
+
readonly __doNotUseOrImplementIt: vonage.MessageEventJS["__doNotUseOrImplementIt"];
|
|
144
151
|
}
|
|
145
152
|
namespace TextMessageEventJS {
|
|
146
153
|
class Body {
|
|
@@ -155,7 +162,7 @@ export namespace vonage {
|
|
|
155
162
|
get conversationId(): string;
|
|
156
163
|
get from(): vonage.FromJS;
|
|
157
164
|
get body(): vonage.CustomMessageEventJS.Body;
|
|
158
|
-
readonly
|
|
165
|
+
readonly __doNotUseOrImplementIt: vonage.MessageEventJS["__doNotUseOrImplementIt"];
|
|
159
166
|
}
|
|
160
167
|
namespace CustomMessageEventJS {
|
|
161
168
|
class Body {
|
|
@@ -170,7 +177,7 @@ export namespace vonage {
|
|
|
170
177
|
get conversationId(): string;
|
|
171
178
|
get from(): vonage.FromJS;
|
|
172
179
|
get body(): vonage.AudioMessageEventJS.Body;
|
|
173
|
-
readonly
|
|
180
|
+
readonly __doNotUseOrImplementIt: vonage.MessageEventJS["__doNotUseOrImplementIt"];
|
|
174
181
|
}
|
|
175
182
|
namespace AudioMessageEventJS {
|
|
176
183
|
class Body {
|
|
@@ -185,7 +192,7 @@ export namespace vonage {
|
|
|
185
192
|
get conversationId(): string;
|
|
186
193
|
get from(): vonage.FromJS;
|
|
187
194
|
get body(): vonage.VideoMessageEventJS.Body;
|
|
188
|
-
readonly
|
|
195
|
+
readonly __doNotUseOrImplementIt: vonage.MessageEventJS["__doNotUseOrImplementIt"];
|
|
189
196
|
}
|
|
190
197
|
namespace VideoMessageEventJS {
|
|
191
198
|
class Body {
|
|
@@ -200,7 +207,7 @@ export namespace vonage {
|
|
|
200
207
|
get conversationId(): string;
|
|
201
208
|
get from(): vonage.FromJS;
|
|
202
209
|
get body(): vonage.ImageMessageEventJS.Body;
|
|
203
|
-
readonly
|
|
210
|
+
readonly __doNotUseOrImplementIt: vonage.MessageEventJS["__doNotUseOrImplementIt"];
|
|
204
211
|
}
|
|
205
212
|
namespace ImageMessageEventJS {
|
|
206
213
|
class Body {
|
|
@@ -215,7 +222,7 @@ export namespace vonage {
|
|
|
215
222
|
get conversationId(): string;
|
|
216
223
|
get from(): vonage.FromJS;
|
|
217
224
|
get body(): vonage.FileMessageEventJS.Body;
|
|
218
|
-
readonly
|
|
225
|
+
readonly __doNotUseOrImplementIt: vonage.MessageEventJS["__doNotUseOrImplementIt"];
|
|
219
226
|
}
|
|
220
227
|
namespace FileMessageEventJS {
|
|
221
228
|
class Body {
|
|
@@ -230,7 +237,7 @@ export namespace vonage {
|
|
|
230
237
|
get conversationId(): string;
|
|
231
238
|
get from(): vonage.FromJS;
|
|
232
239
|
get body(): vonage.VCardMessageEventJS.Body;
|
|
233
|
-
readonly
|
|
240
|
+
readonly __doNotUseOrImplementIt: vonage.MessageEventJS["__doNotUseOrImplementIt"];
|
|
234
241
|
}
|
|
235
242
|
namespace VCardMessageEventJS {
|
|
236
243
|
class Body {
|
|
@@ -245,7 +252,7 @@ export namespace vonage {
|
|
|
245
252
|
get conversationId(): string;
|
|
246
253
|
get from(): vonage.FromJS;
|
|
247
254
|
get body(): vonage.LocationMessageEventJS.Body;
|
|
248
|
-
readonly
|
|
255
|
+
readonly __doNotUseOrImplementIt: vonage.MessageEventJS["__doNotUseOrImplementIt"];
|
|
249
256
|
}
|
|
250
257
|
namespace LocationMessageEventJS {
|
|
251
258
|
class Body {
|
|
@@ -267,14 +274,13 @@ export namespace vonage {
|
|
|
267
274
|
get conversationId(): string;
|
|
268
275
|
get from(): vonage.FromJS;
|
|
269
276
|
get body(): vonage.TemplateMessageEventJS.Body;
|
|
270
|
-
readonly
|
|
277
|
+
readonly __doNotUseOrImplementIt: vonage.MessageEventJS["__doNotUseOrImplementIt"];
|
|
271
278
|
}
|
|
272
279
|
namespace TemplateMessageEventJS {
|
|
273
280
|
class Body {
|
|
274
281
|
private constructor();
|
|
275
282
|
get body(): any/* com.vonage.clientcore.core.api.models.TemplateMessageEvent.Body */;
|
|
276
283
|
get template(): vonage.TemplateMessageEventJS.TemplateObject;
|
|
277
|
-
component1(): any/* com.vonage.clientcore.core.api.models.TemplateMessageEvent.Body */;
|
|
278
284
|
copy(body?: any/* com.vonage.clientcore.core.api.models.TemplateMessageEvent.Body */): vonage.TemplateMessageEventJS.Body;
|
|
279
285
|
toString(): string;
|
|
280
286
|
hashCode(): number;
|
|
@@ -287,7 +293,7 @@ export namespace vonage {
|
|
|
287
293
|
}
|
|
288
294
|
}
|
|
289
295
|
}
|
|
290
|
-
export namespace vonage {
|
|
296
|
+
export declare namespace vonage {
|
|
291
297
|
abstract class PresentingOrderJS {
|
|
292
298
|
private constructor();
|
|
293
299
|
get corePresentingOrder(): any/* com.vonage.clientcore.core.api.models.PresentingOrder */;
|
|
@@ -501,7 +507,7 @@ export namespace vonage {
|
|
|
501
507
|
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
|
|
502
508
|
}
|
|
503
509
|
}
|
|
504
|
-
export namespace vonage {
|
|
510
|
+
export declare namespace vonage {
|
|
505
511
|
const CSErrorCodesJS: {
|
|
506
512
|
get CONVERSATION_DUPLICATE_NAME(): string;
|
|
507
513
|
get MEMBER_ALREADY_JOINED(): string;
|
|
@@ -532,7 +538,7 @@ export namespace vonage {
|
|
|
532
538
|
get TRANSPORT_CLOSED_DISCONNECT(): string;
|
|
533
539
|
};
|
|
534
540
|
}
|
|
535
|
-
export namespace vonage {
|
|
541
|
+
export declare namespace vonage {
|
|
536
542
|
class VonageErrorJS extends Error {
|
|
537
543
|
private constructor();
|
|
538
544
|
get type(): vonage.VonageErrorTypeJS;
|
|
@@ -567,7 +573,7 @@ export namespace vonage {
|
|
|
567
573
|
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
568
574
|
}
|
|
569
575
|
}
|
|
570
|
-
export namespace vonage {
|
|
576
|
+
export declare namespace vonage {
|
|
571
577
|
interface ChatEvents extends vonage.CoreClientEvents {
|
|
572
578
|
conversationEvent(event: vonage.ConversationEventJS): void;
|
|
573
579
|
reconnecting(): void;
|
|
@@ -575,7 +581,7 @@ export namespace vonage {
|
|
|
575
581
|
sessionError(reason: vonage.SessionErrorReasonJS): void;
|
|
576
582
|
}
|
|
577
583
|
}
|
|
578
|
-
export namespace vonage {
|
|
584
|
+
export declare namespace vonage {
|
|
579
585
|
interface IChatClientJS extends vonage.ICoreClientJS {
|
|
580
586
|
readonly core: any/* com.vonage.clientcore.core.CoreClient */;
|
|
581
587
|
createConversation(name: Nullable<string>, displayName: Nullable<string>): Promise<string>;
|
|
@@ -595,17 +601,19 @@ export namespace vonage {
|
|
|
595
601
|
refreshSession(token: string): Promise<any>;
|
|
596
602
|
getConversation(conversationId: string): Promise<vonage.ConversationJS>;
|
|
597
603
|
getUser(userIdOrName: string): Promise<vonage.UserJS>;
|
|
598
|
-
readonly
|
|
604
|
+
readonly __doNotUseOrImplementIt: {
|
|
605
|
+
readonly "vonage.IChatClientJS": unique symbol;
|
|
606
|
+
} & vonage.ICoreClientJS["__doNotUseOrImplementIt"];
|
|
599
607
|
}
|
|
600
608
|
}
|
|
601
|
-
export namespace vonage {
|
|
609
|
+
export declare namespace vonage {
|
|
602
610
|
interface CoreClientEvents {
|
|
603
611
|
reconnecting(): void;
|
|
604
612
|
reconnection(): void;
|
|
605
613
|
sessionError(reason: vonage.SessionErrorReasonJS): void;
|
|
606
614
|
}
|
|
607
615
|
}
|
|
608
|
-
export namespace vonage {
|
|
616
|
+
export declare namespace vonage {
|
|
609
617
|
abstract class CoreClientConfigRegionJS {
|
|
610
618
|
private constructor();
|
|
611
619
|
get coreRegion(): any/* com.vonage.clientcore.core.api.ClientConfigRegion */;
|
|
@@ -702,10 +710,12 @@ export namespace vonage {
|
|
|
702
710
|
refreshSession(token: string): Promise<any>;
|
|
703
711
|
getConversation(conversationId: string): Promise<vonage.ConversationJS>;
|
|
704
712
|
getUser(userIdOrName: string): Promise<vonage.UserJS>;
|
|
705
|
-
readonly
|
|
713
|
+
readonly __doNotUseOrImplementIt: {
|
|
714
|
+
readonly "vonage.ICoreClientJS": unique symbol;
|
|
715
|
+
};
|
|
706
716
|
}
|
|
707
717
|
}
|
|
708
|
-
export namespace vonage {
|
|
718
|
+
export declare namespace vonage {
|
|
709
719
|
interface VoiceEvents extends vonage.CoreClientEvents {
|
|
710
720
|
callInvite(callId: string, from: string, channelType: string): void;
|
|
711
721
|
callInviteCancel(callId: string, reason: vonage.CancelReasonJS): void;
|
|
@@ -721,14 +731,14 @@ export namespace vonage {
|
|
|
721
731
|
}
|
|
722
732
|
interface CallSayParams {
|
|
723
733
|
readonly text: string;
|
|
724
|
-
readonly level
|
|
725
|
-
readonly loop
|
|
726
|
-
readonly queue
|
|
727
|
-
readonly voiceName
|
|
728
|
-
readonly ssml
|
|
734
|
+
readonly level?: Nullable<number>;
|
|
735
|
+
readonly loop?: Nullable<number>;
|
|
736
|
+
readonly queue?: Nullable<boolean>;
|
|
737
|
+
readonly voiceName?: Nullable<string>;
|
|
738
|
+
readonly ssml?: Nullable<boolean>;
|
|
729
739
|
}
|
|
730
740
|
}
|
|
731
|
-
export namespace vonage {
|
|
741
|
+
export declare namespace vonage {
|
|
732
742
|
abstract class LegStatusJS {
|
|
733
743
|
private constructor();
|
|
734
744
|
static get RINGING(): vonage.LegStatusJS & {
|
|
@@ -803,26 +813,26 @@ export namespace vonage {
|
|
|
803
813
|
refreshSession(token: string): Promise<any>;
|
|
804
814
|
getConversation(conversationId: string): Promise<vonage.ConversationJS>;
|
|
805
815
|
getUser(userIdOrName: string): Promise<vonage.UserJS>;
|
|
806
|
-
readonly
|
|
816
|
+
readonly __doNotUseOrImplementIt: {
|
|
817
|
+
readonly "vonage.IVoiceClientJS": unique symbol;
|
|
818
|
+
} & vonage.ICoreClientJS["__doNotUseOrImplementIt"];
|
|
807
819
|
}
|
|
808
820
|
class VoiceInviteFromInfoJS {
|
|
809
821
|
constructor(id: Nullable<string>, type: string);
|
|
810
822
|
get id(): Nullable<string>;
|
|
811
823
|
get type(): string;
|
|
812
|
-
component1(): Nullable<string>;
|
|
813
|
-
component2(): string;
|
|
814
824
|
copy(id?: Nullable<string>, type?: string): vonage.VoiceInviteFromInfoJS;
|
|
815
825
|
toString(): string;
|
|
816
826
|
hashCode(): number;
|
|
817
827
|
equals(other: Nullable<any>): boolean;
|
|
818
828
|
}
|
|
819
829
|
}
|
|
820
|
-
export namespace vonage {
|
|
830
|
+
export declare namespace vonage {
|
|
821
831
|
interface HttpClientJS {
|
|
822
832
|
request(verb: string, url: string, headers: Json, body: Nullable<string>, callback: (p0: Nullable<vonage.HttpClientErrorJS>, p1: Nullable<vonage.HttpClientResponseJS>) => void): void;
|
|
823
833
|
}
|
|
824
834
|
interface SocketClientJS {
|
|
825
|
-
delegate
|
|
835
|
+
delegate?: Nullable<vonage.SocketClientDelegateJS>;
|
|
826
836
|
emit(type: string, msg: Nullable<Json>, callback: (p0: Nullable<Error>, p1: Nullable<string>) => void): void;
|
|
827
837
|
connect(host: string, path: string, reconnectionAttempts: any/* kotlin.Number */, reconnectionDelay: any/* kotlin.Number */, randomizationFactor: any/* kotlin.Number */, query: string): void;
|
|
828
838
|
disconnect(): void;
|
|
@@ -834,7 +844,7 @@ export namespace vonage {
|
|
|
834
844
|
didReceiveNewSocketConnectionStatusEvent(type: string, reason: Nullable<string>, timestamp: any/* kotlin.Number */, retryNumber: Nullable<number>): void;
|
|
835
845
|
}
|
|
836
846
|
interface MediaClientJS {
|
|
837
|
-
delegate
|
|
847
|
+
delegate?: Nullable<vonage.MediaClientDelegateJS>;
|
|
838
848
|
enableMediaOutbound(closure: (p0: any, p1: Nullable<string>, p2: (p0: string) => void) => void): void;
|
|
839
849
|
enableMediaInbound(closure: (p0: any, p1: Nullable<string>) => void, offerSDP: string, rtcId: string): void;
|
|
840
850
|
processAnswer(id: string, sdp: string): void;
|
|
@@ -849,12 +859,10 @@ export namespace vonage {
|
|
|
849
859
|
onConnectionChange(id: string, status: string): void;
|
|
850
860
|
}
|
|
851
861
|
}
|
|
852
|
-
export namespace vonage {
|
|
862
|
+
export declare namespace vonage {
|
|
853
863
|
class HttpClientErrorJS extends Error {
|
|
854
864
|
constructor(message?: Nullable<string>, cause?: Nullable<Error>);
|
|
855
865
|
get coreError(): any/* com.vonage.clientcore.core.middlewares.http.HTTPClientError */;
|
|
856
|
-
component1(): Nullable<string>;
|
|
857
|
-
component2(): Nullable<Error>;
|
|
858
866
|
copy(message?: Nullable<string>, cause?: Nullable<Error>): vonage.HttpClientErrorJS;
|
|
859
867
|
toString(): string;
|
|
860
868
|
hashCode(): number;
|
|
@@ -864,8 +872,6 @@ export namespace vonage {
|
|
|
864
872
|
constructor(statusCode: number, body?: Nullable<string>);
|
|
865
873
|
get statusCode(): number;
|
|
866
874
|
get body(): Nullable<string>;
|
|
867
|
-
component1(): number;
|
|
868
|
-
component2(): Nullable<string>;
|
|
869
875
|
copy(statusCode?: number, body?: Nullable<string>): vonage.HttpClientResponseJS;
|
|
870
876
|
toString(): string;
|
|
871
877
|
hashCode(): number;
|
|
@@ -919,28 +925,18 @@ export namespace vonage {
|
|
|
919
925
|
equals(other: Nullable<any>): boolean;
|
|
920
926
|
}
|
|
921
927
|
class RTCStatsJS {
|
|
922
|
-
constructor(audioRecvPackets: any
|
|
923
|
-
get audioRecvPackets(): any
|
|
924
|
-
get audioRecvPacketsLost(): any
|
|
925
|
-
get audioRecvBytes(): any
|
|
926
|
-
get audioRecvJitter(): any
|
|
927
|
-
get audioSentPackets(): any
|
|
928
|
-
get audioSentBytes(): any
|
|
929
|
-
get audioSentPacketsLost(): any
|
|
930
|
-
get audioRtt(): any
|
|
931
|
-
get audioSentJitter(): any
|
|
928
|
+
constructor(audioRecvPackets: Nullable<any>/* Nullable<kotlin.Number> */, audioRecvPacketsLost: Nullable<any>/* Nullable<kotlin.Number> */, audioRecvBytes: Nullable<any>/* Nullable<kotlin.Number> */, audioRecvJitter: Nullable<any>/* Nullable<kotlin.Number> */, audioSentPackets: Nullable<any>/* Nullable<kotlin.Number> */, audioSentBytes: Nullable<any>/* Nullable<kotlin.Number> */, audioSentPacketsLost: Nullable<any>/* Nullable<kotlin.Number> */, audioRtt: Nullable<any>/* Nullable<kotlin.Number> */, audioSentJitter: Nullable<any>/* Nullable<kotlin.Number> */, legId: string);
|
|
929
|
+
get audioRecvPackets(): Nullable<any>/* Nullable<kotlin.Number> */;
|
|
930
|
+
get audioRecvPacketsLost(): Nullable<any>/* Nullable<kotlin.Number> */;
|
|
931
|
+
get audioRecvBytes(): Nullable<any>/* Nullable<kotlin.Number> */;
|
|
932
|
+
get audioRecvJitter(): Nullable<any>/* Nullable<kotlin.Number> */;
|
|
933
|
+
get audioSentPackets(): Nullable<any>/* Nullable<kotlin.Number> */;
|
|
934
|
+
get audioSentBytes(): Nullable<any>/* Nullable<kotlin.Number> */;
|
|
935
|
+
get audioSentPacketsLost(): Nullable<any>/* Nullable<kotlin.Number> */;
|
|
936
|
+
get audioRtt(): Nullable<any>/* Nullable<kotlin.Number> */;
|
|
937
|
+
get audioSentJitter(): Nullable<any>/* Nullable<kotlin.Number> */;
|
|
932
938
|
get legId(): string;
|
|
933
|
-
|
|
934
|
-
component2(): any/* Nullable<kotlin.Number> */;
|
|
935
|
-
component3(): any/* Nullable<kotlin.Number> */;
|
|
936
|
-
component4(): any/* Nullable<kotlin.Number> */;
|
|
937
|
-
component5(): any/* Nullable<kotlin.Number> */;
|
|
938
|
-
component6(): any/* Nullable<kotlin.Number> */;
|
|
939
|
-
component7(): any/* Nullable<kotlin.Number> */;
|
|
940
|
-
component8(): any/* Nullable<kotlin.Number> */;
|
|
941
|
-
component9(): any/* Nullable<kotlin.Number> */;
|
|
942
|
-
component10(): string;
|
|
943
|
-
copy(audioRecvPackets?: any/* Nullable<kotlin.Number> */, audioRecvPacketsLost?: any/* Nullable<kotlin.Number> */, audioRecvBytes?: any/* Nullable<kotlin.Number> */, audioRecvJitter?: any/* Nullable<kotlin.Number> */, audioSentPackets?: any/* Nullable<kotlin.Number> */, audioSentBytes?: any/* Nullable<kotlin.Number> */, audioSentPacketsLost?: any/* Nullable<kotlin.Number> */, audioRtt?: any/* Nullable<kotlin.Number> */, audioSentJitter?: any/* Nullable<kotlin.Number> */, legId?: string): vonage.RTCStatsJS;
|
|
939
|
+
copy(audioRecvPackets?: Nullable<any>/* Nullable<kotlin.Number> */, audioRecvPacketsLost?: Nullable<any>/* Nullable<kotlin.Number> */, audioRecvBytes?: Nullable<any>/* Nullable<kotlin.Number> */, audioRecvJitter?: Nullable<any>/* Nullable<kotlin.Number> */, audioSentPackets?: Nullable<any>/* Nullable<kotlin.Number> */, audioSentBytes?: Nullable<any>/* Nullable<kotlin.Number> */, audioSentPacketsLost?: Nullable<any>/* Nullable<kotlin.Number> */, audioRtt?: Nullable<any>/* Nullable<kotlin.Number> */, audioSentJitter?: Nullable<any>/* Nullable<kotlin.Number> */, legId?: string): vonage.RTCStatsJS;
|
|
944
940
|
toString(): string;
|
|
945
941
|
hashCode(): number;
|
|
946
942
|
equals(other: Nullable<any>): boolean;
|